@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Poppins:wght@600&family=Quicksand:wght@300..700&display=swap");

:root {
    --primary-blue: rgb(0, 27, 161);
    --accent-orange: #ff9900;
    --accent-orange-dark: #e68a00;
    --danger-red: rgb(241, 74, 68);
}

/*NAVBAR — Unchanged.navstyle {
   color: rgb(0, 27, 161) !important;
}

.navstyle:hover {
  text-decoration: none;
}

.font-h {
  font-family: Helvetica, normal;
}
.modal {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.navbar-style {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  padding: 0 80px !important;
  font-size: 20px;
} */
 .navstyle {
  color: rgb(0, 27, 161) !important;
  text-decoration: none;
}

.navstyle {
  color: #001ba1 !important;
  transition: 0.1s;
  text-decoration: none !important;
}

.navstyle:hover {
  color: orangered !important;
  text-decoration: none !important;
}

/* Active Page */
.nav-link.active {
  color: orangered !important;

  text-decoration: none !important;
}


.font-h {
  font-family: Helvetica, normal;

}

.modal {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.navbar-style {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-top: 5px; */
  padding: 0 70px !important;
  /* font-size: 18px; */

}

/* .navbar-nav {
  margin-top: 24px;
} */

.navbar-nav {
  /* display: flex; */
  /* justify-content: space-between; */
  align-items: center;
  margin-top: 0px;
  padding: 0;
  /* padding: 0 80px !important; */
  /* font-size: 18px; */
  gap: 20px;

}

.navbar {
  padding: 8px 0;
  background: #fff;
}

.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 500;
}

/* Tablet */
@media (max-width:991px) {

  .navbar-style {
    padding: 0 20px !important;
  }

  .navbar-toggler {
    border: none;
    box-shadow: none !important;
  }

  .navbar-collapse {
    margin-top: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
  }

  .navbar-nav {
    gap: 8px;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    font-size: 17px;
  }

}

/* Mobile */

@media (max-width:576px) {

  .navbar-style {
    padding: 0 12px !important;
  }

  .navbar-brand img {
    width: 110px;
    height: auto;
  }

  .navbar-collapse {
    margin-top: 8px;
    padding: 8px 0;
  }

  .navbar-nav {
    gap: 5px;
  }

  .navbar-nav .nav-link {
    padding: 8px 0;
    font-size: 16px;
  }

}

/* TYPOGRAPHY */
.text-blue-lg {
    color: var(--primary-blue);
    padding-top: 50px;
    letter-spacing: 0.025rem;
    font-weight: 700;
    font-size: 1.875rem;
}

.text-blue {
    color: var(--primary-blue);
    letter-spacing: 0.025rem;
    font-weight: 700;
    font-size: 1.875rem;
}

.text-red {
    color: var(--danger-red);
}

/* New heading for "Who the Book is For" */
/* Updated "Who the Book is For" heading */
/* Updated "Who the Book is For" heading */
/* Updated heading style */
.audience-title {
    font-size: 2.8rem; /* Medium-large size */
    font-weight: 800;
    color: white; /* Orange color */
    text-align: center;
    font-family:  'Baloo 2', cursive;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Flex container for horizontal layout */
.audience-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: white;
}

/* Bullet-style prefix with orange dot */
.audience-item::before {
    content: "•";
    color: var(--accent-orange);
    margin-right: 8px;
    font-size: 1.5rem;
    vertical-align: middle;
}





/* Orange highlight for important phrases */
.highlight-orange {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Attractive box for target audience */
.target-audience {
    font-size: 1.2rem;
    font-weight: 600;
    background: #fff5e6;
    color: #333;
    padding: 20px;
    border-left: 5px solid var(--accent-orange);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    font-family: 'Quicksand', sans-serif;
}

/* GENERAL BODY */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f8f9fa;
    font-family: 'Quicksand', Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HERO SECTION */
.hero-banner {
    position: relative;
    height: 400px;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('Assets/book_background.jpg') center center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px;
    animation: zoomIn 15s infinite alternate linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes zoomIn {
    from {
        background-size: 100%;
    }

    to {
        background-size: 105%;
    }
}

.hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: 4rem;
    font-weight: 600;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 3px rgb(235, 138, 0);
}

.explore-btn {
    background-color: var(--accent-orange);
    color: white;
    font-size: 1.2rem;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 0 transparent;
    display: inline-block;
    margin-top: 20px;
}

.explore-btn:hover {
    background-color: var(--accent-orange-dark);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
}

/* SECTION STYLING */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.sub-header {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 3rem;
}

.icon-box {
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    background: linear-gradient(135deg, #ffffff 0%, #f2f6ff 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}




.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.buy-btn {
    background: linear-gradient(to right, var(--accent-orange), #ff6600);
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.3s;
}

.buy-btn:hover {
    background: linear-gradient(to right, var(--accent-orange-dark), #cc5500);
    transform: scale(1.05);
}

.section-image {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 6px 20px;
    margin-top: 20px;
}
/*dffer------------------------------------------------------------------------------------------*/
.bg-gradient-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue) 100%);
    color: white;
    border-radius: 16px;
    padding: 40px 30px;
}


.text-highlight {
    color: #f9b233;
}

/* IMAGE SIZING */
.img-h-w {
    height: 400px;
    width: 500px;
}

/* FOOTER — Unchanged */
.footer-bg {
    background-color: #000322;
    padding: 20px 80px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .img-h-w {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .display-none {
        display: none;
    }
}

@media (max-width: 567px) {
    .img-h-w {
        height: 200px;
        width: 100%;
    }

    .footer-bg {
        padding: 20px;
    }
}

@media (max-width: 420px) {
    .img-h-w {
        height: 180px;
        width: 100%;
    }

    .footer-bg {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .img-h-w {
        height: 150px;
        width: 100%;
    }

    .footer-bg {
        padding: 20px;
    }
}
/* Attractive box for target                             audience */

/* Testimonials without JS */
.testimonial-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  padding: 40px 0;
}
/* change 40 to 20 */
.testimonial-track {
  display: flex;
  animation: scrollTestimonials 20s linear infinite;
  width: fit-content;
}

.testimonial-card {
  flex: 0 0 auto;
  width: 300px;
  margin: 0 20px;
  padding: 20px;
  background: #fff5e6;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonial-card h3 {
  font-size: 1.25rem;
  margin: 10px 0 8px;
  color: #333;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  line-height: 1.5;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.testimonial-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

.testimonial-card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}
.testimonial-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}



.scroll-left {
  left: 10px;
}

.scroll-right {
  right: 10px;
}
