/* ========================================
   AIGIRI NANDINI EDUTECH - MAIN STYLESHEET
   Responsive & Optimized Version
   ======================================== */

/* CSS VARIABLES */
:root {
  --bg: #0b0b0b;
  --accent: #00d166;
  --accent-light: #00ff88;
  --muted: #9aa7a0;
  --text-light: #e6efe9;
  --text-muted: #a0a0a0;
  --dark-bg: #0f0f23;
  --primary-gradient: linear-gradient(135deg, #00d166 0%, #00e67a 50%, #00f5a0 100%);
  --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, var(--bg), #060606);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.floating-buttons a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.floating-buttons .whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-buttons .call {
  background: linear-gradient(135deg, #0EC20E, #00a300);
}

.floating-buttons .youtube {
  background: linear-gradient(135deg, #FF0000, #CC0000);
}

/* VIDEO BANNER */
.video-banner {
  width: 100vw;
  height: 70vh;
  min-height: 400px;
  max-height: 650px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,209,102,0.15), rgba(0,0,0,0.7));
  z-index: 2;
}

/* MARQUEE SECTION */
/* .trading-updates-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.marquee-container {
  width: 100%;
  background-color: #0f172a;
  color: white;
  border-top: 2px solid #1e293b;
  border-bottom: 2px solid #1e293b;
  height: 50px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee-label {
  background-color: #16a34a;
  color: white;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  box-shadow: 5px 0 15px rgba(0,0,0,0.4);
  min-width: 180px;
}

.marquee-label i {
  margin-right: 6px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollInfinite 45s linear infinite;
  padding-left: 200px;
}

.marquee-content {
  display: flex;
  align-items: center;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  margin-right: 60px;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.marquee-item i {
  color: #facc15;
  margin-right: 8px;
}

.marquee-item span {
  color: #facc15;
  font-weight: 700;
  margin-left: 4px;
}

.blink-new {
  background-color: #dc2626;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 8px;
  text-transform: uppercase;
  animation: blinker 1.5s linear infinite;
}

@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes blinker {
  50% { opacity: 0; }
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
} */

/* HERO SECTION */
.hero-section {
  width: 100vw;
  min-height: 100vh;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: center;
}

.hero-main-content {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  background: var(--primary-gradient);
  color: #03110a;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 12px 40px rgba(0,209,102,0.4);
  letter-spacing: 1px;
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 30px 0 24px;
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 50%, rgba(255,255,255,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 700px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.kpi-item {
  background: var(--glass-bg);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.kpi-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,209,102,0.3);
  border-color: rgba(0,209,102,0.4);
}

.kpi-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.kpi-label {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  padding: 18px 40px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  border: none;
  background: transparent;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #03110a;
  box-shadow: 0 15px 50px rgba(0,209,102,0.5);
}

.btn-outline {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(40px);
}

.btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: #fff;
  width: 100%;
  margin-bottom: 24px;
}

.hero-sidebar {
  animation: slideInRight 1s ease-out 0.3s both;
}

.sidebar-card {
  background: var(--glass-bg);
  backdrop-filter: blur(50px);
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  padding: 48px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: sticky;
  top: 40px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.card-header h3 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-icon {
  font-size: 2rem;
}

.countdown {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.countdown-item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.countdown-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.countdown-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.float-item {
  position: absolute;
  background: rgba(0,209,102,0.1);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

.float-item:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
}

.float-item:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.float-item:nth-child(3) {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: -10s;
  opacity: 0.5;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
  }
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Main Layout Wrapper */
.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; /* Increased gap for better breathing room since stats are gone */
  align-items: center; /* Centered alignment looks better without the complex image grid */
}

.section-header {
  margin-bottom: 30px;
}

.section-badge {
  background: var(--primary-gradient);
  color: #03110a;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,209,102,0.3);
}

.underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin-top: 10px;
}

.lead-text {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.highlight-text {
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  /* Added base style for feature item alignment if not present globally */
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.feature-icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  background: rgba(0,209,102,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-section {
  display: flex;
  flex-direction: column;
  /* Removed gap since there is only one image now */
}

.main-image {
  position: relative;
  height: 450px; /* Increased height slightly to balance the text content */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  background: #2a2a3a;
  margin: 0; /* Reset default figure margin */
}

.main-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.main-image:hover .image-main {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gradient);
  color: #03110a;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0,209,102,0.4);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.pulse-btn {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0,209,102,0.4);
  }
  50% {
    box-shadow: 0 10px 40px rgba(0,209,102,0.6);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .main-image {
    height: 350px;
  }
}


/* COURSES SECTION */






.courses-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}


.section-subtitle {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  text-align: center;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.course-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0,209,102,0.3);
  border-radius: 24px;
  padding: 40px 24px;
  text-align: center;
  color: var(--text-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0,209,102,0.3);
  background: rgba(255,255,255,0.08);
}

.course-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.course-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.course-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.course-tag {
  background: var(--primary-gradient);
  color: #03110a;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* === FULL WIDTH MARQUEE ONLY === */
.courses-marquee-fullwidth {
  width: 400vw;                    /* Full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin: 60px 0;
  padding: 60px 0;
  background: rgba(255,255,255,0.02);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,209,102,0.2);
  overflow: hidden;
}

.marquee-container-images {
  max-width: 5000px;
  margin: 0 auto;
  height: 360px;
  overflow: hidden;
}

.marquee-track-images {
  display: flex;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
  gap: 35px;
  padding: 0 80px;              /* Side spacing for smooth scroll */
  height: 100%;
  align-items: center;
}

.marquee-img {
  width:320px;
  height: 280px;
  min-width: 450px;
  max-width: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-img:hover {
  transform: scale(1.05);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.courses-marquee-fullwidth:hover .marquee-track-images {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 1200px) {
  .marquee-img {
    width: 320px;
    height: 200px;
    min-width: 320px;
  }
}

@media (max-width: 992px) {
  .marquee-container-images {
    height: 220px;
  }
  .marquee-img {
    width: 280px;
    height: 175px;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .courses-marquee-fullwidth {
    padding: 50px 0;
  }
  .marquee-container-images {
    height: 200px;
  }
  .marquee-img {
    width: 240px;
    height: 150px;
    min-width: 240px;
  }
}


.cta-section {
  text-align: center;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* DIRECTOR'S MESSAGE */
/* .directors-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
  position: relative;
  overflow: hidden;
}

.message-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.image-placeholder {
  width: 100%;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  background: linear-gradient(135deg, rgba(0,209,102,0.15), rgba(0,255,136,0.08));
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.4s ease;
  position: relative;
}

.image-placeholder:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0,209,102,0.3);
  border-color: var(--accent);
}

.dummy-director-img {
  width: 100%;
  height: 100%;
}

.live-indicator {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0,209,102,0.9);
  color: #03110a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(0,209,102,0.4);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
  padding-left: 30px;
}

blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: -10px;
  font-weight: bold;
}

.message-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #a0a0a0;
  margin-bottom: 40px;
}

.director-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(0,209,102,0.2);
  backdrop-filter: blur(10px);
}

.director-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-placeholder {
  color: #03110a;
  font-weight: 800;
  font-size: 1.4rem;
}

.director-details h4 {
  margin: 0 0 4px 0;
  color: #ffffff;
  font-size: 1.3rem;
}

.director-details p {
  margin: 0 0 4px 0;
  color: var(--accent);
  font-weight: 600;
}

.experience {
  color: #a0a0a0;
  font-size: 0.9rem;
} */

/* PRICING SECTION */
.explore-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
  position: relative;
  overflow: hidden;
}

.courses-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.courses-row::-webkit-scrollbar {
  height: 8px;
}

.courses-row::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

.courses-row::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.course-card-pricing {
  flex: 0 0 300px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0,209,102,0.3);
  transition: all 0.4s ease;
  min-height: 480px;
}

.course-card-pricing:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(0,209,102,0.4);
}

.course-card-pricing.featured {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0,209,102,0.4);
  flex: 0 0 320px;
}

.course-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card-pricing:hover .course-img {
  transform: scale(1.08);
}

.course-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gradient);
  color: #03110a;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,209,102,0.4);
}

