/* ============================================================
   BhOOKey.com – Main Stylesheet
   Clean Bootstrap-based rebuild
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --color-primary: #079611;
  --color-secondary: #81d742;
  --color-text: #707779;
  --color-accent: #ffffff;
  --color-dark: #040404;
  --color-navy: #102e7a;
  --color-dark-navy: #081839;
  --color-light-bg: #eef9ff;
  --color-body-bg: #f4ea75;
  --color-orange: #f57e57;

  --font-family: 'Poppins', sans-serif;
  --transition: all 0.4s ease;
  --border-radius-card: 20px;
  --border-radius-btn: 50px;
  --shadow-card: 0 0 40px 0 rgba(0, 0, 0, .07);
  --shadow-soft: 0 0 20px 0 #d6d7d8;
   
}

.milkyway{
    font-family: 'Milkyway', sans-serif;
                                                
}

.zoom-link-wrapper {
    width: 100%;
  }
  
  .zoom-link-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-radius: 28px;
    padding: 2rem 2.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(59, 143, 194, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .zoom-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 143, 194, 0.1), transparent);
    transition: left 0.5s;
  }
  
  .zoom-link-card:hover::before {
    left: 100%;
  }
  
  .zoom-link-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3b8fc2;
  }
  
  .zoom-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0e6b9e, #2d8fc7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s ease;
  }
  
  .zoom-link-card:hover .zoom-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .zoom-content {
    flex: 1;
  }
  
  .zoom-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a4d6b;
    margin: 0 0 0.75rem 0;
    transition: color 0.3s;
  }
  
  .zoom-link-card:hover .zoom-title {
    color: #0e6b9e;
  }
  
  .zoom-description {
    color: #5a6e7c;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    font-size: 1rem;
  }
  
  .zoom-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0e6b9e;
    transition: gap 0.3s;
  }
  
  .zoom-link-card:hover .zoom-cta {
    gap: 0.8rem;
  }
  
  .zoom-cta i {
    transition: transform 0.3s;
  }
  
  .zoom-link-card:hover .zoom-cta i {
    transform: translateX(5px);
  }
  
  .zoom-decoration {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(14, 107, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0e6b9e;
    transition: all 0.3s;
  }
  
  .zoom-link-card:hover .zoom-decoration {
    background: rgba(14, 107, 158, 0.2);
    transform: scale(1.1);
  }
  
  /* Meeting Details */
  .meeting-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: #f8fbff;
    border-radius: 50px;
    color: #1a4d6b;
    font-weight: 500;
  }
  
  .detail-item i {
    font-size: 1.2rem;
    color: #0e6b9e;
  }
  
  /* Pulse Animation */
  @keyframes zoomPulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
  }
  
  .zoom-link-card {
    animation: zoomPulse 2s ease-in-out infinite;
  }
  
  .zoom-link-card:hover {
    animation: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-py {
      padding: 50px 0;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .zoom-link-card {
      flex-direction: column;
      text-align: center;
      padding: 1.8rem;
      gap: 1rem;
    }
    
    .zoom-title {
      font-size: 1.4rem;
    }
    
    .zoom-description {
      font-size: 0.95rem;
    }
    
    .meeting-details {
      flex-direction: column;
      gap: 1rem;
    }
    
    .detail-item {
      justify-content: center;
    }
  }

   .about-img-wrapper {
      position: relative;
      width: 100%;
      max-width: 550px;
      margin: 0 auto;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(255,215,150,0.3), rgba(180,130,70,0.1));
      padding: 12px;
      cursor: pointer;
      perspective: 1000px;
      transition: all 0.3s ease;
      /* floating animation */
      animation: floatAnimation 3s ease-in-out infinite;
    }

    /* Image styling */
    .about-img-wrapper img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 24px;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.3s ease;
      will-change: transform;
    }

    /* Hover effect */
    .about-img-wrapper:hover {
      animation: none;
    }

    .about-img-wrapper:hover img {
      box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.4);
    }

    /* Glossy shine overlay that follows mouse */
    .about-img-wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 32px;
      background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
                                  rgba(255, 245, 200, 0.6) 0%, 
                                  rgba(255, 235, 170, 0) 70%);
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
      z-index: 2;
    }

    .about-img-wrapper:hover::before {
      opacity: 0.7;
    }

    /* Floating keyframes */
    @keyframes floatAnimation {
      0% {
        transform: translateY(0px);
      }
      100% {
        transform: translateY(-8px);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-img-wrapper {
        perspective: none;
        animation: floatAnimation 2.5s ease-in-out infinite;
      }
      .about-img-wrapper:hover img {
        transform: scale(1.02);
      }
    }

    /* Optional demo text */
    .info-text {
      margin-top: 2rem;
      color: #6b4c3b;
      font-size: 0.9rem;
      background: rgba(255,255,240,0.8);
      display: inline-block;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      backdrop-filter: blur(4px);
    }

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Fredoka', 'Segoe UI Emoji', sans-serif !important; 
  /* font-family: 'Milkyway', sans-serif !important; */
  /* font-family: var(--font-family); */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  /* background-color: rgba(154, 201, 230, 0.5); */
  background: linear-gradient(135deg, #3E9BC6, #A6D4EC);
  /* background: linear-gradient(135deg, #3E9BC6 0%, #5AB0D6 50%, #E6F4FA 100%); */
  /* background: linear-gradient(135deg, #2F7FA5, #3E9BC6, #5AB0D6); */
  color: var(--color-text);
  overflow-x: hidden;
}

  .pricing-wrapper {
      max-width: 1400px;
      width: 100%;
      margin: 0 auto;
    }

    /* header / hero section */
    .pricing-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .badge-club {
      display: inline-block;
      background: rgba(46, 125, 210, 0.12);
      backdrop-filter: blur(2px);
      padding: 0.35rem 1.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      color: #1e4a8a;
      margin-bottom: 1rem;
      border: 1px solid rgba(59, 130, 246, 0.25);
    }

    .pricing-header h1 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #0f2b3d, #1e4a76, #2c6e9e);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
    }

    .pricing-header .subhead {
      font-size: 1.2rem;
      color: #fff;
      max-width: 680px;
      margin: 0.75rem auto 0;
      font-weight: 400;
      line-height: 1.4;
    }

    /* cards base */
    .pricing-card {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(0px);
      border-radius: 2rem;
      padding: 2rem 1.8rem 2rem 1.8rem;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(203, 213, 225, 0.5);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 45px -18px rgba(0, 0, 0, 0.2);
      border-color: rgba(59, 130, 246, 0.4);
      background: #ffffff;
    }

    /* premium card special glow */
    .card-premium {
      background: linear-gradient(135deg, #ffffff 0%, #fefdf8 100%);
      border-top: 4px solid #f6b83e;
      border-left: 1px solid rgba(246, 184, 62, 0.4);
      border-right: 1px solid rgba(246, 184, 62, 0.3);
    }

    .card-premium .plan-name {
      background: linear-gradient(120deg, #b45309, #f59e0b);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .popular-tag {
      position: absolute;
      top: -12px;
      right: 1.5rem;
      background: #f59e0b;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.25rem 1rem;
      border-radius: 30px;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .plan-name {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.3px;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .price {
      margin: 0.75rem 0 1rem 0;
    }

    .price .currency {
      font-size: 1.6rem;
      font-weight: 600;
      vertical-align: top;
      line-height: 1.2;
      color: #1e293b;
    }

    .price .amount {
      font-size: 3.2rem;
      font-weight: 800;
      font-family: 'Poppins', sans-serif;
      color: #0f172a;
      letter-spacing: -1px;
    }

    .price .period {
      font-size: 1rem;
      font-weight: 500;
      color: #5b6e8c;
    }

    .features-list {
      list-style: none;
      padding-left: 0;
      margin: 1.2rem 0 1.8rem 0;
      flex-grow: 1;
    }

    .features-list li {
      padding: 0.65rem 0;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.98rem;
      font-weight: 500;
      color: #1e2a3e;
      border-bottom: 1px dashed #eef2f6;
    }

    .features-list li i {
      width: 1.6rem;
      font-size: 1.2rem;
      color: #3b82f6;
    }

 .about-img-wrapper {
      position: relative;
      width: 100%;
      max-width: 550px;
      margin: 0 auto;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(255,215,150,0.3), rgba(180,130,70,0.1));
      padding: 12px;
      cursor: pointer;
      perspective: 1000px;
    }

    /* Image styling with continuous rotation animation */
    .about-img-wrapper img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 24px;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
      transition: box-shadow 0.3s ease;
      /* Continuous rotation - ghoomti rahegi */
      animation: smoothRotate 8s ease-in-out infinite;
      will-change: transform;
    }

    /* Hover pe rotation slow ho jayegi aur shine ayegi */
    .about-img-wrapper:hover img {
      animation: smoothRotateSlow 12s ease-in-out infinite;
      box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.4);
    }

    /* Glossy shine overlay that appears on hover */
    .about-img-wrapper::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 32px;
      background: radial-gradient(circle at 30% 40%, 
                                  rgba(255, 245, 200, 0.7) 0%, 
                                  rgba(255, 235, 170, 0) 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 2;
    }

    .about-img-wrapper:hover::before {
      opacity: 0.6;
      animation: shineMove 3s ease-in-out infinite;
    }

    /* Continuous rotation keyframes - full 360 rotation */
    @keyframes smoothRotate {
      0% {
        transform: rotateY(0deg) rotateX(0deg);
      }
      25% {
        transform: rotateY(8deg) rotateX(5deg);
      }
      50% {
        transform: rotateY(0deg) rotateX(0deg);
      }
      75% {
        transform: rotateY(-8deg) rotateX(-5deg);
      }
      100% {
        transform: rotateY(0deg) rotateX(0deg);
      }
    }

    /* Slower rotation on hover */
    @keyframes smoothRotateSlow {
      0% {
        transform: rotateY(0deg) rotateX(0deg);
      }
      25% {
        transform: rotateY(5deg) rotateX(3deg);
      }
      50% {
        transform: rotateY(0deg) rotateX(0deg);
      }
      75% {
        transform: rotateY(-5deg) rotateX(-3deg);
      }
      100% {
        transform: rotateY(0deg) rotateX(0deg);
      }
    }

    /* Shine animation on hover */
    @keyframes shineMove {
      0% {
        background: radial-gradient(circle at 30% 40%, rgba(255, 245, 200, 0.7) 0%, rgba(255, 235, 170, 0) 70%);
      }
      50% {
        background: radial-gradient(circle at 70% 60%, rgba(255, 245, 200, 0.7) 0%, rgba(255, 235, 170, 0) 70%);
      }
      100% {
        background: radial-gradient(circle at 30% 40%, rgba(255, 245, 200, 0.7) 0%, rgba(255, 235, 170, 0) 70%);
      }
    }

    /* Floating effect on wrapper */
    .about-img-wrapper {
      animation: floatAnimation 3s ease-in-out infinite;
    }

    @keyframes floatAnimation {
      0% {
        transform: translateY(0px);
      }
      100% {
        transform: translateY(-8px);
      }
    }

    /* Hover pe float stop */
    .about-img-wrapper:hover {
      animation: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-img-wrapper {
        perspective: none;
      }
      .about-img-wrapper img {
        animation: smoothRotate 6s ease-in-out infinite;
      }
    }

    .info-text {
      margin-top: 2rem;
      color: #6b4c3b;
      font-size: 0.9rem;
      background: rgba(255,255,240,0.8);
      display: inline-block;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      backdrop-filter: blur(4px);
    }

.w-15{
  width: 20%;
  margin-top: 2rem;

}
.w-35{
  width: 35%;
}

.black{
  color: #000 !important;
}

span#dynamicGreeting {
   color: var(--color-dark-navy);
    font-weight: 800;
}

