
:root {
  --red: #a82512;
  --red-dark: #a01117;
  --red-light: #fff0f0;
  --new-red: #ffafaf;
  --red-mid: #fce4e4;
  --gold: #fcb72d;
  --gold-light: #fff8ec;
  --new-gold: #ffdb9e;
  --white: #ffffff;
  --bg: #f7f5f2;
  --bg2: #ffffff;
  --bg3: #f0ede8;
  --surface: #ffffff;
  --border: #e8e3de;
  --border-strong: #d4cfc9;
  --text: #1a1614;
  --text2: #4a4440;
  --muted: #9a928c;
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(26,22,20,0.06);
  --shadow: 0 8px 30px rgba(26,22,20,0.1);
  --shadow-lg: 0 20px 60px rgba(26,22,20,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 10px; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid #fbc9ca;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label::before { content:''; width:6px;height:6px;border-radius:50%;background:var(--red); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title span { color: var(--red); }
.section-sub { color: var(--text2); font-size: 1rem; line-height: 1.75; max-width: 580px; }

/* ===== DECORATIVE SHAPES ===== */
.deco-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: #fff;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.nav-logo img { height: 46px; }
.nav-logo-fallback {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
}
.nav-logo-fallback span { color: var(--red); }
.nav-info {
  display: none;
  flex-direction: column;
  align-items: flex-start;
}
@media(min-width:768px){ .nav-info { display: flex; } }
.nav-info-name { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.3px; }
.nav-info-sub { font-size: 11px; color: var(--muted); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
}
@media(min-width:640px){ .nav-phone { display: flex; } }
.nav-phone i { color: var(--red); font-size: 12px; }
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(200,23,30,0.3);
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,23,30,0.4); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  /* Background image with colored overlay */
  background:
    linear-gradient(135deg, rgba(200,23,30,0.8) 0%, rgba(160,17,23,0.5) 50%, rgba(232,144,10,0.3) 100%),
    url('../img/banner-new.jpg') center/cover no-repeat fixed,
    var(--bg);
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.04) 40px,
    rgba(255,255,255,0.04) 41px
  );
  pointer-events: none;
  z-index: 1;
}

/* Subtle texture overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 70%, rgba(232,144,10,0.12) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 2; /* Ensure content sits above overlays */
}
@media(min-width:960px){
  .hero-inner { grid-template-columns: 1fr 400px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-badge-pill {
  background: var(--gold-light);
  border: 1px solid #f5d9a0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 20px;
}
.hero-h1 .accent { color: var(--gold); font-style: italic; }
.hero-h1 .underline-wrap {
  position: relative;
  display: inline-block;
}
.hero-h1 .underline-wrap::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  transform-origin: left;
  animation: underlineGrow 1s 0.5s ease forwards;
  transform: scaleX(0);
}
@keyframes underlineGrow {
  to { transform: scaleX(1); }
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--bg);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-pill {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-pill i { color: var(--red); font-size: 11px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 4px;
}
@media(max-width:480px){ .hero-stats { grid-template-columns: repeat(2,1fr); } }
.hero-stat {
  background: var(--white);
  padding: 16px 14px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.hero-stat-num sup { font-size: 1rem; color: var(--red); }
.hero-stat-label 
{ font-size: 12px; color: var(--muted); letter-spacing: 0.5px; 
  margin-top: 3px; text-transform: uppercase; font-weight: 900; }

/* ===== FORM CARD ===== */
.form-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.form-card-header {
  background: linear-gradient(135deg, var(--red) 0%, #a01017 100%);
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
}
.form-card-header::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.form-card-header::before {
  content: '';
  position: absolute;
  right: 30px; bottom: -30px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.form-card-header h4 { color: #fff; font-size: 1.05rem; font-weight: 800; letter-spacing: 0.3px; position: relative; z-index: 1; }
.form-card-header p { color: rgba(255,255,255,0.75); font-size: 12px; margin-top: 3px; position: relative; z-index: 1; }
.form-body { padding: 22px 24px; }
.form-group { margin-bottom: 12px; }
.input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.input-wrap:focus-within {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,23,30,0.08);
}
.input-wrap .icon {
  padding: 0 13px;
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
}
.input-wrap input,
.input-wrap select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 11px 13px 11px 0;
}
.input-wrap select option { background: var(--white); color: var(--text); }
.input-wrap input::placeholder { color: var(--muted); }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: 4px;
}
.checkbox-row input[type=checkbox] { margin-top: 2px; accent-color: var(--red); }
.checkbox-row label { font-size: 11px; color: var(--muted); line-height: 1.5; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200,23,30,0.35);
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,23,30,0.4); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--red);
  padding: 28px 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.15);
}
@media(min-width:640px){ .stats-bar-inner { grid-template-columns: repeat(4,1fr); } }
.stat-chip {
  background: var(--red);
  padding: 20px 24px;
  text-align: center;
}
.stat-chip-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-chip-num sup { font-size: 1rem; opacity: 0.8; }
.stat-chip-label { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; font-weight: 500; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: var(--transition);
}
.why-item:hover {
  border-color: #fbc9ca;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-check {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--red-light);
  border: 1px solid #fbc9ca;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 11px;
  margin-top: 1px;
}
.why-text { font-size: 13px; color: var(--text2); line-height: 1.55; font-weight: 500; }