.course-badge.demo {
  background: linear-gradient(135deg, #ffae00, #ffdd44);
}

.course-info {
  padding: 28px 24px 32px;
  text-align: center;
}

.course-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-highlight {
  margin: 20px 0;
}

.price-big {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.currency {
  font-size: 1.3rem;
  font-weight: 700;
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px 0;
  text-align: left;
}

.features li {
  color: #d0d0d0;
  padding: 6px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}






/* MISSION & VISION */
.mission-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
  position: relative;
  overflow: hidden;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.mission-card,
.vision-card {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  border-radius: 28px;
  padding: 48px 40px;
  border: 2px solid rgba(0,209,102,0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: 0 40px 80px rgba(0,209,102,0.3);
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px auto;
  box-shadow: 0 10px 30px rgba(0,209,102,0.4);
  animation: bounce 2s infinite;
}

.vision-icon {
  background: linear-gradient(135deg, #ffae00, #ffdd44);
  box-shadow: 0 10px 30px rgba(255,174,0,0.4);
  animation-delay: 0.5s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 24px 0;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-lead,
.vision-lead {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 32px;
}

.mission-pillars,
.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(0,209,102,0.2);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: rgba(0,209,102,0.1);
  border-color: var(--accent);
  transform: translateX(8px);
}

.pillar-icon {
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  background: rgba(0,209,102,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar span {
  color: #d0d0d0;
  font-weight: 500;
  font-size: 0.95rem;
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
  background: rgba(255,255,255,0.02);
  border-radius: 24px;
  border: 1px solid rgba(0,209,102,0.2);
  backdrop-filter: blur(20px);
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 3rem;
}

/* CONTACT SECTION */
.pk-contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
}

.pk-header {
  text-align: center;
  margin-bottom: 60px;
}

.pk-header h2 {
  font-size: 2.4rem;
  background: linear-gradient(135deg, #ffffff, var(--accent));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  font-weight: bold;
}

.pk-header p {
  font-size: 1.15rem;
  color: #d0d0d0;
  max-width: 500px;
  margin: 0 auto;
}

.pk-contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.pk-contact-info,
.pk-form-wrapper {
  flex: 1;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(0,209,102,0.3);
  padding: 45px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  min-height: 480px;
}

.pk-contact-info:hover,
.pk-form-wrapper:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(0,209,102,0.4);
  transform: translateY(-5px);
}

.pk-contact-info h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 35px 0 15px 0;
  font-weight: bold;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pk-contact-info h3:first-child {
  margin-top: 0;
}

.pk-contact-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 0;
}

.pk-contact-info a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pk-contact-info a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0,209,102,0.8);
}

.pk-form-wrapper h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: bold;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.pk-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pk-enquiry-form input,
.pk-enquiry-form select,
.pk-enquiry-form textarea {
  padding: 15px 18px;
  border: 2px solid rgba(0,209,102,0.4);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  transition: all 0.3s ease;
}

.pk-enquiry-form input::placeholder,
.pk-enquiry-form textarea::placeholder {
  color: #cccccc;
}

.pk-enquiry-form input:focus,
.pk-enquiry-form select:focus,
.pk-enquiry-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 0 4px rgba(0,209,102,0.2);
}

.pk-enquiry-form input,
.pk-enquiry-form select {
  height: 50px;
}

.pk-enquiry-form textarea {
  resize: vertical;
  min-height: 110px;
}

.pk-enquiry-form button {
  padding: 16px;
  background: var(--primary-gradient);
  color: #03110a;
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,209,102,0.4);
}

