﻿/* ============================================================
   Streamertail Web Solutions  — GLOBAL STYLESHEET v4.0
   All 7 fixes applied:
   1. Trusted By carousel (7 desktop / 2 mobile)
   2. Why Choose Us enhanced
   3. Placement History section
   4. Hero slider arrow fix
   5. Navbar curve on default (not just scrolled)
   6. Top header bar
   7. Hero images + About page (Mission/Vision)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ──────────────────────────────────────────────────────────── */
:root {
  --red:          #fe2e02;
  --red-deep:     #cc2400;
  --red-light:    #ff6040;
  --red-pale:     #fff0ee;
  --orange:       #ff4a1c;
  --pink:         #ff5533;

  --white:        #FFFFFF;
  --off-white:    #FAFAFA;
  --cream:        #FFF5F3;
  --gray-50:      #F7F7F8;
  --gray-100:     #EDEDEF;
  --gray-200:     #DADADD;
  --gray-400:     #9A9AA8;
  --gray-600:     #6B6B7B;
  --dark:         #14141C;
  --dark-mid:     #1E1E2A;
  --dark-soft:    #2A2A38;

  --grad-hero:    linear-gradient(135deg, rgba(20,20,28,0.88) 0%, rgba(204,36,0,0.72) 100%);
  --grad-red:     linear-gradient(135deg, var(--red-deep) 0%, var(--red) 50%, var(--red-light) 100%);
  --grad-warm:    linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  --grad-fire:    linear-gradient(135deg, var(--red-deep) 0%, var(--red) 40%, var(--orange) 80%, #ff7043 100%);
  --grad-card:    linear-gradient(160deg, #fff 0%, var(--red-pale) 100%);
  --grad-section: linear-gradient(135deg, #FFF5F3 0%, #FFE8E4 50%, #FFF5F3 100%);
  --grad-dark:    linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 60%, #140A08 100%);
  --grad-franchise: linear-gradient(135deg, #fe2e02 0%, #cc2400 35%, #14141C 100%);
  --grad-placement: linear-gradient(135deg, #0A0A14 0%, #1A0A0A 40%, #140A08 100%);

  --glass-white:  rgba(255,255,255,0.10);
  --glass-red:    rgba(254,46,2,0.10);
  --blur:         blur(20px);

  --sh-xs:   0 2px 8px rgba(0,0,0,0.06);
  --sh-sm:   0 4px 20px rgba(0,0,0,0.08);
  --sh-md:   0 12px 40px rgba(0,0,0,0.12);
  --sh-lg:   0 24px 60px rgba(0,0,0,0.16);
  --sh-red:  0 8px 32px rgba(254,46,2,0.30);
  --sh-red-lg: 0 20px 60px rgba(254,46,2,0.40);
  --sh-warm: 0 12px 40px rgba(255,74,28,0.25);

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --top-h:      40px;
  --nav-h:      80px;
  --section-py: 96px;

  --r-xs:  6px;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  48px;
  --r-full: 9999px;

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease);
  --t-mid:  0.4s var(--ease);
  --t-slow: 0.6s var(--ease);
}

/* ────────────────────────────────────────────────────────────
   RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  max-width: 100vw;
  /* Push all page content below the two fixed headers */
  padding-top: calc(var(--top-h) + var(--nav-h));
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: var(--font-body); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ────────────────────────────────────────────────────────────
   UTILITIES
   ──────────────────────────────────────────────────────────── */
.section-py    { padding: var(--section-py) 0; }
.section-py-sm { padding: 60px 0; }
.font-display  { font-family: var(--font-display) !important; }
.bg-off-white  { background: var(--off-white) !important; }
.mb-6          { margin-bottom: 5rem; }

/* ────────────────────────────────────────────────────────────
   SECTION HEADERS
   ──────────────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  height: 1.5px;
  width: 28px;
  background: var(--grad-warm);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title .accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.light { color: var(--white); }
.section-title.light .accent {
  background: linear-gradient(135deg, #FFB3BC, #FFD4B3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.8;
}
.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* ────────────────────────────────────────────────────────────
   FIX 6: TOP HEADER BAR
   ──────────────────────────────────────────────────────────── */
#topHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--top-h);
  background: linear-gradient(90deg, #0C0C14 0%, #140804 40%, #0C0C14 100%);
  border-bottom: 1px solid rgba(254,46,2,0.25);
  z-index: 1100;
  overflow: hidden;
}
.top-header-gfx {
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  pointer-events: none;
}
.top-header-gfx-left {
  left: 0;
  background: linear-gradient(90deg, rgba(254,46,2,0.25) 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
.top-header-gfx-right {
  right: 0;
  background: linear-gradient(270deg, rgba(254,46,2,0.20) 0%, transparent 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.top-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
  position: relative; z-index: 2;
}
.top-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.top-header-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(76,175,80,0.8);
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 4px rgba(76,175,80,0.6); transform: scale(1); }
  50%      { box-shadow: 0 0 14px rgba(76,175,80,0.9); transform: scale(1.2); }
}
.top-header-marquee-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.top-header-marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.top-header-marquee span {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding-right: 4rem;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.top-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}
.top-header-link:hover { color: white; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.top-header-link-wa { color: #4CAF50; border-color: rgba(76,175,80,0.25); }
.top-header-link-wa:hover { background: rgba(76,175,80,0.1); border-color: rgba(76,175,80,0.5); color: #81C784; }
.top-header-link-enroll {
  background: var(--grad-red);
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 2px 8px rgba(254,46,2,0.4);
}
.top-header-link-enroll:hover { box-shadow: 0 4px 16px rgba(254,46,2,0.6); transform: translateY(-1px); background: rgba(255,255,255,0.1) !important; }

/* ────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────── */
.btn-Streamertail Web Solutions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--spring);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lca::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: var(--t-fast);
}
.btn-lca:hover::before { opacity: 1; }
.btn-lca-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn-lca-md { padding: 0.8rem 2rem; }
.btn-lca-sm { padding: 0.6rem 1.5rem; font-size: 0.82rem; }
.btn-lca-primary { background: var(--grad-red); color: var(--white); box-shadow: var(--sh-red); }
.btn-lca-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--sh-red-lg); color: var(--white); }
.btn-lca-warm { background: var(--grad-warm); color: var(--white); box-shadow: var(--sh-warm); }
.btn-lca-warm:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 24px 60px rgba(255,74,28,0.4); color: var(--white); }
.btn-lca-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); backdrop-filter: blur(8px); }
.btn-lca-outline:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; transform: translateY(-3px); }
.btn-lca-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-lca-outline-red:hover { background: var(--red); color: white; transform: translateY(-3px); box-shadow: var(--sh-red); }
@keyframes btnShine { 0% { left: -120%; } 100% { left: 150%; } }
.btn-lca-primary::after, .btn-lca-warm::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-25deg);
}
.btn-lca-primary:hover::after, .btn-lca-warm:hover::after { animation: btnShine 0.5s ease forwards; }

/* ────────────────────────────────────────────────────────────
   AOS ANIMATIONS
   ──────────────────────────────────────────────────────────── */
[data-aos] { opacity: 1; transform: none; transition-property: transform, opacity; }
[data-aos].aos-init { opacity: 0; }
[data-aos].aos-init.aos-animate { opacity: 1; transform: none !important; }
[data-aos="fade-up"].aos-init:not(.aos-animate)   { transform: translateY(40px); }
[data-aos="fade-left"].aos-init:not(.aos-animate)  { transform: translateX(-50px); }
[data-aos="fade-right"].aos-init:not(.aos-animate) { transform: translateX(50px); }
[data-aos="fade-in"].aos-init:not(.aos-animate)    { transform: scale(0.95); }