/* ===== COURSES ===== */
.courses-section { background: var(--bg3); }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0 36px;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text2);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(200,23,30,0.25); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 14px;

}
.course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.course-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.course-card:hover {
  border-color: #fbc9ca;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.course-card:hover::after { transform: scaleX(1); }
.course-icon {
  width: 52px; height: 52px;
  background: var(--red-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 14px;
  font-size: 20px;
  color: var(--red);
  transition: var(--transition);
}
.course-card:hover .course-icon { background: var(--red); color: #fff; transform: scale(1.08); }
.course-card h6 { font-size: 12.5px; color: var(--text); line-height: 1.55; font-weight: 600; font-family: var(--font-body); }
.course-cat-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid #fbc9ca;
  font-family: var(--font-body);
}

/* ===== CERTIFICATIONS ===== */
.cert-section { background: var(--white); }
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}
.cert-item img{
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  /* padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text2);
  letter-spacing: 0.5px; */
  transition: var(--transition);
  min-width: 120px;
  text-align: center;
}
.cert-item img:hover { border-color: #fbc9ca; color: var(--red); background: var(--white); box-shadow: var(--shadow); transform: translateY(-3px); }

/* ===== LIFE AT SRGI ===== */
.life-section { background: var(--bg3); }

.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.life-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.life-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg); 
  border-color: #fbc9ca; 
}

.life-card-top {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.life-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.life-card:hover .life-card-img {
  transform: scale(1.1);
}

/* Optional: Add subtle overlay on hover */
.life-card-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(200, 23, 30, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.life-card:hover .life-card-top::after {
  opacity: 1;
}

.life-card-body { 
  padding: 18px 20px 22px; 
}

.life-card-body h5 { 
  font-size: 15px; 
  margin-bottom: 6px; 
  color: var(--text); 
  font-weight: 800; 
  text-align: center;
}

.life-card-body p { 
  font-size: 12.5px; 
  color: var(--text2); 
  line-height: 1.65; 
}
/* ===== PERSONALITIES ===== */
.personalities-section { background: var(--bg2); }

.person-card {
  background: transparent;
  border: none;
  padding: 0;
  transition: var(--transition);
}

.person-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.person-card:hover .person-image-wrap {
  border-color: #fbc9ca;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.person-card:hover .person-img {
  transform: scale(1.08);
}

/* Gradient Overlay */
.person-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(200, 23, 30, 0.95) 0%,
    rgba(160, 17, 23, 0.85) 40%,
    rgba(200, 23, 30, 0.4) 70%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 18px 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.person-card:hover .person-overlay {
  opacity: 1;
}

.person-overlay-content {
  text-align: center;
  width: 100%;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.person-card:hover .person-overlay-content {
  transform: translateY(0);
}

.person-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.person-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  font-weight: 500;
}

.person-dept-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-body);
  text-transform: uppercase;
}

