/* ============================================================
   GARUDRAJ Fintech Academy LLP - Main Stylesheet
   ============================================================ */

:root {
  --navy: #0A1628;
  --navy-light: #112240;
  --blue: #1565C0;
  --blue-light: #1976D2;
  --gold: #F5A623;
  --gold-light: #FFB74D;
  --white: #FFFFFF;
  --light-bg: #F0F4FF;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --glass-bg: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.15);
  --shadow: 0 8px 32px rgba(0,0,0,0.2);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius: 16px;
  --radius-sm: 8px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter','Segoe UI',sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

h1,h2,h3,h4,h5 { font-family: 'Montserrat','Segoe UI',sans-serif; font-weight: 700; line-height: 1.2; }

.section-title { font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--navy); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-navy { color: var(--navy); }

/* Buttons */
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); font-weight: 700; padding: 0.75rem 2rem; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,166,35,0.4); color: var(--navy); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); background: transparent; font-weight: 700; padding: 0.7rem 2rem; border-radius: 50px; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-blue { background: linear-gradient(135deg,var(--blue),var(--blue-light)); color: var(--white); font-weight: 700; padding: 0.75rem 2rem; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(21,101,192,0.4); color: var(--white); }

.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.section-badge { display: inline-block; background: linear-gradient(135deg,rgba(245,166,35,0.15),rgba(245,166,35,0.05)); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); border-radius: 50px; padding: 0.35rem 1.2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main { background: var(--navy) !important; padding: 0.8rem 0; transition: var(--transition); border-bottom: 2px solid rgba(245,166,35,0.2); }
.navbar-main.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); padding: 0.5rem 0; }
.navbar-brand-wrap { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo { height: 48px; width: auto; }
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Montserrat',sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.brand-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 1.5px; font-weight: 600; text-transform: uppercase; }
.navbar-main .nav-link { color: rgba(255,255,255,0.85) !important; font-weight: 600; font-size: 0.88rem; padding: 0.5rem 1rem !important; border-radius: var(--radius-sm); transition: var(--transition); }
.navbar-main .nav-link:hover, .navbar-main .nav-link.active { color: var(--gold) !important; background: rgba(245,166,35,0.1); }
.navbar-main .navbar-toggler { border-color: rgba(245,166,35,0.5); }
.navbar-main .navbar-toggler-icon { filter: invert(1); }

/* ============================================================
   HERO SLIDER  — Custom (no Bootstrap carousel)
   ============================================================ */

/* Wrapper: full viewport, clips slides */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Each slide: absolute, full size, hidden by default */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

/* Only the active slide is visible */
.hero-slide.active-slide {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide backgrounds */
.slide-1 { background: linear-gradient(135deg,#0A1628 0%,#112240 50%,#1565C0 100%); }
.slide-2 { background: linear-gradient(135deg,#0D1B2A 0%,#1B2838 50%,#0A1628 100%); }
.slide-3 { background: linear-gradient(135deg,#1565C0 0%,#0A1628 60%,#112240 100%); }
.slide-4 { background: linear-gradient(135deg,#112240 0%,#0A1628 40%,#1A1A2E 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%,rgba(245,166,35,0.08) 0%,transparent 60%), radial-gradient(ellipse at 20% 80%,rgba(21,101,192,0.15) 0%,transparent 50%);
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245,166,35,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(245,166,35,0.03) 1px,transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Inner content: clears fixed navbar */
.hero-slide .container {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-slide .row {
  min-height: calc(100vh - 150px);
}

/* Text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem,5vw,3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  -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.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Candle chart */
.candle-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.candle { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.candle-wick { width: 2px; background: rgba(255,255,255,0.5); }
.candle-body { width: 22px; border-radius: 3px; }
.candle.up .candle-body { background: #26A69A; }
.candle.down .candle-body { background: #EF5350; }

.stat-pill {
  position: absolute;
  background: rgba(10,22,40,0.9);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}
.stat-pill-1 { top: 10%; right: -30px; animation-delay: 0s; }
.stat-pill-2 { bottom: 20%; left: -30px; animation-delay: 1.5s; }
.stat-pill .stat-val { font-size: 1.3rem; font-weight: 800; color: var(--gold); display: block; }
.stat-pill .stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.6); }

/* Slider nav arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(245,166,35,0.2);
  border: 1.5px solid rgba(245,166,35,0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--gold); color: var(--navy); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip { background: var(--light-bg); }
.about-card-main { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-left: 4px solid var(--gold); height: 100%; }
.vision-mission-card { border-radius: var(--radius); padding: 2rem; height: 100%; transition: var(--transition); }
.vm-vision { background: linear-gradient(135deg,var(--navy),var(--navy-light)); color: var(--white); }
.vm-mission { background: linear-gradient(135deg,var(--blue),var(--blue-light)); color: var(--white); }
.vision-mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vm-icon { width: 56px; height: 56px; background: rgba(245,166,35,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); margin-bottom: 1.25rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--navy); }
.why-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 1.75rem; transition: var(--transition); backdrop-filter: blur(10px); height: 100%; }
.why-card:hover { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.4); transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.why-icon { width: 52px; height: 52px; background: linear-gradient(135deg,var(--gold),var(--gold-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--navy); margin-bottom: 1rem; }
.why-card h5 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--white); }
.service-card { border-radius: var(--radius); padding: 2rem; transition: var(--transition); border: 1px solid #E8EFF8; height: 100%; background: var(--white); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--blue),var(--gold)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(21,101,192,0.2); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(21,101,192,0.12); }
.service-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; background: var(--light-bg); color: var(--blue); transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg,var(--blue),var(--blue-light)); color: var(--white); }
.service-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   COUNTERS
   ============================================================ */
.counters-section { background: linear-gradient(135deg,var(--navy),var(--blue)); position: relative; overflow: hidden; }
.counters-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.02) 1px,transparent 1px); background-size: 40px 40px; }
.counter-card { text-align: center; position: relative; padding: 2rem 1rem; }
.counter-card::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,0.1); }
.counter-card:last-child::after { display: none; }
.counter-number { font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; display: block; }
.counter-label { color: rgba(255,255,255,0.75); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.5px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light-bg); }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 2.25rem; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-bottom: 3px solid var(--gold); transition: var(--transition); height: 100%; position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 1.5rem; right: 2rem; font-size: 5rem; line-height: 1; color: rgba(245,166,35,0.15); font-family: Georgia,serif; font-weight: 900; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.testimonial-rating { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-dark); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg,var(--navy),var(--blue)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.25rem; font-weight: 800; flex-shrink: 0; font-family: 'Montserrat',sans-serif; }
.author-info .name { font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.author-info .role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { background: linear-gradient(135deg,var(--navy) 0%,var(--blue) 100%); position: relative; overflow: hidden; text-align: center; padding: 5rem 0; }
.cta-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(245,166,35,0.06); top: -200px; right: -100px; }
.cta-section::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); bottom: -150px; left: -100px; }
.cta-section h2 { font-size: clamp(2rem,4vw,3rem); color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 4rem 0 0; border-top: 2px solid rgba(245,166,35,0.2); }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-top: 1rem; color: rgba(255,255,255,0.55); }
.footer-heading { color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-contact i { color: var(--gold); margin-top: 0.2rem; width: 16px; flex-shrink: 0; }
.social-icons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.social-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.social-icon:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.25rem 0; margin-top: 3rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* Back to top */
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--navy); border-radius: 12px; border: none; font-size: 1.1rem; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(245,166,35,0.4); transition: var(--transition); z-index: 9999; }
#backToTop:hover { transform: translateY(-4px); }
#backToTop.visible { display: flex; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: linear-gradient(135deg,var(--navy),var(--blue)); padding: 8rem 0 4rem; position: relative; overflow: hidden; text-align: center; color: var(--white); }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,166,35,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(245,166,35,0.04) 1px,transparent 1px); background-size: 50px 50px; }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.breadcrumb-custom { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); position: relative; z-index: 1; margin-top: 0.75rem; }
.breadcrumb-custom a { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg,var(--blue),var(--gold)); transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 2.5rem; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content { width: 45%; background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-left: 3px solid var(--gold); }
.timeline-item:nth-child(odd) .timeline-content { border-left: none; border-right: 3px solid var(--blue); }
.timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 18px; height: 18px; background: var(--gold); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--gold); z-index: 2; }
.timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.timeline-content h5 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; border-top: 3px solid var(--gold); box-shadow: 0 4px 15px rgba(0,0,0,0.06); text-align: center; transition: var(--transition); height: 100%; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.value-icon { width: 60px; height: 60px; background: var(--light-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--blue); transition: var(--transition); }
.value-card:hover .value-icon { background: linear-gradient(135deg,var(--blue),var(--gold)); color: var(--white); }
.team-card { background: var(--white); border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: var(--transition); height: 100%; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg,var(--navy),var(--blue)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--gold); font-size: 2rem; font-weight: 800; font-family: 'Montserrat',sans-serif; border: 3px solid rgba(245,166,35,0.3); }
.team-card h5 { color: var(--navy); font-size: 1rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   COURSES PAGE
   ============================================================ */
.course-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: var(--transition); height: 100%; border: 1px solid #E8EFF8; }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(21,101,192,0.15); border-color: rgba(21,101,192,0.2); }
.course-header { padding: 2rem; position: relative; overflow: hidden; }
.course-header-1 { background: linear-gradient(135deg,var(--navy),var(--blue)); }
.course-header-2 { background: linear-gradient(135deg,#1a237e,var(--navy)); }
.course-header-3 { background: linear-gradient(135deg,var(--blue),#0288d1); }
.course-header-4 { background: linear-gradient(135deg,#1b5e20,#2e7d32); }
.course-header-5 { background: linear-gradient(135deg,#4a148c,#6a1b9a); }
.course-header-6 { background: linear-gradient(135deg,#bf360c,#e64a19); }
.course-header::after { content: ''; position: absolute; right: -20px; top: -20px; width: 100px; height: 100px; background: rgba(255,255,255,0.06); border-radius: 50%; }
.course-badge { display: inline-block; background: rgba(245,166,35,0.2); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); padding: 0.25rem 0.9rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.75rem; }
.course-header h5 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.5rem; }
.course-duration { color: rgba(255,255,255,0.7); font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; }
.course-body { padding: 1.75rem; }
.course-features { margin-bottom: 1.5rem; }
.course-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--text-dark); padding: 0.4rem 0; border-bottom: 1px solid #F0F4FF; }
.course-features li:last-child { border-bottom: none; }
.course-features li i { color: var(--blue); margin-top: 0.2rem; flex-shrink: 0; font-size: 0.8rem; }
.course-outcomes h6 { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
.outcome-tag { display: inline-block; background: var(--light-bg); color: var(--blue); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin: 0.2rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.contact-info-card { background: linear-gradient(135deg,var(--navy),var(--blue)); border-radius: var(--radius); padding: 2.5rem; color: var(--white); height: 100%; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(245,166,35,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-info-text .label { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.contact-info-text .value { color: var(--white); font-size: 0.9rem; font-weight: 500; }
.form-control-custom { width: 100%; background: var(--light-bg); border: 1.5px solid #E8EFF8; border-radius: var(--radius-sm); padding: 0.8rem 1rem; font-size: 0.9rem; color: var(--text-dark); transition: var(--transition); outline: none; font-family: inherit; }
.form-control-custom:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
.form-label-custom { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.map-placeholder { background: var(--light-bg); border-radius: var(--radius); height: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; color: var(--text-muted); border: 2px dashed #D1D9E8; }
.map-placeholder i { font-size: 3rem; color: var(--blue); opacity: 0.4; }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page { min-height: 100vh; background: linear-gradient(135deg,var(--navy) 0%,#112240 50%,var(--blue) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 2rem; }
.login-page::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,166,35,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(245,166,35,0.04) 1px,transparent 1px); background-size: 40px 40px; }
.login-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 3rem; width: 100%; max-width: 440px; position: relative; z-index: 2; }
.login-logo { text-align: center; margin-bottom: 2rem; }
.login-logo img { height: 60px; margin-bottom: 0.75rem; }
.login-logo h4 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.login-logo p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.login-field label { display: block; font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.login-input { width: 100%; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 0.9rem 1rem; color: var(--white); font-size: 0.9rem; transition: var(--transition); outline: none; font-family: inherit; }
.login-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(245,166,35,0.15); }
.login-input::placeholder { color: rgba(255,255,255,0.3); }

/* ============================================================
   SERVICES DETAIL
   ============================================================ */
.service-detail-card { background: var(--white); border-radius: var(--radius); padding: 2.25rem; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border-left: 4px solid var(--blue); transition: var(--transition); height: 100%; }
.service-detail-card:nth-child(even) { border-left-color: var(--gold); }
.service-detail-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.service-detail-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.5rem; background: var(--light-bg); color: var(--blue); }
.service-detail-card h4 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-detail-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-feature-list li { font-size: 0.85rem; color: var(--text-dark); padding: 0.35rem 0; display: flex; align-items: center; gap: 0.5rem; }
.service-feature-list li::before { content: '✓'; color: var(--gold); font-weight: 800; font-size: 0.75rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@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); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(30px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

.delay-1 { transition-delay:0.1s; } .delay-2 { transition-delay:0.2s; } .delay-3 { transition-delay:0.3s; }
.delay-4 { transition-delay:0.4s; } .delay-5 { transition-delay:0.5s; } .delay-6 { transition-delay:0.6s; }
.delay-7 { transition-delay:0.7s; } .delay-8 { transition-delay:0.8s; }

/* Utilities */
.divider-gold { width:60px; height:4px; background:linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius:2px; margin:0.75rem auto 1.5rem; }
.divider-gold-left { width:60px; height:4px; background:linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius:2px; margin:0.75rem 0 1.5rem; }
.bg-navy { background:var(--navy); }
.bg-light-custom { background:var(--light-bg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:991px) {
  .timeline::before { left:24px; }
  .timeline-item { flex-direction:row !important; padding-left:60px; }
  .timeline-content { width:100%; border-right:none !important; border-left:3px solid var(--gold) !important; }
  .timeline-dot { left:24px; }
  .counter-card::after { display:none; }
}
@media (max-width:767px) {
  .hero-section { height:auto; min-height:100vh; }
  .hero-slide { position:relative; height:auto; min-height:100vh; }
  .hero-slide:not(.active-slide) { display:none; }
  .stat-pill-1,.stat-pill-2 { display:none; }
  .login-card { padding:2rem; }
  .contact-form-card,.contact-info-card { padding:1.75rem; }
}
@media (max-width:575px) {
  .hero-title { font-size:1.75rem; }
  .section-title { font-size:1.6rem; }
  .hero-btns { flex-direction:column; }
  .hero-btns .btn-gold,.hero-btns .btn-outline-gold { width:100%; justify-content:center; }
}
