/* ===== SGI - Sukhjinder Group of Institutions - Main Stylesheet ===== */
/* ===== ROOT VARIABLES ===== */
:root {
  --primary: #0a2463;
  --primary-dark: #061540;
  --primary-light: #1a3a8f;
  --accent: #e63946;
  --accent-dark: #c1121f;
  --accent-light: #ff4757;
  --white: #ffffff;
  --light: #f8f9ff;
  --light-gray: #f0f2f8;
  --text-dark: #0d1b2a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --gradient-primary: linear-gradient(135deg, #0a2463 0%, #1a3a8f 100%);
  --gradient-accent: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  --gradient-hero: linear-gradient(135deg, rgba(6,21,64,0.65) 0%, rgba(10,36,99,0.55) 100%);
  --shadow-sm: 0 2px 8px rgba(10,36,99,0.08);
  --shadow-md: 0 8px 30px rgba(10,36,99,0.12);
  --shadow-lg: 0 20px 60px rgba(10,36,99,0.18);
  --shadow-xl: 0 30px 80px rgba(10,36,99,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-display: 'Montserrat', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}


.container{
    max-width: 1600px;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== PAGE LOADER ===== */
#pageLoader {
  position: fixed; inset: 0; background: var(--primary-dark);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#pageLoader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-img {
  max-width: 220px; width: 80vw;
  margin-bottom: 40px;
  animation: loaderFadeIn 0.5s ease forwards;
  filter: drop-shadow(0 4px 24px rgba(255,255,255,0.15));
}
.loader-percent {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,0.7); letter-spacing: 2px;
  margin-bottom: 10px;
}
.loader-bar {
  width: 260px; height: 4px; background: rgba(255,255,255,0.15);
  border-radius: 2px; overflow: hidden; margin: 0 auto;
}
.loader-progress {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), #ff6b6b);
  border-radius: 2px;
  transition: width 0.05s linear;
}
@keyframes loaderFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== HEADER ===== */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.main-header .navbar {
  padding: 14px 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,36,99,0.08);
  transition: var(--transition);
}
.main-header.scrolled .navbar {
  background: var(--white);
  backdrop-filter: none;
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(10,36,99,0.12);
}
.main-header:not(.scrolled) .navbar { background: var(--white); backdrop-filter: none; }

.logo-icon {
  width: 48px; height: 48px; background: var(--gradient-accent);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon span {
  font-family: var(--font-display); font-weight: 900; font-size: 0.85rem;
  color: var(--white); letter-spacing: 1px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--primary); letter-spacing: 0.5px;
}
.logo-sub { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }

.navbar-nav .nav-link {
  font-family: var(--font-primary); font-weight: 500; font-size: 0.9rem;
  color: var(--text-dark) !important; padding: 8px 14px !important;
  border-radius: var(--radius-sm); transition: var(--transition); position: relative;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: var(--primary) !important; background: rgba(10,36,99,0.06);
}
.navbar-nav .nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--accent); border-radius: 1px;
}

.nav-phone {
  color: var(--text-dark); font-size: 0.85rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.nav-phone:hover { color: var(--primary); }
.nav-phone i { color: var(--accent); }

/* Hamburger — dark lines for white header */
.hamburger-btn {
  background: none; border: none; padding: 8px; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
}
.ham-line {
  display: block; width: 24px; height: 2px; background: var(--primary);
  border-radius: 2px; transition: var(--transition);
}
.hamburger-btn.active .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dd-arrow {
  font-size: 0.65rem; margin-left: 2px;
  transition: transform 0.3s ease; display: inline-block;
}
.nav-dropdown:hover .nav-dd-arrow { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px; z-index: 999;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  padding-top: 16px; /* bridges the gap so cursor doesn't leave hover zone */
  margin-top: 0;
}
.nav-dropdown:hover .nav-dd-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 500; color: var(--text-dark);
  transition: var(--transition); font-family: var(--font-primary);
}
.nav-dd-item i { width: 16px; color: var(--accent); font-size: 0.8rem; }
.nav-dd-item:hover { background: var(--light); color: var(--primary); }

