/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

/* NAVBAR / HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.4);
  z-index: 1000;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 200px; /* perfect for 100px header */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header nav a {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.header nav a:hover {
  color: #0a66c2;
}

.header nav a:hover {
  color: #0a66c2;
}

.btn {
  background: linear-gradient(135deg, #13405b, #13405b); /* logo green */
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  border: 3px solid #ff8e00;
}

.home-schedule-btn {
  background: linear-gradient(135deg, #13405b, #13405b);
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;

  display: block; /* change this */
  width: fit-content;
  margin: 0 auto; /* THIS centers it */

  text-decoration: none !important;
  border: 3px solid #ff8e00;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0f172a;
}

/* ================= TRUST MOVING CARDS ================= */

/* ================= FULL WIDTH TRUST MOVING CARDS ================= */
.trust-section {
  padding: 80px 0;
  background: #f1f5f9;
  overflow: hidden;
}

.trust-heading {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  color: #13405b;
}

/* MARQUEE */
.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 35s linear infinite;
}

/* CARD */
.trust-card {
  width: 320px;
  min-height: 280px;
  margin-right: 28px;
  padding: 40px;
  border-radius: 24px;
  flex-shrink: 0;
  background: white;

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15);
}

.trust-card .card-icon {
  margin-top: 24px; /* space above icon */
  align-self: center; /* center horizontally */
  width: 64px;
  height: 64px;
  opacity: 0.85;
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 18px;
}

/* COLORS */
.soft-blue {
  background: #e6f4f1;
}
.soft-green {
  background: #eef7e9;
}
.soft-yellow {
  background: #fff6e5;
}
.soft-purple {
  background: #f2edff;
}
.soft-peach {
  background: #e4d8de;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.intro-section {
  background: #ffffff;
  padding: 70px 20px 30px;
  text-align: center;
}

.intro-container {
  max-width: 900px;
  margin: 0 auto;
}

.intro-container p {
  font-size: 18px;
  line-height: 1.8;
  color: black;
}

section h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

section h3 {
  font-size: 18px;
  font-weight: 700;
}

section p {
  font-size: 18px;
  color: #475569;
}

/* BOTTOM CTA */
.bottom-cta {
  background: #0a66c2;
  color: #ffffff;
  text-align: center;
  padding: 70px 20px;
}

.bottom-cta h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bottom-cta p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* FOOTER */
/* FOOTER */
.footer {
  background: #ffff; /* Darker for modern look */
  color: black;
  padding: 60px 20px 30px;
  font-family: "Inter", sans-serif;
}

.footer-logo-wrapper {
  display: inline-block;
  padding: 4px 12px; /* space around logo */
  background: #ffffff; /* contrast color */
  border-radius: 6px; /* rounded corners */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-logo {
  max-height: 200px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.6;
  color: black;
}

.footer-col h4 {
  color: black;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: black;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: black;
  font-size: 18px;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.social-icons a:hover {
  color: #38bdf8;
  transform: translateY(-2px);
}

/* COPYRIGHT */
.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: black;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-content h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================= SECTIONS ================= */
.intro-section,
.trust-section {
  text-align: center;
  padding: 70px 20px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 40px;
  gap: 40px;
  text-align: left;
  background-color: rgb(73, 114, 111);
  color: #fff;
}
.cta-scetion .cta-image {
  flex: 1;
  text-align: right;
}
.cta-section .cta-image img {
  max-width: 700px;
  height: auto;
  border-radius: 8px;
}
.intro-container,
.trust-container,
.cta-container {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-container h2,
.cta-container h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.trust-container p,
.cta-container p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}

.trust-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.trust-features li {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ================= WHY CHOOSE SECTION ================= */

.why-choose-section {
  padding: 120px 20px;
  background: linear-gradient(to bottom, #ffffff, #f1f5f9);
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-container h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.why-choose-container p {
  font-size: 18px;
  color: black;
  max-width: 750px;
  margin: 0 auto 70px;
  line-height: 1.7;
}

/* GRID */

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CARD */

.why-item {
  background: #13405b; /* soft off-white */
  padding: 45px 35px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
  text-align: left;
  position: relative;
  color: white;
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

/* Accent bar */

.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 35px;
  height: 45px;
  width: 5px;
  background: linear-gradient(180deg, #ff8e00, #ff8e00);
  border-radius: 4px;
}

/* Typography */

.why-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: white;
}

.why-item p {
  color: white;
  font-size: 18px;
  line-height: 1.7;
}

/* ================= CTA ================= */
.cta-section .btn-primary {
  font-size: 18px;
  padding: 14px 28px;
}

.services-menu {
  position: relative;
}

.services-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;

  padding: 0;
  margin: 0;
  line-height: normal; /* ✅ fix alignment */
  display: inline-flex; /* ✅ align properly */
  align-items: center; /* ✅ vertical centering */
}

.services-btn:hover::after,
.services-menu .services-btn.active::after {
  width: 100%;
}

.services-btn:hover {
  color: #0a66c2;
}
.services-dropdown {
  position: absolute;
  top: 100%; /* ✅ directly below button */
  left: 0;
  margin-top: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.services-dropdown h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.services-dropdown ul {
  list-style: none;
  padding: 0;
}

.services-dropdown li {
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.why-section {
  padding: 100px 20px;
  background: #f8fafc;
  text-align: center;
}

.why-section h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 60px;
}

.icon {
  font-size: 18px;
  margin-bottom: 15px;
}

.services-dropdown li:hover {
  color: #0a66c2;
}

.mobile-menu-btn {
  display: none; /* hidden on desktop */
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
}

.mobile-sidebar {
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease forwards;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: #0a66c2;
}
/* ================= SIMPLE MOBILE HEADER ================= */
@media (max-width: 768px) {
  /* Hide desktop nav */
  .nav-links,
  .header-right {
    display: none !important;
  }

  /* HEADER LAYOUT FIX */
  .header {
    display: flex !important;
    justify-content: space-between !important; /* forces left + right */
    align-items: center !important;
    padding: 0 20px;
    height: 120px; /* increase if logo is 200px */
  }

  /* FORCE LEFT ALIGN */
  .header-left {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* LOGO */
  .logo-img {
    height: 200px;
    width: auto;
    display: block;
  }

  /* HAMBURGER RIGHT */
  .mobile-menu-btn {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  /* ================= MOBILE CTA FIX ================= */
  .cta-section {
    flex-direction: column; /* stack vertically */
    padding: 60px 20px;
    text-align: center;
  }

  .cta-container {
    width: 100%;
  }

  .cta-section .cta-image {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .cta-section .cta-image img {
    max-width: 100%;
    height: auto;
  }
  /* ================= MOBILE FOOTER FIX ================= */
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    height: 200px;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: flex-end;
    z-index: 9999;
  }

  .mobile-sidebar {
    width: 280px;
    height: 100vh;
    background: #ffffff;
    padding: 80px 25px 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease forwards;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #111;
    transition: 0.2s ease;
  }

  .mobile-nav a:hover {
    color: #c9a227; /* your gold accent */
  }
  .mobile-services-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    color: #111;
  }

  .mobile-services-dropdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    padding-left: 15px;
  }

  .mobile-services-dropdown a {
    font-size: 14px;
    color: #555;
  }

  .mobile-cta {
    margin-top: 30px;
    background: #c9a227;
    color: #fff !important;
    text-align: center;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
