:root {
      --bg-grad-1: #0f172a;
      --purple: #2a777a;
      --orange: #f7620b;
      --red: #d81f26;
      --card-bg: rgba(255, 255, 255, 0.04);
      --glass: rgba(255, 255, 255, 0.06);
      --muted: #21252bff;
      --max-width: 1600px;
      --radius: 18px;
    --font-light: 'Product Sans Light';
    --font-regular: 'Product Sans Regular';
    --font-medium: 'Product Sans Medium';
    --font-bold: 'Product Sans Bold';
    --font-black: 'Product Sans Black';
    }

    /* Page basics */
    * {
      box-sizing: border-box
    }

    body {
      margin: 0;
      background: linear-gradient(180deg, #eaf6f6 0%, #f7fbfc 40%);
      color: #0f172a;
      line-height: 1.55
    }

    a {
      color: inherit;
      text-decoration: none
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px
    }

    /* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: white;
  padding: 1px 0;
  backdrop-filter: blur(6px);
  width: 100%;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}


/* Navigation buttons */
nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav li a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  color: #2a777a;
  text-decoration: none;
  white-space: nowrap;
}

nav li a:hover {
  background: linear-gradient(90deg, rgba(42, 119, 122, 0.12), rgba(0, 0, 0, 0.02));
}

/* Special button styles */
.plan-btn {
  background: var(--purple);
  color: white;
  font-weight: 700;
}
.plan-btn,
.book-btn {
  font-weight: normal !important; 
  text-transform: none !important; 
  font-size: 16px;
}

.book-btn {
  background: var(--orange);
  color: white;
  font-weight: 700;
}

@media (max-width: 500px) {
  header {
    padding: 0 0; 
  }

  .nav-wrap {
    flex-direction: column;
    align-items: center;
    gap: 0; 
  }



  nav ul {
    flex-direction: row; 
    gap: 8px;
  }

  nav li a {
    padding: 6px 10px; 
    font-size: 12px;
    border-radius: 8px;
  }
}



   /* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 70vh;
  background: #f8ffff;
  font-family: Arial, Helvetica, sans-serif;
  /* Normal clean font */

}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  width: 100%;
  text-align: center;
}


.hero-card h1 {
  font-size: 2rem;
  color: var(--purple);
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0px;
}

.hero-card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-card {
    padding: 25px 18px;
  }

  .hero-card h1 {
    font-size: 1.4rem;
  }

  .hero-card h4 {
    font-size: 1rem;
  }

  .hero-card h6 {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

    /* Features */
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px;
      margin: 50px auto;
      max-width: 1200px;
      text-align: center;
    }

    .features .card {
      background: #2a777a;
      border: 1.5px solid #eaeaea;
      border-radius: 18px;
      padding: 26px 18px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      width: 100%;
      max-width: 320px;
      height: 100%;
      min-height: 200px;

    }

    /* Hover effect */
    .features .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    }

    .features .card:nth-child(4) {
      grid-column: 2 / 3;
    }

    .features .card:nth-child(5) {
      grid-column: 3 / 4;
    }

    /* Responsive Layout */
    @media (max-width: 1000px) {
      .features {
        grid-template-columns: repeat(2, 1fr);
      }

      .features .card {
        grid-column: auto;
      }
    }

    @media (max-width: 500px) {
      .features {
        grid-template-columns: 1fr;
      }

      .features .card {
        grid-column: auto;
        min-height: 280px;
      }
    }

    .card {
      background: linear-gradient(180deg, #ffffff, #fbffff);
      padding: 32px;
      border-radius: 18px;
      box-shadow: 0 12px 30px rgba(13, 24, 31, 0.06);
      min-height: 200px;
      width: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .card .icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, var(--orange));
      color: #fff;
      font-size: 22px;
    }

    .card h4 {
      font-size: 17px;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    #process.icon {
      background: linear-gradient(180deg, var(--orange), #ff7a00);
      color: #fff;
    }

    #process .card p {
      color: var(--muted);
      font-size: 15px;
      margin-top: 6px;
    }

    .title.center {
      text-align: center;
    }

    /* Footer */
    footer {
      padding: 30px 0;
      background: linear-gradient(180deg, #2a777a 0%, #2a777a 100%);
      color: #fff
    }

    .footer-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap
    }

    .muted {
      color: var(--muted)
    }

    .center {
      text-align: center
    }

    /* Timeline container */
    .timeline {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .step {
      display: flex;
      align-items: flex-start;

    }

    .step:hover {
      transform: translateY(-5px);
    }

    .two-col-section {
      padding: 50px 0;
      background-color: #f7fbfc;
    }

    .two-col-wrap {
      display: flex;
      max-width: var(--max-width);
      margin: 0 auto;
      background-color: #fff;
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      overflow: hidden;
    }

    

    

    .container {
      padding-left: 12px;
      padding-right: 12px;
    }

    .main-container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 100vh;
      padding: 20px;
    }


    /* Section */
    .pricing-section {
      text-align: center;
      padding: 60px 20px;
      background: #fff;
    }

    .pricing-section h2 {
      color: var(--purple);
      font-size: 1.8rem;
      margin-bottom: 6px;
      font-weight: 700;
    }

    .pricing-section p {
      color: var(--muted);
      margin-bottom: 40px;
      font-size: 0.95rem;
    }

    .pricing-container.no-wrap {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 12px;
      scrollbar-width: none;
    }

    .pricing-container.no-wrap::-webkit-scrollbar {
      display: none;
    }

    .plan-card {
      flex: 0 0 340px;
      background: #fff;
      border: 1.5px solid #eaeaea;
      border-radius: 18px;
      padding: 28px 24px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      text-align: left;
      transition: all 0.3s ease;
    }

    .plan-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    }

    .plan-card.popular {
      border: 2px solid var(--orange);
      background: #fffdf9;
    }

    .plan-card .tag {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 500;
      margin-left: 6px;
    }

    .price {
      font-size: 1rem;
      font-weight: 700;
      color: var(--orange);
      margin: 12px 0 18px;
    }

    .price span {
      font-size: 1.6rem;
      font-weight: 800;
    }


    /* List */
    .plan-card ul {
      list-style: none;
      padding: 0;
      margin-bottom: 24px;
    }

    .plan-card ul li {
      color: #333;
      font-size: 0.95rem;
      margin: 8px 0;
    }

    .plan-card ul li.strike {
      color: var(--muted);
      text-decoration: line-through;
    }

    .plan-card:nth-child(odd) .btn {
      background: linear-gradient(90deg, var(--orange));
      color: #fff;
    }

    .plan-card:nth-child(even) .btn {
      background: linear-gradient(90deg, var(--purple));
      color: #fff;
    }

    /* Hover effects */
    .plan-card:nth-child(odd) .btn:hover {
      transform: scale(1.05);
      background: linear-gradient(90deg, var(--purple));
    }

    .plan-card:nth-child(even) .btn:hover {
      transform: scale(1.05);
      background: linear-gradient(90deg, var(--orange));
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 10px 22px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      transition: 0.3s ease;
      cursor: pointer;
    }

    .btn:nth-child(odd) {
      background: linear-gradient(90deg, var(--purple));
    }

    /* Even buttons - orange */
    .btn:nth-child(even) {
      background: linear-gradient(90deg, var(--orange));
    }

    /* Hover effect for odd buttons */
    .btn:nth-child(odd):hover {
      transform: scale(1.05);
      background: linear-gradient(90deg, var(--orange));
    }

    /* Hover effect for even buttons */
    .btn:nth-child(even):hover {
      transform: scale(1.05);
      background: linear-gradient(90deg, var(--purple));
    }