/* ===== BUTTON SYSTEM ===== */
/* ===== BUTTON SYSTEM ===== */
/* btn-primary: filled red — main CTAs */
.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230,57,70,0.35);
  color: var(--white);
}

/* btn-secondary: ghost/outline — secondary actions */
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  font-family: var(--font-primary);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  color: var(--white);
}

/* btn-secondary on light backgrounds (non-hero/CTA sections) */
.btn-secondary-dark {
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.btn-secondary-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Header nav button — slightly smaller */
.btn-apply-now {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(230,57,70,0.35);
  font-family: var(--font-primary);
}
.btn-apply-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230,57,70,0.35);
}

/* Newsletter subscribe — attached to input */
.btn-subscribe {
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-subscribe:hover {
  background: var(--accent-dark);
  color: var(--white);
}

/* Hamburger */
.hamburger-btn {
  background: none; border: none; padding: 8px; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
}
.ham-line {
  display: block; width: 24px; height: 2px; 
  border-radius: 2px; transition: var(--transition);
}
.hamburger-btn.active .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--white); z-index: 9999; transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open { right: 0; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: var(--white); flex-shrink: 0;
}
.drawer-logo { display: flex; align-items: center; }
.drawer-close {
  background: var(--light); border: 1px solid var(--border); color: var(--text-dark);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem;
  transition: var(--transition); flex-shrink: 0;
}
.drawer-close:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.drawer-nav { flex: 1; overflow-y: auto; padding: 8px 0; }
.drawer-nav li { }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px; padding: 12px 20px;
  color: var(--text-dark); font-weight: 500; transition: var(--transition);
  font-family: var(--font-primary); font-size: 0.9rem;
}
.drawer-nav a:hover { background: var(--light); color: var(--primary); padding-left: 28px; }
.drawer-nav a i { width: 18px; color: var(--accent); font-size: 0.85rem; }

/* Courses toggle button */
.drawer-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 20px; background: none; border: none;
  color: var(--text-dark); font-weight: 500; font-family: var(--font-primary);
  font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.drawer-nav-toggle:hover { background: var(--light); color: var(--primary); }
.drawer-nav-toggle span { display: flex; align-items: center; gap: 12px; }
.drawer-nav-toggle span i { width: 18px; color: var(--accent); font-size: 0.85rem; }
.drawer-toggle-arrow { font-size: 0.7rem; color: var(--text-muted); transition: transform 0.3s ease; }
.drawer-nav-toggle.open .drawer-toggle-arrow { transform: rotate(180deg); }

/* Subnav */
.drawer-subnav { display: none; background: var(--light); border-top: 1px solid var(--border); }
.drawer-subnav.open { display: block; }
.drawer-subnav li a {
  padding: 10px 20px 10px 48px; font-size: 0.85rem; color: var(--text-muted);
}
.drawer-subnav li a:hover { color: var(--primary); padding-left: 56px; background: var(--light-gray); }

.drawer-cta { padding: 16px 20px; border-top: 1px solid var(--border); flex-shrink: 0; }

/* ===== SECTION UTILITIES ===== */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,36,99,0.08); color: var(--primary);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
  border: 1px solid rgba(10,36,99,0.15);
}
.section-badge i { color: var(--accent); }
.section-title {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-title .highlight {
  background: var(--gradient-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-muted); max-width: 600px; line-height: 1.8;
}
.divider-line {
  width: 60px; height: 4px; background: var(--gradient-accent);
  border-radius: 2px; margin: 16px 0;
}
.divider-line.center { margin: 16px auto; }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: var(--primary-dark);
  max-width: 100vw;
}
.hero-swiper {
  width: 100%; min-height: 100vh; position: relative;
}
.hero-swiper .swiper-slide {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}