/* ────────────────────────────────────────────────────────────
   FIX 5: NAVBAR — Curved on DEFAULT (not just scrolled)
   ──────────────────────────────────────────────────────────── */
#mainNav {
  background: var(--white);
  height: var(--nav-h);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease), border-radius 0.35s var(--ease);
  z-index: 1050;
  border-radius: 0;
  overflow: visible;
  /* Account for top header */
  top: var(--top-h) !important;
}
#mainNav .navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  /* Prevent logo from exceeding navbar height */
  overflow: hidden;
}
#mainNav::after {
  display: none;
}
#mainNav.scrolled::after { display: none; }
#mainNav.scrolled {
  height: 64px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  border-radius: 0;
}
#mainNav .navbar-inner { display: flex; align-items: center; height: 100%; }

/* Logo */
.nav-logo-wrap { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo-emblem {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem;
  color: white;
  box-shadow: 0 4px 16px rgba(254,46,2,0.4);
  flex-shrink: 0; position: relative; overflow: hidden;
  transition: var(--t-mid);
}
.nav-logo-emblem::before {
  content: '';
  position: absolute; top: -40%; left: -40%;
  width: 70%; height: 70%;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  filter: blur(6px);
}
#mainNav.scrolled .nav-logo-emblem { width: 40px; height: 40px; font-size: 0.95rem; }
.nav-logo-text .name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--dark); line-height: 1.1;
}
.nav-logo-text .tagline {
  font-size: 0.62rem; color: var(--red); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: var(--dark) !important; padding: 0.5rem 1rem !important;
  position: relative; transition: color 0.2s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 1rem; right: 1rem;
  height: 2px; background: var(--grad-warm); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform 0.3s var(--spring);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--red) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--grad-red); color: white !important; border-radius: var(--r-full);
  padding: 0.55rem 1.5rem !important; font-weight: 700 !important;
  box-shadow: var(--sh-red); margin-left: 0.75rem;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--sh-red-lg) !important; color: white !important; }
.nav-cta::after { display: none !important; }
.nav-cta.nav-link { color: white !important; }
.nav-cta.nav-link:hover { color: white !important; }
.navbar-toggler { border: 1.5px solid var(--gray-200); border-radius: var(--r-xs); padding: 0.4rem 0.6rem; }

/* Mobile menu */
#navbarNav { background: var(--white); }
@media (max-width: 991.98px) {
  #navbarNav.show, #navbarNav.collapsing {
    background: var(--white) !important;
    border-top: 1px solid var(--gray-100);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 0.75rem 1rem 1.25rem;
    backdrop-filter: none;
  }
  .navbar-nav .nav-link { padding: 0.65rem 1rem !important; border-radius: var(--r-sm); }
  .navbar-nav .nav-link:hover { background: var(--red-pale); }
  .nav-cta { margin: 0.4rem 0 0 !important; width: fit-content; display: inline-flex; }
}

/* ────────────────────────────────────────────────────────────
   HERO CAROUSEL — Graphical BG + Right Image
   ──────────────────────────────────────────────────────────── */
/* Handled by .hero-section-curved */
#home { /* margin-top moved to .hero-section-curved */ }

#heroCarousel { position: relative; }
.hero-slide {
  position: relative;
  height: 88vh;
  min-height: 560px;
  max-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Graphical BG — no image */
.hero-slide-graphical { background: var(--dark); }

.slide-graphical-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide-graphical-bg-1 {
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(204,36,0,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(254,46,2,0.25) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 70% 80%, rgba(180,20,0,0.3) 0%, transparent 60%),
    linear-gradient(135deg, #0A0A12 0%, #1A0A08 40%, #0A0A14 100%);
}
.slide-graphical-bg-2 {
  background:
    radial-gradient(ellipse 70% 60% at 5% 50%, rgba(254,46,2,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 30%, rgba(255,74,28,0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0A0808 0%, #140804 40%, #0A0A10 100%);
}
.slide-graphical-bg-3 {
  background:
    radial-gradient(ellipse 75% 65% at 8% 50%, rgba(254,46,2,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 88% 25%, rgba(255,120,80,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #060810 0%, #081418 40%, #080610 100%);
}

/* Decorative mesh lines over graphical bg */
.slide-graphical-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(254,46,2,0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(254,46,2,0.06) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
}

/* Keep old .slide-bg for any fallback */
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  display: block;
}
.carousel-item.active .slide-bg-img { transform: scale(1); }
.slide-bg-overlay { position: absolute; inset: 0; }
.slide-overlay-1 { background: linear-gradient(135deg, rgba(14,14,20,0.92) 0%, rgba(140,20,35,0.65) 100%); }
.slide-overlay-2 { background: linear-gradient(135deg, rgba(20,10,14,0.90) 0%, rgba(180,70,0,0.60) 100%); }
.slide-overlay-3 { background: linear-gradient(135deg, rgba(10,14,20,0.92) 0%, rgba(80,10,120,0.50) 100%); }

.slide-geo { position: absolute; pointer-events: none; z-index: 1; }
.slide-geo-ring {
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(254,46,2,0.15);
  top: 50%; right: 8%; transform: translateY(-50%);
}
.slide-geo-ring-2 {
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: 50%; right: 15%; transform: translateY(-50%);
}
.slide-geo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); top: 30%; left: 5%;
  box-shadow: 0 0 20px rgba(254,46,2,0.6);
}
.slide-grid {
  position: absolute; inset: 0; z-index: 3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.slide-content { position: relative; z-index: 10; padding: 0 0 0; width: 100%; }
.slide-content .row { align-items: flex-end !important; min-height: 70vh; padding-bottom: 60px; }

/* Right side image in hero */
.hero-right-img-col {
  align-items: center;
  justify-content: center;
}
.hero-right-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-right-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px 28px 80px 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(254,46,2,0.2);
  display: block;
}
.hero-right-img-wrap .hero-stat-chip {
  position: absolute;
}
.hero-right-img-wrap .chip-a { top: -16px; left: -24px; animation: chipFloat1 5s ease-in-out infinite; }
.hero-right-img-wrap .chip-b { top: 40%; right: -28px; animation: chipFloat2 6s ease-in-out infinite; }
.hero-right-img-wrap .chip-c { bottom: 20px; left: -20px; animation: chipFloat1 7s 1s ease-in-out infinite; }

/* FIX 4: Carousel arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: all 0.3s;
  margin: 0 1.5rem;
  z-index: 20;
  position: absolute;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--sh-red);
  opacity: 1;
}
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 18px; height: 18px; }
.carousel-indicators { bottom: 28px; gap: 6px; margin: 0; z-index: 20; }
.carousel-indicators [data-bs-target] {
  width: 28px; height: 3px;
  border-radius: 2px; background: rgba(255,255,255,0.35);
  border: none; opacity: 1; transition: all 0.3s;
}
.carousel-indicators .active { background: var(--red); width: 52px; box-shadow: 0 0 12px rgba(254,46,2,0.7); }

/* Slide-in animation */
.carousel-item.active .slide-badge   { animation: slideIn 0.6s 0.1s both; }
.carousel-item.active .slide-title   { animation: slideIn 0.7s 0.25s both; }
.carousel-item.active .slide-desc    { animation: slideIn 0.7s 0.4s both; }
.carousel-item.active .slide-actions { animation: slideIn 0.7s 0.55s both; }
.carousel-item.active .hero-right-img-wrap { animation: slideIn 0.8s 0.3s both; }
@keyframes slideIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.slide-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(254,46,2,0.18); border: 1px solid rgba(254,46,2,0.4);
  color: #ff6040; padding: 0.4rem 1.1rem; border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.5rem; backdrop-filter: blur(10px);
}
.slide-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800; color: white; line-height: 1.1; margin-bottom: 1.25rem;
}
.slide-title .highlight {
  background: linear-gradient(135deg, #ff6040, #FFB347, #FFD200);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.slide-desc { font-size: 1.05rem; color: rgba(255,255,255,0.68); max-width: 520px; line-height: 1.8; margin-bottom: 2.5rem; }
.slide-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero floating stat chips */
.hero-stat-col { display: flex; align-items: center; justify-content: center; }
.hero-stat-floating {
  position: relative;
  width: 280px; height: 300px;
}
.hero-stat-chip {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.chip-a { animation: chipFloat1 5s ease-in-out infinite; }
.chip-b { animation: chipFloat2 6s ease-in-out infinite; }
.chip-c { animation: chipFloat1 7s 1s ease-in-out infinite; }
.hero-stat-chip .chip-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-red);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.95rem; flex-shrink: 0; box-shadow: var(--sh-red);
}
.hero-stat-chip .chip-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: white; line-height: 1;
}
.hero-stat-chip .chip-label { font-size: 0.65rem; color: rgba(255,255,255,0.6); font-weight: 500; }
@keyframes chipFloat1 { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes chipFloat2 { 0%,100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-14px) rotate(-1deg); } }

/* ────────────────────────────────────────────────────────────
   FIX 1: TRUSTED BY — Auto-scrolling carousel
   Desktop: 7 visible, Mobile: 2 visible
   ──────────────────────────────────────────────────────────── */
#partners {
  background: var(--white);
  position: relative; overflow: hidden;
}
#partners::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 24px,
    rgba(254,46,2,0.025) 24px, rgba(254,46,2,0.025) 25px
  );
  pointer-events: none;
}

