:root {
  --primary-blue: #007bff;
  --dark-blue: #0f172a;
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-main);
}

/* --- Top Utility Bar --- */
.utility-bar {
  background: #fff;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--primary-blue);
  border-bottom: 1px solid #eee;
}
.utility-bar a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

/* --- Main Header (Sticky) --- */
header {
  background-color: var(--primary-blue);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  z-index: 2001;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

#menu-toggle {
  display: none;
}

.hamburger-btn {
  display: block;
  cursor: pointer;
  z-index: 2001;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: var(--dark-blue);
  display: flex;
  flex-direction: column;
  padding: 100px 30px;
  gap: 20px;
  transition: 0.4s;
  list-style: none;
  z-index: 1999;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

#menu-toggle:checked ~ .nav-links {
  right: 0;
}

#menu-toggle:checked ~ .hamburger-btn span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
#menu-toggle:checked ~ .hamburger-btn span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .hamburger-btn span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.get-started-btn {
  background: white;
  color: var(--primary-blue);
  padding: 16px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

/* --- Hero Section with Continuous Carousel --- */
.hero {
  position: relative;
  padding: 80px 20px 120px;
  text-align: center;
  color: white;
  overflow: hidden;
  min-height: 450px;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroLoop 9s infinite;
}

.hero-carousel img:nth-child(1) {
  animation-delay: 0s;
}
.hero-carousel img:nth-child(2) {
  animation-delay: 3s;
}
.hero-carousel img:nth-child(3) {
  animation-delay: 6s;
}

@keyframes heroLoop {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  43% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero h1 {
  font-size: 32px;
  max-width: 600px;
  margin: 0 auto 15px;
  line-height: 1.2;
  position: relative;
}
.hero p {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 30px;
  opacity: 0.9;
  position: relative;
}
.explore-btn {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* --- Stats Row --- */
.stats-wrapper {
  max-width: 1100px;
  margin: -60px auto 0;
  padding: 0 20px;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 10;
}
.stat-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.stat-card h2 {
  color: var(--primary-blue);
  font-size: 36px;
  margin-bottom: 10px;
}
.stat-card.dark {
  background: var(--dark-blue);
  color: white;
  border-bottom: 4px solid var(--primary-blue);
}
.stat-card.dark h2 {
  color: white;
}

/* --- How It Works --- */
.how-it-works-section {
  padding: 80px 5%;
  text-align: center;
  background-color: var(--white);
}
.how-it-works-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-icon-box {
  width: 90px;
  height: 90px;
  background-color: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.how-icon-box .material-symbols-outlined {
  font-size: 40px;
  color: var(--primary-blue);
}
.how-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.how-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Features Grid --- */
.features-section {
  background: var(--bg-light);
  padding: 80px 20px;
  text-align: center;
}
.features-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.f-card {
  background: var(--dark-blue);
  color: white;
  padding: 40px 30px;
  text-align: left;
  border-radius: 4px;
}
.f-card .material-symbols-outlined {
  font-size: 44px;
  margin-bottom: 20px;
  color: white;
}
.f-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}
.f-card p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
}

/* --- Trust Indicators --- */
.trust-indicators {
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-box {
  border: 1px solid #007bff;
  padding: 30px;
  text-align: center;
  border-radius: 4px;
}
.trust-box h2 {
  color: var(--primary-blue);
  font-size: 32px;
  margin-bottom: 5px;
}
.trust-box p {
  color: var(--text-light);
  font-size: 14px;
}

/* --- Testimonials Slider --- */
.testimonials-section {
  padding: 80px 5%;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}
.testimonials-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.testimonials-section p.sub {
  color: var(--text-light);
  margin-bottom: 50px;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 350px;
}
.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px;
  animation: testimonialFade 15s infinite;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 5s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 10s;
}

@keyframes testimonialFade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  5% {
    opacity: 1;
    visibility: visible;
  }
  28% {
    opacity: 1;
  }
  33% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0;
  }
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 20%;
  object-fit: cover;
  margin-bottom: 20px;
}
.testimonial-text {
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 20px;
}
.testimonial-author {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-meta {
  color: var(--text-light);
  font-size: 12px;
  margin-top: 5px;
}

/* --- Waitlist --- */
.waitlist-section {
  padding: 100px 5%;
  background: var(--bg-light);
  display: flex;
  justify-content: center;
}
.waitlist-card {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 100%;
}
.waitlist-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.waitlist-card p {
  color: var(--text-light);
  margin-bottom: 30px;
}
.waitlist-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}
.join-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