/* Slider nav buttons */
.hero-swiper-button-prev,
.hero-swiper-button-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; cursor: pointer;
  transition: var(--transition);
}
.hero-swiper-button-prev { left: 24px; }
.hero-swiper-button-next { right: 24px; }
.hero-swiper-button-prev:hover,
.hero-swiper-button-next:hover {
  background: var(--accent); border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

/* Slider pagination */
.hero-swiper-pagination {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px; align-items: center;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px; background: rgba(255,255,255,0.5);
  border-radius: 50%; transition: var(--transition); cursor: pointer;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent); width: 28px; border-radius: 5px;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%; opacity: 0.06;
  background: var(--white); animation: floatShape 8s ease-in-out infinite;
}
.hero-shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.hero-shape-2 { width: 250px; height: 250px; bottom: 100px; left: -80px; animation-delay: 3s; }
.hero-shape-3 { width: 150px; height: 150px; top: 40%; right: 20%; animation-delay: 5s; }
@keyframes floatShape {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}
.hero-content { position: relative; z-index: 2; padding-top: 80px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.4);
  color: #ff8a93; padding: 8px 20px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px; backdrop-filter: blur(10px);
  opacity: 0; transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-badge i { animation: pulse 2s infinite; }
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem); color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
.hero-title .accent-text {
  background: var(--gradient-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85);
  max-width: 560px; line-height: 1.8; margin-bottom: 36px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}
.hero-feature-cards {
  display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

/* Triggered when slide becomes active */
.swiper-slide-active .slide-animated .hero-badge,
.swiper-slide-active.slide-animated .hero-badge {
  opacity: 1; transform: translateY(0);
}
.swiper-slide-active .slide-animated .hero-title,
.swiper-slide-active.slide-animated .hero-title {
  opacity: 1; transform: translateY(0);
}
.swiper-slide-active .slide-animated .hero-subtitle,
.swiper-slide-active.slide-animated .hero-subtitle {
  opacity: 1; transform: translateY(0);
}
.swiper-slide-active .slide-animated .hero-actions,
.swiper-slide-active.slide-animated .hero-actions {
  opacity: 1; transform: translateY(0);
}
.swiper-slide-active .slide-animated .hero-feature-cards,
.swiper-slide-active.slide-animated .hero-feature-cards {
  opacity: 1; transform: translateY(0);
}
.hero-feat-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-md);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  transition: var(--transition);
}
.hero-feat-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.hero-feat-icon {
  width: 40px; height: 40px; background: var(--gradient-accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.hero-feat-text { display: flex; flex-direction: column; }
.hero-feat-title { font-weight: 700; font-size: 0.85rem; color: var(--white); line-height: 1.2; }
.hero-feat-sub { font-size: 0.72rem; color: rgba(255,255,255,0.65); }
.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s infinite;
}
.hero-scroll-indicator a {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 1px;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: var(--accent);
  border-radius: 2px; animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--light); }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
}
.about-img-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 16px 24px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.about-img-badge .badge-icon {
  width: 48px; height: 48px; background: var(--gradient-primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
}
.about-img-badge .badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--primary); line-height: 1; }
.about-img-badge .badge-label { font-size: 0.75rem; color: var(--text-muted); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat-card {
  background: var(--white); border-radius: var(--radius-md); padding: 20px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.about-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem;
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ===== COURSE CARDS ===== */
.courses-section { background: var(--white); }
.courses-swiper-wrap { position: relative; padding: 0 70px; overflow: hidden; }
.courses-swiper { padding: 12px 0 56px !important; position: relative; }
.courses-swiper .swiper-wrapper { }
.courses-swiper .swiper-slide { height: auto; }

/* New program card design */
.prog-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); height: 100%;
  position: relative; overflow: hidden;
  padding: 0;
  display: flex; flex-direction: column;
}
.prog-card:hover {
  box-shadow: var(--shadow-md); border-color: transparent;
  transform: translateY(-4px);
}
.prog-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 2;
}
.prog-card-img {
  width: 100%; height: 200px;
  overflow: hidden; position: relative; flex-shrink: 0;
}
.prog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.prog-card:hover .prog-card-img img { transform: scale(1.06); }
.prog-card-img-overlay {
  position: absolute; inset: 0; opacity: 0.3;
}.prog-card:hover .prog-card-img img { transform: scale(1.06); }
.prog-card-img-overlay {
  position: absolute; inset: 0; opacity: 0.35;
}
.prog-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 20px; gap: 12px; }
.prog-card-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--text-dark); margin-bottom: 6px; line-height: 1.3;
}
.prog-card-count {
  font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.prog-card-count i { color: var(--accent); }
.prog-card-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 16px; flex: 1;
}
.prog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.prog-tag {
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}
.prog-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: var(--primary);
  font-family: var(--font-primary); transition: var(--transition);
  margin-top: auto;
}
.prog-card-link:hover { gap: 12px; color: var(--accent); }
.prog-card-link i { font-size: 0.8rem; transition: var(--transition); }