.trusted-track-wrap {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trusted-track {
  display: flex;
  gap: 0.5rem;
  animation: trustedScroll 22s linear infinite;
  width: max-content;
}
.trusted-track:hover { animation-play-state: paused; }
@keyframes trustedScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  flex-shrink: 0;
  width: calc((100vw - 120px) / 7);
  min-width: 110px;
  max-width: 150px;
}

.trusted-circle {
  --tc: #fe2e02;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--tc) 10%, white), color-mix(in srgb, var(--tc) 5%, white));
  border: 2px solid color-mix(in srgb, var(--tc) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: var(--tc);
  transition: all 0.35s var(--spring);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--tc) 15%, transparent);
}
/* Fallback for browsers without color-mix */
@supports not (color: color-mix(in srgb, red, blue)) {
  .trusted-circle {
    background: rgba(254,46,2,0.08);
    border: 2px solid rgba(254,46,2,0.2);
  }
}
.trusted-item:hover .trusted-circle {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--tc) 30%, transparent);
  border-color: var(--tc);
}
.trusted-name {
  font-size: 0.78rem; font-weight: 700;
  color: var(--gray-600); letter-spacing: 0.04em;
  transition: color 0.3s; text-align: center;
}
.trusted-item:hover .trusted-name { color: var(--red); }

@media (max-width: 767.98px) {
  .trusted-item {
    width: calc((100vw - 60px) / 2);
    min-width: 130px;
    max-width: 160px;
  }
  .trusted-circle { width: 90px; height: 90px; font-size: 2rem; }
}

/* ────────────────────────────────────────────────────────────
   IMAGE PLACEHOLDERS (kept for fallback)
   ──────────────────────────────────────────────────────────── */
.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 50%, #EEE8F0 100%);
  border: 2px dashed var(--gray-200);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; color: var(--gray-400);
}
.ar-wide { aspect-ratio: 4/3; }
.ar-hero { aspect-ratio: 16/9; }

/* ────────────────────────────────────────────────────────────
   ABOUT SECTION — Full Design
   ──────────────────────────────────────────────────────────── */
#about { background: var(--white); position: relative; overflow: hidden; }
#about::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(254,46,2,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#about::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,74,28,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-img-col { position: relative; }
.about-img-main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--grad-red); color: white;
  border-radius: var(--r-md); padding: 1.25rem 1.5rem;
  text-align: center; box-shadow: var(--sh-red-lg); z-index: 2;
}
.about-exp-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; line-height: 1; display: block; }
.about-exp-badge .label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.about-stat-mini {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50); border-radius: var(--r-sm);
  border: 1px solid var(--gray-100); transition: var(--t-mid);
}
.about-stat-mini:hover { background: var(--red-pale); border-color: rgba(254,46,2,0.2); transform: translateX(4px); }
.about-stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--grad-red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--sh-red); flex-shrink: 0;
}
.about-stat-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--dark); line-height: 1; }
.about-stat-label { font-size: 0.78rem; color: var(--gray-600); font-weight: 500; }

/* About buttons wrapper */
.about-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 575.98px) {
  .about-buttons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .about-buttons-wrapper .btn-Streamertail Web Solutions {
    width: 100%;
    justify-content: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.8rem;
  }
  .about-buttons-wrapper .btn-Streamertail Web Solutions i {
    font-size: 0.9rem;
  }
}