.page-hero {
    position: relative;
    background: url(../images/bg2.jpg) center center / cover no-repeat;
    padding: 160px 0 120px;
    overflow: hidden;
    background-size: 100% 100%;
    height: 65vh;
}

.page-hero .hero-overlay {
  /* background: rgba(7, 150, 17, .55); */
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, .8);
}

.page-hero .breadcrumb-item.active {
  color: #fff;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .6);
}

.stat-card {
  background: #fff;
  border-radius: var(--border-radius-card);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--color-text);
  font-size: 15px;
  margin: 0;
}

.value-card {
  background: var(--color-light-bg);
  border-radius: var(--border-radius-card);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.value-icon {
  font-size: 44px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.value-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-navy);
  font-weight: 500;
}

.aling-items-center{
  align-items: center;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: black;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background-color: var(--color-secondary);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a,
.top-bar span {
  color: #fff;
  font-size: 14px;
}

.top-bar a:hover {
  color: var(--color-dark-navy);
}

.top-bar i {
  color: #fff;
  margin-right: 6px;
  font-size: 14px;
}

.top-bar-item {
  display: flex;
  align-items: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
  background: #f4ea75;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  padding: 0px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
  transition: var(--transition);
}

.navbar-brand {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark-navy) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--color-primary);
}

