/* =====================================================
   🌐 GLOBAL RESET & BASE
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;

  max-width: 100vw;
  overflow-x: hidden;
}

/* Utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* =====================================================
   🧭 HEADER & NAVIGATION
===================================================== */
.main-header {
  position: absolute;
  top: 20px; left: 0; right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  background: white;
  border-radius: 50px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, opacity 0.4s ease, backdrop-filter 0.3s ease;
  will-change: transform, opacity;
}

/* Sticky Header (on scroll) */
.main-header.sticky {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
}

/* Logo */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Nav container */
.header-content {
  display: flex;
  align-items: center;
}

/* Nav list */
.header-content ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav links */
.header-content ul li a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
}

.header-content ul li a:hover,
.header-content ul li a.active {
  background-color: rgba(247, 171, 7, 0.15);
  color: #f7ab07;
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #003366;
  transition: transform 0.25s ease;
  z-index: 2000;
}

/* =====================================================
   📱 MOBILE NAVIGATION
===================================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    padding: 0.75rem;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: all 0.28s cubic-bezier(.2,.9,.24,1);
    z-index: 1500;
  }

  .header-content.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .header-content ul {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
    margin: 0;
    padding: 0.25rem 0;
  }

  .header-content ul li a {
    width: 100%;
    text-align: left;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: #003366;
    display: block;
    font-weight: 600;
    transition: all 0.22s ease;
  }

  .header-content ul li a:hover,
  .header-content ul li a.active {
    background-color: rgba(247, 171, 7, 0.08);
    color: #f7ab07;
    transform: translateX(6px);
  }

  .menu-toggle.open {
    transform: rotate(90deg);
  }
}

/* =====================================================
   🦸‍♂️ HERO SECTION
===================================================== */
.hero {
  background: url('/assets/img/10.png') no-repeat center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 5%;
  padding-top: 6rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 0;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .hero::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 5rem 1rem 2rem;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  padding-right: 10%;
}

.hero-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #eee;
  margin-top: 1rem;
}

/* Tracking Box */
.tracking-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: white;
  width: 100%;
  max-width: 500px;
}

.tracking-box input,
.tracking-box button {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.tracking-box input {
  background: white;
  color: #333;
}

.tracking-box button {
  background-color: orange;
  color: white;
  margin-top: 1rem;
  cursor: pointer;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 4rem; padding-right: 0; }
  .hero-text p { font-size: 1rem; }
  .tracking-box { width: 100%; margin-top: 1rem; }
}