/* Mission / Vision / Values Cards */
.mv-section-label { margin-bottom: 2rem; }
.mv-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid var(--gray-100);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: var(--t-mid);
}
.mv-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.mv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--grad-red);
}
.mv-vision::before { background: linear-gradient(135deg, #954CFF, #C9A4FF); }
.mv-values::before { background: linear-gradient(135deg, #2E7D32, #66BB6A); }
.mv-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(254,46,2,0.12), rgba(254,46,2,0.05));
  border: 1px solid rgba(254,46,2,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--t-mid);
}
.mv-icon-wrap i {
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mv-card:hover .mv-icon-wrap { transform: rotate(-5deg) scale(1.1); }
.mv-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.75rem;
}
.mv-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; }
.mv-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.25rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: rgba(254,46,2,0.1); color: var(--red);
}
.mv-values-list { margin: 0; padding: 0; }
.mv-values-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--gray-600);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.mv-values-list li:last-child { border-bottom: none; }
.mv-values-list li i { color: #2E7D32; font-size: 0.85rem; flex-shrink: 0; }

/* ────────────────────────────────────────────────────────────
   COURSES SECTION
   ──────────────────────────────────────────────────────────── */
#courses {
  background: var(--grad-section);
  position: relative; overflow: hidden;
}
#courses::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(254,46,2,0.07) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.course-card {
  background: white; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--gray-100);
  box-shadow: var(--sh-sm);
  transition: transform 0.4s var(--spring), box-shadow 0.4s var(--ease), border-color 0.3s;
  height: 100%;
}
.course-card:hover { transform: translateY(-12px); border-color: rgba(254,46,2,0.25); box-shadow: 0 28px 70px rgba(254,46,2,0.18), 0 4px 20px rgba(0,0,0,0.07); }
.course-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.course-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.course-card:hover .course-img { transform: scale(1.06); }
.course-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 0.3rem 0.8rem; border-radius: var(--r-full);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: white; z-index: 2;
}
.course-body { padding: 1.5rem 1.75rem 2rem; }
.course-icon-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.course-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; transition: var(--t-mid);
}
.course-card:hover .course-icon { transform: rotate(-8deg) scale(1.1); }
.course-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.course-desc { font-size: 0.87rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.course-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.course-duration { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--gray-600); font-weight: 500; }
.course-enroll { font-size: 0.82rem; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 0.35rem; transition: gap 0.2s, color 0.2s; }
.course-card:hover .course-enroll { gap: 0.6rem; color: var(--red-deep); }
.cc-1 .course-icon, .cc-1 .course-badge { background: linear-gradient(135deg,#fe2e02,#ff6040); }
.cc-2 .course-icon, .cc-2 .course-badge { background: linear-gradient(135deg,#1565C0,#42A5F5); }
.cc-3 .course-icon, .cc-3 .course-badge { background: linear-gradient(135deg,#fe2e02,#ff4a1c); }
.cc-4 .course-icon, .cc-4 .course-badge { background: linear-gradient(135deg,#2E7D32,#66BB6A); }
.cc-5 .course-icon, .cc-5 .course-badge { background: linear-gradient(135deg,#6A1B9A,#AB47BC); }
.cc-6 .course-icon, .cc-6 .course-badge { background: linear-gradient(135deg,#00695C,#26A69A); }

/* ────────────────────────────────────────────────────────────
   FIX 3: PLACEMENT HISTORY SECTION
   ──────────────────────────────────────────────────────────── */
#placement {
  background: var(--grad-placement);
  position: relative; overflow: hidden;
}
.placement-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
#placement::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(254,46,2,0.15) 0%, transparent 65%);
  pointer-events: none;
}
#placement::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(149,76,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Placement stat cards */
.placement-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--t-mid);
}
.placement-stat-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(254,46,2,0.4); transform: translateY(-6px); }
.ps-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  background: var(--grad-warm); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1;
}
.ps-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 600; margin-top: 0.3rem; letter-spacing: 0.04em; }

/* Company logo grid */
.placement-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.placement-logo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; cursor: pointer;
  transition: all 0.35s var(--spring);
  position: relative; overflow: hidden;
}
.placement-logo-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(254,46,2,0.08), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.placement-logo-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.placement-logo-card:hover::before { opacity: 1; }
.plc-icon {
  --plc: #fe2e02;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--plc) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--plc) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--plc);
  transition: all 0.3s;
}
@supports not (color: color-mix(in srgb, red, blue)) {
  .plc-icon { background: rgba(254,46,2,0.1); border: 1px solid rgba(254,46,2,0.2); }
}
.placement-logo-card:hover .plc-icon { background: var(--plc); color: white; border-color: transparent; box-shadow: 0 8px 24px color-mix(in srgb, var(--plc) 40%, transparent); }
.plc-name { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.75); text-align: center; line-height: 1.2; }
.plc-tag {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05); border-radius: var(--r-full);
  padding: 0.15rem 0.5rem;
}

@media (max-width: 1199.98px) { .placement-logo-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767.98px) { .placement-logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .placement-logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ────────────────────────────────────────────────────────────
   FRANCHISE SECTION
   ──────────────────────────────────────────────────────────── */
#franchise { background: var(--grad-franchise); position: relative; overflow: hidden; }
#franchise::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
#franchise::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.franchise-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.franchise-feature { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.franchise-feature-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #FFB3BC; font-size: 1.2rem; flex-shrink: 0;
  backdrop-filter: blur(8px); transition: var(--t-mid);
}
.franchise-feature:hover .franchise-feature-icon { background: var(--red); border-color: transparent; color: white; box-shadow: var(--sh-red); }
.franchise-feature-title { font-weight: 700; color: white; margin-bottom: 0.2rem; font-size: 0.95rem; }
.franchise-feature-text { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.franchise-img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.franchise-stat-float {
  position: absolute; background: white; border-radius: var(--r-md);
  padding: 1rem 1.25rem; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 0.75rem;
  animation: floatY 4s ease-in-out infinite; z-index: 5;
}
.franchise-stat-float.top-left { top: 20px; left: -24px; }
.franchise-stat-float.bottom-right { bottom: 20px; right: -24px; animation-delay: 2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fs-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-warm); display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; box-shadow: var(--sh-warm); }
.fs-num { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--dark); line-height: 1; }
.fs-label { font-size: 0.7rem; color: var(--gray-600); }

/* ────────────────────────────────────────────────────────────
   FIX 2: WHY CHOOSE US — Enhanced
   ──────────────────────────────────────────────────────────── */
#why-us { background: var(--dark); position: relative; overflow: hidden; }
.why-us-bg-gfx {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(254,46,2,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(149,76,255,0.07) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
  height: 100%;
}
/* FIX 2 enhanced card */
.why-card-enhanced:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(254,46,2,0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(254,46,2,0.2), 0 0 0 1px rgba(254,46,2,0.15);
}
.why-card-glow {
  --wglow: rgba(254,46,2,0.18);
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: radial-gradient(circle at 50% 0%, var(--wglow) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.why-card-enhanced:hover .why-card-glow { opacity: 1; }
.why-icon {
  width: 60px; height: 60px; border-radius: var(--r-sm);
  background: rgba(254,46,2,0.12); border: 1px solid rgba(254,46,2,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #ff6040; margin-bottom: 1.25rem;
  transition: var(--t-mid);
}
.why-card-enhanced:hover .why-icon {
  background: var(--red); color: white;
  box-shadow: var(--sh-red); border-color: transparent;
  transform: rotate(-5deg) scale(1.1);
}
.why-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.why-text { font-size: 0.86rem; color: rgba(255,255,255,0.50); line-height: 1.75; margin-bottom: 1rem; }
.why-num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
  transition: color 0.3s;
}
.why-card-enhanced:hover .why-num { color: rgba(254,46,2,0.08); }
.why-learn-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 700; color: rgba(254,46,2,0.6);
  transition: var(--t-fast);
}
.why-card-enhanced:hover .why-learn-more { color: #ff6040; gap: 0.65rem; }

/* ────────────────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────────────────── */
#testimonials { background: var(--grad-section); }
.testi-card {
  background: white; border-radius: var(--r-lg);
  padding: 2.25rem; box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-100); transition: var(--t-mid);
  height: 100%; position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(254,46,2,0.18); }
.testi-quote-icon {
  font-size: 3.5rem; font-family: var(--font-display); font-weight: 900;
  background: var(--grad-warm); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 0.9; margin-bottom: 0.5rem;
}
.testi-stars { margin-bottom: 0.75rem; }
.testi-stars i { color: #FFB800; font-size: 0.85rem; }
.testi-text { font-size: 0.93rem; color: var(--gray-600); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  border: 2px dashed var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gray-400); flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testi-role { font-size: 0.77rem; color: var(--gray-400); }

/* ────────────────────────────────────────────────────────────
   CONTACT SECTION
   ──────────────────────────────────────────────────────────── */
#contact { background: var(--white); }
.contact-form-card {
  background: white; border-radius: var(--r-xl);
  padding: 3rem; box-shadow: var(--sh-lg);
  border: 1px solid var(--gray-100); position: relative; overflow: hidden;
}
.contact-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--grad-fire);
}
.form-label-c {
  font-size: 0.82rem; font-weight: 700; color: var(--dark);
  margin-bottom: 0.4rem; letter-spacing: 0.02em; display: block;
}
.form-ctrl {
  width: 100%; padding: 0.85rem 1.2rem;
  border: 2px solid var(--gray-200); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  background: var(--gray-50); outline: none; transition: all 0.25s; resize: none;
}
.form-ctrl:focus { border-color: var(--red); background: white; box-shadow: 0 0 0 4px rgba(254,46,2,0.10); }
.form-ctrl::placeholder { color: var(--gray-400); }
.contact-info-dark {
  background: var(--grad-dark); border-radius: var(--r-xl);
  padding: 3rem 2.5rem; height: 100%; position: relative; overflow: hidden;
}
.contact-info-dark::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(254,46,2,0.18) 0%, transparent 70%);
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.ci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(254,46,2,0.12); border: 1px solid rgba(254,46,2,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #ff6040; font-size: 1.1rem; flex-shrink: 0;
}
.ci-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 0.3rem; }
.ci-value { font-size: 0.92rem; color: white; font-weight: 500; line-height: 1.55; }
.map-placeholder {
  margin-top: 2rem; border-radius: var(--r-md); aspect-ratio: 16/7;
  background: rgba(255,255,255,0.04); border: 2px dashed rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.map-placeholder i { font-size: 2rem; margin-bottom: 0.5rem; opacity: 0.3; }
.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 1rem; transition: var(--t-fast);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-3px); box-shadow: var(--sh-red); }

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
#footer {
  position: relative;
  background: linear-gradient(135deg, #0A0A12 0%, #050C12 50%, #1A0C08 100%);
  border-top: 1px solid rgba(254,46,2,0.2);
  padding: 80px 0 0;
  overflow: hidden;
  border-radius: 60px 60px 0 0;
  margin-top: 80px;
}