.pk-enquiry-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,209,102,0.5);
}

/* FAQ SECTION */
.aigiri-faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, 
    rgba(0,15,40,0.95) 0%, 
    rgba(0,209,102,0.1) 30%, 
    rgba(11,11,11,0.9) 70%);
}

.faq-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.faq-list {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0,209,102,0.3);
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: rgba(0,209,102,0.1);
  transform: translateX(5px);
}

.faq-item summary {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: #d0d0d0;
  line-height: 1.6;
  margin-top: 12px;
}

.updates-section {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0,209,102,0.3);
}

.updates-section h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 10px;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.updates-section > p {
  color: #a0a0a0;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.update-item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}

.update-date {
  color: var(--accent);
  font-weight: bold;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.update-content h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.update-content p {
  color: #d0d0d0;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.update-link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.update-link:hover {
  text-decoration: underline;
}

/* GALLERY SECTION */
.aigiri-gallery-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(11,11,11,0.9) 0%, rgba(0,209,102,0.08) 100%);
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 2.4rem;
  background: linear-gradient(135deg, #ffffff, var(--accent));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.gallery-header p {
  color: #d0d0d0;
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,209,102,0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: white;
  padding: 30px 20px 20px;
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

/* ADMISSION CTA */
.admission-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #bc8805ff, var(--accent-light));
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #03110a;
  margin-bottom: 15px;
  font-weight: bold;
}

.cta-content p {
  font-size: 1.3rem;
  color: #03110a;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn.primary {
  background: #03110a;
  color: var(--accent-light);
}

.cta-btn.secondary {
  background: transparent;
  color: #03110a;
  border: 2px solid #03110a;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets & Small Desktops (≤1200px) */
@media (max-width: 1200px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr 400px;
    gap: 50px;
  }
  
  .course-card-pricing {
    flex: 0 0 280px;
  }
}

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .video-banner {
    height: 60vh;
    min-height: 350px;
  }
  
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-content-wrapper {
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 0 16px;
  }
  
  .content-wrapper,
  .message-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pk-contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .mission-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
}

