/* ==========================================================================
   Key of Mind - Sopan Shedge Business Growth Coach
   Main Stylesheet - style.css (Updated to exact design specifications)
   ========================================================================== */

:root {
  --primary-color: #041527;
  --primary-dark: #020b14;
  --primary-light: #0d2745;
  --brand-navy: #041527;
  --brand-gold: #cc9330;
  --brand-gold-light: #dea336;
  --brand-gold-gradient: linear-gradient(135deg, #cc9330 0%, #dea336 50%, #e6af4b 100%);
  --brand-gold-hover: linear-gradient(135deg, #b88022 0%, #cc9330 100%);
  --theme-green: #cc9330;
  --theme-green-hover: #b88022;
  --theme-green-light: #fbf5e8;
  --secondary-color: #dea336;
  --secondary-hover: #cc9330;
  --accent-gold: #dea336;
  --accent-gold-light: #f7e6c4;
  --dark-color: #041527;
  --dark-surface: #0a1f38;
  --light-bg: #f8fafc;
  --light-card: #ffffff;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --footer-bg: #041527;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(4, 21, 39, 0.06);
  --shadow-md: 0 8px 24px rgba(4, 21, 39, 0.1);
  --shadow-lg: 0 16px 36px rgba(4, 21, 39, 0.16);
  --shadow-gold: 0 8px 25px rgba(204, 147, 48, 0.35);
}

/* Global resets & typography */
html {
  scroll-behavior: smooth;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  color: var(--text-primary);
  background-color: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-color);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Top Notification Bar (Matching header attachment) */
.header-top-bar {
  background: #f8fafc;
  color: #334155;
  font-size: 0.88rem;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.header-top-bar a {
  color: #334155;
  transition: var(--transition-smooth);
}

.header-top-bar a:hover {
  color: var(--theme-green);
}

.lang-dropdown-btn {
  background: transparent;
  border: none;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.top-user-icon-btn {
  color: #334155;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.top-user-icon-btn:hover {
  color: var(--theme-green);
  transform: scale(1.1);
}

/* Sticky Main Navigation with Overlapping Logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #ffffff;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Overlapping Logo Styling */
.logo-overlap-wrap {
  position: relative;
  z-index: 1060;
  display: inline-flex;
  align-items: center;
  margin-bottom: -22px; /* Overlap effect onto hero */
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #edf2f7;
  transition: var(--transition-smooth);
}

.logo-overlap-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.navbar-brand-logo {
  height: 130px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Nav links like attachment */
.custom-nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: #334155 !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-smooth);
}

.custom-nav-link.active,
.custom-nav-link:hover {
  color: var(--theme-green) !important;
}

/* Active indicator bar above or below link as per attachment */
.custom-nav-link.active::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--theme-green);
  border-radius: 4px;
}

/* Header Search & CTA */
.header-search-box {
  position: relative;
  min-width: 220px;
}

.header-search-input {
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  padding: 8px 36px 8px 14px;
  font-size: 0.9rem;
  width: 100%;
  transition: var(--transition-smooth);
}

.header-search-input:focus {
  outline: none;
  border-color: var(--theme-green);
  box-shadow: 0 0 0 3px rgba(55, 168, 108, 0.15);
}

.header-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.btn-header-action {
  background-color: var(--theme-green);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 9px 20px;
  border: none;
  white-space: nowrap;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(55, 168, 108, 0.3);
}

.btn-header-action:hover {
  background-color: var(--theme-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(55, 168, 108, 0.4);
}

/* Buttons */
.btn-green {
  background: var(--brand-gold-gradient);
  color: #041527 !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.btn-green:hover {
  background: var(--brand-gold-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(204, 147, 48, 0.55);
}

.btn-gold {
  background: var(--brand-gold-gradient);
  color: #041527 !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gold:hover {
  background: var(--brand-gold-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(204, 147, 48, 0.55);
}

/* Specific Growth Journey CTA Button styled like reference */
.btn-growth-journey {
  background: linear-gradient(135deg, #dea336 0%, #cc9330 100%);
  color: #041527 !important;
  font-weight: 800;
  font-size: 1.08rem;
  border-radius: 50px;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(222, 163, 54, 0.45), 0 0 0 4px rgba(204, 147, 48, 0.15);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-growth-journey:hover {
  background: linear-gradient(135deg, #e6af4b 0%, #b88022 100%);
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(222, 163, 54, 0.6), 0 0 0 6px rgba(204, 147, 48, 0.25);
}

.btn-outline-navy {
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold) !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
  background: transparent;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-navy:hover {
  background: var(--brand-gold);
  color: #041527 !important;
  transform: translateY(-2px);
}

.btn-navy {
  background: linear-gradient(135deg, #041527 0%, #0d2745 100%);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(204, 147, 48, 0.3);
  transition: var(--transition-smooth);
}

.btn-navy:hover {
  background: linear-gradient(135deg, #020b14 0%, #041527 100%);
  border-color: var(--brand-gold);
  color: var(--brand-gold) !important;
  transform: translateY(-2px);
}

/* Section Header Shared */
.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  background: var(--theme-green-light);
  border: 1px solid rgba(204, 147, 48, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--dark-color);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Hero Section - Background overlay with Pexels audience image and #041527
   Layout faithfully styled after the reference attachment
   ========================================================================== */
.hero-section {
  position: relative;
  /* Dark audience overlay with deep #041527 vignette */
  background: 
    linear-gradient(105deg, rgba(4, 21, 39, 0.94) 0%, rgba(4, 21, 39, 0.86) 35%, rgba(4, 21, 39, 0.78) 50%, rgba(4, 21, 39, 0.88) 75%, rgba(4, 21, 39, 0.96) 100%),
    url('https://images.pexels.com/photos/20173227/pexels-photo-20173227.jpeg') center center / cover no-repeat;
  color: #ffffff;
  padding: 85px 0 0 0; /* Flush 0px at bottom so banner.png is anchored at bottom */
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(204, 147, 48, 0.1) 0%, rgba(4, 21, 39, 0) 70%);
  pointer-events: none;
}

.hero-main-row {
  min-height: 520px;
}

.hero-side-content {
  padding-bottom: 75px; /* Vertical centering/breathing space for side content while middle image touches bottom */
}

/* Left Heading Box with premium border and colors */
.hero-left-box {
  position: relative;
  border-left: 4px solid var(--brand-gold);
  padding: 10px 0 10px 24px;
  background: linear-gradient(90deg, rgba(204, 147, 48, 0.08) 0%, rgba(4, 21, 39, 0) 100%);
  border-radius: 0 16px 16px 0;
  box-shadow: -10px 0 25px -10px rgba(204, 147, 48, 0.3);
}

.hero-lead-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold-light);
  background: rgba(4, 21, 39, 0.75);
  border: 1px solid rgba(204, 147, 48, 0.5);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(204, 147, 48, 0.2);
  backdrop-filter: blur(8px);
}

.hero-title-main {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #dea336 0%, #ffc86b 50%, #cc9330 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(204, 147, 48, 0.4));
}

.hero-title-divider {
  width: 65px;
  height: 4px;
  background: var(--brand-gold-gradient);
  border-radius: 4px;
  margin-bottom: 18px;
  box-shadow: 0 0 12px rgba(204, 147, 48, 0.7);
}

.hero-desc-main {
  font-size: 1.18rem;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 0;
  font-weight: 400;
}

/* Banner image perfectly bottom aligned flush with hero edge */
.hero-banner-img-wrap {
  position: relative;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 0;
}

.hero-banner-img-wrap:hover {
  transform: translateY(-4px);
}

.hero-banner-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
  vertical-align: bottom;
  margin-bottom: 0;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
}

/* Right side content matching the attachment */
.hero-right-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-left: 15px;
}

.hero-right-tagline {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-right-tagline span {
  color: var(--brand-gold-light);
}

/* Animated Stats Section */
.stats-section {
  margin-top: -45px;
  position: relative;
  z-index: 10;
  padding-bottom: 60px;
}

.stats-card-container {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 36px 24px;
  border: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: var(--border-color);
}

@media (max-width: 768px) {
  .stat-item:not(:last-child)::after {
    display: none;
  }
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--theme-green-light);
  color: var(--theme-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--dark-color);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ==========================================================================
   About Us Section (Key of Mind - Sopan Shedge)
   ========================================================================== */
.about-section-top {
  padding: 85px 0 75px;
  background: #ffffff;
  position: relative;
}

.about-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme-green-light);
  color: var(--theme-green);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-marathi-lead {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #334155;
}

.about-quote-highlight {
  background: linear-gradient(135deg, #f0fdf4 0%, #e8f7ef 100%);
  border-left: 4px solid var(--theme-green);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.about-quote-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--theme-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.about-quote-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0;
  line-height: 1.4;
}

.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  transition: var(--transition-smooth);
}

.topic-pill:hover {
  background: var(--theme-green-light);
  color: var(--theme-green);
  border-color: var(--theme-green);
  transform: translateY(-2px);
}

.vision-card, .mission-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--theme-green);
}

.vision-card {
  border-top: 4px solid var(--primary-light);
}

.mission-card {
  border-top: 4px solid var(--theme-green);
}

.card-icon-round {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card-icon-round.blue {
  background: #eff6ff;
  color: var(--primary-light);
}

.card-icon-round.green {
  background: var(--theme-green-light);
  color: var(--theme-green);
}

.card-icon-round.red {
  background: #fef2f2;
  color: #ef4444;
}

/* Redesigned Connect With Us Card in About Us */
.connect-us-card-modern {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid #ef4444; /* YouTube red accent */
  transition: var(--transition-smooth);
}

.connect-us-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.btn-youtube-custom {
  background-color: #ff0000;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(255, 0, 0, 0.3);
}

.btn-youtube-custom:hover {
  background-color: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.45);
}

.btn-whatsapp-custom {
  background-color: #25D366;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 8px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-custom:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* Floating Animated WhatsApp Button (Above Scroll-to-Top) */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  border: none;
  cursor: pointer;
  z-index: 1045;
  text-decoration: none;
  transition: var(--transition-smooth);
  animation: whatsappFloating 3s ease-in-out infinite;
}

.floating-whatsapp-btn::before,
.floating-whatsapp-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: whatsappPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.floating-whatsapp-btn::after {
  animation-delay: 0.7s;
}

.floating-whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #0f172a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 68px;
}

@keyframes whatsappPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  100% {
    width: 180%;
    height: 180%;
    opacity: 0;
  }
}

@keyframes whatsappFloating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ==========================================================================
   Courses Section (Designed exactly like Course Attachment image 2)
   ========================================================================== */
.courses-section {
  padding: 85px 0 95px;
  background: #ffffff;
}

.courses-filter-nav {
  display: inline-flex;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  padding: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.courses-filter-btn {
  background: transparent;
  border: none;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.courses-filter-btn:hover {
  color: var(--theme-green);
}

.courses-filter-btn.active {
  background-color: var(--theme-green);
  color: #ffffff;
}

/* Course Card like attachment */
.course-grid-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
  border-color: #cbd5e1;
}

.course-card-top {
  position: relative;
  height: 220px;
  background: #e8ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #edf2f7;
}

.course-card-img-placeholder {
  width: 90px;
  height: 70px;
  border: 3px solid #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #94a3b8;
}

.course-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--theme-green);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 2;
}