/* Curved Top Decoration */
#footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(254,46,2,0.3) 20%, 
    rgba(255,74,28,0.3) 50%, 
    rgba(254,46,2,0.3) 80%, 
    transparent 100%
  );
  border-radius: 60px 60px 0 0;
}

/* Animated Background Elements */
.footer-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(254,46,2,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255,74,28,0.06) 0%, transparent 50%);
  z-index: 1;
}

.footer-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 1;
  animation: footerOrbFloat 20s ease-in-out infinite;
}

.footer-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(254,46,2,0.3) 0%, transparent 70%);
  top: -100px;
  left: -50px;
}

.footer-orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,74,28,0.25) 0%, transparent 70%);
  bottom: -80px;
  right: -30px;
  animation-delay: -10s;
}

@keyframes footerOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Floating Particles */
.footer-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(254,46,2,0.4);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: -3s; }
.particle:nth-child(3) { left: 60%; top: 30%; animation-delay: -6s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: -9s; }
.particle:nth-child(5) { left: 50%; top: 50%; animation-delay: -12s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

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

/* Brand Section */
.footer-brand-section {
  padding-right: 20px;
}

.footer-emblem {
  background: linear-gradient(135deg, #fe2e02 0%, #ff4a1c 100%);
  box-shadow: 0 4px 20px rgba(254,46,2,0.3);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* Footer Stats */
.footer-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.footer-stat-item {
  text-align: center;
  flex: 1;
}

.footer-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6040 0%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.footer-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.footer-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.1);
}

/* Social Section */
.footer-social-section {
  margin-top: 2rem;
}

.footer-social-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
}

.footer-social-btn:hover {
  transform: translateY(-4px);
  border-color: transparent;
  color: white;
}

