/* 
  BITPS Corporate Landing Page Stylesheet
  Aesthetics: Luxury Corporate, Cyber-Organic, Cinematic Motion
  Layout: Normal Standalone Scroll (No Pinning/Scrubbing)
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #02040a;
  --bg-secondary: #050a16;
  --gold-primary: #D4AF37;
  --gold-light: #F5D061;
  --gold-dark: #AA7C11;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --gold-glow-intense: rgba(212, 175, 55, 0.6);
  --text-light: #F3F4F6;
  --text-muted: #9CA3AF;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
  --card-border: rgba(212, 175, 55, 0.15);
  --card-bg: rgba(5, 10, 22, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Lenis Smooth Scroll Configuration */
html.lenis {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}

/* Background Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.volumetric-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ambient-glow-1 {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(5, 10, 22, 0) 70%);
  filter: blur(80px);
  animation: pulseGlow 15s infinite alternate ease-in-out;
}

.ambient-glow-2 {
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 45, 100, 0.15) 0%, rgba(5, 10, 22, 0) 70%);
  filter: blur(100px);
  animation: pulseGlow 20s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.2) translate(5%, 5%); opacity: 1; }
}

/* Page Flow Containers */
.page-container {
  position: relative;
  width: 100%;
  z-index: 10;
}

/* --- HERO SECTION --- */
.hero-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Central vertical beam */
.gold-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0), var(--gold-primary) 20%, #ffffff 50%, var(--gold-primary) 80%, rgba(212, 175, 55, 0));
  box-shadow: 0 0 30px 4px var(--gold-glow-intense), 0 0 10px 1px #ffffff;
  transform: translateX(-50%) scaleY(0);
  transform-origin: center;
  opacity: 0;
  z-index: 5;
}

/* Logo Reveal Container */
.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  perspective: 1000px;
  z-index: 10;
}

.logo-letters {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

/* 3D Metallic Gold Typography */
.letter {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 30%, var(--gold-primary) 60%, var(--gold-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0px 5px 25px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
  position: relative;
  display: inline-block;
  opacity: 1; /* Fallback visible */
  transform: none; /* Fallback visible */
}

.letter::after {
  content: attr(data-letter);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0.8));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transform: translateY(2px) translateZ(-1px);
  filter: blur(1px);
}

.tagline {
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.6em;
  color: var(--text-muted);
  text-transform: uppercase;
  opacity: 1; /* Fallback visible */
  transform: none; /* Fallback visible */
  background: linear-gradient(to right, var(--text-muted), #ffffff, var(--text-muted));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* GSAP active states: hide elements initially so the script can animate them */
.gsap-active .letter {
  opacity: 0;
  transform: scale(0.5) translateZ(-500px);
}

.gsap-active .tagline {
  opacity: 0;
  transform: translateY(20px);
}

.gsap-active .scroll-indicator {
  opacity: 0;
}

/* --- NETWORK SECTION --- */
.network-section {
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 60px 0 80px 0;
  background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

/* Parent Node in Connection Diagram */
.network-logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 50px;
  background: rgba(5, 10, 22, 0.6);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
  z-index: 10;
  margin-bottom: 20px;
}

.network-logo-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 40%, var(--gold-primary) 70%, var(--gold-dark) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.network-logo-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 5px;
}

/* SVG Connection Lines Overlay */
.network-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.connection-line {
  fill: none;
  stroke: url(#gold-grad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px var(--gold-glow));
}

.connection-line-bg {
  fill: none;
  stroke: rgba(212, 175, 55, 0.04);
  stroke-width: 2.5;
}

.pulse-circle {
  fill: #ffffff;
  filter: drop-shadow(0 0 8px var(--gold-primary));
}

/* Company Grid Container */
.company-container {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 0 50px;
  margin-top: 110px; /* Compact spacing under the network-logo */
  z-index: 10;
}

/* Glassmorphism Corporate Cards */
.company-card {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 25px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Shimmer Sweep Animation on hover */
.company-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.13) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  transition: all 0s;
  pointer-events: none;
}

.company-card:hover::after {
  left: 150%;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.company-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 50px -15px rgba(212, 175, 55, 0.15), 0 0 15px -3px var(--gold-glow);
}

.company-card:hover::before {
  opacity: 1;
}

.card-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.card-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  height: 80px;
}

