/* ========== ROOT & RESET ========== */
:root {
  --primary: #ffd000;
  --primary-dark: #e6b800;
  --primary-light: #ffe566;
  --accent: #ffaa00;
  --accent-dark: #cc8800;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1e1e1e;
  --bg-section-alt: #0f0f0f;
  --text: #f0f0f0;
  --text-muted: #999999;
  --text-white: #ffffff;
  --gradient: linear-gradient(135deg, #ffd000, #ff8c00);
  --gradient-text: linear-gradient(135deg, #ffd000, #ffaa00);
  --shadow: 0 4px 30px rgba(255, 208, 0, 0.15);
  --shadow-lg: 0 8px 50px rgba(255, 208, 0, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Poppins", sans-serif;
  --font-display: "Orbitron", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient);
  color: #111111;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 208, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 208, 0, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary-light);
}

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

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}
.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-glow {
  background: var(--gradient);
  color: #111111;
  font-weight: 700;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(255, 208, 0, 0.4);
  }
  to {
    box-shadow:
      0 0 25px rgba(255, 208, 0, 0.8),
      0 0 50px rgba(255, 170, 0, 0.3);
  }
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
}

.logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.85rem;
  display: block;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 5px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
  background: rgba(255, 208, 0, 0.15);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-phone {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cb-modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  border: 1px solid rgba(255, 208, 0, 0.2);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .cb-modal {
  transform: scale(1);
}

.cb-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.cb-modal .modal-close:hover {
  color: var(--primary-light);
}

.cb-modal .modal-logo {
  text-align: center;
  margin-bottom: 16px;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 10px 16px;
}

.modal-logo img {
  height: 48px;
  width: auto;
  display: inline-block;
}

.cb-modal h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-white);
}

.cb-modal p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.cb-modal form input,
.cb-modal form select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: var(--radius);
  background: #1e1e1e;
  color: #f0f0f0;
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffd000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.cb-modal form select option {
  background: #1e1e1e;
  color: #f0f0f0;
}

.cb-modal form input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.cb-modal form input:focus,
.cb-modal form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 208, 0, 0.15);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 60px;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 26, 0.75) 0%,
      rgba(10, 10, 26, 0.6) 40%,
      rgba(10, 10, 26, 0.85) 100%
    ),
    radial-gradient(
      ellipse at 50% 0%,
      rgba(255, 208, 0, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(255, 170, 0, 0.15) 0%,
      transparent 50%
    ),
    url("images/banner-1.jpg") center/cover no-repeat;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-light);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(255, 208, 0, 0.15);
  border: 1px solid rgba(255, 208, 0, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-white);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat small {
  display: block;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll a {
  color: var(--primary-light);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}

.section:nth-child(even) {
  background: var(--bg-section-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 15px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 208, 0, 0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 208, 0, 0.1),
    rgba(255, 170, 0, 0.1)
  );
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-text strong {
  color: var(--primary-light);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  text-align: center;
}

.about-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.about-card i {
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.about-card h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========== CTA ========== */
.cta-section {
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(255, 208, 0, 0.15) 0%,
      transparent 60%
    ),
    var(--bg-section-alt) !important;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.cta-text p {
  color: var(--text-muted);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.cta-form form {
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 35px;
}

.cta-form h3 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 208, 0, 0.2);
  border-radius: var(--radius);
  background: #1e1e1e;
  color: #f0f0f0;
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--transition);
  resize: vertical;
}

.cta-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffd000' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.cta-form select option {
  background: #1e1e1e;
  color: #f0f0f0;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #ffffff;
  opacity: 1;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 208, 0, 0.15);
}

/* ========== ALUMNI IN LIMELIGHT ========== */
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ========== BOOTSTRAP ALUMNI CAROUSEL ========== */
.alumni-carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(255, 208, 0, 0.2);
}

.alumni-carousel-img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #0a0a0a;
  display: block;
}

.alumni-carousel-btn {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 1rem;
  transition: var(--transition);
}

.alumni-carousel-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 7%;
  opacity: 1;
}

.alumni-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 208, 0, 0.4);
  border: none;
  margin: 0 4px;
}

.alumni-indicators .active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* keep old alumni-slider styles for reference (unused) */
.alumni-slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.alumni-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.alumni-card {
  min-width: 100%;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 208, 0, 0.15);
  transition: var(--transition);
  background: var(--bg-card);
}

.alumni-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.alumni-card img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  display: block;
  background: #0a0a0f;
}

.alumni-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  color: #111111;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.4);
  pointer-events: all;
}

.alumni-btn:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 25px rgba(255, 208, 0, 0.6);
}

.alumni-prev { left: 0; }
.alumni-next { right: 0; }