.nav-link {
  color: var(--color-dark) !important;
  font-size: 22px;
  font-weight: 500;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link::before,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: center;
}

.nav-link:hover {
  color: var(--color-primary) !important;
}

.nav-link:hover::before {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--color-primary) !important;
}

.nav-link.active::before {
  transform: scaleX(1);
}

/* Order Now button in nav */
.nav-order-btn {
  background: var(--color-dark-navy);
  color: #fff !important;
  border-radius: var(--border-radius-btn);
  padding: 8px 24px !important;
  margin-left: 8px;
}

.nav-order-btn:hover {
  background: var(--color-primary);
  color: #fff !important;
}

.nav-order-btn::before,
.nav-order-btn::after {
  display: none;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  border-radius: 10px;
  padding: 10px 0;
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
  color: var(--color-dark);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--color-light-bg);
  color: var(--color-primary);
}

/* Hamburger */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23081839' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
/* .hero {
  position: relative;
  background: url('../images/about.webp') center center / cover no-repeat;
  padding: 180px 0 150px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
     background: rgba(154, 201, 230, 0.5);
} */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
   padding: 180px 0 150px;
}

/* Video styling */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Overlay (dark effect for readability) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness */
  z-index: 1;
}

/* Content above video */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 580px;
}

.btn-hero {
  background: linear-gradient(135deg, #3E9BC6, #A6D4EC);
  color: #fff;
  padding: 15px 35px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
}

.btn-hero:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-py {
  padding: 80px 0;
}

.section-py-sm {
  padding: 50px 0;
}

.section-light {
  background: #f4ea75;
}

.badge-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  border: 3px solid var(--color-dark);
  border-radius: var(--border-radius-btn);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-dark);
  box-shadow: 0 0 10px rgba(187, 189, 189, .66);
  line-height: 1;
  margin-bottom: 15px;
}