.card-logo-img {
  max-width: 100%;
  height: 100%;
  max-height: 80px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.outro-logo-img {
  width: 130px;
  height: 55px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.footer-logo-img {
  width: 150px;
  height: 50px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
}

.company-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

/* Unique Company Reveals Styles */
.particle-emitter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

/* Medhasa Handwriting Class */
.handwriting-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  stroke: var(--gold-primary);
  stroke-width: 1.8;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

/* Nopla Tech Matrix Rotation */
.nopla-card {
  transform-style: preserve-3d;
}

/* IFRA Premium Fade Light sweep overlay */
.light-sweep-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(212, 175, 55, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  pointer-events: none;
}

/* --- OUTRO SECTION --- */
.outro-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.outro-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
}

.outro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 50%, #ffffff 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shineText 6s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.outro-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.outro-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, rgba(212, 175, 55, 0) 0%, var(--gold-primary) 50%, rgba(212, 175, 55, 0) 100%);
  box-shadow: 0 0 10px var(--gold-primary);
}

.outro-logos-row {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
}

.outro-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.15));
  opacity: 0.85;
}

.outro-logo-item:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px var(--gold-glow-intense));
  opacity: 1;
}

@keyframes shineText {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Footer elements */
.brand-footer {
  margin-top: 60px;
  display: flex;
  gap: 40px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 50;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 1.5px solid var(--text-muted);
  border-radius: 10px;
  position: relative;
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 16px; opacity: 0; }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .company-container {
    gap: 15px;
    padding: 0 20px;
    margin-top: 90px;
  }
  .company-card {
    height: 250px;
    padding: 25px 15px;
  }
  .company-desc {
    font-size: 0.75rem;
  }
  .outro-logos-row {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .company-container {
    gap: 10px;
    padding: 0 10px;
    margin-top: 60px;
  }
  .company-card {
    height: 110px;
    padding: 12px 5px;
    border-radius: 10px;
    justify-content: center;
  }
  .card-logo-container {
    height: 60px;
    margin-bottom: 0;
  }
  .card-logo-img {
    max-height: 60px !important;
  }
  .company-desc {
    display: none;
  }
  .letter {
    font-size: clamp(3rem, 18vw, 6rem);
  }
  .scroll-indicator {
    bottom: 20px;
  }
  .outro-logos-row {
    gap: 15px;
  }
  .outro-logo-item svg,
  .outro-logo-img {
    width: 80px !important;
    height: 35px !important;
  }
}

/* ==========================================================================
   HEADER & NAVIGATION GLOBAL STYLES
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(2, 8, 19, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 12px 50px;
  background: rgba(2, 8, 19, 0.95);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrapper svg {
  height: 45px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 5px 0;
  color: #F3F4F6;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
  color: #02040a;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #F3F4F6;
  transition: all 0.3s ease;
}

/* ==========================================================================
   MINDGROW SPECIFIC LAYOUT AND DESIGN RULES (SCALED FOR DUAL INTERACTIVE INTEGRATION)
   ========================================================================== */

.mindgrow-wrapper {
  --bg-primary: #020813;
  --bg-secondary: #081229;
  --navy-light: #0d2247;
  --gold-primary: #D4AF37;
  --gold-light: #F5D061;
  --gold-dark: #AA7C11;
  --gold-glow: rgba(212, 175, 55, 0.2);
  --gold-glow-intense: rgba(212, 175, 55, 0.55);
  --text-light: #F3F4F6;
  --text-muted: #9CA3AF;
  --text-dark: #111827;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
  --card-border: rgba(212, 175, 55, 0.15);
  --card-bg: rgba(8, 18, 41, 0.55);
  --card-hover-border: rgba(212, 175, 55, 0.45);
  
  width: 100%;
  position: relative;
  z-index: 12;
}

/* Header Slide-in show state */
header.show-header {
  transform: translateY(0) !important;
}

/* Neural Network Background Canvas (Fade state on scroll) */
#neural-canvas.show-canvas {
  opacity: 0.35 !important;
}