/* Courses swiper nav */
.courses-swiper-button-prev,
.courses-swiper-button-next {
  position: absolute; top: 50%; transform: translateY(calc(-50% - 28px));
  z-index: 10; width: 44px; height: 44px;
  background: var(--white); border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.9rem; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.courses-swiper-button-prev { left: 0; }
.courses-swiper-button-next { right: 0; }
.courses-swiper-button-prev:hover,
.courses-swiper-button-next:hover {
  background: var(--primary); color: var(--white); border-color: var(--primary);
  box-shadow: var(--shadow-md); transform: translateY(calc(-50% - 28px)) scale(1.1);
}

/* Courses swiper pagination */
.courses-swiper-pagination {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; align-items: center; z-index: 5;
}
.courses-swiper-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px; background: var(--border);
  border-radius: 50%; transition: var(--transition); cursor: pointer; opacity: 1;
}
.courses-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary); width: 24px; border-radius: 4px;
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--light); }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); height: 100%; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-primary); transform: scaleX(0); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 72px; height: 72px; background: var(--light);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--primary); margin: 0 auto 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gradient-primary); color: var(--white); transform: scale(1.1); }
.feature-title { font-family: var(--font-primary); font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.feature-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== STATS COUNTER ===== */
.stats-section {
  background: var(--gradient-primary); position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; padding: 20px; position: relative; z-index: 1; }
.stat-num {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.stat-num .counter { display: inline-block; }
.stat-suffix { color: var(--accent); }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.stat-divider {
  width: 1px; background: rgba(255,255,255,0.15);
  align-self: stretch; margin: 20px 0;
}

/* ===== AFFILIATIONS ===== */
.affiliations-section { background: var(--white); }
.affiliation-card {
  background: var(--light); border-radius: var(--radius-md); padding: 20px 24px;
  text-align: center; border: 1px solid var(--border); transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.affiliation-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary); }
.affiliation-abbr {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  color: var(--primary); line-height: 1;
}
.affiliation-name { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; text-align: center; line-height: 1.4; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,36,99,0.8) 0%, transparent 60%);
  opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.gallery-overlay-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
  width: 50px; height: 50px; background: rgba(255,255,255,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-size: 1.2rem; backdrop-filter: blur(10px); transition: var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { transform: translate(-50%, -50%) scale(1); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--light); border-radius: var(--radius-lg); padding: 36px 32px;
  position: relative; border: 1px solid var(--border); margin: 10px;
}
.testimonial-card::before {
  content: '\201C'; font-size: 6rem; color: var(--primary); opacity: 0.1;
  position: absolute; top: -10px; left: 20px; font-family: Georgia, serif; line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--primary); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-course { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 4px; }
.swiper-pagination-bullet { background: var(--primary); }
.swiper-pagination-bullet-active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-primary); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; background: rgba(255,255,255,0.04);
  border-radius: 50%; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 300px; height: 300px; background: rgba(230,57,70,0.06);
  border-radius: 50%; pointer-events: none;
}
.cta-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); line-height: 1.2;
}
.cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 500px; }
/* cta buttons handled in button system above */

