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

:root {
  --navy: #020626;
  --navy-light: #0a1340;
  --red: #F60101;
  --teal: #00D4AA;
  --teal-light: #00f5c5;
  --white: #ffffff;
  --light: #F8F9FF;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(2,6,38,0.08);
  --shadow-hover: 0 12px 40px rgba(2,6,38,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: #1a1a2e;
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Raleway', sans-serif; font-weight: 700; line-height: 1.3; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; height: auto; }

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

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13px;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--teal); }
.topbar i { color: var(--teal); }
.topbar .social-links { display: flex; gap: 10px; }
.topbar .social-links a { width: 28px; height: 28px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.topbar .social-links a:hover { background: var(--teal); color: var(--navy); }

/* ===== NAVBAR ===== */
.navbar {
  background: white;
  box-shadow: 0 2px 20px rgba(2,6,38,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.nav-logo img { height: 48px; width: auto; max-width: 200px; object-fit: contain; }
.nav-logo span { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu li { position: relative; }
.nav-menu li a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 15px; color: var(--navy);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.nav-menu li a:hover, .nav-menu li a.active { color: var(--red); }
.nav-menu li a i { font-size: 10px; transition: var(--transition); }
.nav-menu li:hover > a i { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-hover); min-width: 260px;
  padding: 12px 0; opacity: 0; visibility: hidden;
  transform: translateY(-10px); transition: var(--transition);
  border-top: 3px solid var(--teal);
}
.nav-menu li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 14px; color: #333;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--light); color: var(--red); padding-left: 26px; }
.dropdown-menu a i { width: 18px; color: var(--teal); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn-call {
  background: var(--light); color: var(--navy);
  padding: 9px 18px; border-radius: 30px;
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--gray-light);
}
.btn-call:hover { background: var(--navy); color: white; }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #00b894);
  color: var(--navy); padding: 10px 22px; border-radius: 30px;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,212,170,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,212,170,0.5); color: var(--navy); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1340 50%, #1a0a4a 100%);
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0 60px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300D4AA' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,170,0.15); border: 1px solid rgba(0,212,170,0.3);
  color: var(--teal); padding: 6px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero h1 { font-size: clamp(32px, 4vw, 56px); color: white; margin-bottom: 20px; line-height: 1.15; }
.hero h1 span { color: var(--teal); }
.hero h1 .red { color: var(--red); }
.hero p { color: rgba(255,255,255,0.75); font-size: 18px; margin-bottom: 32px; max-width: 500px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--teal), #00b894);
  color: var(--navy); padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 30px rgba(0,212,170,0.4);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,212,170,0.55); color: var(--navy); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.1); color: white;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 16px;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { background: white; color: var(--navy); transform: translateY(-3px); }

.hero-stats { display: flex; gap: 32px; }
.hero-stat {}
.hero-stat .number { font-size: 28px; font-weight: 800; color: var(--teal); font-family: 'Raleway', sans-serif; }
.hero-stat .label { color: rgba(255,255,255,0.6); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.hero-right { position: relative; }
.hero-img-wrap {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }

.hero-card {
  position: absolute; background: white;
  border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-hover);
  display: flex; align-items: center; gap: 12px;
}
.hero-card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hero-card .card-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.hero-card .card-sub { font-size: 11px; color: var(--gray); }
.hero-card-1 { bottom: -20px; left: -30px; }
.hero-card-2 { top: -20px; right: -20px; }

.ticker-wrap {
  background: var(--red); padding: 12px 0; overflow: hidden;
  position: relative; white-space: nowrap;
}
.ticker-inner { display: flex; gap: 0; white-space: nowrap; animation: ticker 30s linear infinite; flex-shrink: 0; }
.ticker-item { color: white; font-weight: 600; font-size: 14px; padding: 0 40px; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.ticker-item::before { content: '●'; color: rgba(255,255,255,0.5); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light); }
.section-teal { background: linear-gradient(135deg, #00D4AA10, #00D4AA05); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block; background: rgba(0,212,170,0.12);
  color: var(--teal); padding: 5px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label.red { background: rgba(246,1,1,0.1); color: var(--red); }
.section-header h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--navy); margin-bottom: 16px; }
.section-header h2 span { color: var(--teal); }
.section-header h2 .red { color: var(--red); }
.section-header p { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-dark .section-header h2 { color: white; }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: white; border-radius: var(--radius); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow);
  border-bottom: 4px solid var(--teal); transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.stat-card .icon { font-size: 36px; color: var(--teal); margin-bottom: 12px; }