.course-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 52px;
}

.course-card-lessons {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.course-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--theme-green);
  font-family: 'Montserrat', sans-serif;
}

.btn-course-details {
  background-color: var(--theme-green);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 6px;
  border: none;
  transition: var(--transition-smooth);
}

.btn-course-details:hover {
  background-color: var(--theme-green-hover);
  transform: translateY(-1px);
}

/* Events Section */
.events-section {
  padding: 80px 0;
  background: #f8fafc;
}

.event-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.event-date-badge {
  background: var(--primary-color);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  min-width: 65px;
}

.event-date-badge .day {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

.event-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--theme-green-light);
  color: var(--theme-green);
}

.video-player-box {
  background: #0f172a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.video-container-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Meet Founder Section */
.founder-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.founder-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.founder-img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--theme-green);
}

.founder-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary-dark);
  border-left: 3px solid var(--theme-green);
  padding-left: 18px;
  margin: 22px 0;
}

.founder-pill {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

/* Sliders: Awards & Clients */
.awards-section {
  padding: 75px 0;
  background: #ffffff;
}

.clients-section {
  padding: 60px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.award-item-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  margin: 10px;
}

.award-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.award-img {
  max-height: 140px;
  width: auto;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}

.client-logo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 24px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: var(--transition-smooth);
  margin: 8px;
}

