    /* ---------- Reset ---------- */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html,body { height: 100%; scroll-behavior: smooth; }
    body {
      font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color: #222;
      background: #f6f7fb;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ---------- Header ---------- */
    .main-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      padding: 18px 0;
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
      transition: all 0.3s ease-in-out; 
    }

    .main-header.scrolled {
      background: #32d458 !important;
      border-color: transparent;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      backdrop-filter: none;
    }

    .main-header .nav-link {
      color: #111;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.3px;
      transition: color 0.2s ease;
    }

    .main-header.scrolled .nav-link {
      color: #fff;
    }

    .main-header .btn-outline-success {
      border-radius: 22px;
      font-weight: 700;
      padding: 8px 16px;
    }

    .btn-adjust{
          float: left;
    }
    
    
    @media (max-width: 520px) {
     .btn-adjust{
          float: none;
    }
    }

    /* ---------- HERO / BANNER ---------- */
    #slider-section {
      position: relative;
      width: 100%;
      height: 110vh;
      min-height: 680px;
      overflow: hidden;
      display: block;
    }

    .single-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      background: linear-gradient(180deg,#f7fbf9,#eaf7f0);
    }
    .navbar-nav .nav-link,
.navbar-nav .btn {
  cursor: pointer;
}


    /* ------- Background layers ------- */
    .mouse-bg {
      position: absolute;
      background-repeat: no-repeat;
      background-size: contain;
      will-change: transform;
      pointer-events: none;
      transition: transform 0.2s ease-out;
    }

    #background-1 {
      background-image: url(assets/img/1.webp);
      width: 30%;
      height: 50%;
      z-index: 1;
    }

    #background-2 {
      background-image: url(assets/img/2.webp);
      width: 6%;
      height: 30%;
      top: 10%;
      right: 0px;
      z-index: 2;
    }

    #background-4 {
      background-image: url(assets/img/4.webp);
      width: 25%;
      height: 55%;
      bottom: 0;
      right: 0px;
      z-index: 4;
      background-position: bottom;
    }

    #background-5 {
      background-image: url(assets/img/5.webp);
      width: 10%;
      height: 13%;
      bottom: 13%;
      left: 3%;
      z-index: 5;
    }

    #background-6 {
      background-image: url(assets/img/6.webp);
      width: 7%;
      height: 40%;
      top: 164px;
      left: 57%;
      z-index: 6;
    }

    /* ---------- Slide caption ---------- */
    .slide-caption {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      align-items: center;
      padding-top: 70px;
      pointer-events: none;
    }

    .slide-caption .container {
      max-width: 1200px;
    }

    .slide-text {
      pointer-events: auto;
    }

    .slide-text h2 {
  font-size: 34px;
  line-height: 1.2; /* thoda increase for better readability */
  color: #0b2540;
  margin-bottom: 18px;
  font-weight: 800;
  text-align: left;
  text-justify: inter-word; /* evenly distribute words */
  word-spacing: 1px; /* thoda balance karta hai extra gaps */
}


    .slide-text h2 span { color: #28a745; }

    .slide-text p {
      max-width: 700px;
      color: #233b54;
      font-size: clamp(14px, 1.25vw, 18px);
      margin-bottom: 22px;
    }

    .slider-btn {
      display: table-cell;
      pointer-events: auto;
      text-decoration: none;
      border: 1px solid #28a745;
      padding: 10px 22px;
      border-radius: 22px;
      color: #28a745;
      font-weight:700;
      transition: all .18s ease;
    }

    .slider-btn:hover {
      background:#28a745;color:#fff;
      transform: translateY(-2px);
    }

    .book-wrapper {
      display:flex;
      justify-content: center;
      align-items: flex-end;
      pointer-events: none;
      position: relative;
    }

    .book-image {
      max-width: 360px;
      width: 30vw;
      min-width: 220px;
      transform-origin: center bottom;
      transition: transform 0.18s cubic-bezier(.2,.9,.2,1);
      z-index: 12;
      user-select: none;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 992px) {
      .slide-caption .container { text-align: center; }
      .book-wrapper { margin-top: 30px; }
      .book-image { width: 46vw; max-width: 260px; }
    }

    @media (max-width: 520px) {
      .slide-text h2 { font-size: 28px; }
      .slide-text p { font-size: 14px; }
      .book-image { width: 60vw; max-width: 220px; }
    }


    /* about section start  */

    .author-section {
  background-color: #fff;
  color: #333;
}

.author-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.author-title span {
  color: #32b768; /* green highlight like in screenshot */
}

.author-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.author-signature {
  width: 180px;
  margin-top: 15px;
}

.author-social a {
  color: #32b768;
  font-size: 30px;
  margin-right: 15px;
  transition: color 0.3s ease;
cursor: pointer;
}

.author-social a:hover {
  color: #111;
}

.author-img {
  max-width: 50%;
  height: auto;
}

/* ===== Responsive Styling ===== */
@media (max-width: 992px) {
  .author-content {
    text-align: left;
    margin-top: 30px;
  }

  .author-img {
    max-width: 70%;
    display: block;
    margin: 0 auto;
  }

  .author-title {
    font-size: 1.7rem;
  }

  .author-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .author-section {
    text-align: center;
    padding: 50px 1rem;
  }

  .author-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .author-text {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
  }

  .author-signature {
    width: 140px;
    margin: 10px auto;
  }

  .author-social a {
    font-size: 26px;
    margin: 0 10px;
    display: flex;
    justify-content: center;

  }

  .author-img {
    max-width: 85%;
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .author-title {
    font-size: 1.4rem;
  }

  .author-text {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
  }

  .author-social a {
    font-size: 24px;
    display: flex;
    justify-content: center;
  }

  .author-signature {
    width: 120px;
  }
}


/* start product section  */
.book-section {
  background-color: #f7f9fb;
  padding-top: 100px;
  padding-bottom: 100px;
}

.book-mockup {
  width: 75%;
  max-width: 100%;
  height: auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.book-mockup:hover {
  transform: translateY(-5px);
}

.book-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
}
.book-title span {
  color: #28a745;
}

.book-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
      text-align: left;
}

.book-price {
  font-size: 1.1rem;
  color: #111;
  letter-spacing: 0.5px;
}

.book-btn {
  border: 2px solid #28a745;
  color: #111;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.book-btn:hover {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
}

@media (max-width: 720px) {

  .book-desc {
        padding: 15px;
      text-align: justify;
}
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .book-title {
    font-size: 1.8rem;
  }
  .book-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 576px) {
  .book-title {
    font-size: 1.5rem;
            margin-right: 0px;
  }
  .book-btn {
    padding: 8px 24px;
    font-size: 0.95rem;
  }
}



  /* ---------- Testimonials styling ---------- */
 .testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.testimonial-card {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-heading {
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  text-align: justify;
}

.testimonial-author {
  font-weight: 600;
  margin-top: 15px;
}

/* Navigation Arrows */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #999999;
  color: #fff;
  border: none;
  font-size: 22px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
  z-index: 10;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  opacity: 1;
}

.testimonial-prev { left: -50px; }
.testimonial-next { right: -50px; }

/* Mobile Responsive Fix */
@media (max-width: 767px) {

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-prev,
  .testimonial-next {
    font-size: 18px;
    padding: 8px 12px;
  }

  .testimonial-prev { left: 10px; }
  .testimonial-next { right: 10px; }
}





  /* video sction start  */
  .play-btn i {
  font-size: 70px;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.play-btn:hover i {
  transform: scale(1.1);
  color: #3ecf8e;
}

.video-wrapper img {
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}
.video-wrapper:hover img {
  filter: brightness(0.5);
}
.object-fit-cover {
  object-fit: cover;
}

.play-btn i {
  transition: transform 0.3s ease;
}
.play-btn:hover i {
  transform: scale(1.1);
}


/* footer start  */
footer a {
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #28a745; /* Green hover color */
}
.bg-secondary {
  background-color: #0b0d0e !important;
}
.bg-secondary-footer{
   background-color: #181b1e !important;
}



/* NEW SECTION  */

/* ======= Discover Section ======= */
.discover-section {
  background: linear-gradient(135deg, #f7fdf8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.3rem;
  line-height: 1.4;
}

.highlight {
  color: #198754;
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(25, 135, 84, 0.2);
  transition: width 0.3s ease;
}

.btn-discover {
  background-color: #198754;
  color: #fff;
  border-radius: 30px;
  padding: 10px 26px;
  transition: all 0.3s ease;
}

.btn-discover:hover {
  background-color: #145c3a;
  box-shadow: 0 0 15px rgba(25, 135, 84, 0.3);
}

/* ===== Responsive: Discover Section ===== */
@media (max-width: 768px) {
  .discover-section {
    padding: 3rem 1rem;
    text-align: left;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: left;
  }

  .discover-section p.lead {
    font-size: 1rem;
    line-height: 1.6;
     text-align: justify;
  }

  .highlight::after {
    height: 2px;
    bottom: -3px;
  }

  .btn-discover {
    padding: 8px 20px;
    font-size: 0.95rem;
  }
}

/* ======= Inside & Highlights Section ======= */
.inside-section {
  background: #f8f9fa;
}

.inside-section h3 {
  font-size: 1.8rem;
}

.inside-section ul li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fs-6 {
    line-height: 2;
}

@media (max-width: 992px) {
  .inside-section {
    padding: 50px 0;
  }

  .inside-section h3 {
    font-size: 1.6rem;
  }

  .inside-section ul li {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .inside-section {
    padding: 40px 1rem;
    text-align: center;
  }

  .inside-section h3 {
    font-size: 1.4rem;
  }

  .inside-section ul {
    padding-left: 0;
  }

  .inside-section ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .inside-section {
    padding: 30px 0.8rem;
  }

  .inside-section h3 {
    font-size: 1.25rem;
  }

  .inside-section ul li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* buy now hover effect  */
.buy-link {
  border-color: #28a745 !important;
  color: #28a745 !important;
  transition: all 0.3s ease;
}

.buy-link:hover {
  background-color: #28a745 !important;
  color: #fff !important;
  border-color: #28a745 !important;
}


/* media query for highlight section   */

/* ===== Responsive: Highlights Section ===== */
@media (max-width: 768px) {
  .highlights-section {
    /* padding: 3rem 1rem; */
    text-align: left;
  }

  .highlights-section h3 {
    font-size: 1.6rem;
    line-height: 1.3;
  }



  .highlights-section li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
    text-align: left;
    padding-left: 12px;
  }

  .highlights-section .bi {
    font-size: 1.1rem;
  }
}


/* Photo Slider Section START  */
.photo-slider-wrapper {
  position: relative;
}

.photo-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none; /* hide scrollbar */
}
.photo-slider::-webkit-scrollbar {
  display: none;
}

.slide-card {
  flex: 0 0 32%;
  min-width: 32%;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.slide-card:hover {
  transform: translateY(-5px);
}

.slide-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Arrow buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.3rem 0.8rem;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s ease;
}

.slide-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.prev-btn {
  left: -10px;
}
.next-btn {
  right: -10px;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .slide-card {
    flex: 0 0 48%;
    min-width: 48%;
  }
}

@media (max-width: 768px) {
  .slide-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .slide-card img {
    height: 250px;
    border-radius: 8px;
  }

  .slide-btn {
    font-size: 1.5rem;
    padding: 0.2rem 0.6rem;
  }
}


/* Photo Slider Section END  */


/* DISCLAIMER's Breadcrumb  section start */
.breadcrumb-section {
  position: relative;
  background: url('assets/img/') center/cover no-repeat;
  padding: 120px 0;
  color: #333; /* text color white for better visibility */
  padding-bottom: 80px ;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* Dark overlay for readability */
  z-index: 1;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.breadcrumb-section .breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-section .breadcrumb a {
  color: #333;
  text-decoration: none;
}

.breadcrumb-section .breadcrumb a:hover {
  color: #28a745; /* Hover green */
}



/* DISCLAIMER CONTENT start */
.disclaimer-content {
  max-width: 900px; /* content ko center aur narrow rakhne ke liye */
  margin: 40px auto; /* vertical spacing */
  padding: 0 20px; /* horizontal padding for mobile */
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.disclaimer-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #28a745; /* highlight heading */
  text-align: center; /* centered heading */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .disclaimer-content {
    font-size: 0.95rem;
    padding: 0 15px;
    margin: 30px auto;
  }

  .disclaimer-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .disclaimer-content {
    font-size: 0.9rem;
    padding: 0 10px;
    margin: 20px auto;
    line-height: 1.7;
  }

  .disclaimer-content h3 {
    font-size: 1.4rem;
  }
}