/* --- Footer --- */
footer {
  background: var(--dark-blue);
  color: white;
  padding: 60px 5% 30px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.footer-socials img {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}
.copyright {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
}
.disclaimer {
  font-size: 11px;
  opacity: 0.5;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- DESKTOP LAYOUT --- */
@media (min-width: 992px) {
  .utility-bar {
    padding: 8px 10%;
  }
  header {
    padding: 15px 10%;
  }
  .hamburger-btn {
    display: none;
  }
  .nav-links {
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    gap: 30px;
  }
  .nav-links li a {
    font-size: 14px;
  }
  .hero {
    text-align: left;
    padding-left: 10%;
    padding-right: 10%;
  }
  .hero h1,
  .hero p {
    margin-left: 0;
  }
  .stats-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(3, 2fr);
  }
  .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
  }
}
:root {
  --primary-blue: #007bff;
  --dark-blue: #0f172a;
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --accent-red: #e57373;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top Utility Bar --- */
.utility-bar {
  background: #fff;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--primary-blue);
  border-bottom: 1px solid #eee;
}
.utility-bar a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

/* --- Header & Navigation --- */
header {
  background-color: var(--primary-blue);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  color: var(--white);
}

.logo-img {
  height: 60px;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.get-started-btn {
  background: var(--white);
  color: var(--primary-blue) !important;
  padding: 10px 20px;
  border-radius: 6px;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2050;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: 0.4s;
  border-radius: 2px;
}
#menu-toggle {
  display: none;
}

.hamburger-btn {
  display: block;
  cursor: pointer;
  z-index: 2001;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: var(--dark-blue);
  display: flex;
  flex-direction: column;
  padding: 100px 30px;
  gap: 20px;
  transition: 0.4s;
  list-style: none;
  z-index: 1999;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

#menu-toggle:checked ~ .nav-links {
  right: 0;
}

#menu-toggle:checked ~ .hamburger-btn span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
#menu-toggle:checked ~ .hamburger-btn span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .hamburger-btn span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* --- Mobile Menu Overlay --- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    padding: 120px 0%;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background: var(--dark-blue);
    flex-direction: column;
    justify-content: top;
    transition: 0.4s ease-in-out;
    z-index: 2030;
  }

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

  .nav-links a {
    color: white;
    font-size: 18px;
  }

  .get-started-btn {
    background: white;
    color: var(--primary-blue) !important;
  }

  .hamburger {
    display: flex;
  }

  /* Animation to X */
  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: white;
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: white;
  }
}

