/* ----- GLOBAL RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5faff;
  color: #0a2540;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* ----- CONTAINER ----- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ----- BUTTON STYLES ----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e6df2;
  color: white;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(30, 109, 242, 0.2);
}

.btn-primary:hover {
  background: #0f5ad8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 109, 242, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #cde3fe;
  color: #1e6df2;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #eef4ff;
  border-color: #1e6df2;
}

/* ----- SECTION HEADERS ----- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a2b3e;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1.1rem;
  color: #4a627a;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- NAVBAR ----- */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(30, 109, 242, 0.08);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f3b6f, #1e6df2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1f3b4c;
  transition: 0.2s;
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1e6df2;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #1e6df2;
  cursor: pointer;
}

/* ----- HERO SECTION ----- */
.hero {
  padding: 70px 0 80px;
  background: linear-gradient(145deg, #ffffff 0%, #eef5ff 100%);
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1.2;
}

.hero-badge {
  background: #d9ebff;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e6df2;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #07253b;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-highlight {
  color: #1e6df2;
  border-bottom: 3px solid #b8d6ff;
}

.hero-content p {
  font-size: 1.1rem;
  color: #2c4b6e;
  max-width: 90%;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0.9;
  background: rgba(30, 109, 242, 0.04);
  border-radius: 48px;
  padding: 20px;
  text-align: center;
}

.hero-image i {
  font-size: 10rem;
  color: #1e6df2;
  opacity: 0.8;
}

/* Hero Video Styles */
.hero-video {
  flex: 1;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-video {
    min-height: 250px;
  }
}

/* ----- SERVICES SECTION ----- */
.services {
  padding: 80px 0;
  background: #ffffff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px 24px;
  transition: all 0.25s;
  border: 1px solid #eef2f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #cde3fe;
  box-shadow: 0 20px 30px -12px rgba(30, 109, 242, 0.12);
}

.service-icon {
  background: #eef4ff;
  width: 60px;
  height: 60px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 2rem;
  color: #1e6df2;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  color: #4b637b;
  margin-bottom: 24px;
}

.card-link {
  font-weight: 600;
  color: #1e6df2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ----- ABOUT SECTION ----- */
.about {
  padding: 80px 0;
  background: #f9fdff;
}

.about-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: #2d4a6e;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e6df2;
}

.about-image {
  flex: 0.8;
  text-align: center;
  background: #e9f2fc;
  border-radius: 48px;
  padding: 30px;
}

.about-image i {
  font-size: 7rem;
  color: #2266cc;
}

/* ----- CONTACT SECTION ----- */
.contact {
  padding: 80px 0;
  background: #ffffff;
}

.contact-flex {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  background: #fbfeff;
  border-radius: 48px;
  padding: 40px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2ff;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}

.contact-detail i {
  width: 40px;
  height: 40px;
  background: #eef4ff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e6df2;
  font-size: 1.2rem;
}

.contact-detail a {
  color: black;
  text-decoration: none;
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 32px;
  border: 1px solid #dce5f2;
  background: white;
  font-family: inherit;
  transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1e6df2;
  box-shadow: 0 0 0 3px rgba(30, 109, 242, 0.1);
}

.contact-form button {
  width: 100%;
  background: #1e6df2;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 14px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.contact-form button:hover {
  background: #0f5ad8;
}

/* ----- REDESIGNED FOOTER ----- */
.footer {
  background: #0a2b3e;
  color: #cbd5e1;
  padding: 60px 0 30px;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  background: linear-gradient(135deg, #ffffff, #b8d6ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-about p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.footer .social-icons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 0;
}

.footer .social-icons a {
  color: #94a3b8;
  font-size: 1.2rem;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.05);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer .social-icons a:hover {
  color: white;
  background: #1e6df2;
  transform: translateY(-2px);
}

.footer-nav h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.footer-contact h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li,
.footer-contact ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a,
.footer-contact ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s;
  font-size: 0.9rem;
}

.footer-nav ul li a:hover {
  color: #60a5fa;
  padding-left: 4px;
}

.footer-contact ul li {
  color: #94a3b8;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact ul li i {
  width: 28px;
  color: #60a5fa;
  font-size: 1rem;
}

.footer-contact ul li a {
  color: #94a3b8;
}

.footer-contact ul li a:hover {
  color: #60a5fa;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-bottom small {
  color: #64748b;
  font-size: 0.75rem;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-about {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-nav ul li a:hover {
    padding-left: 0;
  }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    padding: 24px;
    border-radius: 28px;
    margin-top: 16px;
    gap: 20px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content p {
    max-width: 100%;
  }
  .hero-grid,
  .about-wrap,
  .contact-flex {
    flex-direction: column;
  }
  .section-header h2 {
    font-size: 1.9rem;
  }
  .hero-image i {
    font-size: 6rem;
  }
}

@media (max-width: 550px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-stats {
    gap: 20px;
  }
}
