* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Blue Codes Hub Brand Colors - Matching Your Logo */
  --primary-blue: #2e7ab7;
  --light-blue: #3b9dd9;
  --dark-blue: #1e5a8d;
  --accent-blue: #4ab5e5;
  --navy-blue: #1a4b73;
  --bg-dark: #0a1628;
  --bg-darker: #050b14;
  --bg-card: #0f1c2e;
  --text-light: #e8f1f8;
  --text-gray: #9ca3af;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", sans-serif;
  background: var(--bg-darker);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}
.animate-slideIn {
  animation: slideIn 0.6s ease-out;
}
.animate-rotate {
  animation: rotate 20s linear infinite;
}
.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

/* Navigation Container - Fixed for Mobile */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 22, 40, 0.95);
  border-bottom: 1px solid rgba(46, 122, 183, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Logo - Always Horizontal */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(46, 122, 183, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--light-blue);
}

/* CTA Button */
.cta-btn {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  border: none;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(46, 122, 183, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--light-blue);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: rgba(46, 122, 183, 0.1);
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--light-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop: 768px and above */
@media (min-width: 768px) {
  .logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 8px;
  }

  .logo-text {
    font-size: 1.35rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .mobile-menu-btn {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    flex-direction: row;
    padding: 0;
    gap: 2rem;
    box-shadow: none;
  }

  .nav-links a {
    font-size: inherit;
    padding: 0;
    border-bottom: none;
  }

  .cta-btn {
    display: inline-block !important;
  }
}

/* Mobile: Below 768px */
@media (max-width: 767px) {
  .mobile-menu-btn {
    display: flex !important;
  }

  .cta-btn {
    display: none !important;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 2px solid rgba(46, 122, 183, 0.3);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(46, 122, 183, 0.15);
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(46, 122, 183, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(59, 157, 217, 0.15) 0%,
      transparent 50%
    );
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: var(--primary-blue);
  top: 10%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

.shape2 {
  width: 400px;
  height: 400px;
  background: var(--light-blue);
  bottom: 10%;
  right: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.shape3 {
  width: 250px;
  height: 250px;
  background: var(--accent-blue);
  top: 50%;
  right: 20%;
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1100px;
}

.logo-display {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(46, 122, 183, 0.6);
}

.logo-display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(
    to right,
    var(--light-blue),
    var(--accent-blue),
    var(--primary-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.service-showcase {
  margin: 3rem 0;
  min-height: 200px;
  transition: opacity 0.3s;
}

.service-item {
  text-align: center;
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(46, 122, 183, 0.15),
    rgba(59, 157, 217, 0.15)
  );
  border: 2px solid rgba(46, 122, 183, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-icon svg {
  width: 50px;
  height: 50px;
  transition: all 0.3s;
}

.service-showcase:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(46, 122, 183, 0.4);
}

.service-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.service-subtitle {
  color: var(--text-gray);
  font-size: 1.125rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  border: none;
  border-radius: 9999px;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(46, 122, 183, 0.5);
}

.btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(46, 122, 183, 0.5);
  border-radius: 9999px;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(46, 122, 183, 0.1);
  border-color: var(--primary-blue);
}

.service-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 32px;
  background: var(--light-blue);
}

/* Stats Section */
.stats {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    rgba(46, 122, 183, 0.2),
    rgba(59, 157, 217, 0.2)
  );
  border: 2px solid rgba(46, 122, 183, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--light-blue);
  transition: all 0.3s;
}

.stat-item:hover .stat-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-color: var(--light-blue);
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(46, 122, 183, 0.5);
}

.stat-item:hover .stat-icon svg {
  fill: white;
  transform: scale(1.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
}

/* Services Section */
.services {
  padding: 6rem 1.5rem;
  background: var(--bg-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--text-gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 122, 183, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 60px rgba(46, 122, 183, 0.3);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(46, 122, 183, 0.15),
    rgba(59, 157, 217, 0.15)
  );
  border: 2px solid rgba(46, 122, 183, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-card-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--light-blue);
  transition: all 0.3s;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-color: var(--light-blue);
  transform: scale(1.2) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(46, 122, 183, 0.5);
}

.service-card:hover .service-card-icon svg {
  fill: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--light-blue);
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 2px solid var(--primary-blue);
  border-radius: 9999px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  transform: scale(1.05);
  background: var(--primary-blue);
  color: white;
}

/* Portfolio */
.portfolio {
  padding: 6rem 1.5rem;
  background: var(--bg-darker);
}

.portfolio-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  aspect-ratio: 16/9;
  background: linear-gradient(
    135deg,
    rgba(46, 122, 183, 0.2),
    rgba(59, 157, 217, 0.2)
  );
  border: 1px solid rgba(46, 122, 183, 0.3);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  background-position: center;
}

.portfolio-item:hover {
  transform: scale(1.05);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 40px rgba(46, 122, 183, 0.4);
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 11, 20, 0.95),
    rgba(5, 11, 20, 0.3)
  );
  transition: opacity 0.3s;
}