/* --- MINDGROW SUB-COMPONENTS STYLING --- */
.mindgrow-wrapper .hero {
  position: relative;
  width: 100%;
  padding: 100px 50px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}

.mindgrow-wrapper .hero-subtitle {
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #F5D061;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(245, 208, 97, 0.3);
}

.mindgrow-wrapper .hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  max-width: 900px;
}

.mindgrow-wrapper .hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, #F5D061 40%, #D4AF37 70%, #AA7C11 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.mindgrow-wrapper .hero-description {
  font-size: 1.05rem;
  color: #9CA3AF;
  max-width: 700px;
  margin-bottom: 35px;
  font-weight: 300;
}

.mindgrow-wrapper .btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
}

.mindgrow-wrapper .btn-primary {
  background: linear-gradient(135deg, #AA7C11 0%, #D4AF37 50%, #F5D061 100%);
  color: #020813;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.mindgrow-wrapper .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.55), 0 0 10px rgba(255, 255, 255, 0.2);
}

.mindgrow-wrapper .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(8px);
}

.mindgrow-wrapper .btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

/* Stats Counter Row */
.mindgrow-wrapper .stats-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.mindgrow-wrapper .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mindgrow-wrapper .stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  margin-bottom: 5px;
}

.mindgrow-wrapper .stat-label {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* --- SECTIONS COMMON STYLING --- */
.mindgrow-wrapper .section {
  position: relative;
  padding: 80px 80px;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mindgrow-wrapper .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.mindgrow-wrapper .section-tag {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: #D4AF37;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.mindgrow-wrapper .section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
}

.mindgrow-wrapper .section-title span {
  color: #D4AF37;
}

/* --- ABOUT MINDGROW --- */
.mindgrow-wrapper .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.mindgrow-wrapper .about-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.mindgrow-wrapper .about-content p {
  color: #9CA3AF;
  margin-bottom: 25px;
  font-size: 1rem;
}

.mindgrow-wrapper .pillars-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.mindgrow-wrapper .pillar-item {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.mindgrow-wrapper .pillar-item:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.12);
}

.mindgrow-wrapper .pillar-icon {
  font-size: 1.6rem;
  color: #D4AF37;
  margin-bottom: 10px;
}

.mindgrow-wrapper .pillar-title {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.mindgrow-wrapper .pillar-desc {
  font-size: 0.8rem;
  color: #9CA3AF;
}

.mindgrow-wrapper .brain-graphic-container {
  width: 100%;
  max-width: 380px;
  height: 380px;
  border: 1.5px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: rotateGraphic 35s linear infinite;
  margin: 0 auto;
}

.mindgrow-wrapper .brain-core {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(8, 18, 41, 0.85) 100%);
  border-radius: 50%;
  border: 1.5px solid #D4AF37;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: counterRotateGraphic 35s linear infinite;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.mindgrow-wrapper .brain-core svg {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 8px #D4AF37);
}

.mindgrow-wrapper .brain-node {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #081229;
  border: 1.5px solid #D4AF37;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  animation: counterRotateGraphic 35s linear infinite;
  color: #fff;
}

/* --- FOCUS AREAS --- */
.mindgrow-wrapper .focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.mindgrow-wrapper .focus-card {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 25px 15px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mindgrow-wrapper .focus-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 0 0 15px rgba(212, 175, 55, 0.2);
}

.mindgrow-wrapper .focus-num {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: #F5D061;
  opacity: 0.5;
  margin-bottom: 12px;
}

.mindgrow-wrapper .focus-icon {
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 15px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mindgrow-wrapper .focus-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

/* --- PROGRAMS SECTION --- */
.mindgrow-wrapper .programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.mindgrow-wrapper .program-card {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mindgrow-wrapper .program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.2);
}

.mindgrow-wrapper .program-header-img {
  height: 160px;
  position: relative;
  background-color: #0d2247;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mindgrow-wrapper .program-header-img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(8, 18, 41, 0) 50%, #081229 100%);
  z-index: 1;
}

.mindgrow-wrapper .program-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(2, 8, 19, 0.8);
  border: 1.5px solid #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 2rem;
  color: #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.mindgrow-wrapper .program-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mindgrow-wrapper .program-name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.mindgrow-wrapper .program-desc {
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-bottom: 20px;
  flex-grow: 1;
}

