
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }


body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
}

/* Apply fade-in animation to all elements */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards; /* Fade in over 1 second */
}

/* Define the keyframes for the fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
html {
    scroll-behavior: smooth;
  }
  
/* 🔒 Fixed header on ALL screens */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  padding: 10px 0;
}




.header-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: nowrap; /* 🔐 prevents hamburger or nav from wrapping down */
}



  


.app-logo {
  width: 180px;           /* adjust width as needed */
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 4px;        /* optional: vertical align tweak */
}






.logo-link {
    color: #333; /* Darken the logo text to match nav links */
}

/* Navigation Links */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    padding-left: 0;
    margin-left: 50px; /* ⬅️ increase this as needed */
  }

  /* Hide mobile store buttons on desktop by default */
.mobile-store-buttons { 
  display: none; 
}

  

nav ul li a {
    color: #333; /* Darken the logo text to match the link text */
    font-size: 18px;
    font-weight: bold;
    text-transform: none; /* Ensure no uppercase transformation */
}

/* Hero Section with new height and updated text */
.hero-container {
    background-color: #009A6D;
    color: white;
    text-align: center;
    padding: 100px 20px; /* Adjust height */
    margin-top: 70px; /* Adjust for the fixed header */
}

.hero-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 22px;
    margin-bottom: 40px;
}

.cta-text-spacing {
    margin-bottom: 40px; /* Add spacing between the heading and subheading */
}

.cta-buttons {
    margin-top: 20px;
}

.trial-text {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.app-store, .google-play {
    width: 200px;
}

/* How It Works Section */
#how-it-works {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
}

.step {
    display: inline-block;
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
}

.step img {
    width: 100%;
    max-width: 200px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Screenshots Section */
#screenshots {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.screenshot-gallery img {
    width: 30%;
    margin: 10px;
    border-radius: 10px;
}

/* Benefits Section */
#benefits {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
}

#benefits ul {
    list-style-type: none;
    padding: 0;
}

#benefits li {
    font-size: 18px;
    margin: 10px 0;
}

/* Testimonials Section – Modern Card Layout */
#testimonials {
  padding: 60px 20px;
  background-color: #f8f9fc;
  text-align: center;
}

#testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

/* Avatar in place of initials */
.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;   /* perfect circle */
  object-fit: cover;    /* crops to fill the circle */
  flex-shrink: 0;       /* matches the old behavior */
  display: block;
}


.testimonial-card h4 {
  margin: 0 0 10px 0;
  font-size: 1em;
  font-weight: 600;
  color: #222;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.5;
  color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.social-links a {
    color: white;
    margin: 0 10px;
}

.social-links a:hover {
    text-decoration: underline;
}


/* Features Section */
.features-container {
    text-align: center;
    background-color: #fff;
    padding: 60px 20px;
}

.features-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.features-subheading {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    width: 200px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 26px;
}

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


.features-container h2.features-title {
    font-size: 40px;
}

.features-container h2.features-title {
    font-size: 40px; /* Increase font size for the heading */
}

.features-container h2.features-title {
    font-size: 40px; /* Larger font size for the new heading */
}

.features-container h2.features-title {
    font-size: 40px; /* Increase the font size for the heading */
}

.features-container h2.features-title {
    font-size: 40px; /* Increased font size for the updated heading */
}

.features-container h2.features-title {
    font-size: 40px; /* Increase the font size for the updated heading */
}

.features-container h2.features-title {
    font-size: 40px; /* Increase font size */
}

.features-container h2.features-title {
    font-size: 40px; /* Increased font size for the heading */
}
/* Alternating Feature Sections */

.feature-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.alt-bg {
    background-color: #f4f8fc; /* Soft alternate background color */
}

.feature-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-container.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    text-align: left;
}

.feature-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-text p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.5;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-image img {
    max-width: 50%;            /* This makes your images half their size */
    height: auto;
    display: block;            /* Centers the image clearly */
    margin: 0 auto;            /* Automatically adds equal margins on both sides */
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    .feature-container,
    .feature-container.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text {
        text-align: center;
    }
}
.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f9f9f9; /* Very light grey */
  padding: 60px 20px;
  color: #000; /* Set text to black */
  text-align: center;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1 1 200px;
  margin: 20px;
}

.stat-icon {
    width: 50px;         /* increase as needed */
    max-height: 60px;    /* keep it from exceeding available vertical space */
    margin-bottom: 10px;
    object-fit: contain; /* ensures it doesn't stretch */
  }
  

.stat-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-number {
    font-size: 42px;      /* slightly smaller if needed */
    margin-bottom: 5px;   /* less space below number */
  }
  
  .stat-label {
    font-size: 16px;      /* optional: slightly reduce text size for balance */
  }
  

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

.header-app-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.header-store-button {
    height: 40px;
    width: auto;
}

