/* ================= GLOBAL ================= */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================= HEADER ================= */
:root {
  --header-height: 80px;
  /* ✅ MATCH NAVBAR HEIGHT */
}

.bp-header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: all 0.35s ease;
}

.bp-header.scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
}

.bp-header .navbar {
  min-height: var(--header-height);
  align-items: center;
}

/* Logo */
.navbar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

/* ================= MENU ================= */
.navbar-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #222;
  position: relative;
  padding: 7px 10px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #e78916;
}

/* Desktop underline */
@media (min-width: 992px) {
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffd000;
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 100%;
  }
}

/* ================= MOBILE NAV ================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-top: 1px solid #eee;
  }

  .navbar-nav .nav-link::after {
    display: none !important;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0 12px 12px;
    border-left: 3px solid transparent;
  }

  .navbar-nav .nav-link.active {
    color: #e78916;
    border-left-color: #e78916;
    font-weight: 600;
  }
}

/* ================= SOCIAL ICONS ================= */
.bp-header .bi {
  font-size: 16px;
  color: #f97316;
  transition: all 0.3s ease;
}

.bp-header a:hover .bi {
  color: #d35400;
  transform: translateY(-2px) scale(1.1);
}

/* ================= SLIDER (BOOTSTRAP CAROUSEL) ================= */

/* Push slider below fixed header */
/* Push slider below fixed header */
#home {
  margin-top: var(--header-height);
}

/* Ensure smooth sliding */
#carouselExampleCaptions,
#carouselExampleCaptions .carousel-inner,
#carouselExampleCaptions .carousel-item {
  width: 100%;
}

/* ✅ Increased desktop slider height */
#carouselExampleCaptions .carousel-item {
  height: 560px;        /* ⬆ increased from 420px */
}

/* Image fills slide properly */
#carouselExampleCaptions .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* keeps image clean & cropped */
  display: block;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  #carouselExampleCaptions .carousel-item {
    height: 400px;      /* ⬆ increased from 320px */
  }
}

/* ✅ Mobile */
@media (max-width: 576px) {
  #carouselExampleCaptions .carousel-item {
    height: 300px;      /* ⬆ increased from 240px */
  }
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Indicators */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}

.carousel-indicators .active {
  background-color: #0d6efd;
}

/* ================= SERVICES CARDS ================= */
.service-card {
  background: #ffffff;
  padding: 14px;
  text-align: center;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  cursor: pointer;
}

/* Image */
.service-card img {
  max-height: 120px;
  margin-bottom: 14px;
  transition: transform 0.35s ease;
  /* hover zoom */
}

/* Title */
.service-card h5 {
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 8px;
}

/* Text */
.service-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
}

/* Link */
.service-card a {
  display: inline-block;
  margin-top: 8px;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}


.service-card:hover img {
  transform: scale(1.12);
}

.service-card:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}


.service-card.active {
  transform: scale(0.96);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  background: #f9fbff;
}


.service-card.active img {
  transform: scale(1);
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .service-card {
    padding: 15px;
  }

  .service-card img {
    max-height: 105px;
  }

  .service-card.active {
    transform: scale(0.97);
  }
}


/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Image wrapper */
.about-img-wrap {
  background: #f3f6fb;
  padding: 22px;
  /* ⬆ increased padding */
  border-radius: 18px;
  display: inline-block;
  max-width: 500px;
  /* ⬆ increased container size */
  width: 100%;
}

/* Image */
.about-img-wrap img {
  border-radius: 14px;
  width: 100%;
  /* ⬆ full width inside wrapper */
  height: auto;
  display: block;
}

/* Tag */
.about-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #c46302;
  margin-bottom: 12px;
}

/* Title */
.about-title {
  font-size: 40px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 16px;
}

/* Description */
.about-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

/* Checklist */
.about-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.about-list li {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d6efd;
  font-weight: 700;
}

/* Signature */
.about-signature img {
  height: 42px;
  margin: 18px 0 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-img-wrap {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 30px;
  }

  .about-desc {
    font-size: 14px;
  }

  .about-img-wrap {
    padding: 14px;
  }
}

/* ================= NEWSLETTER ================= */
/* .newsletter {
  padding: 70px 0;
  background: #ffffff;
}

.newsletter h3 {
  font-weight: 700;
}

.newsletter p {
  color: #555;
  font-size: 14px;
}

.newsletter form input {
  height: 48px;
  border-radius: 50px;
  border: 1px solid #ddd;
  padding: 0 20px;
}

.newsletter form button {
  height: 48px;
  border-radius: 50px;
  border: none;
  background: #212529;
  color: #fff;
  padding: 0 25px;
  transition: 0.3s;
}

.newsletter form button:hover {
  background: #0d6efd;
} */