.badge-label-dark {
  border-color: var(--color-dark-navy);
  color: #000;
}

.section-title {
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

/* ============================================================
   ICON BOXES (Features Section)
   ============================================================ */
.feature-card {
  border-radius: var(--border-radius-card);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
  cursor: default;
}

.feature-card:hover {
  transform: scale(.97);
}

.feature-card-green {
  background: var(--color-secondary);
}

.feature-card-orange {
  background: var(--color-orange);
}

.feature-card-dark {
  background: var(--color-dark-navy);
}

.feature-icon {
  font-size: 65px;
  color: #fff;
  margin-bottom: 0;
  transition: var(--transition);
}

.feature-title {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  padding: 20px 0 0 10px;
  line-height: 1.2;
}

.feature-text {
  color: #fff;
  margin-bottom: 0;
  padding-left: 15px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 80px 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  color: var(--color-dark);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.check-list li i {
  color: var(--color-secondary);
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.btn-primary-dark {
  background: var(--color-dark-navy);
  color: #fff;
  padding: 16px 35px;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
  transition: var(--transition);
  border: none;
}

.btn-primary-dark:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.about-img-wrapper {
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 8px;
  border-left-width: 8px;
  border-color: var(--color-navy);
  border-radius: 500px;
  overflow: hidden;
  transition: var(--transition);
}

.about-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 500px;
}

.about-img-wrapper:hover {
  transform: translateY(-8px);
}

/* Mouse tracking effect */
.mouse-track {
  transition: transform .1s ease-out;
}

/* ============================================================
   BOOK SECTION (Cards with images)
   ============================================================ */
.book-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.book-card:hover {
  transform: translateY(-8px);
}

.book-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.book-card-body {
  padding: 20px 14px 14px;
}

.book-card-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.1;
  transition: var(--transition);
}

.book-card p {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 0;
}

/* ============================================================
   CTA SECTION (Parallax)
   ============================================================ */
.cta-section {
  position: relative;
  background: url('../images/bg2.jpg') center center / cover fixed;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(7, 150, 17, 0.6); */
  background: rgba(0, 0, 0, 0.5);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-label {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 45px);
  color: #fff;
  font-weight: 500;
  margin-bottom: 24px;
}

.cta-phone-box {
  display: inline-block;
  border: 3px solid #fff;
  padding: 8px 20px;
  position: relative;
  /* left: 50%;
  transform: translateX(-50%); */
}

.cta-phone {
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 500;
  color: #fff;
}

.cta-phone a {
  color: #fff;
}

.cta-phone a:hover {
  color: var(--color-secondary);
}

/* ============================================================
   SUBSCRIBE SECTION
   ============================================================ */
.subscribe-section {
  background: #f4ea75;
  padding: 80px 0 150px;
}

.btn-join {
  background: transparent;
  color: var(--color-dark-navy);
  border: 2px solid var(--color-dark-navy);
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
  transition: var(--transition);
}

.btn-join:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ============================================================
   FEATURED BOOKS (Icon cards)
   ============================================================ */
.featured-books-section {
  margin-top: -117px;
  padding-bottom: 80px;
}

.featured-card {
  background: #fff;
  border-radius: var(--border-radius-card);
  padding: 28px;
  box-shadow: 0 0 20px 0 #d6d7d8;
  height: 100%;
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-8px);
}