/* Custom column for 5 items per row on large screens */
@media (min-width: 1200px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* Fallback avatar styling (when image fails) */
.person-img[src*="ui-avatars.com"] {
  background: var(--red-light);
}
/* ===== RECRUITERS ===== */
.recruiters-section { background: var(--bg); }
.marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 44px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 14px;
  animation: slide 35s linear infinite;
  width: max-content;
}
@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rec-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text2);
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.recruiter-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.recruiter-logos img {
  height: 62px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.recruiter-logos img:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

/* ===== KNOWLEDGE PARTNERS ===== */
.partners-section { background: var(--white); padding: 70px 0; }
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.partner-logos img {
  height: 58px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--bg);
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.partner-logos img:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #fbc9ca; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px; right: -150px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -100px; left: -80px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 36px; }
.btn-white {
  background: #fff;
  color: var(--red);
  padding: 14px 36px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  margin: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.5);
  margin: 6px;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-3px); }

/* ===== FOOTER ===== */
footer {
  background: #1a1614;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1.5fr; } }
.footer-logo img { height: 46px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo-text span { color: var(--red); }
.footer-about { font-size: 13px; color: #8a8480; line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #2a2422;
  border: 1px solid #3a3432;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8480;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2422;
  font-family: var(--font-body);
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-row i { color: var(--red); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row span { font-size: 13px; color: #8a8480; line-height: 1.6; }
.footer-map iframe { border-radius: 10px; width: 100%; border: 1px solid #2a2422; }
.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid #2a2422;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: #5a5452; }
.footer-bottom a { color: var(--red); text-decoration: none; }

/* ===== STICKY BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--gold), var(--red)) ;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(200,23,30,0.25);
}
.sticky-bar span { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
.sticky-bar a {
  background: #fff;
  color: var(--red);
  padding: 8px 22px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
}
.sticky-bar a:hover { transform: scale(1.02); }
@media(max-width:480px){ .sticky-bar span { display: none; } .sticky-bar { justify-content: center; } }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE LOAD ANIMATION ===== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up-0 { animation: fadeUp 0.7s 0.05s both ease; }
.fade-up-1 { animation: fadeUp 0.7s 0.15s both ease; }
.fade-up-2 { animation: fadeUp 0.7s 0.25s both ease; }
.fade-up-3 { animation: fadeUp 0.7s 0.35s both ease; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s both ease; }

@media(max-width:600px){
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
}
/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

/* Image Side */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-img {
  transform: scale(1.05);
}

/* Decorative Circles */
.about-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--red-light);
  border: 2px solid var(--red);
  z-index: -1;
}

.about-deco-1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
  background: var(--gold-light);
  border-color: var(--gold);
}

.about-deco-2 {
  width: 80px;
  height: 80px;
  bottom: -30px;
  left: -30px;
  background: var(--red-light);
  border-color: var(--red);
}

/* Stats Badge */
.about-stats-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid var(--red-light);
  z-index: 2;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Content Side */
.about-content {
  padding: 20px 0;
}

.about-intro {
  font-size: 1.05rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 500;
}

/* Features List */
.about-features {
  margin-bottom: 36px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.about-feature-item:hover {
  background: var(--white);
  border-color: #fbc9ca;
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--red-light);
  border: 1px solid #fbc9ca;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 500;
}

.feature-text strong {
  color: var(--text);
  font-weight: 700;
}

/* CTA Buttons */
.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--gold)) ;
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200, 23, 30, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(-135deg, var(--red), var(--gold)) ;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 23, 30, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-stats-badge {
    bottom: 20px;
    right: 20px;
    padding: 16px 22px;
  }
  
  .badge-num {
    font-size: 1.8rem;
  }
  
  .about-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
.nav-logo{
  height: 70px;
}

.btn-course{
  background: linear-gradient(135deg, var(--gold), var(--red)) ;
  color:#fff;
  padding:14px 36px;
  border-radius:10px;
  font-family:var(--font-body);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  display:inline-block;
  box-shadow:0 4px 16px rgba(200,23,30,0.3);
  transition:var(--transition)
}
@media(min-width:768px){ .nav-logo { height: 85px; } }