/* ═══════════════════════════════════════════════════════════════
   Ilan AI Tech — main.css  |  White & Blue Professional Theme
═══════════════════════════════════════════════════════════════ */

:root {
  --primary:  #147cb5;
  --primary2: #2563eb;
  --accent:   #0ea5e9;
  --accent2:  #38bdf8;
  --white:    #ffffff;
  --bg:       #f4f8ff;
  --bg2:      #eaf1ff;
  --card:     #ffffff;
  --text:     #0f172a;
  --muted:    #475569;
  --light:    #94a3b8;
  --border:   #dbe8ff;
  --radius:   14px;
  --shadow-sm: 0 2px 12px rgba(26,86,219,0.08);
  --shadow:    0 8px 32px rgba(26,86,219,0.13);
  --shadow-lg: 0 20px 60px rgba(26,86,219,0.18);
  --logo-start: #147cb5;
  --logo-end: #E77E25;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.flag-strip { height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); }
.f1,.f2,.f3 { display: none; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-sm);
  animation: slideDown 0.5s ease both;
}
@keyframes slideDown { from { transform: translateY(-70px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; gap: 2.5rem; height: 80px;
}

.logo-wrap { display: flex; align-items: center; gap: 0; flex-shrink: 0; 
     margin-top: 6px;}
.logo-emblem {
  width: 10em; height: 44px
  display: flex; align-items: center; justify-content: center;
}
.logo-emblem-img{
    max-width: 100%;
    height: 6em;
    display: block;
}
a.logo, .logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; line-height: 1.1; display: block; }
.logo .ilan { color: var(--logo-start); }
.logo .ai   { color: var(--logo-end); }
.logo .tech { color: var(--logo-start); }
.logo-sub { font-size: 0.6rem; color: var(--logo-start); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

.primary-nav { flex: 1; }
.primary-nav ul { display: flex; gap: 0.5rem; list-style: none; }
.primary-nav a {
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
  padding: 0.45rem 0.9rem; border-radius: 8px; transition: all 0.25s; display: block;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a { color: var(--primary); background: var(--bg2); }

.btn-nav {
  background: var(--primary); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; border: none;
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
  font-family: 'DM Sans', sans-serif; box-shadow: 0 2px 10px rgba(26,86,219,0.3);
}
.btn-nav:hover { background: var(--primary2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.4); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ══════════════════════════════════════════
   PARTICLES
══════════════════════════════════════════ */
#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; display: block; }

/* ══════════════════════════════════════════
   SITE CONTENT
══════════════════════════════════════════ */
.site-content { position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════ */
.hero-slider {
  position: relative; width: 100%;
  height: 420px; min-height: 340px;
  background: var(--primary);
  z-index: 2; scroll-margin-top: 72px;
}
.hs-track { width: 100%; height: 100%; position: relative; overflow: hidden; }
.hs-slide {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background-image: var(--slide-img);
  background-size: cover; background-position: center;
  background-color: var(--primary);
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.9s ease, transform 0.9s ease;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 0;
}
.hs-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; z-index: 2; }

.hs-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.05);
  z-index: 1;
}

.hs-content {
  position: relative; z-index: 5;
  text-align: center; padding: 5rem 2rem 5rem;
  width: 100%; max-width: 860px; margin: 0 auto;
}
.hs-slide.active .hs-content { animation: hsContentIn 0.8s 0.15s both; }
@keyframes hsContentIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hs-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px; padding: 0.4rem 1.2rem;
  font-size: 0.75rem; color: #fff;
  margin-bottom: 1.4rem; letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hs-badge .badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hs-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1; letter-spacing: -1.5px;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,50,0.3); margin-bottom: 1rem;
}
.hs-tag {
  font-size: clamp(2.4rem, 6vw, 4.8rem); letter-spacing: -2px;
  display: inline-block; color: #fff;
  text-shadow: 0 0 40px rgba(255,255,255,0.6), 0 2px 20px rgba(0,0,80,0.4);
}
.hs-sub-cities { font-size: 0.9rem; color: rgba(255,255,255,0.88); margin-bottom: 0.8rem; text-shadow: 0 1px 8px rgba(0,0,50,0.3); }
.hs-sub-cities span { color: #fff; font-weight: 700; }
.hs-desc { font-size: 1.05rem; color: rgba(255,255,255,0.90); line-height: 1.75; max-width: 580px; margin: 0 auto 2rem; text-shadow: 0 1px 10px rgba(0,0,50,0.3); }
.hs-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Arrows */
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.hs-arrow:hover { background: rgba(255,255,255,0.3); border-color: #fff; transform: translateY(-50%) scale(1.08); }
.hs-prev { left: 1.5rem; }
.hs-next { right: 1.5rem; }

/* Dots */
.hs-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 8px; align-items: center; }
.hs-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 2px solid rgba(255,255,255,0.7); cursor: pointer; transition: all 0.35s; flex-shrink: 0; padding: 0; }
.hs-dot.active { width: 28px; border-radius: 50px; background: #fff; border-color: #fff; }

/* Progress bar */
.hs-progress { position: absolute; top: 0; left: 0; height: 4px; z-index: 30; background: rgba(255,255,255,0.8); width: 0%; }

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
}
.stat {
  text-align: center; padding: 1.8rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  flex: 1; min-width: 160px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 5px; letter-spacing: 0.5px; }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2.2rem;
  text-align: center; margin-bottom: 0.6rem; letter-spacing: -1px; color: var(--text);
}
.section-title span { color: var(--primary); }
.section-sub { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 3rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── Alternating section backgrounds ── */
.section-courses     { background: rgba(244,248,255,0.78); }
.section-features    { background: rgba(234,241,255,0.82); }
.section-instructors { background: rgba(244,248,255,0.78); }
.section-branches    { background: rgba(234,241,255,0.82); }
.section-faq         { background: rgba(244,248,255,0.78); }
.section-contact     { background: rgba(234,241,255,0.82); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none;
  padding: 0.85rem 2.2rem; border-radius: 8px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26,86,219,0.35);
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,86,219,0.45); }