.featured-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-light-bg);
  margin-bottom: 20px;
  font-size: 36px;
  color: var(--color-secondary);
  transition: var(--transition);
}

.featured-card:hover .featured-icon-wrap {
  background: var(--color-secondary);
  color: #fff;
}

.featured-card-title {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.featured-card p {
  color: var(--color-text);
  margin-bottom: 0;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: 80px 0;
}

.team-card {
  border-radius: var(--border-radius-card);
  box-shadow: 0 0 10px 0 #d4d7d7;
  /* border-bottom: 4px solid var(--color-secondary); */
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
}

.team-card-body {
  padding: 20px 16px 50px;
  text-align: center;
}

.team-name {
  font-size: 25px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 6px;
  transition: var(--transition);
}

.team-role {
  font-size: 16px;
  color: var(--color-navy);
  margin-bottom: 0;
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding-bottom: 14px;
  z-index: 1;
}

.team-social a {
  display: inline-block;
  padding: 0 5px;
  font-size: 28px;
  color: var(--color-secondary);
  transition: var(--transition);
}

.team-social a:hover {
  color: var(--color-primary);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background: white;
  padding: 80px 0;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius-card);
  padding: 30px;
  box-shadow: 0 0 10px 0 #c0c2c2;
  height: 100%;
  transition: var(--transition);
}

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

.testimonial-text {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 24px;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-secondary);
}

.testimonial-name {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.testimonial-title {
  font-size: 15px;
  color: var(--color-primary);
  margin-bottom: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark-navy);
  padding: 60px 0 30px;
  color: #fff;
}

.footer-brand {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand span {
  color: var(--color-secondary);
}

.footer-desc {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--color-secondary);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--color-secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--color-secondary);
  font-size: 18px;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, .1);
  margin: 30px 0 20px;
}

.footer-copyright {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  text-align: center;
}

.footer-copyright a {
  color: var(--color-secondary);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

/* Float animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

.float-anim-delay {
  animation: float 4s ease-in-out infinite .8s;
}

.float-anim-delay2 {
  animation: float 4s ease-in-out infinite 1.6s;
}

/* Shrink hover */
.shrink-hover {
  transition: var(--transition);
}

.shrink-hover:hover {
  transform: scale(.95);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero {
    padding: 120px 0 100px;
  }

  .section-py {
    padding: 60px 0;
  }

  .about-img-wrapper {
    margin-top: 40px;
  }

  .featured-books-section {
    margin-top: 0;
  }

  .subscribe-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 100px 0 80px;
  }

  .top-bar {
    display: none !important;
  }

  .cta-phone-box {
    width: 70%;
  }

  .feature-card {
    margin-bottom: 20px;
  }

  .team-card {
    margin-bottom: 30px;
  }

  .book-section-row {
    margin-top: 30px;
  }

  .badge-label {
    font-size: 12px;
    padding: 6px 16px;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .cta-phone-box {
    width: 85%;
  }

  .about-img-wrapper {
    border-width: 0 0 5px 5px;
  }
  .site-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* 🔥 IMPORTANT */
  }

  .site-navbar .navbar-brand {
    margin: 0;
    padding: 0;
  }

  .site-navbar .navbar-toggler {
    margin-left: auto;
  }
  .w-15 {
    width: 25%;
}

  /* collapse menu full width neeche aaye */
  .site-navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }
}