.stat-card .number { font-size: 42px; font-weight: 900; color: var(--navy); font-family: 'Raleway', sans-serif; }
.stat-card .number .plus { color: var(--red); }
.stat-card .label { color: var(--gray); font-size: 14px; font-weight: 500; margin-top: 4px; }

/* ===== COURSE CARDS ===== */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.course-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--gray-light); position: relative;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }
.course-card-top {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, #F8F9FF, #fff);
  position: relative;
}
.course-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white; margin-bottom: 16px;
}
.course-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: white;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.course-badge.teal { background: var(--teal); color: var(--navy); }
.course-badge.gold { background: #FDCB6E; color: var(--navy); }
.course-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.course-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.course-card-bottom {
  padding: 20px 28px 24px; margin-top: auto;
  border-top: 1px solid var(--gray-light);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.course-meta { display: flex; flex-direction: column; gap: 4px; }
.course-duration { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.course-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: #F59E0B; }
.course-fee { font-size: 20px; font-weight: 800; color: var(--navy); font-family: 'Raleway', sans-serif; }
.btn-enroll {
  background: var(--navy); color: white;
  padding: 9px 20px; border-radius: 30px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-enroll:hover { background: var(--red); color: white; }

/* ===== OFFER BANNER ===== */
.offer-banner {
  background: linear-gradient(135deg, #F60101, #c40000);
  border-radius: 24px; padding: 48px 56px;
  display: flex; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.offer-banner::before {
  content: '100%'; position: absolute; right: -20px; top: -30px;
  font-size: 180px; font-weight: 900; color: rgba(255,255,255,0.06);
  font-family: 'Raleway', sans-serif; line-height: 1;
}
.offer-banner-left { flex: 1; }
.offer-banner h2 { font-size: 36px; color: white; margin-bottom: 12px; }
.offer-banner p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 24px; }
.offer-points { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.offer-point { color: white; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.offer-point i { color: #FFD700; }
.offer-banner-right { text-align: center; }
.offer-big { font-size: 80px; font-weight: 900; color: white; font-family: 'Raleway', sans-serif; line-height: 1; }
.offer-big-sub { color: rgba(255,255,255,0.8); font-size: 18px; font-weight: 600; }

/* ===== FEATURES / WHY US ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: var(--transition); text-align: center;
  border-bottom: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-bottom-color: var(--teal); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; background: linear-gradient(135deg, var(--navy), #0a1340);
  color: var(--teal);
}
.feature-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); position: relative;
  border-left: 4px solid var(--teal);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 10px; right: 20px;
  font-size: 80px; color: var(--teal); opacity: 0.15;
  font-family: 'Raleway', sans-serif; line-height: 1;
}
.testimonial-text { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px; font-family: 'Raleway', sans-serif;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial-course { font-size: 12px; color: var(--gray); }
.stars { color: #F59E0B; font-size: 13px; margin-bottom: 4px; }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--light); display: flex; align-items: center; justify-content: center; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img .blog-placeholder { font-size: 48px; color: var(--teal); }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card h3:hover { color: var(--red); }
.blog-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray); }
.blog-meta .read-more { color: var(--red); font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow); transition: var(--transition); text-align: center;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--red));
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 44px; color: var(--navy); margin-bottom: 20px; }
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy), #0a1340);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,212,170,0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(246,1,1,0.06) 0%, transparent 60%);
}
.cta-section h2 { font-size: clamp(28px, 3.5vw, 48px); color: white; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-white {
  background: white; color: var(--navy);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-white:hover { background: var(--teal); color: var(--navy); transform: translateY(-3px); }
.btn-cta-outline {
  background: transparent; color: white;
  padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cta-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 1; background: var(--light); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0; background: rgba(2,6,38,0.6);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; padding: 20px 24px; border-radius: 14px;
  box-shadow: var(--shadow);
}
.contact-item-icon {
  width: 48px; height: 48px; background: linear-gradient(135deg, var(--teal), #00b894);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 18px; flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--gray); }
.contact-item a:hover { color: var(--red); }

.contact-form-card { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm); font-size: 15px; font-family: 'DM Sans', sans-serif;
  transition: var(--transition); background: var(--light);
}
.form-control:focus { outline: none; border-color: var(--teal); background: white; box-shadow: 0 0 0 3px rgba(0,212,170,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.btn-submit {
  background: linear-gradient(135deg, var(--red), #c40000);
  color: white; padding: 14px 36px; border-radius: 50px;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(246,1,1,0.3); transition: var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(246,1,1,0.4); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #0a1340);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,212,170,0.08) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); color: white; margin-bottom: 12px; position: relative; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 20px; position: relative; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); position: relative; }
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== COURSE PAGE ===== */
.course-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.course-detail-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,212,170,0.12); color: var(--teal); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.course-highlights { display: flex; gap: 20px; flex-wrap: wrap; margin: 24px 0; }
.highlight-chip { display: flex; align-items: center; gap: 6px; background: var(--light); padding: 8px 14px; border-radius: 30px; font-size: 13px; font-weight: 600; color: var(--navy); }
.highlight-chip i { color: var(--teal); }
.course-info-card { background: white; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-hover); border: 1px solid var(--gray-light); }
.course-info-card .price { font-size: 42px; font-weight: 900; color: var(--navy); font-family: 'Raleway', sans-serif; margin-bottom: 4px; }
.course-info-card .price-note { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.info-list li { display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--gray-light); font-size: 14px; }
.info-list li:last-child { border-bottom: none; }
.info-list li strong { color: var(--navy); }
.info-list li span { color: var(--gray); }

.curriculum-list { display: flex; flex-direction: column; gap: 12px; }
.curriculum-item {
  background: white; border-radius: 10px; padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04); display: flex; align-items: center; gap: 14px;
  border-left: 4px solid var(--teal);
}
.curriculum-item .num { width: 28px; height: 28px; background: var(--teal); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.curriculum-item strong { font-size: 15px; color: var(--navy); }
.curriculum-item span { font-size: 13px; color: var(--gray); margin-left: auto; white-space: nowrap; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 24px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: 24px; }
.about-exp-badge { position: absolute; bottom: 24px; left: 24px; background: var(--teal); color: var(--navy); padding: 16px 20px; border-radius: 14px; text-align: center; font-family: 'Raleway', sans-serif; }
.about-exp-badge .years { font-size: 36px; font-weight: 900; display: block; }
.about-exp-badge .text { font-size: 12px; font-weight: 600; }
.about-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.about-points { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.about-point { display: flex; gap: 12px; align-items: flex-start; }
.about-point i { color: var(--teal); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.about-point span { font-size: 15px; color: var(--navy); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; background: white; border-radius: var(--radius); padding: 28px 20px; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--navy)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: white; font-family: 'Raleway', sans-serif; font-weight: 700; }
.team-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--gray); }

/* ===== ADMISSION ===== */
.admission-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.admission-benefits { display: flex; flex-direction: column; gap: 20px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--teal), #00b894); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--navy); flex-shrink: 0; }
.benefit-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-item p { font-size: 14px; color: var(--gray); }

/* ===== AI CHATBOT ===== */
.chatbot-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00b894);
  color: var(--navy); border: none; cursor: pointer; font-size: 24px;
  box-shadow: 0 8px 30px rgba(0,212,170,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0,212,170,0.6); }
.chatbot-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: white;
  font-size: 10px; font-weight: 700; line-height: 1;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white; animation: pulse 1.5s infinite;
}
.chatbot-bubble { position: fixed; bottom: 100px; right: 28px; z-index: 9999; width: 360px; }
.chatbot-card {
  background: white; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(2,6,38,0.2); overflow: hidden;
  display: none; animation: slideUp 0.3s ease;
}
.chatbot-card.open { display: block; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.chatbot-header {
  background: linear-gradient(135deg, var(--navy), #0a1340); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar { width: 40px; height: 40px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--navy); }
.chatbot-header h4 { color: white; font-size: 15px; margin-bottom: 2px; }
.chatbot-header p { color: rgba(255,255,255,0.6); font-size: 12px; }
.chatbot-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-right: auto; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
.chatbot-close { background: none; border: none; color: white; font-size: 18px; cursor: pointer; opacity: 0.7; margin-left: 8px; }
.chatbot-messages { height: 280px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; background: #F8F9FF; }
.msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.6; }
.msg-bot { background: white; color: #333; border-radius: 14px 14px 14px 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); align-self: flex-start; }
.msg-user { background: var(--navy); color: white; border-radius: 14px 14px 4px 14px; align-self: flex-end; }
.chatbot-input { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--gray-light); }
.chatbot-input input { flex: 1; border: 1.5px solid var(--gray-light); border-radius: 20px; padding: 9px 14px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; }
.chatbot-input input:focus { border-color: var(--teal); }
.chatbot-send { background: var(--teal); color: var(--navy); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.chatbot-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 12px; }
.quick-btn { background: var(--light); border: 1px solid var(--gray-light); color: var(--navy); padding: 5px 12px; border-radius: 20px; font-size: 11px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: var(--transition); }
.quick-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin: 16px 0 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo img { height: 40px; filter: brightness(0) invert(1); }
.footer h4 { color: white; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 12px; padding-left: 12px; border-left: 3px solid var(--teal); }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--teal); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links li a:hover { color: var(--teal); padding-left: 4px; }
.footer-links li a i { font-size: 11px; color: var(--teal); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; }
.footer-contact-item i { color: var(--teal); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.footer-social a:hover { background: var(--teal); color: var(--navy); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: var(--teal); }

/* ===== BADGES / ALERTS ===== */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: rgba(0,212,170,0.1); color: #00a884; border: 1px solid rgba(0,212,170,0.3); }
.alert-error { background: rgba(246,1,1,0.08); color: var(--red); border: 1px solid rgba(246,1,1,0.2); }

/* ===== SPEED DIAL FAB ===== */
.speed-dial { position: fixed; bottom: 28px; left: 28px; z-index: 9998; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.speed-dial-trigger {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00b894);
  color: var(--navy); font-size: 22px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,212,170,0.45); transition: var(--transition);
}
.speed-dial-trigger:hover { transform: scale(1.08); }
.speed-dial-trigger i { transition: transform 0.3s ease; }
.speed-dial-items { display: flex; flex-direction: column; gap: 10px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 0.25s ease, transform 0.25s ease; }
.speed-dial-items.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.speed-dial-item {
  display: flex; align-items: center; gap: 8px;
  height: 46px; border-radius: 30px; padding: 0 16px 0 12px;
  font-size: 18px; font-weight: 600; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: var(--transition);
  white-space: nowrap; text-decoration: none; font-family: 'DM Sans', sans-serif;
}
.speed-dial-item:hover { transform: translateX(4px); }
.sd-label { font-size: 13px; font-weight: 600; }
.sd-wa { background: #25D366; color: white; }
.sd-call { background: var(--navy); color: white; }
.sd-chat { background: linear-gradient(135deg, var(--teal), #00b894); color: var(--navy); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 9998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: white; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: var(--transition);
  opacity: 0; pointer-events: none; border: none; cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red); transform: translateY(-3px); }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border: 1.5px solid var(--gray-light);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open { border-color: var(--teal); box-shadow: 0 4px 20px rgba(0,212,170,0.12); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; gap: 16px;
}
.faq-question span { font-weight: 600; color: var(--navy); font-size: 16px; line-height: 1.5; }
.faq-question i { color: var(--teal); font-size: 14px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 22px 18px; color: var(--gray); line-height: 1.8; font-size: 15px; }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8999;
  background: var(--navy); padding: 10px 12px;
  gap: 8px; align-items: center;
  box-shadow: 0 -4px 20px rgba(2,6,38,0.25);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta-call {
  background: rgba(255,255,255,0.1); color: white; padding: 10px 14px;
  border-radius: 8px; font-weight: 600; font-size: 13px;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  transition: background 0.2s;
}
.mobile-cta-call:hover { background: rgba(255,255,255,0.2); }
.mobile-cta-enroll {
  flex: 1; background: linear-gradient(135deg, var(--red), #c40000);
  color: white; padding: 11px 16px; border-radius: 8px;
  font-weight: 700; font-size: 13px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: opacity 0.2s;
}
.mobile-cta-enroll:hover { opacity: 0.9; }
.mobile-cta-wa {
  background: #25D366; color: white; padding: 10px 14px;
  border-radius: 8px; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mobile-cta-wa:hover { background: #1eac55; }
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body.has-mobile-cta { padding-bottom: 64px; }
}

/* ===== CHATBOT TYPING INDICATOR ===== */
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 12px 16px !important; }
.typing-indicator span {
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
  animation: typingBounce 1.2s infinite;
  display: inline-block;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ===== CHATBOT ENHANCEMENTS ===== */
.chatbot-card { border-radius: 20px; overflow: hidden; }
.chatbot-card.open { animation: chatSlideIn 0.3s ease; }
@keyframes chatSlideIn { from { opacity:0; transform: translateY(20px) scale(0.95); } to { opacity:1; transform: none; } }

/* ===== COURSE COMPARISON MODAL TABLE ===== */
#compareTable td { padding: 11px 16px; border-bottom: 1px solid var(--gray-light); }

/* ===== ANIMATIONS ===== */
[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-right { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .course-hero { grid-template-columns: 1fr; }
  .admission-grid { grid-template-columns: 1fr; }
  .offer-banner { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: var(--shadow); flex-direction: column; padding: 20px; gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu li a { padding: 12px 0; border-bottom: 1px solid var(--gray-light); border-radius: 0; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 20px; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-menu li.open .dropdown-menu { display: block; }
  .hamburger { display: block; }
  /* Hide text on hero secondary button; keep icon only */
  .btn-hero-secondary .hero-secondary-text { display: none; }
  /* Course filter pills: horizontal scroll with fade indicator */
  .cf-pills-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; position: relative; }
  .cf-pills-wrap::-webkit-scrollbar { display: none; }
  .cf-pills-wrap::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40px; background: linear-gradient(to right, transparent, white); pointer-events: none; }
  .courses-grid, .features-grid, .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .chatbot-bubble { right: 16px; left: 16px; width: auto; }
  .hero-stat .number { font-size: 22px; }
  .offer-big { font-size: 60px; }
  .section { padding: 56px 0; }
}

/* ===== HERO INTERNSHIP FORM ===== */
.hero-intern-form {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
}
.intern-form-header {
  background: linear-gradient(135deg, #020626 0%, #0a1340 100%);
  padding: 18px 24px 16px;
  border-bottom: 3px solid var(--teal);
}
.intern-form-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,212,170,0.18); color: var(--teal);
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  border: 1px solid rgba(0,212,170,0.3); margin-bottom: 8px;
}
.intern-form-header h3 {
  color: #fff; font-size: 20px; font-weight: 800;
  margin: 0 0 4px; font-family: 'Raleway', sans-serif;
}
.intern-form-header p {
  color: rgba(255,255,255,0.55); font-size: 12px; margin: 0;
}
.intern-form-body { padding: 18px 20px 16px; }
.intern-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px;
}
.intern-form-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.intern-form-field:last-of-type { margin-bottom: 12px; }
.intern-form-field label {
  font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.4px;
}
.intern-form-field input,
.intern-form-field select {
  border: 1.5px solid #e4e9f0; border-radius: 8px;
  padding: 8px 12px; font-size: 13px; color: var(--navy);
  background: #f7f9fc; width: 100%; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.intern-form-field input:focus,
.intern-form-field select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.13); background: #fff;
}
.intern-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), #00b894);
  color: var(--navy); border: none; border-radius: 10px;
  padding: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.25s; box-shadow: 0 4px 15px rgba(0,212,170,0.35);
  font-family: 'Raleway', sans-serif;
}
.intern-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,212,170,0.55); }
.intern-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.intern-file-label {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px dashed #c8d0e0; border-radius: 8px;
  padding: 10px 14px; cursor: pointer; background: #f7f9fc;
  color: #667; font-size: 13px; transition: all 0.2s;
}
.intern-file-label:hover { border-color: var(--teal); background: #f0fdf9; color: var(--navy); }
.intern-file-label i { color: var(--teal); font-size: 16px; flex-shrink: 0; }
.intern-file-label.has-file { border-color: var(--teal); background: #f0fdf9; color: var(--navy); border-style: solid; }