/* ===== FOOTER ===== */
.premium-footer { background: #060e1f; }
.footer-main { padding: 80px 0 40px; }
.footer-logo h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--white); margin-top: 12px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; background: rgba(255,255,255,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-3px); }
.footer-title {
  font-family: var(--font-primary); font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--accent); border-radius: 1px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.88rem; display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--accent); }
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact li {
  display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start;
}
.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }
.footer-contact a:hover { color: var(--white); }
.footer-newsletter {
  background: rgba(255,255,255,0.04); border-radius: var(--radius-lg);
  padding: 32px 36px; margin-top: 48px; border: 1px solid rgba(255,255,255,0.08);
}
.newsletter-title { font-family: var(--font-primary); font-weight: 700; font-size: 1.1rem; color: var(--white); }
.newsletter-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.newsletter-form .form-control {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 14px 20px; border-radius: 50px 0 0 50px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--accent); box-shadow: none; color: var(--white); }
.footer-bottom {
  background: rgba(0,0,0,0.3); padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== FLOATING ACTIONS ===== */
.floating-actions { position: fixed; bottom: 90px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; transition: var(--transition);
  box-shadow: var(--shadow-lg); border: none; cursor: pointer;
}
.whatsapp-btn { background: #25d366; color: var(--white); }
.whatsapp-btn:hover { background: #1da851; transform: scale(1.1); color: var(--white); }
.scroll-top-btn { background: var(--primary); color: var(--white); opacity: 0; visibility: hidden; }
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--accent); transform: scale(1.1); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-cta-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 12px; font-size: 0.75rem; font-weight: 600; transition: var(--transition);
}
.mobile-cta-btn i { font-size: 1.1rem; }
.call-btn { background: var(--primary); color: var(--white); }
.apply-btn { background: var(--accent); color: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; overflow: hidden;
  padding: 160px 0 90px;
  background: var(--primary-dark);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1562774053-701939374585?w=1920&q=80') center/cover no-repeat;
  opacity: 1;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,21,64,0.82) 0%, rgba(10,36,99,0.72) 100%);
}
/* decorative circle */
.page-hero .page-hero-deco {
  position: absolute; right: -80px; top: -80px; z-index: 1;
  width: 500px; height: 500px; border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.04); pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-badge {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.25) !important;
  color: rgba(255,255,255,0.95) !important;
}
.page-hero-content .section-badge i { color: var(--accent) !important; }
.page-hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 560px; line-height: 1.8;
}
.breadcrumb-nav {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px; border-radius: 50px;
}
.breadcrumb-nav a {
  color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500;
  transition: var(--transition);
}
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.breadcrumb-nav .current {
  color: var(--white); font-size: 0.85rem; font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-dot {
  position: absolute; left: -34px; top: 4px;
  width: 16px; height: 16px; background: var(--primary); border-radius: 50%;
  border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--primary);
}
.timeline-year {
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  color: var(--primary); letter-spacing: 1px; margin-bottom: 4px;
}
.timeline-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.timeline-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.vision-mission-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md); border-top: 4px solid var(--primary); height: 100%;
}
.vision-mission-card.mission { border-top-color: var(--accent); }
.vm-icon {
  width: 60px; height: 60px; background: var(--light);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--primary); margin-bottom: 20px;
}
.vision-mission-card.mission .vm-icon { color: var(--accent); }
.facility-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.facility-img { width: 100%; height: 200px; object-fit: cover; }
.facility-body { padding: 20px; }
.facility-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.facility-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ===== COURSES PAGE ===== */
.cq-stat { padding: 16px 24px; }
.cq-stat i { font-size: 1.6rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: block; }
.cq-stat-num { font-family: var(--font-display); font-weight: 900; font-size: 2rem; color: var(--white); line-height: 1; }
.cq-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 500; }