.portfolio-item:hover::before {
  background: linear-gradient(
    to top,
    rgba(5, 11, 20, 0.85),
    rgba(5, 11, 20, 0.2)
  );
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.portfolio-content p {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Testimonials */
.testimonials {
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 122, 183, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--primary-blue);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #d1d5db;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: bold;
}

.testimonial-company {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Contact */
.contact {
  padding: 6rem 1.5rem;
  background: var(--bg-dark);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 122, 183, 0.2);
  border-radius: 16px;
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  border: 1px solid rgba(46, 122, 183, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

textarea.form-input {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  box-shadow: 0 20px 40px rgba(46, 122, 183, 0.5);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-item {
  text-align: center;
}

.contact-item-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(46, 122, 183, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.contact-item-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--light-blue);
  transition: all 0.3s;
}

.contact-item:hover .contact-item-icon {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(46, 122, 183, 0.4);
}

.contact-item:hover .contact-item-icon svg {
  fill: white;
  transform: scale(1.1);
}

.contact-item-title {
  color: var(--light-blue);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item-value {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* Footer */
footer {
  padding: 3rem 1.5rem;
  background: var(--bg-darker);
  border-top: 1px solid rgba(46, 122, 183, 0.2);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(46, 122, 183, 0.3);
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-gray);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: var(--light-blue);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid rgba(46, 122, 183, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--text-gray);
  transition: fill 0.3s;
}

.social-btn:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(46, 122, 183, 0.4);
}

.social-btn:hover svg {
  fill: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 122, 183, 0.2);
  text-align: center;
  color: var(--text-gray);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section ul li a:hover {
    transform: none;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  color: var(--light-blue);
}

/* Responsive */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 767px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .logo-display {
    width: 120px;
    height: 120px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #2e7ab7;
  --light-blue: #3b9dd9;
  --dark-blue: #1e5a8d;
  --accent-blue: #4ab5e5;
  --navy-blue: #1a4b73;
  --bg-dark: #0a1628;
  --bg-darker: #050b14;
  --bg-card: #0f1c2e;
  --text-light: #e8f1f8;
  --text-gray: #9ca3af;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    sans-serif;
  background: var(--bg-darker);
  color: var(--text-light);
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out;
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}
.animate-slideIn {
  animation: slideIn 0.6s ease-out;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 22, 40, 0.95);
  border-bottom: 1px solid rgba(46, 122, 183, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(46, 122, 183, 0.3);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--light-blue);
}

.cta-btn {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  border: none;
  border-radius: 9999px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(46, 122, 183, 0.5);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--light-blue);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--light-blue);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop */
@media (min-width: 768px) {
  .logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 8px;
  }
  .logo-text {
    font-size: 1.35rem;
  }
  .nav-container {
    padding: 1rem 1.5rem;
  }
  .mobile-menu-btn {
    display: none !important;
  }
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .mobile-menu-btn {
    display: flex !important;
  }
  .cta-btn {
    display: none !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: var(--bg-darker);
    border-left: 2px solid rgba(46, 122, 183, 0.3);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(46, 122, 183, 0.15);
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .service-title {
    font-size: 2rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .logo-display {
    width: 120px;
    height: 120px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 2rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1100px;
}

.logo-display {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(46, 122, 183, 0.6);
}

.logo-display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(
    to right,
    var(--light-blue),
    var(--accent-blue),
    var(--primary-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  border: none;
  border-radius: 9999px;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(46, 122, 183, 0.5);
}

.btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(46, 122, 183, 0.5);
  border-radius: 9999px;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(46, 122, 183, 0.1);
  border-color: var(--primary-blue);
}

/* Stats */
.stats {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}
.stat-item:hover {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
}

/* Services */
.services {
  padding: 6rem 1.5rem;
  background: var(--bg-dark);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--text-gray);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(46, 122, 183, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.service-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-blue);
  box-shadow: 0 20px 60px rgba(46, 122, 183, 0.3);
}
.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--light-blue);
}
.service-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-features li {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-btn {
  padding: 0.5rem 1.5rem;
  background: transparent;
  border: 2px solid var(--primary-blue);
  border-radius: 9999px;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  transform: scale(1.05);
  background: var(--primary-blue);
  color: white;
}

/* Footer */
footer {
  padding: 3rem 1.5rem;
  background: var(--bg-darker);
  border-top: 1px solid rgba(46, 122, 183, 0.2);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.footer-bottom {
  color: var(--text-gray);
  font-size: 0.875rem;
}
.contact-item-value a {
  color: var(--light-blue);
  text-decoration: none;
}