.info-section {
  background: linear-gradient(90deg, #003366 0%, #003366 50%, #f7ab07 50%, #f7ab07 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.info-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.info-image img {
  width: 100%;
  max-width: 100;
  /* border-radius: 16px; */
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
  transition: transform 0.4s ease;
}

.info-image img:hover {
  transform: scale(1.03);
}

.info-text {
  flex: 1;
  color: #fff;
  max-width: 600px;
}

.info-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.info-text .btn {
  background-color: #f7ab07;
  color: #003366;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-text .btn:hover {
  background-color: #fff;
  color: #003366;
}

/* Footer strip */
.footer-strip {
  background-color: rgba(0, 0, 0, 0.1);
  margin-top: 50px;
  padding: 20px 0;
}

.icon-group {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  color: #fff;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.icon-item i {
  color: #f7ab07;
  font-size: 1.3rem;
}

/* Responsive stacking */
@media (max-width: 992px) {
  .info-content {
    flex-direction: column;
    text-align: center;
  }

  .info-image {
    order: -1; /* Moves image on top */
  }

  .info-text {
    padding: 20px;
  }

  .info-section {
    background: linear-gradient(180deg, #003366 0%, #003366 50%, #f7ab07 50%, #f7ab07 100%);
  }
}

/* =====================================================
   🟦 BLUE FOOTER STRIP (ICONS)
===================================================== */
.footer-strip {
  background-color: #003865;
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  padding: 2rem 0 5rem;
  margin-top: -120px;
}

.icon-group {
  display: flex;
  gap: 3rem;
  padding-right: 25%;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f7ab07;
  text-align: center;
}

.icon-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* =====================================================
   ⚙️ FEATURES SECTION
===================================================== */
.features-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.features-header h2 {
  font-size: 3rem;
  color: #222;
  margin-bottom: 1rem;
}

.features-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.feature-item {
  max-width: 300px;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-item i {
  font-size: 2rem;
  color: #f7ab07;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-item p { color: #555; }

@media (min-width: 768px) {
  .features-grid { flex-direction: row; justify-content: center; }
}

/* =====================================================
   🤝 TRUST SECTION
===================================================== */
.trust-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.trust-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0; left: 0;
}

.trust-overlay {
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  padding: 2rem;
  max-width: 500px;
  border-radius: 12px;
  text-align: right;
}

/* =====================================================
   💬 TESTIMONIALS
===================================================== */
.testimonials-section {
  padding: 4rem 2rem;
  background-color: #003366;
  color: #8b8b8b;
  text-align: center;
}

.testimonials-title {
  font-size: 2.5rem;
  color: #f7ab07;
  margin-bottom: 2rem;
}

.testimonials-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.testimonial-card {
  flex: 0 0 40%;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 300px;
  transition: all 0.4s ease;
}

.testimonial-card:nth-child(1) { background-color: #fef3c7; }
.testimonial-card:nth-child(2) { background-color: #e0f2fe; }
.testimonial-card:nth-child(3) { background-color: #fce7f3; }
.testimonial-card:nth-child(4) { background-color: #e7f5e9; }

.testimonial-card img {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}


.doorstep-delivery {
  background: linear-gradient(to right, rgba(0, 51, 102, 0.85), rgba(247, 171, 7, 0.85));
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.doorstep-delivery .container {
  max-width: 1200px;
  margin: 0 auto;
}

.delivery-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.delivery-text {
  flex: 1 1 500px;
}

.delivery-text h2 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.delivery-text h2 span {
  color: #F7AB07;
}

.delivery-text p {
  margin: 20px 0 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

.delivery-text .btn {
  background-color: #F7AB07;
  color: #003366;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.delivery-text .btn:hover {
  background-color: #003366;
  color: #fff;
}

.delivery-image {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
}

.delivery-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  object-fit: cover;
}

@media (max-width: 900px) {
  .delivery-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .delivery-text h2 {
    font-size: 2rem;
  }

  .delivery-image img {
    max-width: 100%;
  }
}


/* =====================================================
   🔶 HOW IT WORKS SECTION
===================================================== */
.how-it-works {
  background: linear-gradient(180deg, #f4f8fc 0%, #e9f1fb 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works .section-title {
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin-bottom: 10px;
}

.how-it-works .section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.step {
  flex: 0 0 260px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step .icon {
  background: #003366;
  color: #F7AB07;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

/* 🔹 Connectors */
.connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-connector {
  width: 260px;
  height: auto;
  max-height: 160px;
  transition: transform 0.4s ease;
}

/* 🌊 Animate the wave path */
.wave-path {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: drawWave 2s linear forwards, waveGlow 3s ease-in-out infinite alternate;
}

@keyframes drawWave {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes waveGlow {
  from {
    stroke: #F7AB07;
    filter: drop-shadow(0 0 2px #f7ab07);
  }
  to {
    stroke: #FFD966;
    filter: drop-shadow(0 0 8px #ffd966);
  }
}

/* ✨ Glowing arrow pulse */
.arrow {
  animation: pulseArrow 1.5s ease-in-out infinite alternate;
}

@keyframes pulseArrow {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 2px #f7ab07);
  }
  100% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px #ffd966);
  }
}

/* 📱 Mobile layout */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    gap: 25px;
  }

  .connector {
    width: 100%;
    transform: rotate(90deg);
    margin: -30px 0;
  }

  .step-connector {
    width: 100%;
    height: auto;
  }
}


/* =====================================================
   💰 PRICING SECTION
===================================================== */
.pricing-section {
  background-color: #f4f6fa;
  text-align: center;
  padding: 5rem 2rem;
}
.pricing-section .section-title {
  color: #003366;
  font-size: 2.5rem;
  font-weight: 700;
}
.pricing-section .section-subtitle {
  color: #666;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.pricing-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  max-width: 320px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card.featured {
  border-top: 5px solid #f7ab07;
}
.pricing-card h3 { color: #003366; font-weight: 600; margin-bottom: 1rem; }
.pricing-card .price {
  font-size: 2rem;
  color: #f7ab07;
  margin-bottom: 1rem;
}
.pricing-card ul { list-style: none; margin-bottom: 1.5rem; }
.pricing-card ul li { color: #555; margin: 0.5rem 0; }
.pricing-card button {
  background: #003366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.pricing-card button:hover { background: #f7ab07; color: #003366; }

/* =====================================================
   ❓ FAQ SECTION
===================================================== */
.faq-section {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}
.faq-item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.faq-item h4 {
  color: #003366;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.faq-item p { color: #555; }

/* =====================================================
   🚀 CTA SECTION
===================================================== */
.cta-section {
  background: linear-gradient(135deg, #003366, #0057b8);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}
.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}
.cta-button {
  background: #f7ab07;
  color: #003366;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: #fff;
  color: #003366;
}


/* =====================================================
   🧩 FOOTER
===================================================== */
.footer-strip {
  width: 100%;
  background-color: #003865;
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  padding: 2rem 0 5rem; /* more top padding to absorb the image */
  position: relative;
  z-index: 1;
  margin-top: -120px; /* optional: reduces spacing after image */
}

.footer-strip i {
  font-size: 2rem;
  color: white; /* or any color you want */
}

.site-footer {
  background-color: #0b2a4a;
  color: #fff;
  padding: 3rem 2rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-about {
  flex: 1 1 250px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-about h3 {
  color: #f7ab07;
  margin-bottom: 1rem;
}

.footer-about p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f7ab07;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: #f7ab07;
}

.footer-contact p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.footer-newsletter h4 {
  margin-bottom: 0.8rem;
  color: #f7ab07;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-form input[type="email"] {
  padding: 0.7rem;
  border: none;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.6rem;
  background-color: #f7ab07;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e09b00;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: #fff;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f7ab07;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}



/* =====================================================
   📞 HELP LINE FLOAT BUTTON
===================================================== */
.help-line {
  position: fixed;
  display: none;
  bottom: 20px; right: 20px;
  background-color: #0b2a4a;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10000;
  transition: transform 0.3s ease;
}

.help-line:hover { transform: scale(1.05); cursor: pointer; }
.help-line i { font-size: 1.2rem; color: #f7ab07; }

@media (max-width: 768px) {
  .help-line {
    padding: 0.6rem;
    border-radius: 50%;
    justify-content: center;
    width: 50px; height: 50px;
  }
  .help-line .help-text { display: none; }
  .help-line i { font-size: 1.3rem; }
}