.alumni-counter {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Alumni Lightbox */
.alumni-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.alumni-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.alumni-lightbox .lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* ========== COURSES ========== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card-new {
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.course-card-new:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-card-new.full-width {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.course-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.course-card-new.full-width .course-card-img {
  aspect-ratio: auto;
  min-height: 100%;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card-new:hover .course-card-img img {
  transform: scale(1.08);
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--gradient);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.course-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-card-body h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 700;
}

.course-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 15px;
  flex: 1;
  line-height: 1.7;
}

.course-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ========== DEGREES ========== */
.degree-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.degree-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.degree-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.degree-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.degree-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.degree-card:hover .degree-card-img img {
  transform: scale(1.08);
}

.degree-card-body {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.degree-icon {
  width: 55px;
  height: 55px;
  margin: -50px auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  font-size: 1.2rem;
  color: var(--text-white);
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg-card);
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.3);
}

.degree-card h4 {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.degree-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}

.degree-card-body .btn {
  margin-top: auto;
}

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 25px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.12);
  border-radius: var(--radius);
  padding: 35px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient);
  transition: height 0.4s ease;
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 208, 0, 0.1);
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--primary-light);
}

.why-card h4 {
  color: var(--text-white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 2px dashed rgba(255, 208, 0, 0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.gallery-placeholder i {
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.5;
}

/* ========== STUDENT WORKS SLIDER ========== */
.works-slider {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.works-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-slide {
  min-width: 100%;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 208, 0, 0.15);
  transition: var(--transition);
  background: var(--bg-card);
}

.work-slide:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.work-slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  display: block;
  background: #0a0a0f;
}

.works-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  color: var(--text-white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.4);
}

.works-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 208, 0, 0.6);
}

.works-prev {
  left: 0;
}
.works-next {
  right: 0;
}

.works-counter {
  text-align: center;
  margin-top: 20px;
  padding: 8px 22px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.lightbox-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========== GALLERY - LIFE AT FRAMEBOXX ========== */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 24px;
  border: 2px solid rgba(255, 208, 0, 0.3);
  background: transparent;
  color: var(--text-muted);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.gallery-tab:hover,
.gallery-tab.active {
  background: var(--gradient);
  border-color: transparent;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(255, 208, 0, 0.4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 208, 0, 0.1);
  transition: var(--transition);
  background: var(--bg-card);
  position: relative;
}

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 208, 0, 0.5);
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.hidden {
  display: none;
}

/* Gallery Lightbox - reuse lightbox styles */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox .lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
  box-sizing: border-box;
}

.testimonial-stars {
  margin-bottom: 20px;
  color: #fbbf24;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-card > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.2rem;
}

.testimonial-author strong {
  color: var(--text-white);
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--primary-light);
  font-size: 0.8rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 208, 0, 0.2);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ========== FOOTER ========== */
.footer {
  background: #06060f;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.8fr 0.8fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 208, 0, 0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.footer-logo span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-info > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.1);
  border: 1px solid rgba(255, 208, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

.footer-contact h4,
.footer-links h4,
.footer-courses h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--primary-light);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--primary-light);
}

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

.footer-links a,
.footer-courses a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-courses a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========== FLOATING BUTTONS ========== */
.floating-btns {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.phone-btn {
  background: var(--gradient);
  animation: pulse-ring 2s infinite;
}

.whatsapp-btn {
  background: #25d366;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 208, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 208, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 208, 0, 0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-card-new.full-width {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 208, 0, 0.2);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .nav-phone {
    display: none;
  }

  .nav-actions #enquiryBtn {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 25px;
  }
  .stat-num {
    font-size: 1.6rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .course-card-new.full-width {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item img {
    height: 180px;
  }
  .gallery-tabs {
    gap: 8px;
  }
  .gallery-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .work-slide img {
    height: 400px;
  }
  .alumni-card img {
    height: 400px;
  }
  .degree-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 200px;
  }
  .alumni-card img {
    height: 280px;
  }
  .alumni-slider {
    padding: 0 40px;
  }
  .alumni-btn {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }
  .work-slide img {
    height: 280px;
  }
  .works-slider {
    padding: 0 40px;
  }
  .works-btn {
    width: 35px;
    height: 35px;
    font-size: 0.85rem;
  }
  .lightbox-btn {
    width: 40px;
    height: 40px;
  }
  .degree-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== FLOATING ENQUIRE BUTTON ========== */
.floating-enquire {
  position: fixed;
  right: 17px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(50%);
  transform-origin: right center;
  background: var(--gradient);
  color: #111111;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(255, 208, 0, 0.35);
  transition: var(--transition);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.floating-enquire:hover {
  background: var(--primary);
  box-shadow: -4px 0 30px rgba(255, 208, 0, 0.6);
  padding-right: 30px;
}

.floating-enquire i {
  transform: rotate(90deg);
  font-size: 0.9rem;
}