/* New Hero Section (Split Layout) */
/* Hero Section (Split Layout) */
.hero-section {
  /* ✅ Modern light-green layered gradient */
  background:
    radial-gradient(900px 450px at -10% -10%, #ecfbf3 0%, rgba(236,251,243,0) 60%),
    radial-gradient(700px 350px at 110% 10%, #e0f6ec 0%, rgba(224,246,236,0) 60%),
    linear-gradient(135deg, #f6fffb 0%, #e9f8f2 45%, #ddf1e7 100%);
  background-color: #eaf8f1; /* fallback */
  padding: 100px 40px;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

  
  .hero-left {
    flex: 1;
    padding-right: 40px;
  }
  
  .hero-left h1 {
    font-size: 25px;          /* reduced to fit 2 lines */
    max-width: 520px;         /* keeps it from stretching too wide */
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}


  
  .hero-rating {
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
  }
  
  .hero-left .sub-heading {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  
  .store-button {
    height: 40px;
    width: auto;
    max-width: 140px;
  }
  
  
  .hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
  }
  
  .hero-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px; /* more space between the two phones */
    padding: 20px 0;
  }
  
  .phone {
    height: 400px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .phone-left {
    transform: rotate(-6deg);
    z-index: 2;
  }
  
  .phone-right {
    transform: rotate(6deg);
    z-index: 2;
  }
  
  .swirl {
    position: absolute;
    left: 51%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;            /* Adjust width for better size */
    height: auto;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
  }
  
  
  
  
  
  @media (max-width: 768px) {
    .hero-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-left {
      padding-right: 0;
    }
  
    .hero-images {
      margin-top: 40px;
      gap: 14px;  
    }
  
    /* Keep both phones within the viewport width on small screens */
.phone {
  width: 42vw;     /* two phones = 84vw */
  max-width: 180px;
  height: auto;    /* let height follow width to avoid overflow */
}
/* Reduce spacing between the two phones on mobile */
.hero-images { gap: 14px; }

  
    .swirl {
      display: none;
    }
  }
  .free-trial-note {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-top: 6px;
    text-align: center;
}


.store-row {
    display: flex;
    gap: 10px;
}

.header-store-button {
    height: 40px;
    width: auto;
}
.hero-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .faq-wrapper {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .faq-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .faq-subtext {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
  }
  
  .contact-link {
    font-weight: bold;
    color: #1a1a66;
    text-decoration: underline;
  }
  
  .faq-accordion {
    text-align: left;
    margin-top: 20px;
  }
  
  .faq-accordion details {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
  }
  
  .faq-accordion summary {
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .faq-accordion p {
    margin-top: 10px;
    color: #333;
    font-size: 16px;
  }
  
  
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Animate images from the side they're positioned */
 /* Animate feature images when scrolled into view */
.feature-container:not(.reverse) .feature-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.feature-container.reverse .feature-image {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.feature-container:not(.reverse) .feature-image.in-view,
.feature-container.reverse .feature-image.in-view {
  opacity: 1;
  transform: translateX(0);
}

.privacy-bg {
  background-color: #f4f4f4;
  margin-top: -40px; /* this overlaps the logo’s transparent bottom */
  padding-top: 40px;
  position: relative;
  z-index: 0;
}

/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Styles */
/* Mobile Styles */
@media (max-width: 768px) {
  .nav-center {
    flex-direction: column;
    align-items: flex-end;
    position: relative;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 20;
  }
  

  /* Mobile dropdown: glass panel (full width, not full screen) */
/* Mobile dropdown: glass panel (full width, not full screen) */
/* Mobile dropdown: full-width glass panel (height = content) */
.nav-links {
  display: none;
  flex-direction: column;

  /* full screen width, but not full height */
  position: fixed;
  top: 72px;          /* just below your fixed header */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;

  padding: 16px 20px;
  border-radius: 0 0 16px 16px;

  /* glassmorphism */
  background: rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}






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

  .nav-links li {
    margin: 8px 0;     /* tighter vertical spacing */
    line-height: 1.2;  /* keeps the block more compact */
  }
  

  /* Show the store buttons at the bottom of the mobile dropdown */
  .nav-links .mobile-store-buttons {
    display: flex;
    flex-direction: row;          /* side-by-side */
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
  }
  

/* Make the buttons a good touch size */
.nav-links .mobile-store-buttons img {
  height: 44px;                 /* slightly larger than header buttons */
  width: auto;
}
.nav-links .mobile-store-buttons a {
  display: block;
  text-align: center;
}


  /* ✅ Hide app store buttons + free trial on mobile */
  .header-app-buttons {
    display: none !important;
  }

  @media (max-width: 768px) {
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center; /* ✅ aligns logo and hamburger vertically */
      padding: 10px 20px;
      position: relative;
    }
  
    .logo-link {
      position: relative;
      margin: 0;
      transform: none;
      left: auto;
    }
  
    .hamburger {
      position: relative;
      right: 0;
      top: 0;
      z-index: 20;
      font-size: 28px;
      cursor: pointer;
    }
  }
  
  /* Larger logo on small screens */
@media (max-width: 600px) {
  .app-logo {
    width: 170px;
    height: auto;
  }
}


  /* Offset page content for fixed header */
body { padding-top: 72px; }

  

  
  
  
}