/* Mobile Landscape & Small Tablets (≤768px) */
@media (max-width: 768px) {
  .video-banner {
    height: 50vh;
    min-height: 300px;
  }
  
  .marquee-label {
    font-size: 0.7rem;
    padding: 0 12px;
    min-width: 140px;
  }
  
  .marquee-track {
    padding-left: 150px;
  }
  
  .marquee-item {
    font-size: 0.9rem;
    margin-right: 40px;
  }
  
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto;
  }
  
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-main-content {
    order: 2;
  }
  
  .hero-sidebar {
    order: 1;
  }
  
  .hero-buttons,
  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
  
  .floating-buttons {
    right: 12px;
    bottom: 15px;
    gap: 10px;
  }
  
  .floating-buttons a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .image-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .main-image {
    height: 300px;
  }
  
  .image-placeholder {
    height: 350px;
  }
  
  .course-card-pricing {
    flex: 0 0 260px;
    min-height: 440px;
  }
  
  .course-image {
    height: 160px;
  }
  
  .marquee-img {
    width: 180px;
    height: 115px;
  }
  
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  
  .gallery-item {
    height: 200px;
  }
}

/* Mobile Portrait (≤600px) */
@media (max-width: 600px) {
  .about-section,
  .courses-section,
  .directors-section,
  .explore-section,
  .mission-section,
  .pk-contact-section,
  .aigiri-faq-section,
  .aigiri-gallery-section {
    padding: 60px 15px;
  }
  
  .hero-content-wrapper,
  .sidebar-card,
  .pk-contact-info,
  .pk-form-wrapper {
    padding: 35px 20px;
  }
  
  .countdown {
    flex-direction: column;
    gap: 12px;
  }
  
  .kpi-grid {
    gap: 16px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .main-image {
    height: 260px;
  }
  
  .image-placeholder {
    height: 300px;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .course-card-pricing {
    flex: 0 0 240px;
    min-height: 420px;
  }
  
  .course-image {
    height: 140px;
  }
  
  .marquee-img {
    width: 140px;
    height: 90px;
  }
  
  .mission-card,
  .vision-card {
    padding: 36px 24px;
  }
  
  .stat-number {
    font-size: 2.5rem !important;
  }
  
  .pk-contact-info h3,
  .pk-form-wrapper h3,
  .updates-section h3 {
    font-size: 1.2rem;
  }
  
  .faq-list {
    padding: 30px 20px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

/* Extra Small Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-badge {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
  
  .sidebar-card {
    padding: 32px 20px;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .kpi-number {
    font-size: 2.2rem !important;
  }
  
  .btn {
    padding: 16px 32px;
    font-size: 0.95rem;
  }
  
  .pk-contact-info,
  .pk-form-wrapper {
    padding: 30px 20px;
    min-height: 420px;
  }
  
  .pk-enquiry-form input,
  .pk-enquiry-form select {
    height: 48px;
  }
  
  .floating-buttons {
    right: 10px;
    bottom: 12px;
    gap: 8px;
  }
  
  .floating-buttons a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.highlight {
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
details:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(255,255,255,0.15);
    --glass-border: rgba(255,255,255,0.3);
  }
  
  .btn-outline {
    border-width: 3px;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .floating-buttons,
  .video-banner,
  .floating-elements,
  .marquee-container {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
  
  .btn {
    border: 2px solid black;
    color: black;
  }
}

/* ========================================
   LOADING & PERFORMANCE
   ======================================== */

/* Skeleton loading placeholder */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.05) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Lazy loading images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
  opacity: 1;
}



.courses-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.course-image-full {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-image-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-image-full:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .courses-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .course-image-full {
        height: 200px;
    }
}









/* End of Stylesheet */