/* Reset */
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:Arial,sans-serif;color:#0a2540;line-height:1.6;}


.logo{
  background-color: white;
  border-radius: 22px;
  width: max-content;
}

/* Navbar */
/* Navbar Base */
.navbar {
  background: #002a4a;
  padding: 12px 30px;
  border-radius: 40px;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

/* Logo */
.navbar .logo img {
  height: 30px;
  display: block;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links li a.active {
  background: #ff9800;
  color: #000;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.nav-links li a:hover {
  background: #ff9800;
  color: #000;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto; /* force right side */
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    position: relative;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 27px;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;   /* right-end se hi khulega */
    background: #002a4a;
    border-radius: 15px;
    padding: 15px 20px;
    width: auto;   /* sirf content jitna width */
    min-width: 180px; /* thoda readable banane ke liye */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: right; /* text bhi right align */
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
  }

  /* Cross effect */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}


/* Hero */
/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  background: #fff7ec;
  padding: 80px 5% 120px; /* bottom padding for badges overlap */
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 800px;
}

.hero-text .tag {
  display: inline-block;
  background: #f5f5f5;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn.light {
  background: #fff;
  border: 2px solid #ccc;
  color: #333;
}

.btn.dark {
  background: #ff9f1c;
  color: #fff;
}

.btn.light:hover {
  background: #f9f9f9;
}

.btn.dark:hover {
  background: #e88c12;
}

.hero-img {
  position: relative;
  margin-top: 30px;
}

.hero-img img {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* Badges Floating */
.badges {
  position: absolute;
  width: 100%;
  top: 75%; /* adjust for placement */
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  pointer-events: none;
}

.badge {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  pointer-events: auto;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .hero {
    padding: 60px 5% 100px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .badges {
    position: static;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}



/* Challenges */
.challenges{background:#f4f8fb;padding:4rem 2rem;text-align:center;}
.card{background:#0a2540;color:#fff;padding:2rem;border-radius:12px;max-width:"-webkit-fill-available";text-align:left;}

/* Solution */
.solution {
  background: #f4fbff; /* halka blue background */
  padding: 20px 20px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution .img img {
  width: 70%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.solution .text h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0d2543;  /* dark navy heading */
  margin-bottom: 15px;
}

.solution .text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.solution .text ul {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.solution .text ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.solution .text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00b67a; /* green tick */
  font-size: 16px;
}

.solution .btn {
  display: inline-block;
  background: #f9a825; /* mustard yellow */
  color: #000;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.15);
}

.solution .btn:hover {
  background: #e68900;
}

/* Responsive */
@media (max-width: 900px) {
  .solution-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .solution .text ul li {
    justify-content: center;
  }
}


/* Features */
.features {
  padding: 80px 5%;
  text-align: center;
  background: #fff;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.feature {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}

.feature:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.feature-icon .bg {
  width: 100%;
  height: 100%;
}

.feature-icon .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}


/* Why Us */
.why-us {
  background: #fff;
  padding: 80px 5%;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 60px;
}

.why-left .subheading {
  font-size: 14px;
  color: #555;
  letter-spacing: 1px;
}

.why-left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
}

.why-right .why-box {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
}

.why-right h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-right ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.8;
}

.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 220px;
}

.stat img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.stat h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat p {
  font-size: 14px;
  color: #555;
}


/* CTA */
.cta {
  background: #fbe6bc;   /* halka yellow background */
  text-align: center;
  padding: 80px 20px;
  border-radius: 0; /* screenshot me bilkul flat tha */
}

.cta h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0d2543;  /* dark navy text */
  margin-bottom: 15px;
}

.cta p {
  font-size: 16px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.cta .btn {
  display: inline-block;
  background: #f9a825; /* mustard yellow button */
  color: #000;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
}

.cta .btn:hover {
  background: #e68900;  /* hover darker shade */
}


/* Footer */
footer {
  background-color: #032b4d;
  color: white;
  padding: 50px 80px 20px;
  font-family: Arial, sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-left img {
  max-width: 110px;
}

.footer-left h4 {
  margin: 15px 0 10px;
  font-size: 18px;
}

.subscribe-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  margin: 15px 0;
  max-width: 350px;
}

.subscribe-box input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.subscribe-box button {
  background: #f7a600;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
  transition: 0.3s;
}

.subscribe-box button:hover {
  background: #e69500;
}

.footer-left small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #ccc;
}

/* Right Section */
.footer-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

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

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

/* Bottom Section */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  border-top: 1px solid #123a5a;
  padding: 15px 0;
  margin-top: 20px;
  color: #ccc;
  font-size: 13px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  margin: 0 8px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f7a600;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left {
    margin-bottom: 20px;
  }

  .subscribe-box {
    margin: 0 auto 15px;
  }

  .footer-right {
    justify-items: center;
  }
}