.footer-social-btn.facebook:hover { background: linear-gradient(135deg, #1877F2, #0C63D4); box-shadow: 0 8px 20px rgba(24,119,242,0.3); }
.footer-social-btn.instagram:hover { background: linear-gradient(135deg, #E4405F, #C13584); box-shadow: 0 8px 20px rgba(228,64,95,0.3); }
.footer-social-btn.youtube:hover { background: linear-gradient(135deg, #FF0000, #CC0000); box-shadow: 0 8px 20px rgba(255,0,0,0.3); }
.footer-social-btn.whatsapp:hover { background: linear-gradient(135deg, #25D366, #128C7E); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.footer-social-btn.linkedin:hover { background: linear-gradient(135deg, #0A66C2, #004182); box-shadow: 0 8px 20px rgba(10,102,194,0.3); }

.social-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  margin-bottom: 5px;
}

.footer-social-btn:hover .social-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer Columns */
.footer-column {
  margin-bottom: 2rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading i {
  color: var(--red);
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--red);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Items */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.3s;
}

.footer-contact-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(254,46,2,0.3);
  transform: translateX(3px);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(254,46,2,0.2), rgba(255,74,28,0.2));
  border-radius: 8px;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-text {
  flex: 1;
}

.footer-contact-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Newsletter Section */
.footer-newsletter {
  margin-top: 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(254,46,2,0.08), rgba(255,74,28,0.08));
  border: 1px solid rgba(254,46,2,0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fe2e02, #ff4a1c);
  border-radius: 12px;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(254,46,2,0.3);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
}

.newsletter-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.newsletter-form {
  width: 100%;
}

.newsletter-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  transition: all 0.3s;
}

.newsletter-input-group:focus-within {
  background: rgba(255,255,255,0.08);
  border-color: rgba(254,46,2,0.5);
  box-shadow: 0 0 0 4px rgba(254,46,2,0.1);
}

.newsletter-input-group > i {
  color: rgba(255,255,255,0.3);
  margin-right: 0.75rem;
  font-size: 1rem;
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.newsletter-input-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.newsletter-input-group button {
  background: linear-gradient(135deg, #fe2e02, #ff4a1c);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-input-group button:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(254,46,2,0.4);
}

.newsletter-input-group button i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.newsletter-input-group button:hover i {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 4rem;
  padding-bottom: 2rem;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-copy a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-copy a:hover {
  color: #ff6040;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links .separator {
  color: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 991.98px) {
  #footer {
    padding: 60px 0 0;
  }
  
  .footer-stats {
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .footer-stat-num {
    font-size: 1.25rem;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .footer-newsletter {
    padding: 2rem 1.5rem;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .newsletter-input-group input {
    width: 100%;
    text-align: center;
  }
  
  .newsletter-input-group button {
    width: 100%;
    justify-content: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .footer-contact-item {
    padding: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  .footer-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-stat-divider {
    width: 100%;
    height: 1px;
  }
  
  .footer-social-links {
    justify-content: center;
  }
}

/* ────────────────────────────────────────────────────────────
   SCROLL TO TOP
   ──────────────────────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--grad-red); border: none; border-radius: 14px;
  color: white; font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--sh-red);
  transition: all 0.35s var(--spring);
  opacity: 0; transform: translateY(20px);
  pointer-events: none; z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
#scrollTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { transform: translateY(-4px); box-shadow: var(--sh-red-lg); }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  :root { --section-py: 72px; }
  .hero-slide { height: 70vh; }
  .about-exp-badge { right: 0; bottom: -14px; }
  .franchise-stat-float.top-left { left: 0; }
  .franchise-stat-float.bottom-right { right: 0; }
  .contact-form-card { padding: 2rem 1.75rem; }
}

@media (max-width: 767.98px) {
  :root { --section-py: 60px; --nav-h: 72px; --top-h: 36px; }
  .hero-slide { height: 75vh; min-height: 480px; }
  .slide-title { font-size: 2rem; }
  .slide-desc { font-size: 0.92rem; }
  .carousel-control-prev, .carousel-control-next { margin: 0 0.5rem; }
  .footer-divider { margin: 32px 0 20px; }
  .about-exp-badge { right: 0; bottom: -10px; padding: 0.9rem 1rem; }
  .about-exp-badge .num { font-size: 1.8rem; }
  #navbarNav { border-radius: 0 0 16px 16px !important; }
  .top-header-right .top-header-link:not(.top-header-link-enroll) { display: none; }
  .mv-section-label { margin-bottom: 1.5rem; }
}

@media (max-width: 575.98px) {
  .slide-actions .btn-lca-lg { padding: 0.85rem 1.8rem; }
  .contact-form-card { padding: 1.5rem; }
}

/* ────────────────────────────────────────────────────────────
   AWARDS SECTION — Extraordinary Design
   ──────────────────────────────────────────────────────────── */
.awards-section {
  position: relative;
  background: linear-gradient(135deg, #08080F 0%, #12060E 40%, #080C18 100%);
  overflow: hidden;
}
.awards-bg-gfx {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 0% 50%, rgba(254,46,2,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(100,40,200,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.awards-floating-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.awards-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254,46,2,0.12) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orbPulse 8s ease-in-out infinite;
}
.awards-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(100,40,200,0.1) 0%, transparent 70%);
  bottom: -100px; right: 5%;
  animation: orbPulse 10s 2s ease-in-out infinite;
}
@keyframes orbPulse { 0%,100% { opacity:0.6; transform: scale(1); } 50% { opacity:1; transform: scale(1.15); } }

.awards-highlights { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.award-highlight-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.award-highlight-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(254,46,2,0.25); transform: translateX(6px); }
.award-highlight-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, #fe2e02, #ff6040);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(254,46,2,0.3);
}
.award-highlight-title { font-family: var(--font-display); font-weight: 700; color: white; font-size: 0.95rem; margin-bottom: 0.2rem; }
.award-highlight-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* Awards Grid Layout */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.award-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s var(--ease);
  cursor: default;
}
.award-card:hover { transform: translateY(-6px); }
.award-card-wide { grid-column: 1 / -1; }

.award-card-gold {
  background: linear-gradient(135deg, #1A1206 0%, #2A1C08 50%, #1A1408 100%);
  border-color: rgba(255,200,50,0.2);
  box-shadow: 0 8px 40px rgba(255,180,0,0.12), inset 0 1px 0 rgba(255,200,50,0.15);
}
.award-card-gold:hover { box-shadow: 0 20px 60px rgba(255,180,0,0.2), inset 0 1px 0 rgba(255,200,50,0.25); border-color: rgba(255,200,50,0.35); }

.award-card-silver {
  background: linear-gradient(135deg, #0E1016 0%, #181C22 50%, #0E1016 100%);
  border-color: rgba(192,192,192,0.18);
  box-shadow: 0 8px 40px rgba(150,150,180,0.1), inset 0 1px 0 rgba(192,192,192,0.12);
}
.award-card-silver:hover { box-shadow: 0 20px 60px rgba(150,150,180,0.18), inset 0 1px 0 rgba(192,192,192,0.22); border-color: rgba(192,192,192,0.3); }

.award-card-bronze {
  background: linear-gradient(135deg, #160E08 0%, #221406 50%, #160E08 100%);
  border-color: rgba(205,127,50,0.2);
  box-shadow: 0 8px 40px rgba(180,100,20,0.1), inset 0 1px 0 rgba(205,127,50,0.12);
}
.award-card-bronze:hover { box-shadow: 0 20px 60px rgba(180,100,20,0.2), inset 0 1px 0 rgba(205,127,50,0.22); border-color: rgba(205,127,50,0.35); }

.award-card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.award-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.award-trophy-icon { width: 56px; height: 56px; }
.award-trophy-icon svg { width: 100%; height: 100%; }
.award-year-badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.7rem; border-radius: var(--r-full);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  background: rgba(255,200,50,0.15); color: #FFD700;
  border: 1px solid rgba(255,200,50,0.3);
}
.award-card-body { position: relative; z-index: 1; }
.award-issuer { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,200,50,0.6); margin-bottom: 0.4rem; }
.award-title-card {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.25;
  background: linear-gradient(135deg, #FFD700, #FFA500); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.4rem;
}
.award-subtitle-card { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.5; }
.award-card-ribbon {
  position: absolute; top: 0; right: 0; width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(255,200,50,0.12), rgba(255,200,50,0.04));
  clip-path: polygon(100% 0, 0 0, 100% 100%); pointer-events: none;
}

/* ────────────────────────────────────────────────────────────
   STUDENT PLACEMENTS SECTION
   ──────────────────────────────────────────────────────────── */
.student-placements-section {
  position: relative;
  background: linear-gradient(180deg, #0A0810 0%, #100A18 40%, #0C0E18 100%);
  overflow: hidden;
  padding-bottom: 80px;
}
.sp-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(254,46,2,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(100,40,200,0.06) 0%, transparent 60%);
}
.sp-track-wrap {
  overflow: hidden;
  padding: 0.5rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.sp-track-wrap + .sp-track-wrap { margin-top: 1.25rem; }
.sp-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: spScrollLTR 28s linear infinite;
}
.sp-track-reverse { animation: spScrollRTL 32s linear infinite; }
.sp-track:hover, .sp-track-reverse:hover { animation-play-state: paused; }
@keyframes spScrollLTR { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes spScrollRTL { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.sp-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  flex-shrink: 0;
  min-width: 250px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.sp-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(254,46,2,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.sp-photo {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.sp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-info { display: flex; flex-direction: column; gap: 0.2rem; }
.sp-name { font-family: var(--font-display); font-weight: 700; color: white; font-size: 0.92rem; }
.sp-course { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.sp-company {
  font-size: 0.75rem; font-weight: 600; color: #ff6040;
  display: flex; align-items: center; gap: 0.35rem; margin-top: 0.15rem;
}
.sp-company i { font-size: 0.7rem; }

/* ────────────────────────────────────────────────────────────
   WHY CHOOSE US — Extra Attractive Redesign
   ──────────────────────────────────────────────────────────── */
#why-us {
  background: linear-gradient(135deg, #0A0A14 0%, #10060E 40%, #0A0C18 100%);
  position: relative;
  overflow: hidden;
}
.why-us-bg-gfx {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 30%, rgba(254,46,2,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 70%, rgba(80,40,180,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  height: 100%;
  transition: all 0.4s var(--ease);
}
.why-card-enhanced:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(254,46,2,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(254,46,2,0.15);
}
.why-card-glow {
  --wglow: rgba(254,46,2,0.18);
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--wglow), transparent);
  transition: height 0.4s var(--ease);
}
.why-card-enhanced:hover .why-card-glow {
  height: 100%;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, var(--wglow) 0%, transparent 60%);
}
.why-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,0.04); position: absolute; top: 0.5rem; right: 1rem;
  line-height: 1; pointer-events: none; user-select: none;
  transition: color 0.4s;
}
.why-card-enhanced:hover .why-num { color: rgba(254,46,2,0.08); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(254,46,2,0.12); border: 1px solid rgba(254,46,2,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #ff6040;
  margin-bottom: 1.25rem; position: relative; z-index: 1;
  transition: all 0.35s var(--spring);
}
.why-card-enhanced:hover .why-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 8px 24px rgba(254,46,2,0.3); }
.why-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: white; margin-bottom: 0.75rem; position: relative; z-index: 1;
}
.why-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; position: relative; z-index: 1; margin-bottom: 1rem; }
.why-learn-more {
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 0.4rem;
  position: relative; z-index: 1; transition: color 0.3s;
}
.why-card-enhanced:hover .why-learn-more { color: #ff6040; }


/* ────────────────────────────────────────────────────────────
   TESTIMONIALS — 2-Row Auto-Shuffle
   ──────────────────────────────────────────────────────────── */
.testi-section {
  background: var(--off-white);
  overflow: hidden;
  padding-bottom: 80px;
}
.testi-track-wrap {
  overflow: hidden;
  padding: 0.5rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testiScrollLTR 35s linear infinite;
}
.testi-track-rev { animation: testiScrollRTL 40s linear infinite; }
.testi-track:hover, .testi-track-rev:hover { animation-play-state: paused; }
@keyframes testiScrollLTR { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes testiScrollRTL { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.testi-card.testi-track-card {
  flex-shrink: 0;
  width: 340px;
  min-height: 280px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.testi-card.testi-track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.testi-card .testi-text {
  flex: 1;
}

/* ────────────────────────────────────────────────────────────
   HERO RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-right-img { height: 300px; }
  .awards-grid { grid-template-columns: 1fr; }
  .award-card-wide { grid-column: 1; }
}
@media (max-width: 767.98px) {
  .testi-card.testi-track-card { width: 280px; }
  .sp-card { min-width: 220px; }
  .award-card { padding: 1.25rem; }
}

/* ────────────────────────────────────────────────────────────
   HERO SECTION — Curved bottom corners
   ──────────────────────────────────────────────────────────── */
.hero-section-curved {
  margin-top: 0;
  border-radius: 0 0 48px 48px;
  overflow: hidden;
}
.hero-section-curved #heroCarousel,
.hero-section-curved .hero-slide {
  border-radius: 0 0 48px 48px;
  overflow: hidden;
}

/* ────────────────────────────────────────────────────────────
   HERO SECTION — Full responsive image (image-only mode)
   Recommended image size: 1920 × 700 px (JPG/PNG/WebP)
   ──────────────────────────────────────────────────────────── */
.hero-section-img {
  margin-top: -34px;
  padding-top: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
  line-height: 0;
}
.hero-section-img #heroCarousel {
  width: 100%;
}
.hero-section-img .carousel-inner {
  width: 100%;
}
.hero-section-img .hero-full-img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Placeholder shown when no image uploaded */
.hero-section-img .hero-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
}
/* Carousel indicators for image-only hero */
.hero-section-img .carousel-indicators {
  bottom: 16px;
}
.hero-section-img .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
}
.hero-section-img .carousel-indicators .active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
}
/* Arrow controls */
.hero-section-img .carousel-control-prev,
.hero-section-img .carousel-control-next {
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  margin: 0 12px;
  opacity: 1;
}
.hero-section-img .carousel-control-prev:hover,
.hero-section-img .carousel-control-next:hover {
  background: var(--red);
  border-color: var(--red);
}
/* Mobile: let image shrink naturally */
@media (max-width: 767.98px) {
  .hero-section-img {
    margin-top: -20px;
  }

  .hero-section-img .hero-full-img {
    max-height: 60vw;
    object-position: center center;
  }
}
@media (max-width: 480px) {
  .hero-section-img .hero-full-img {
    max-height: 50vw;
  }
}

/* Keep inner page hero sections flush under the navigation. */
.bc-hero,
.blog-detail-hero {
  margin-top: -34px !important;
}

@media (max-width: 767.98px) {
  .bc-hero,
  .blog-detail-hero {
    margin-top: -20px !important;
  }
}

/* ────────────────────────────────────────────────────────────
   HERO CUTOUT IMAGE — PNG-style transparent student
   ──────────────────────────────────────────────────────────── */
.hero-right-img-col {
  align-items: flex-end !important;
  justify-content: center;
  padding-bottom: 0;
}
.hero-cutout-wrap {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Align to bottom of hero */
  align-self: flex-end;
}
.hero-cutout-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 420px; height: 240px;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(254,46,2,0.45), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-cutout-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 95vh;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  /* Simulate transparent PNG cutout via CSS masking */
  mask-image: linear-gradient(to top, black 75%, rgba(0,0,0,0.95) 85%, rgba(0,0,0,0.6) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 75%, rgba(0,0,0,0.95) 85%, rgba(0,0,0,0.6) 92%, transparent 100%);
  filter: drop-shadow(-20px 0 40px rgba(254,46,2,0.25));
  animation: cutoutFloat 6s ease-in-out infinite;
}
@keyframes cutoutFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Bottom shadow effect */
.hero-img-shadow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,0,0,0.4), transparent 70%);
  filter: blur(15px);
  z-index: 0;
  animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%,100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.05); }
}

/* Bottom reflection effect */
.hero-img-reflection {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: linear-gradient(to top, 
    rgba(254,46,2,0.15) 0%, 
    rgba(254,46,2,0.08) 30%, 
    transparent 100%);
  filter: blur(8px);
  z-index: 0;
  opacity: 0.7;
  animation: reflectionShimmer 4s ease-in-out infinite;
}

@keyframes reflectionShimmer {
  0%,100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Stat chips positioned relative to cutout */
.hero-cutout-wrap .hero-stat-chip {
  position: absolute;
  z-index: 3;
}
.hero-cutout-wrap .chip-a { top: 15%; left: -30px; animation: chipFloat1 5s ease-in-out infinite; }
.hero-cutout-wrap .chip-b { top: 42%; right: -20px; animation: chipFloat2 6s ease-in-out infinite; }
.hero-cutout-wrap .chip-c { bottom: 18%; left: -20px; animation: chipFloat1 7s 1s ease-in-out infinite; }

/* ────────────────────────────────────────────────────────────
   TRUSTED LOGOS — Real images in circles
   ──────────────────────────────────────────────────────────── */
.trusted-circle {
  --tc: #fe2e02;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--spring);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 16px;
}
.trusted-logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(0.2);
  transition: filter 0.3s, transform 0.3s;
}
.trusted-item:hover .trusted-circle {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-color: rgba(254,46,2,0.25);
}
.trusted-item:hover .trusted-logo-img {
  filter: grayscale(0);
  transform: scale(1.1);
}
.trusted-item { min-width: 120px; max-width: 140px; }
.trusted-track { gap: 1rem; }

/* ────────────────────────────────────────────────────────────
   AWARD MEMENTOS — 3 SVG trophy illustrations
   ──────────────────────────────────────────────────────────── */
.award-mementos-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 0;
}
.award-memento {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
  transition: transform 0.4s var(--spring);
}
.award-memento:hover { transform: translateY(-16px) scale(1.04); }
.award-memento-1 { animation: mementoFloat1 7s ease-in-out infinite; }
.award-memento-2 { animation: mementoFloat2 8s 1s ease-in-out infinite; margin-bottom: 20px; }
.award-memento-3 { animation: mementoFloat1 6s 2s ease-in-out infinite; }
@keyframes mementoFloat1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes mementoFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.memento-glow {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 60px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.7;
  pointer-events: none;
}
.memento-glow-gold { background: rgba(255,200,0,0.5); }
.memento-glow-silver { background: rgba(160,180,220,0.4); }
.memento-glow-bronze { background: rgba(200,120,50,0.4); }

.memento-svg {
  width: 140px; height: 180px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  position: relative; z-index: 1;
}
.memento-label {
  text-align: center;
  margin-top: 0.75rem;
}
.memento-org {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}
.memento-rank {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: white; letter-spacing: 0.05em;
}

/* ────────────────────────────────────────────────────────────
   PLACEMENT LOGOS — Real company logos
   ──────────────────────────────────────────────────────────── */
.plc-logo-wrap {
  width: 120px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 0.75rem;
}
.plc-logo-real {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
  display: block;
}
.placement-logo-card:hover .plc-logo-real {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}
.placement-logo-card:hover .plc-logo-wrap {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ────────────────────────────────────────────────────────────
   EXTRA MODERN ANIMATIONS
   ──────────────────────────────────────────────────────────── */

/* Floating entrance for section headings */
@keyframes headingReveal {
  from { opacity: 0; transform: translateY(40px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}
.section-title.aos-animate {
  animation: headingReveal 0.7s var(--ease) both;
}

/* Stagger-in for cards */
@keyframes cardStaggerIn {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.course-card.aos-animate,
.why-card.aos-animate,
.placement-logo-card.aos-animate {
  animation: cardStaggerIn 0.5s var(--ease) both;
}

/* Glowing border pulse on hover for course cards */
.course-card {
  transition: transform 0.35s var(--spring), box-shadow 0.35s;
}
.course-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 64px rgba(254,46,2,0.18), 0 0 0 1px rgba(254,46,2,0.12);
}

/* Shimmer animation for stat numbers */
@keyframes shimmerNum {
  0%,100% { filter: brightness(1); }
  50% { filter: brightness(1.3) drop-shadow(0 0 8px rgba(254,46,2,0.5)); }
}
.ps-num:hover, .about-stat-num:hover {
  animation: shimmerNum 1.5s ease-in-out infinite;
  cursor: default;
}

/* Magnetic hover ring on placement stat cards */
.placement-stat-card {
  transition: transform 0.35s var(--spring), box-shadow 0.35s;
}
.placement-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1.5px rgba(255,255,255,0.12);
}

/* Scrolling spotlight sweep across hero */
@keyframes spotlightSweep {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}
.hero-slide-graphical::after {
  content: '';
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  width: 40%;
  animation: spotlightSweep 8s ease-in-out infinite;
  animation-delay: 2s;
}

/* Pulsing dot animations on hero geo-dot */
.slide-geo-dot {
  animation: geoDotPulse 2.5s ease-in-out infinite;
}
@keyframes geoDotPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 20px rgba(254,46,2,0.6); }
  50% { transform: scale(1.8); box-shadow: 0 0 40px rgba(254,46,2,0.3); }
}

/* Floating ring rotation */
.slide-geo-ring {
  animation: ringRotate 20s linear infinite;
}
@keyframes ringRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Trusted track smooth pause effect */
.trusted-track { transition: animation-play-state 0.3s; }

/* Partners section - shimmer on logo hover */
.trusted-item:hover .trusted-name {
  color: var(--red);
  transition: color 0.3s;
}

/* Why Us card entrance stagger */
.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }

/* Contact form input focus glow */
.form-ctrl:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(254,46,2,0.12) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* Award memento responsive */
@media (max-width: 767.98px) {
  .award-mementos-wrap { gap: 0.75rem; }
  .memento-svg { width: 90px; height: 120px; }
  .hero-cutout-img { max-height: 45vh; }
  .hero-cutout-wrap { max-width: 100%; padding: 0 1rem; }
  .hero-right-img-col { 
    display: flex !important; 
    margin-top: 1.5rem;
    padding-bottom: 1rem;
    order: 2;
  }
  .hero-text-col {
    order: 1;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .slide-content .row { 
    min-height: auto; 
    padding-bottom: 20px;
    flex-direction: column;
  }
  .slide-content {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-img-shadow { width: 60%; height: 20px; }
  .hero-img-reflection { width: 50%; height: 40px; }
  .hero-section-curved { border-radius: 0 0 28px 28px; }
  .hero-slide {
    min-height: auto;
    height: auto;
    padding: 2rem 0;
  }
  .slide-title {
    font-size: 2rem !important;
    margin-bottom: 1rem;
  }
  .slide-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .slide-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
  }
  .slide-actions {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .slide-actions .btn-Streamertail Web Solutions {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  .slide-actions .btn-Streamertail Web Solutions i {
    font-size: 0.9rem;
  }
}


/* ────────────────────────────────────────────────────────────
   SITE LOGO — Uploaded image sizing for header & footer
   ──────────────────────────────────────────────────────────── */
.site-logo {
  display: block;
  object-fit: contain;
  object-position: left center;
  /* Never taller than the navbar */
  max-height: calc(var(--nav-h) - 4px);
}
.site-logo-header {
  height: auto;
  width: 260px;
  max-width: 260px;
}
#mainNav.scrolled .site-logo-header {
  width: 160px;
  max-width: 160px;
  /* Scrolled navbar shrinks to 64px; keep the logo from being clipped by .navbar-inner's overflow:hidden */
  max-height: 40px;
}

/* Mobile: shrink logo so it fits within the navbar height */
@media (max-width: 991.98px) {
  .site-logo-header {
    width: 180px;
    max-width: 180px;
  }
  #mainNav.scrolled .site-logo-header {
    width: 120px;
    max-width: 120px;
    max-height: 36px;
  }
}
.site-logo-footer {
  height: auto;
  width: 180px;
  max-width: 180px;
  object-fit: contain;
  /* White background behind logo so it's clearly visible on dark footer */
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  /* Remove blanket invert — show actual logo colors against white bg */
  filter: none;
}
/* If logo is already designed for dark backgrounds (light/white version) */
.site-logo-footer.logo-light {
  background: transparent;
  padding: 0;
  box-shadow: none;
  filter: none;
}

/* ══════════════════════════════════════════════════════════════
   COLLEGE COLLABORATION SECTION (Home Page)
   ══════════════════════════════════════════════════════════════ */

.college-collaboration-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a237e 0%, #283593 25%, #3949ab 50%, #5e35b1 75%, #7b1fa2 100%);
  padding: 80px 0 90px;
  margin-top: -1px;
}

.college-collab-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255,193,7,0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(233,30,99,0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(103,58,183,0.1) 0%, transparent 60%);
}

.college-collab-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

.collab-accent {
  background: linear-gradient(135deg, #FFD54F 0%, #FFA726 50%, #FF6F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.college-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .college-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .college-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .college-logos-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.college-logo-card {
  position: relative;
  perspective: 1000px;
}

.college-logo-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 1rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.college-logo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255,193,7,0.1) 0%, 
    rgba(156,39,176,0.1) 50%, 
    rgba(33,150,243,0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.college-logo-card:hover .college-logo-inner {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 193, 7, 0.6);
}

.college-logo-card:hover .college-logo-inner::before {
  opacity: 1;
}

.college-logo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.college-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: all 0.4s;
}

.college-logo-card:hover .college-logo-img {
  filter: grayscale(0);
  transform: scale(1.08);
}

.college-name {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s;
}

.college-logo-card:hover .college-name {
  color: #1a237e;
}

.college-logo-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s;
}