.client-logo-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--theme-green);
}

.client-logo-card img {
  max-height: 50px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: #ffffff;
}

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  flex-grow: 1;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-color);
  background-color: #ffffff;
  padding: 18px 24px;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: var(--theme-green);
  background-color: var(--theme-green-light);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,0.125);
}

.accordion-body {
  padding: 18px 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Footer Section (Designed exactly like Footer Attachment image 3)
   ========================================================================== */
.site-footer-modern {
  background-color: var(--footer-bg);
  color: #94a3b8;
  padding: 70px 0 30px;
  position: relative;
}

.footer-logo-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 70px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.footer-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-brand-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background: var(--theme-green);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-column-title {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 14px;
}

.footer-nav-list a {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.02rem;
  transition: var(--transition-smooth);
}

.footer-nav-list a:hover {
  color: var(--theme-green);
  padding-left: 4px;
}

/* App Download Store Badges like attachment */
.app-store-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
  margin-bottom: 12px;
  max-width: 250px;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--theme-green);
  transform: translateY(-2px);
  color: #ffffff;
}

.app-store-icon {
  font-size: 1.8rem;
  color: #ffffff;
}

.app-store-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  line-height: 1.2;
}

.app-store-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.footer-bottom-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 24px;
}

.footer-copyright-text {
  color: #94a3b8;
  font-size: 0.92rem;
  text-align: center;
}