@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .plan-card {
    width: 90%;
    max-width: 400px;
  }
}


.video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}

#myVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* Maintain aspect ratio */
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* dark transparent overlay */
  z-index: 1;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  width: 90%;
}

.video-content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.video-content p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .video-content h1 {
    font-size: 1.5rem;
  }

  .video-content p {
    font-size: 0.9rem;
  }
}



#Refund {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.timeline {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center; /* center steps */
  gap: 25px;
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f9f9f9;
  padding: 18px 24px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 700px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.step .num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 98, 7, 0.12);
}

.step .body {
  flex: 1;
}

.step .body h3 {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 15px;
  }

  .step .num {
    margin-bottom: 8px;
  }
}


.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

/* Popup box */
.popup-box {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  max-width: 90%;
  width: 1000px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.4s ease;
}

/* Close button */
.close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Responsive iframe for Calendly */
#calendly-container {
  max-width: 100%;
  width: 100%;
  height: 500px;
}

@media (max-width: 768px) {
  .popup-box {
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
  }
  #calendly-container {
    height: 450px;
  }
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}


.refund .container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; 
  gap: 28px;
  margin-top: 18px;
}

.refund ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 10px;
  margin: 0;
  line-height: 1.6;
}

.refund ul li {
  font-size: 15px;
  margin-bottom: 8px;
}
 .refund {
      font-family: 'Product Sans', Arial, Helvetica, sans-serif;
      font-weight: 400;
    }
/* Responsive design for mobile */
@media (max-width: 768px) {
  .refund .container > div > div > div {
    height: auto; /* auto height for smaller screens */
  }
}

/* Accordion container */
.accrodion {
  border: 0px solid #ccc;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

/* Accordion title (question) */
.accrodion-title {
  cursor: pointer;
  padding: 10px 10px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #333;
  transition: background 0.3s;
}

.accrodion-title:hover {
  background: #f7f7f7;
}

/* Accordion content (answer) */
.accrodion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.accrodion-content .inner {
  padding: 15px 20px;
  color: #444;
}


@media (max-width: 768px) {

  .faq-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
    overflow: hidden;
  }

  .faq-wrap .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

 
  .faq-wrap .title-style-1 {
    order: 1 !important;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    white-space: normal !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    display: block;
    width: 100%;
    max-width: 95%;
    margin: 0 auto 20px auto;
    padding: 0 10px;
    color: #333;
    position: relative;
    z-index: 5;
  }

  
  .faq-wrap figure {
    order: 2 !important;
    width: 100%;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 1;
  }

  .faq-wrap .cta-box {
    order: 3 !important;
    position: relative !important;
    z-index: 2;
    width: 90%;
    background: rgba(42, 119, 122, 0.1);
    color: #000;
    padding: 25px 20px;
    border-radius: 12px;
    margin: 0 0 30px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .faq-wrap .cta-box h2 {
    font-size: 20px;
    line-height: 1.5;
    color: #2a777a;
    margin: 10px 0;
    word-wrap: break-word;
  }

  .faq-wrap .cta-box img {
    width: 50px;
    margin-bottom: 10px;
  }

 
  .faq-wrap .accrodion-box {
    order: 4 !important;
    width: 100%;
    margin-top: 10px;
    padding: 0 0px;
  }

  .accrodion {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .accrodion-title h4 {
    font-size: 16px;
    padding: 14px;
    line-height: 1.4;
  }

  .accrodion-content p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 14px 14px;
  }
}