.mindgrow-wrapper .program-link {
  font-size: 0.8rem;
  color: #F5D061;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: color 0.3s;
}

.mindgrow-wrapper .program-link:hover {
  color: #ffffff;
}

/* --- WHY CHOOSE MINDGROW --- */
.mindgrow-wrapper .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.mindgrow-wrapper .why-card {
  background: linear-gradient(135deg, rgba(8, 18, 41, 0.85) 0%, rgba(2, 8, 19, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 35px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.3s;
}

.mindgrow-wrapper .why-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.mindgrow-wrapper .why-icon {
  font-size: 2.2rem;
  color: #D4AF37;
  margin-bottom: 15px;
}

.mindgrow-wrapper .why-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.mindgrow-wrapper .why-desc {
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.5;
}

/* --- FOUNDER SECTION --- */
.mindgrow-wrapper .founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.mindgrow-wrapper .founder-img-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.mindgrow-wrapper .founder-frame {
  position: relative;
  width: 300px;
  height: 360px;
  border: 2px solid #D4AF37;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.mindgrow-wrapper .founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(15%) contrast(110%);
}

.mindgrow-wrapper .founder-meta {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #081229;
  border: 1px solid #D4AF37;
  padding: 10px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.mindgrow-wrapper .founder-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.mindgrow-wrapper .founder-title {
  font-size: 0.7rem;
  color: #F5D061;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.mindgrow-wrapper .founder-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #ffffff;
  border-left: 3px solid #D4AF37;
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.mindgrow-wrapper .founder-bio {
  color: #9CA3AF;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.mindgrow-wrapper .founder-signature {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #D4AF37;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 15px;
}

/* --- VIDEO EMBED SECTION --- */
.mindgrow-wrapper .video-section-wrapper {
  background: radial-gradient(circle at center, #0d2247 0%, #020813 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 50px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  margin: 40px auto 0;
  max-width: 900px;
  text-align: center;
}

.mindgrow-wrapper .video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #030a17;
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  overflow: hidden;
  margin: 25px 0;
  cursor: pointer;
}

.mindgrow-wrapper .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.8s ease;
}

.mindgrow-wrapper .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020813;
  font-size: 1.6rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.55);
  transition: all 0.3s;
}

/* --- BITPS DIVISION CARD --- */
.mindgrow-wrapper .bitps-div-section {
  background: linear-gradient(180deg, #020813 0%, #081229 100%);
  padding: 80px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.mindgrow-wrapper .bitps-branding {
  text-align: center;
  margin-bottom: 40px;
}

.mindgrow-wrapper .bitps-logo-h2 {
  font-family: 'Cinzel', serif;
  font-size: 3.4rem;
  letter-spacing: 0.15em;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #F5D061 40%, #D4AF37 80%, #AA7C11 100%);
  background-clip: text;
  -webkit-background-clip: text;
  margin-bottom: 5px;
}

.mindgrow-wrapper .bitps-subtitle {
  font-size: 0.85rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.mindgrow-wrapper .divisions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.mindgrow-wrapper .division-card {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 25px 15px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s;
}

.mindgrow-wrapper .division-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
}

.mindgrow-wrapper .division-card.active-div {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.mindgrow-wrapper .division-card-icon {
  font-size: 1.8rem;
  color: #D4AF37;
  margin-bottom: 12px;
}

.mindgrow-wrapper .division-card-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.mindgrow-wrapper .division-card-desc {
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* --- ROADMAP TIMELINE --- */
.mindgrow-wrapper .roadmap-timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 10px 0;
}

.mindgrow-wrapper .roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0) 0%, #D4AF37 15%, #D4AF37 85%, rgba(212, 175, 55, 0) 100%);
  transform: translateX(-50%);
}

.mindgrow-wrapper .timeline-item {
  position: relative;
  width: 50%;
  padding: 15px 30px;
  box-sizing: border-box;
}

.mindgrow-wrapper .timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.mindgrow-wrapper .timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.mindgrow-wrapper .timeline-dot {
  position: absolute;
  top: 25px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #020813;
  border: 2px solid #D4AF37;
  box-shadow: 0 0 10px #D4AF37;
  z-index: 2;
}

.mindgrow-wrapper .timeline-item:nth-child(odd) .timeline-dot {
  right: -7px;
}

.mindgrow-wrapper .timeline-item:nth-child(even) .timeline-dot {
  left: -7px;
}

.mindgrow-wrapper .timeline-card {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.mindgrow-wrapper .timeline-phase {
  font-size: 0.75rem;
  color: #F5D061;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.mindgrow-wrapper .timeline-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.mindgrow-wrapper .timeline-desc {
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* --- TESTIMONIALS SLIDER --- */
.mindgrow-wrapper .testimonials-slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.mindgrow-wrapper .testimonials-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.mindgrow-wrapper .testimonial-slide {
  min-width: 100%;
  padding: 15px 30px;
  box-sizing: border-box;
}

.mindgrow-wrapper .testimonial-card {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 35px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  position: relative;
  text-align: center;
}

.mindgrow-wrapper .quote-icon-lg {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: #D4AF37;
  opacity: 0.15;
  position: absolute;
  top: 15px;
  left: 30px;
}

.mindgrow-wrapper .testimonial-text {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

.mindgrow-wrapper .testimonial-client {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mindgrow-wrapper .client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1.5px solid #D4AF37;
  object-fit: cover;
  margin-bottom: 10px;
}

.mindgrow-wrapper .client-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.mindgrow-wrapper .client-title {
  font-size: 0.7rem;
  color: #F5D061;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.mindgrow-wrapper .slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.mindgrow-wrapper .slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.mindgrow-wrapper .slider-btn:hover {
  background: #D4AF37;
  color: #020813;
  border-color: #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.mindgrow-wrapper .slider-dots {
  display: flex;
  gap: 10px;
}

.mindgrow-wrapper .slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.mindgrow-wrapper .slider-dot.active {
  background: #D4AF37;
  transform: scale(1.3);
  box-shadow: 0 0 8px #D4AF37;
}

/* --- BLOG CARD --- */
.mindgrow-wrapper .blog-listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.mindgrow-wrapper .blog-card {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.mindgrow-wrapper .blog-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-8px);
}

.mindgrow-wrapper .blog-thumbnail-wrapper {
  height: 180px;
  background: #0d2247;
  overflow: hidden;
  position: relative;
}

.mindgrow-wrapper .blog-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mindgrow-wrapper .blog-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #D4AF37;
  color: #020813;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.mindgrow-wrapper .blog-card-body {
  padding: 20px;
}

.mindgrow-wrapper .blog-card-meta {
  font-size: 0.7rem;
  color: #9CA3AF;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.mindgrow-wrapper .blog-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.mindgrow-wrapper .blog-card-excerpt {
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-bottom: 15px;
  line-height: 1.5;
}

.mindgrow-wrapper .blog-card-link {
  font-size: 0.75rem;
  color: #F5D061;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- CONTACT SECTION & FORMS --- */
.mindgrow-wrapper .contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.mindgrow-wrapper .contact-info-panel {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 35px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.mindgrow-wrapper .contact-info-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.mindgrow-wrapper .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mindgrow-wrapper .contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mindgrow-wrapper .contact-info-icon {
  font-size: 1.2rem;
  color: #D4AF37;
  margin-top: 3px;
}

.mindgrow-wrapper .contact-info-content h5 {
  font-size: 0.8rem;
  color: #F5D061;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.mindgrow-wrapper .contact-info-content p {
  font-size: 0.9rem;
  color: #F3F4F6;
}

.mindgrow-wrapper .form-panel {
  background: rgba(8, 18, 41, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 35px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.mindgrow-wrapper .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

.mindgrow-wrapper .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mindgrow-wrapper .form-group-full {
  grid-column: span 2;
}

.mindgrow-wrapper .form-group label {
  font-size: 0.75rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mindgrow-wrapper .form-control {
  background: rgba(2, 8, 19, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 10px 14px;
  border-radius: 4px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.mindgrow-wrapper .form-control:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  background: rgba(2, 8, 19, 0.8);
}

.mindgrow-wrapper textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.mindgrow-wrapper .form-feedback {
  margin-top: 15px;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 4px;
  display: none;
}

.mindgrow-wrapper .form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1.5px solid #10b981;
  color: #34d399;
}

.mindgrow-wrapper .form-feedback.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1.5px solid #ef4444;
  color: #f87171;
}

/* --- FOOTER --- */
.mindgrow-wrapper footer {
  background: #01040a;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 60px 50px 30px;
  z-index: 2;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.mindgrow-wrapper .footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.83fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.mindgrow-wrapper .footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mindgrow-wrapper .footer-desc {
  font-size: 0.85rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.mindgrow-wrapper .footer-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.mindgrow-wrapper .footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mindgrow-wrapper .footer-menu a {
  font-size: 0.85rem;
  color: #9CA3AF;
  transition: color 0.3s;
}

.mindgrow-wrapper .footer-menu a:hover {
  color: #F5D061;
}

.mindgrow-wrapper .footer-socials {
  display: flex;
  gap: 12px;
}

.mindgrow-wrapper .social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;
}

.mindgrow-wrapper .social-icon:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

.mindgrow-wrapper .footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #9CA3AF;
}

.mindgrow-wrapper .footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(37, 211, 102, 0.8);
}

/* Slide in state for Header */
header.show-header {
  transform: translateY(0) !important;
}

/* Mobile viewport adjustments for MindGrow inside main wrapper */
@media (max-width: 992px) {
  header {
    padding: 15px 30px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(8, 18, 41, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1.5px solid var(--gold-primary);
    padding: 30px 0;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  }
  .nav-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }

  .mindgrow-wrapper .about-grid, 
  .mindgrow-wrapper .founder-grid, 
  .mindgrow-wrapper .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mindgrow-wrapper .focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mindgrow-wrapper .programs-grid,
  .mindgrow-wrapper .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mindgrow-wrapper .divisions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mindgrow-wrapper .blog-listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mindgrow-wrapper .hero-title {
    font-size: 1.8rem;
  }
  .mindgrow-wrapper .stats-container {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
  .mindgrow-wrapper .programs-grid, 
  .mindgrow-wrapper .why-grid, 
  .mindgrow-wrapper .blog-listings-grid {
    grid-template-columns: 1fr;
  }
  .mindgrow-wrapper .divisions-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 0 15px !important;
  }
  .mindgrow-wrapper .division-card {
    flex: 0 0 calc(50% - 6px) !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 15px 8px !important;
    box-sizing: border-box !important;
  }
  .mindgrow-wrapper .division-card-icon {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
  }
  .mindgrow-wrapper .division-card-title {
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
  }
  .mindgrow-wrapper .division-card-desc {
    font-size: 0.68rem !important;
    line-height: 1.3 !important;
  }
  .mindgrow-wrapper .focus-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 15px !important;
  }
  .mindgrow-wrapper .focus-card {
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 15px 8px !important;
    box-sizing: border-box !important;
  }
  .mindgrow-wrapper .focus-num {
    font-size: 0.75rem !important;
    margin-bottom: 4px !important;
  }
  .mindgrow-wrapper .focus-icon {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
    height: auto !important;
  }
  .mindgrow-wrapper .focus-title {
    font-size: 0.82rem !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }
  .mindgrow-wrapper .form-grid {
    grid-template-columns: 1fr;
  }
  .mindgrow-wrapper .form-group-full {
    grid-column: span 1;
  }
}