/* Sticky category nav */
.course-cat-nav {
  display: flex; gap: 4px; overflow-x: auto; padding: 12px 0;
  scrollbar-width: none;
}
.course-cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-link {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 8px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); transition: var(--transition); font-family: var(--font-primary);
  border: 1px solid transparent;
}
.cat-nav-link:hover, .cat-nav-link.active {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.cat-nav-link i { font-size: 0.78rem; }

/* Category section */
.course-cat-section { padding: 72px 0; }

/* Category header */
.ccat-header {
  display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 8px;
}
.ccat-icon {
  width: 64px; height: 64px; border-radius: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.ccat-info { flex: 1; min-width: 200px; }
.ccat-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  color: var(--text-dark); margin-bottom: 8px; line-height: 1.2;
  padding-left: 16px; border-left: 4px solid;
}
.ccat-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; padding-left: 16px; margin: 0; }
.ccat-count {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  border: 1px solid; align-self: center;
}

/* Sidebar + content layout */
.courses-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start;
}

/* Sidebar */
.courses-sidebar {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  position: sticky; top: 90px; box-shadow: var(--shadow-sm);
}
.csidebar-title {
  padding: 20px 24px 16px;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted);
  background: var(--light); border-bottom: 1px solid var(--border);
}
.csidebar-btn {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 14px 20px 14px 16px;
  background: none; border: none; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: var(--transition); text-align: left;
  position: relative;
}
.csidebar-btn::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent; border-radius: 0 3px 3px 0;
  transition: var(--transition);
}
.csidebar-btn:last-child { border-bottom: none; }
.csidebar-btn:hover { background: var(--light); }
.csidebar-btn:hover::before { background: var(--border); }
.csidebar-btn.active { background: rgba(10,36,99,0.05); }
.csidebar-btn.active::before { background: var(--primary); }
.csidebar-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: var(--transition);
}
.csidebar-btn.active .csidebar-icon {
  background: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(10,36,99,0.25);
}
.csidebar-info { flex: 1; min-width: 0; }
.csidebar-name {
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
  font-family: var(--font-primary); line-height: 1.3; transition: var(--transition);
}
.csidebar-btn.active .csidebar-name { color: var(--primary); font-weight: 700; }
.csidebar-count {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 2px;
  transition: var(--transition);
}
.csidebar-btn.active .csidebar-count { color: var(--primary); opacity: 0.7; }
.csidebar-arrow {
  font-size: 0.65rem; color: var(--border); transition: var(--transition);
}
.csidebar-btn.active .csidebar-arrow { color: var(--primary); transform: translateX(2px); }
.csidebar-btn:hover:not(.active) .csidebar-arrow { color: var(--text-muted); }

/* Content area */
.courses-content { min-width: 0; }

/* Tab panels */
.ctab-panel { display: none; }
.ctab-panel.active { display: block; animation: fadeInUp 0.3s ease both; }

/* Panel header */
.ctab-header { margin-bottom: 24px; }
.ctab-header-img {
  position: relative; width: 100%; height: 350px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ctab-header-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.ctab-header-img-overlay {
  position: absolute; inset: 0; opacity: 0.75;
}
.ctab-header-img-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 32px; z-index: 1;
}
.ctab-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: var(--white); margin: 0 0 4px;
}
.ctab-desc { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin: 0; }
.ctab-count {
  position: absolute; top: 20px; right: 20px; z-index: 1;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px; border-radius: 50px; font-size: 0.82rem;
  font-weight: 700; color: var(--white); white-space: nowrap;
}

/* Course item row */
.citem {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 16px 20px;
  transition: border-color 0.2s ease;
}
.citem:hover { border-color: var(--primary); }
.citem-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.citem-body { flex: 1; min-width: 0; }
.citem-name {
  font-weight: 700; font-size: 0.9rem; color: var(--text-dark);
  margin-bottom: 4px; line-height: 1.3;
}
.citem-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.citem-meta span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.76rem; color: var(--text-muted);
}
.citem-meta i { font-size: 0.7rem; color: var(--primary); }
.citem-btn {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  font-family: var(--font-primary); transition: var(--transition); flex-shrink: 0;
  background: var(--primary); color: var(--white);
}
.citem-btn:hover { background: var(--accent); color: var(--white); }
.citem-btn i { font-size: 0.7rem; }