/* ================= BENEFITS SECTION ================= */
.benefits-section {
  padding: 90px 0 70px;
  background: linear-gradient(180deg,
      #8b98a8 0%,
      #cdb2b2 100%);
}

/* Small top label */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #e37507;
  margin-bottom: 14px;
}

/* Main heading */
.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f2933;
  line-height: 1.2;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .benefits-section {
    padding: 70px 0 50px;
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }
}

/* ================= BENEFIT CARDS SECTION ================= */
.benefit-cards-section {
  padding: 60px 0 80px;
  background: #f6f6f6;
}

/* Card */
.benefit-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease;
}

/* Hover effect */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.benefit-icon {
  margin-bottom: 22px;
}

.benefit-icon img {
  width: 48px;
  height: auto;
}

/* Title */
.benefit-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ab450a;
}

/* Text */
.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Link */
.benefit-link {
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.benefit-link span {
  transition: transform 0.3s ease;
}

.benefit-link:hover {
  color: #084298;
}

.benefit-link:hover span {
  transform: translateX(4px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .benefit-card {
    padding: 32px 26px;
  }

  .benefit-card h4 {
    font-size: 20px;
  }
}

/* ================= BEST SELLER SECTION ================= */
.best-seller-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Book card */
.book-card {
  transition: all 0.3s ease;
}

.book-card:hover {
  transform: translateY(-6px);
}

/* Book image */
.book-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
}

/* Category */
.book-category {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

/* Title */
.book-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .best-seller-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .book-title {
    font-size: 15px;
  }
}

/* ================= VIDEO SECTION ================= */
.video-section {
  position: relative;
  background: url("../images/video-bg.jpg") center/cover no-repeat;
  padding: 140px 0;
  color: #ffffff;
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

/* Content */
.video-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Small label */
.video-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

/* Heading */
.video-content h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 40px;
}

/* Play button */
.video-play-btn {
  width: 70px;
  height: 70px;
  background: #ffffff;
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.video-play-btn:hover {
  transform: scale(1.08);
  background: #0d6efd;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .video-section {
    padding: 110px 0;
  }

  .video-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .video-section {
    padding: 90px 0;
    text-align: center;
  }

  .video-content {
    margin: 0 auto;
  }

  .video-content h2 {
    font-size: 28px;
  }

  .video-play-btn {
    margin: 0 auto;
  }
}

/* ================= FOOTER ================= */
.bp-footer {
  background: linear-gradient(135deg,
      #e6f4ff 0%,
      #d8f0ff 45%,
      #fff1e6 100%);
  padding: 80px 0 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer headings */
.bp-footer h4,
.bp-footer h5 {
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
}

/* Footer text */
.bp-footer p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* Footer lists */
.bp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bp-footer ul li {
  margin-bottom: 10px;
}

/* Footer links */
.bp-footer ul li a {
  font-size: 14px;
  color: #c67c32;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover effect */
.bp-footer ul li a:hover {
  color: #ff7a18;
  padding-left: 6px;
}

/* Brand highlight */
.bp-footer h4 span {
  color: #0d6efd;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: #475569;
}



/* ================= FOOTER LOGO ================= */
.footer-logo {
  height: 36px;
  width: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-logo {
    height: 30px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .d-flex {
    justify-content: center;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .bp-footer {
    padding: 60px 0 25px;
    text-align: center;
  }

  .bp-footer h4,
  .bp-footer h5 {
    margin-top: 20px;
  }

  .bp-footer ul li a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    margin-top: 25px;
  }
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  body {
    padding-top: 80px;
  }

  .hero-section {
    padding: 30px 0 60px;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .hero-slide-img {
    max-width: 360px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  body {
    padding-top: 75px;
  }

  .hero-section {
    padding: 25px 0 40px;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  .hero-section p {
    font-size: 14px;
  }

  .hero-slide-img {
    max-width: 260px;
    margin-top: 25px;
  }

  #heroSlider .row {
    text-align: center;
  }

  #heroSlider .d-flex {
    justify-content: center;
  }

  .footer-social {
    display: flex;
    justify-content: center;
  }
}

/* Navbar logo */
.navbar-logo {
  height: 46px;
  width: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-logo {
    height: 40px;
  }
}

/* ================= HEADER SOCIAL ICONS ================= */
.header-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #774202;
  font-size: 16px;
  transition: all 0.3s ease;
}

.header-social a:hover {
  background: #0d6efd;
  color: #ffffff;
  transform: translateY(-2px);
}



.carousel-item {
  transition: transform 0.8s ease-in-out;
}

.navbar .nav-link {
  position: relative;
  padding: 8px 12px;
  font-weight: 500;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #f97316;
}

/* ================= BACK TO TOP ================= */
#backToTop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  border: none;
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  /* 🔥 ABOVE footer */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

#backToTop:hover {
  background: #ea580c;
  transform: translateY(-4px);
}

.about-section .shadow-sm:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}