.btn-ghost {
  display: inline-block;
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
  padding: 0.82rem 2.2rem; border-radius: 8px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

/* ══════════════════════════════════════════
   COURSES — NareshIT Style
══════════════════════════════════════════ */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }

.course-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all 0.35s; cursor: pointer;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-body { padding: 1.2rem 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.course-actions { margin-top: auto; }

/* Colourful top thumbnail */
.course-thumb {
  width: 100%; height: 102px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  position: relative; overflow: hidden;
  background-color: #f1f5f9;
}
.course-thumb img.course-thumb-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.course-thumb-icon { font-size: 2.6rem; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.25)); }
.course-thumb-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  color: #fff; text-align: center;
  padding: 0 1.2rem; line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.course-thumb-level { display: none; }

/* Card body */
.course-body h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--text);
  margin-bottom: 0.5rem; line-height: 1.35;
}
.course-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.8rem; }
.course-stars span { color: var(--muted); font-size: 0.8rem; font-weight: 600; margin-left: 4px; }

.course-info { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1.2rem; }
.course-info div { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.course-info strong { color: var(--text); font-weight: 600; }

.course-actions { display: flex; gap: 0.6rem; margin-top: auto; }
.btn-enroll {
  flex: 1; text-align: center;
  background: var(--primary); color: #fff;
  padding: 0.6rem 1rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.5px; transition: all 0.25s;
  border: 2px solid var(--primary);
}
.btn-enroll:hover { background: var(--primary2); border-color: var(--primary2); transform: translateY(-1px); }
.btn-details {
  flex: 1; text-align: center;
  background: transparent; color: var(--primary);
  padding: 0.6rem 1rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600;
  border: 2px solid var(--border); transition: all 0.25s;
}
.btn-details:hover { border-color: var(--primary); background: var(--bg2); }

/* Keep old classes working */
.course-icon { display: none; }
.course-meta { display: none; }
.stretched-link::after { position: absolute; inset: 0; content: ''; z-index: 1; }

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2rem; }
.feat-item {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all 0.35s;
}
.feat-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary2); }
.feat-icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  background: linear-gradient(135deg, var(--bg2), #dbeafe);
  border: 2px solid var(--border); transition: all 0.35s;
}
.feat-item:hover .feat-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); transform: scale(1.1); border-color: var(--primary); }
.feat-item h4 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.feat-item p  { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════
   INSTRUCTORS
══════════════════════════════════════════ */
.instructors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.instructor-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  transition: all 0.35s; box-shadow: var(--shadow-sm);
}
.instructor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary2); }
.avatar {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: #fff;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3); overflow: hidden;
}
.avatar.avatar-img img { width: 100%; height: 100%; object-fit: cover; }
.instructor-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; color: var(--text); }
.instructor-card p  { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.7rem; }
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }

/* ══════════════════════════════════════════
   BRANCHES
══════════════════════════════════════════ */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.branch-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-left: 4px solid var(--accent, var(--primary));
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  transition: all 0.35s; box-shadow: var(--shadow-sm);
}
.branch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--accent, var(--primary)); }
.branch-pin { font-size: 1.4rem; margin-bottom: 0.7rem; }
.branch-city { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text); }
.branch-address { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.branch-phones { display: flex; flex-direction: column; gap: 4px; }
.branch-phone { font-size: 0.85rem; font-weight: 600; color: var(--primary); transition: opacity 0.2s; }
.branch-phone:hover { opacity: 0.75; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--text); transition: color 0.25s;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--primary); flex-shrink: 0; line-height: 1; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0; }
.faq-answer:not([hidden]) { max-height: 300px; padding-bottom: 1.2rem; }
.faq-answer[hidden] { display: block !important; max-height: 0; padding-bottom: 0; }
.faq-answer p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; padding-right: 2rem; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-form-wrap { max-width: 720px; margin: 0 auto; }
.contact-form {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.85rem; color: var(--text); font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem; color: var(--text);
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif; transition: border-color 0.25s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(26,86,219,0.08); }
.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { resize: vertical; }
.form-submit { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-response { font-size: 0.9rem; font-weight: 600; }
.form-response.success { color: #059669; }
.form-response.error   { color: #dc2626; }
.field-error { display: none; font-size: 0.78rem; color: #dc2626; margin-top: 3px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: var(--primary); color: #fff; }
.footer-widgets-area { padding: 4rem 2rem; }
.footer-widgets-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }

.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.6rem; margin-bottom: 0.7rem; }
.footer-logo .ilan { color: #fff; }
.footer-logo .ai   { color: var(--logo-end); }
.footer-logo .tech { color: #fff; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff; transition: all 0.25s;
}
.footer-social a:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

.footer-widget-title { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.72); transition: color 0.25s; }
.footer-links a:hover { color: #fff; }
.footer-contact li { font-size: 0.87rem; color: rgba(255,255,255,0.72); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1.4rem 2rem; text-align: center;
}
.footer-bottom-inner { max-width: 1100px; margin: 0 auto; }
.footer-flag-row { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; }
.footer-bottom a { color: rgba(255,255,255,0.7); transition: color 0.25s; }
.footer-bottom a:hover { color: #fff; }

/* ══════════════════════════════════════════
   SCROLL REVEAL & ANIMATIONS
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.5rem; }
.price-card {
  background: var(--card); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2.5rem 2rem;
  transition: all 0.35s; position: relative;
  box-shadow: var(--shadow-sm);
}
.price-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.04); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 0.73rem; font-weight: 700; padding: 4px 16px; border-radius: 50px;
}
.plan-name { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--text); }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-period { font-size: 0.8rem; color: var(--muted); margin: 0.3rem 0 1.8rem; }
.plan-features { list-style: none; margin-bottom: 1.8rem; }
.plan-features li { font-size: 0.87rem; color: var(--muted); padding: 0.45rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.plan-features li::before { content: '✓'; color: var(--primary); font-weight: 700; }
.btn-plan { width: 100%; padding: 0.82rem; border-radius: 8px; font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; display: block; text-align: center; }
.btn-plan-ghost { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn-plan-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-plan-filled { background: linear-gradient(135deg, var(--primary), var(--accent)); border: none; color: #fff; }
.btn-plan-filled:hover { box-shadow: 0 6px 24px rgba(26,86,219,0.4); transform: translateY(-2px); }
.pricing-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 1.8rem; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .header-inner { padding: 0 1.5rem; gap: 1rem; }
  .stats-strip { gap: 0; }
  .stat { padding: 1.5rem 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .section-title { font-size: 1.9rem; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .features-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .instructors-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.featured { transform: scale(1); }
  .footer-widgets-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 700px)
══════════════════════════════════════════ */
@media (max-width: 700px) {
  .header-inner { padding: 0 1rem; height: 60px; }
  .primary-nav, .header-cta { display: none; }
  .primary-nav.open {
    display: block; position: absolute; top: 60px; left: 0; right: 0;
    background: #fff; padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow); z-index: 300;
  }
  .primary-nav.open ul { flex-direction: column; gap: 0; }
  .primary-nav.open ul li { border-bottom: 1px solid var(--border); }
  .primary-nav.open ul li a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  .hamburger { display: flex; margin-left: auto; }
  .logo { font-size: 1.15rem; }
  .logo-emblem { width: 36px; height: 36px; font-size: 0.9rem; }
  .logo-sub { display: none; }

  .hero-slider { height: 320px; min-height: 280px; }
  .hs-content { padding: 3rem 1.2rem 5rem; }
  .hs-title { font-size: 1.7rem; letter-spacing: -0.5px; }
  .hs-tag { font-size: 2rem; }
  .hs-desc { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .hs-badge { font-size: 0.65rem; padding: 0.3rem 0.8rem; margin-bottom: 1rem; }
  .hs-ctas { flex-direction: column; align-items: center; }
  .hs-ctas .btn-primary { width: 100%; max-width: 280px; text-align: center; }
  .hs-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .hs-prev { left: 0.5rem; }
  .hs-next { right: 0.5rem; }

  .stats-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .stat { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); padding: 1.2rem 1rem; }
  .stat-num { font-size: 1.8rem; }

  .section { padding: 3rem 1rem; }
  .section-title { font-size: 1.6rem; }
  .courses-grid { grid-template-columns: 1fr; gap: 1rem; }
  .features-inner { grid-template-columns: 1fr; gap: 1rem; }
  .instructors-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .branches-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-form { padding: 1.5rem 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .form-submit .btn-primary { width: 100%; text-align: center; }
  .footer-widgets-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 400px) {
  .hs-title { font-size: 1.45rem; }
  .hs-tag { font-size: 1.7rem; }
  .instructors-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════
   SLIDER OVERLAY CARDS
══════════════════════════════════════════ */
.slider-cards-overlay {
  position: absolute;
  bottom: -300px;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: 0 2rem;
  z-index: 20;
  align-items: stretch;
}

.slider-course-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,86,219,0.18);
  transition: all 0.35s;
  border: 1.5px solid var(--border);
  display: flex; flex-direction: column;
}
.slider-course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,86,219,0.25); }

.scc-thumb {
  width: 100%; height: 140px;
  background-color: #f1f5f9;
  position: relative;
  display: block;
}
.scc-thumb img.scc-thumb-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.scc-thumb-icon { display: none; }
.scc-thumb-title { display: none; }
.scc-level { display: none; }

.scc-body { padding: 0.9rem 1rem 1rem; display: flex; flex-direction: column; flex: 1; }
.scc-body h4 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.88rem; color: var(--text);
  margin-bottom: 0.3rem; line-height: 1.3;
}
.scc-stars { color: #f59e0b; font-size: 0.78rem; margin-bottom: 0.3rem; }
.scc-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.7rem; }
.scc-enroll {
  display: block; text-align: center; margin-top: auto;
  background: var(--primary); color: #fff;
  padding: 0.45rem; border-radius: 6px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.5px; transition: all 0.25s;
}
.scc-enroll:hover { background: var(--primary2); }

/* Push next section down to make room for overlay cards */
.section-courses { padding-top: 360px; }

/* Mobile — hide overlay cards, show normal grid */
@media (max-width: 900px) {
  .slider-cards-overlay { display: none; }
  .section-courses { padding-top: 3rem; }
}