.college-logo-card:hover .college-logo-shine {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Colorful border animation */
.college-logo-card:nth-child(5n+1) .college-logo-inner {
  border-color: rgba(244, 67, 54, 0.3);
}
.college-logo-card:nth-child(5n+1):hover .college-logo-inner {
  border-color: rgba(244, 67, 54, 0.8);
  box-shadow: 0 16px 48px rgba(244, 67, 54, 0.3);
}

.college-logo-card:nth-child(5n+2) .college-logo-inner {
  border-color: rgba(33, 150, 243, 0.3);
}
.college-logo-card:nth-child(5n+2):hover .college-logo-inner {
  border-color: rgba(33, 150, 243, 0.8);
  box-shadow: 0 16px 48px rgba(33, 150, 243, 0.3);
}

.college-logo-card:nth-child(5n+3) .college-logo-inner {
  border-color: rgba(76, 175, 80, 0.3);
}
.college-logo-card:nth-child(5n+3):hover .college-logo-inner {
  border-color: rgba(76, 175, 80, 0.8);
  box-shadow: 0 16px 48px rgba(76, 175, 80, 0.3);
}

.college-logo-card:nth-child(5n+4) .college-logo-inner {
  border-color: rgba(255, 152, 0, 0.3);
}
.college-logo-card:nth-child(5n+4):hover .college-logo-inner {
  border-color: rgba(255, 152, 0, 0.8);
  box-shadow: 0 16px 48px rgba(255, 152, 0, 0.3);
}

.college-logo-card:nth-child(5n+5) .college-logo-inner {
  border-color: rgba(156, 39, 176, 0.3);
}
.college-logo-card:nth-child(5n+5):hover .college-logo-inner {
  border-color: rgba(156, 39, 176, 0.8);
  box-shadow: 0 16px 48px rgba(156, 39, 176, 0.3);
}

@media (max-width: 575.98px) {
  .college-collaboration-section {
    padding: 60px 0 70px;
  }
  
  .college-logos-grid {
    gap: 1.5rem;
  }
  
  .college-logo-inner {
    padding: 0.85rem;
    min-height: 160px;
  }
  
  .college-logo-wrap {
    height: 100px;
    margin-bottom: 0.6rem;
  }
  
  .college-name {
    font-size: 0.8rem;
  }
}