/* --- Who We Are Section --- */
.about-hero {
  padding: 80px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.about-hero .subtext {
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.value-card {
  background: var(--white);
  padding: 40px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.value-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* --- Problem Grid (2x2) --- */
.problem-section {
  padding: 100px 0;
}
.problem-section h2 {
  text-align: center;
  margin-bottom: 10px;
}
.problem-intro {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.problem-card {
  background: #f4f7ff;
  padding: 40px;
  border-radius: 8px;
}

.problem-card .material-symbols-outlined {
  color: var(--accent-red);
  font-size: 60px;
  margin-bottom: 20px;
}

.problem-card h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* --- Mission Section --- */
.mission-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}
.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.mission-content h2 {
  margin-bottom: 20px;
}
.mission-content > p {
  margin-bottom: 60px;
  font-size: 18px;
}

.story-box {
  background: var(--white);
  padding: 60px;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-box h5 {
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.story-box p {
  margin-bottom: 20px;
}

/* --- Footer --- */
footer {
  background: var(--dark-blue);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.socials img {
  width: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.disclaimer {
  font-size: 11px;
  opacity: 0.5;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.5;
}

/* Responsive Grids */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .story-box {
    padding: 30px;
  }
}
:root {
  --primary-blue: #007bff;
  --dark-blue: #0f172a;
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --accent-red: #e57373;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden; /* Prevents slight scrollbar during animations */
}

/* --- REVEAL ON SCROLL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Top Utility Bar --- */
.utility-bar {
  background: #fff;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--primary-blue);
  border-bottom: 1px solid #eee;
}
.utility-bar a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

/* --- Main Header --- */
header {
  background-color: var(--primary-blue);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  z-index: 2001;
}

.logo-img {
  height: 60px;
  width: auto;
}

#menu-toggle {
  display: none;
}

.hamburger-btn {
  display: block;
  cursor: pointer;
  z-index: 2001;
}
.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: var(--dark-blue);
  display: flex;
  flex-direction: column;
  padding: 100px 30px;
  gap: 20px;
  transition: 0.4s;
  list-style: none;
  z-index: 1999;
  align-items: flex-start;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

#menu-toggle:checked ~ .nav-links {
  right: 0;
}

#menu-toggle:checked ~ .hamburger-btn span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
#menu-toggle:checked ~ .hamburger-btn span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked ~ .hamburger-btn span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.get-started-btn {
  background: white;
  color: var(--primary-blue);
  padding: 12px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}

/* --- Contact Page Specific Styles --- */
.contact-hero {
  padding: 80px 5% 40px;
  text-align: center;
  background-color: var(--white);
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}
.contact-hero p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.info-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-card .icon-box {
  background: var(--primary-blue);
  color: white;
  padding: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.info-card p,
.info-card a {
  color: var(--text-light);
  font-size: 14px;
  text-decoration: none;
}
.info-card a:hover {
  color: var(--text-main);
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.contact-form {
  display: grid;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.submit-btn {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--dark-blue);
}

/* --- Footer --- */
footer {
  background: var(--dark-blue);
  color: white;
  padding: 60px 5% 30px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.footer-socials img {
  width: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.copyright {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 10px;
}
.disclaimer {
  font-size: 11px;
  opacity: 0.5;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .hamburger-btn {
    display: none;
  }
  .nav-links {
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    gap: 30px;
    align-items: center;
  }
  .nav-links li a {
    font-size: 14px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr 2fr;
  }
  .contact-info-grid {
    align-content: start;
  }
}
:root {
  --primary-blue: #007bff;
  --dark-blue: #0f172a;
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --accent-red: #e57373;
}

/* --- Reveal On Scroll Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid items */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden; /* Prevents tiny horizontal scrolls during animation */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Top Utility Bar --- */
.utility-bar {
  background: #fff;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--primary-blue);
  border-bottom: 1px solid #eee;
}
.utility-bar a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

/* --- Header & Navigation --- */
header {
  background-color: var(--primary-blue);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  color: var(--white);
}

.logo-img {
  height: 60px;
}

/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.get-started-btn {
  background: var(--white);
  color: var(--primary-blue) !important;
  padding: 12px 12px;
  border-radius: 6px;
}

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2050;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: 0.4s;
  border-radius: 2px;
}

/* --- Mobile Menu Overlay --- */
@media (max-width: 768px) {
  .nav-links.active {
    right: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: var(--dark-blue);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 20px;
    transition: 0.4s;
    list-style: none;
    z-index: 1999;
  }

  .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }

  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  #menu-toggle:checked ~ .hamburger-btn span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  #menu-toggle:checked ~ .hamburger-btn span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked ~ .hamburger-btn span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .get-started-btn {
    background: white;
    color: var(--primary-blue);
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
  }
  .hamburger {
    display: flex;
  }

  /* Animation to X */
  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: white;
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: white;
  }
}

/* --- Who We Are Section --- */
.about-hero {
  padding: 80px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.about-hero .subtext {
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.value-card {
  background: var(--white);
  padding: 40px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.value-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* --- Problem Grid (2x2) --- */
.problem-section {
  padding: 100px 0;
}
.problem-section h2 {
  text-align: center;
  margin-bottom: 10px;
}
.problem-intro {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 60px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.problem-card {
  background: #f4f7ff;
  padding: 40px;
  border-radius: 8px;
}

.problem-card .material-symbols-outlined {
  color: var(--accent-red);
  font-size: 60px;
  margin-bottom: 20px;
}

.problem-card h4 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* --- Mission Section --- */
.mission-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}
.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.mission-content h2 {
  margin-bottom: 20px;
}
.mission-content > p {
  margin-bottom: 60px;
  font-size: 18px;
}

.story-box {
  background: var(--white);
  padding: 60px;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-box h5 {
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.story-box p {
  margin-bottom: 20px;
}

/* --- Footer --- */
footer {
  background: var(--dark-blue);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}
.socials img {
  width: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.disclaimer {
  font-size: 11px;
  opacity: 0.5;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.5;
}

/* Responsive Grids */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .story-box {
    padding: 30px;
  }
}
:root {
  --primary-blue: #007bff;
  --dark-blue: #0f172a;
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --accent-red: #e57373;
}

/* --- Reveal Animation Styles --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden; /* Prevents horizontal scroll during animations */
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Utility Bar --- */
.utility-bar {
  background: #fff;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--primary-blue);
  border-bottom: 1px solid #eee;
}
.utility-bar a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
}

/* --- Header & Navigation --- */
header {
  background-color: var(--primary-blue);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  color: var(--white);
}

.logo-img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main); /* Same hover color as previous designs */
}

.get-started-btn {
  background: var(--white);
  color: var(--primary-blue) !important;
  padding: 12px 12px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
}

/* --- Mobile Navigation Fixes --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: 0.4s;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: var(--dark-blue);
    flex-direction: column;
    padding: 100px 30px;
    gap: 20px;
    transition: 0.4s ease-in-out;
    z-index: 2050;
    align-items: flex-start; /* Aligns content left */
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    color: white;
    font-size: 16px;
    width: 100%;
    text-align: left;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* --- Service Hero --- */
.service-hero {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.service-hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}
.service-hero p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Smart Tools Grid --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding-bottom: 80px;
}

.tool-card {
  background: #f4f7ff;
  padding: 35px;
  border-radius: 8px;
  transition: 0.3s;
}

.tool-card h3 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 12px;
}
.tool-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* --- Feature Breakdown Section --- */
.breakdown-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}

.breakdown-header {
  text-align: center;
  margin-bottom: 60px;
}
.breakdown-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.breakdown-category {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.breakdown-category h4 {
  margin-bottom: 25px;
  font-size: 18px;
  color: var(--text-main);
  border-left: 4px solid var(--primary-blue);
  padding-left: 15px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.feature-item .material-symbols-outlined {
  color: var(--primary-blue);
  font-size: 18px;
}

/* --- Footer --- */
footer {
  background: var(--dark-blue);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 15px;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.socials img {
  width: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.disclaimer {
  font-size: 11px;
  opacity: 0.5;
  max-width: 800px;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .tools-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }
  .breakdown-category {
    padding: 25px;
  }
}

/* --- Hover effects for interactive boxes --- */
.stat-card,
.value-card,
.story-box,
.problem-card,
.tool-card,
.f-card,
.trust-box,
.testimonial-card,
.waitlist-card,
.breakdown-category,
.how-icon-box {
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease, filter 0.18s ease;
  will-change: transform, box-shadow, filter;
}

/* Apply interactive hover styles only on hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  .stat-card:hover,
  .value-card:hover,
  .story-box:hover,
  .problem-card:hover,
  .tool-card:hover,
  .f-card:hover,
  .trust-box:hover,
  .testimonial-card:hover,
  .waitlist-card:hover,
  .breakdown-category:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.16);
    cursor: pointer;
  }

  .how-icon-box:hover {
    transform: translateY(-6px) scale(1.04);
    background-color: #eaf2ff;
  }

  .tool-card:hover {
    transform: translateY(-8px) scale(1.03);
  }
  .f-card:hover {
    filter: brightness(1.06);
  }
}