/* ===== GALLERY PAGE ===== */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px; font-size: 0.88rem; font-weight: 600;
  border: 2px solid var(--border); background: var(--white); color: var(--text-muted);
  cursor: pointer; transition: var(--transition); font-family: var(--font-primary);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-masonry-item {
  break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-md);
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-item .gallery-overlay { opacity: 0; transition: var(--transition); }
.gallery-masonry-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox-modal .modal-content { background: rgba(0,0,0,0.95); border: none; border-radius: var(--radius-lg); }
.lightbox-modal .modal-body { padding: 0; }
.lightbox-modal img { width: 100%; border-radius: var(--radius-lg); }
.lightbox-modal .btn-close { filter: invert(1); position: absolute; top: 16px; right: 16px; z-index: 10; }

/* ===== ADMISSION PAGE ===== */
.admission-form-card {
  background: rgba(255,255,255,0.9); backdrop-filter: blur(20px);
  border-radius: var(--radius-xl); padding: 48px 40px;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.5);
}
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.9rem; transition: var(--transition);
  font-family: var(--font-secondary);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 4px rgba(10,36,99,0.08);
}
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.7; }
/* submit form button handled in button system above */
.admission-sidebar-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border); margin-bottom: 24px;
}
.sidebar-card-title {
  font-family: var(--font-primary); font-weight: 700; font-size: 1rem;
  color: var(--text-dark); margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}
.scholarship-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.scholarship-icon { color: var(--yellow); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.scholarship-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.helpline-card {
  background: var(--gradient-primary); border-radius: var(--radius-lg); padding: 28px;
  text-align: center; color: var(--white);
}
.helpline-num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--white); }

/* ===== CONTACT PAGE ===== */
.contact-social .social-link {
  background: var(--light); border-color: var(--border);
  color: var(--primary);
}
.contact-social .social-link:hover {
  background: var(--accent); border-color: var(--accent); color: var(--white);
}
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
  width: 48px; height: 48px; background: var(--light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary); flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.8rem; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem; color: var(--text-dark); line-height: 1.6;
}
.contact-info-value a { color: var(--primary); font-weight: 500; }
.contact-info-value a:hover { color: var(--accent); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; min-height: 480px; }
.map-container iframe { width: 100%; height: 100%; min-height: 480px; border: none; display: block; }