/* Right Side Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--theme-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(55, 168, 108, 0.4);
  border: none;
  cursor: pointer;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--theme-green-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(55, 168, 108, 0.55);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary-dark);
  opacity: 1;
}

/* ==========================================================================
   Inter-Section "Start Your Growth Journey" CTA Dividers & Buttons
   ========================================================================== */
.growth-section-cta-wrap {
  padding: 38px 0;
  background: linear-gradient(135deg, #041527 0%, #0d2745 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(204, 147, 48, 0.2);
  border-bottom: 1px solid rgba(204, 147, 48, 0.2);
}

.growth-section-cta-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(204, 147, 48, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.growth-section-cta-wrap.light-style {
  background: linear-gradient(135deg, #fdfbf7 0%, #fbf5e8 100%);
  border-top: 1px solid rgba(204, 147, 48, 0.2);
  border-bottom: 1px solid rgba(204, 147, 48, 0.2);
}

.growth-section-cta-wrap.light-style .growth-cta-title {
  color: #041527;
}

.growth-section-cta-wrap.light-style .growth-cta-subtitle {
  color: #64748b;
}

.growth-cta-title {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.growth-cta-subtitle {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Testimonials Auto Slider Section (Above FAQ)
   ========================================================================== */
.testimonials-section {
  padding: 95px 0 85px;
  background: #ffffff;
  position: relative;
}

.testimonial-card-modern {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 34px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(4, 21, 39, 0.06);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--brand-gold);
  box-shadow: 0 12px 30px rgba(204, 147, 48, 0.18);
}

.testimonial-quote-icon {
  font-size: 2.2rem;
  color: var(--brand-gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-star-rating {
  color: #dea336;
  font-size: 1rem;
  margin-bottom: 14px;
}

.testimonial-feedback-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fbf5e8;
  color: #b88022;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(204, 147, 48, 0.25);
  margin-bottom: 18px;
}

.testimonial-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-gold);
}

.testimonial-author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #041527;
  margin-bottom: 2px;
}

.testimonial-author-role {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 0;
}

/* ==========================================================================
   Smooth Scroll Reveal Animations
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle continuous glow for special CTA buttons */
@keyframes goldPulseGlow {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(204, 147, 48, 0.4);
  }
  50% {
    box-shadow: 0 10px 32px rgba(222, 163, 54, 0.7);
  }
}

.pulse-gold-glow {
  animation: goldPulseGlow 2.5s infinite;
}

@media (max-width: 991px) {
  .logo-overlap-wrap {
    margin-bottom: 0px;
  }
  .hero-section {
    padding: 60px 0 0;
  }
  .hero-side-content {
    padding-bottom: 25px;
  }
  .hero-left-box {
    border-left: none;
    border-top: 3px solid var(--brand-gold);
    border-bottom: 3px solid var(--brand-gold);
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(204, 147, 48, 0.15);
  }
  .hero-title-divider {
    margin: 0 auto 16px auto;
  }
  .hero-desc-main {
    margin: 0 auto;
  }
  .hero-title-main {
    font-size: 2.5rem;
  }
  .hero-right-tagline {
    font-size: 2.2rem;
  }
  .hero-right-container {
    align-items: center;
    text-align: center;
    padding-left: 0;
    margin-top: 20px;
  }
  .hero-banner-img-wrap {
    min-height: auto;
    margin: 20px 0 0;
  }
  .hero-banner-img {
    max-width: 380px;
    margin: 0 auto;
  }
  .carousel-control-prev {
    left: 0;
  }
  .carousel-control-next {
    right: 0;
  }
  .floating-whatsapp-btn {
    bottom: 82px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .scroll-to-top {
    bottom: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}