/* ===== ADMISSION POPUP ===== */
.admission-popup .modal-content {
  border-radius: var(--radius-xl); overflow: hidden; border: none;
}
.admission-popup .modal-header {
  background: var(--gradient-primary); border: none; padding: 24px 32px;
}
.admission-popup .modal-body { padding: 32px; }
.popup-badge {
  display: inline-block; background: var(--accent); color: var(--white);
  padding: 4px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 12px; letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar-collapse { display: none !important; }
  .hamburger-btn { display: flex !important; }
  .mobile-sticky-cta { display: flex; }
  .floating-actions { bottom: 80px; }
  .hero-title { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-masonry { columns: 2; }
  .about-img-badge { left: 10px; }
  .admission-form-card { padding: 32px 24px; }
}
@media (max-width: 767px) {
  /* Force all AOS animations to fade-up on mobile — no left/right shifts */
  [data-aos="fade-left"],
  [data-aos="fade-right"],
  [data-aos="slide-left"],
  [data-aos="slide-right"],
  [data-aos="zoom-in-left"],
  [data-aos="zoom-in-right"] {
    transform: translateY(30px) !important;
  }
  [data-aos="fade-left"].aos-animate,
  [data-aos="fade-right"].aos-animate,
  [data-aos="slide-left"].aos-animate,
  [data-aos="slide-right"].aos-animate,
  [data-aos="zoom-in-left"].aos-animate,
  [data-aos="zoom-in-right"].aos-animate {
    transform: translateY(0) !important;
  }
  .section-pad { padding: 60px 0; }
  .hero-section { min-height: 100svh; }
  .hero-swiper, .hero-swiper .swiper-slide { min-height: 100svh; }
  .hero-swiper-button-prev,
  .hero-swiper-button-next { width: 40px; height: 40px; font-size: 0.85rem; }
  .hero-swiper-button-prev { left: 12px; }
  .hero-swiper-button-next { right: 12px; }
  .hero-feature-cards { gap: 8px; }
  .hero-feat-card { padding: 10px 14px; }
  .stats-section .row { flex-direction: column; }
  .stat-divider { display: none; }
  .gallery-masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-links { justify-content: center; }
  .footer-newsletter { padding: 24px 20px; }
  .newsletter-form .input-group { flex-direction: column; }
  .newsletter-form .form-control { border-radius: 50px !important; margin-bottom: 10px; }
  .btn-subscribe { border-radius: 50px !important; padding: 14px 24px !important; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .courses-swiper-wrap { padding: 0; }
  .courses-swiper-button-prev,
  .courses-swiper-button-next { display: none; }
  .courses-layout { grid-template-columns: 1fr; }
  .courses-sidebar { position: static; }
  .csidebar-btn { display: flex; }
  .csidebar-arrow { display: none; }

  /* Hero mobile cleanup */
  .hero-feature-cards { display: none; }
  .hero-actions { margin-bottom: 24px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-content { padding-top: 60px; }
  .hero-swiper .swiper-slide { min-height: 100svh; }
  .hero-swiper-button-prev,
  .hero-swiper-button-next { display: none; }
  .hero-swiper-pagination { bottom: 20px; }

  /* Prevent any element from causing horizontal scroll */
  section, .container, .row {  overflow-x: hidden; }
  .about-img-badge { left: 0; }

  /* Make sure AOS-disabled elements are fully visible */
  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-img-badge { display: none; }
}


/* ===== SES - CONSULTANCY ADDITIONS ===== */

/* Institute Preview Cards (Homepage) */
.institute-preview-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); height: 100%; display: flex; flex-direction: column;
}
.institute-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.inst-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white); margin-bottom: 16px; flex-shrink: 0;
}
.inst-icon-wrap.engineering, .inst-icon-wrap.polytechnic,
.inst-icon-wrap.science, .inst-icon-wrap.education,
.inst-icon-wrap.management { background: var(--gradient-primary); }
.inst-icon-wrap.nursing, .inst-icon-wrap.pharmacy { background: var(--gradient-accent); }
.inst-info { flex: 1; }
.inst-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 8px; }
.inst-count, .inst-location, .inst-courses {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}
.inst-count i, .inst-location i, .inst-courses i { color: var(--primary); width: 14px; }

/* Partner Institutes Page */
.institute-category-section { padding: 60px 0; }
.institute-category-section:nth-child(even) { background: var(--light); }

.institute-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); height: 100%;
}
.institute-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.institute-img-wrap { position: relative; overflow: hidden; }
.institute-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.institute-card:hover .institute-img { transform: scale(1.06); }
.institute-img-overlay {
  position: absolute; top: 12px; right: 12px;
}
.inst-affiliation-badge {
  background: rgba(10,36,99,0.85); color: var(--white);
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  backdrop-filter: blur(10px); letter-spacing: 0.5px;
}
.institute-card-body { padding: 20px 24px 24px; }
.institute-card-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.institute-card-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.institute-card-meta i { color: var(--accent); }
.institute-card-courses { font-size: 0.82rem; color: var(--primary); font-weight: 500; }
.institute-card-courses i { color: var(--primary); }

/* Search & Filter Bar */
.institutes-search-bar {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 32px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.search-input-wrap { position: relative; }
.search-input-wrap i {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 0.9rem; z-index: 1;
}
.search-input-wrap .form-control { padding-left: 44px; }

.developedByLink{ color: var(--accent-light);}