:root {
  --primary: #002a54;
  --secondary: #5174c4;
  --accent: #ffb703;
  --light-bg: #f8fafe;
  --text-dark: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow-sm: 0 4px 15px rgba(0, 42, 84, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 42, 84, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 42, 84, 0.12);
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--white);
}

a { color: var(--secondary); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.section-padding {
  padding: 80px 0;
}
.bg-light-custom {
  background-color: var(--light-bg);
}
.text-primary-custom {
  color: var(--primary) !important;
}
.text-secondary-custom {
  color: var(--secondary) !important;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* 1. Top Bar */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.top-bar a:hover {
  color: var(--secondary);
}
.badge-admissions {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* 2. Header & Nav */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.5rem;
}
.navbar-brand span {
  color: var(--secondary);
}
.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 10px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

/* Logo */
.logo-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-logo-img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}
.logo-primary-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-sub-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 3. Hero Banner — Full-width background, content overlaid on left */
.hero-section {
  /* subtract sticky top-bar(36px) + navbar(68px) so hero fills exactly the remaining viewport */
  min-height: calc(100vh - 104px);
  min-height: calc(100dvh - 104px);
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.9) 35%,
      rgba(255, 255, 255, 0) 62%
    ),
    url(../images/hero-banner.webp) no-repeat right center / cover;
  display: flex;
  align-items: center;
  /* 2.5rem guarantees breathing room even when dvh shrinks due to browser chrome */
  padding: clamp(2rem, 3vh, 4rem) 0 80px;
  position: relative;
}
.hero-content {
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(81, 116, 196, 0.08);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(81, 116, 196, 0.22);
  margin-bottom: 12px;
}
.hero-title {
  /* scales from 1.8rem on mobile up to 3.5rem on large desktops */
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 14px;
}
.hero-title .highlight {
  color: var(--secondary);
}
.hero-subtitle {
  font-size: clamp(0.9rem, 1.05vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #e8ecf5;
}

/* Academy pages */
.page-hero { background: linear-gradient(120deg, var(--primary), #174d7b); color: #fff; padding: 88px 0 76px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.4rem); max-width: 760px; }
.page-hero p:not(.eyebrow) { max-width: 650px; font-size: 1.1rem; margin-bottom: 0; opacity: .9; }
.eyebrow { color: var(--accent); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.about-page-hero { background: radial-gradient(circle at 85% 15%, rgba(255, 183, 3, .22), transparent 24rem), linear-gradient(120deg, var(--primary), #174d7b); }
.about-intro { overflow: hidden; }
.about-intro h2, .about-experience h2, .about-locations h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.25; }
.about-lead { color: var(--secondary); font-size: 1.14rem; line-height: 1.7; }
.about-highlights { display: grid; gap: 11px; margin-top: 23px; }
.about-highlights div { align-items: center; display: flex; font-size: .94rem; font-weight: 600; gap: 11px; }
.about-highlights i { align-items: center; background: #eaf0ff; border-radius: 50%; color: var(--secondary); display: inline-flex; font-size: .7rem; height: 22px; justify-content: center; width: 22px; }
.about-collage { min-height: 490px; position: relative; }
.about-collage figure { box-shadow: var(--shadow-lg); margin: 0; overflow: hidden; position: absolute; }
.about-collage img { height: 100%; object-fit: cover; transition: transform .45s ease; width: 100%; }
.about-collage figure:hover img { transform: scale(1.05); }
.about-collage-main { border-radius: 22px; height: 390px; left: 0; top: 50px; width: 69%; }
.about-collage-top { border: 6px solid #fff; border-radius: 18px; height: 180px; right: 0; top: 0; width: 40%; }
.about-collage-bottom { border: 6px solid #fff; border-radius: 18px; bottom: 0; height: 184px; right: 2%; width: 46%; }
.about-collage-badge { align-items: center; background: var(--accent); border-radius: 50%; bottom: 28px; box-shadow: 0 10px 25px rgba(0, 42, 84, .2); color: var(--primary); display: flex; font-weight: 800; gap: 8px; height: 108px; justify-content: center; left: 8%; line-height: 1.1; position: absolute; text-transform: uppercase; width: 108px; }
.about-collage-badge i { font-size: 1.35rem; }
.about-collage-badge span { font-size: .67rem; letter-spacing: .06em; }
.about-experience { background: var(--primary); color: rgba(255, 255, 255, .78); padding: 80px 0; position: relative; }
.about-experience::before { background: radial-gradient(circle, rgba(81, 116, 196, .65) 0, rgba(81, 116, 196, 0) 67%); content: ''; height: 28rem; position: absolute; right: -9rem; top: -15rem; width: 28rem; }
.about-experience .container { position: relative; }
.about-experience h2 { color: #fff; }
.about-experience-copy { padding: 10px 25px 10px 0; }
.about-feature-card { background: rgba(255, 255, 255, .98); border-radius: 16px; color: var(--text-muted); height: 100%; padding: 25px; transition: transform .25s ease, box-shadow .25s ease; }
.about-feature-card:hover { box-shadow: 0 16px 32px rgba(0, 0, 0, .2); transform: translateY(-5px); }
.about-feature-card h3 { font-size: 1.04rem; margin: 16px 0 8px; }
.about-feature-card p { font-size: .88rem; line-height: 1.65; margin: 0; }
.about-feature-icon { align-items: center; background: #eaf0ff; border-radius: 12px; color: var(--secondary); display: inline-flex; font-size: 1.15rem; height: 46px; justify-content: center; width: 46px; }
.about-section-heading { max-width: 660px; }
.about-section-heading > p:last-child { color: var(--text-muted); margin: 13px 0 0; }
.branch-card-enhanced { border-top: 0; overflow: hidden; padding: 31px; position: relative; }
.branch-card-enhanced::after { background: var(--secondary); content: ''; height: 100%; left: 0; position: absolute; top: 0; width: 5px; }
.branch-card-enhanced h3 { font-size: 1.35rem; }
.branch-icon { align-items: center; background: #edf2ff; border-radius: 50%; color: var(--secondary); display: inline-flex; font-size: 1.1rem; height: 42px; justify-content: center; margin-bottom: 16px; width: 42px; }
.branch-label { color: var(--secondary); font-size: .7rem; font-weight: 700; letter-spacing: .12em; margin-bottom: 6px; text-transform: uppercase; }
.branch-actions { border-top: 1px solid #e7ecf4; display: flex; flex-wrap: wrap; gap: 15px; margin-top: 22px; padding-top: 17px; }
.branch-actions a { font-size: .9rem; font-weight: 700; text-decoration: none; }
.contact-centres-heading { margin: 76px 0 28px; text-align: center; }
.contact-centres-heading h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.contact-centres-heading > p:last-child { color: var(--text-muted); margin-bottom: 0; }
.contact-phone-list { display: grid; gap: 8px; text-align: left; }
.contact-phone-list a { align-items: center; border: 1px solid #e1e8f3; border-radius: 9px; color: var(--primary); display: flex; justify-content: space-between; padding: 9px 11px; text-decoration: none; transition: var(--transition); }
.contact-phone-list a:hover { background: #edf2ff; border-color: #c8d5f1; transform: translateY(-1px); }
.contact-phone-list span { color: var(--text-muted); font-size: .7rem; font-weight: 600; }
.contact-phone-list strong, .contact-number-link { color: var(--secondary); font-size: .87rem; font-weight: 800; letter-spacing: .01em; }
.contact-number-link { display: inline-block; margin-bottom: 5px; text-decoration: none; }
.enquiry-section { margin-top: 76px; }
.enquiry-intro { background: linear-gradient(145deg, var(--primary), #164d7b); color: rgba(255, 255, 255, .8); height: 100%; padding: 46px 40px; }
.enquiry-intro h2 { color: #fff; font-size: clamp(1.7rem, 2.7vw, 2.35rem); line-height: 1.3; }
.enquiry-intro .eyebrow { color: var(--accent); }
.enquiry-contact-note { align-items: center; border-top: 1px solid rgba(255, 255, 255, .2); display: flex; font-size: .85rem; gap: 12px; margin-top: 36px; padding-top: 20px; }
.enquiry-contact-note i { color: var(--accent); font-size: 1.1rem; }
.enquiry-contact-note a { color: #fff; font-weight: 700; text-decoration: none; }
.enquiry-form-wrap { background: var(--light-bg); height: 100%; padding: 42px; }
.enquiry-form-wrap .form-label { color: var(--primary); font-size: .85rem; font-weight: 700; }
.enquiry-form-wrap .form-label span { color: #c62c2c; }
.enquiry-form-wrap .form-control, .enquiry-form-wrap .form-select { border-color: #dbe3ef; box-shadow: none; font-size: .92rem; padding: 12px 14px; }
.enquiry-form-wrap .form-control:focus, .enquiry-form-wrap .form-select:focus { border-color: var(--secondary); box-shadow: 0 0 0 .2rem rgba(81, 116, 196, .14); }
.enquiry-required { color: var(--text-muted); font-size: .75rem; margin-left: 14px; }
@media (max-width: 991.98px) { .about-collage { margin: 0 auto; max-width: 590px; } .about-experience-copy { padding-right: 0; } }
@media (max-width: 575.98px) { .section-padding { padding: 58px 0; } .about-collage { min-height: 375px; } .about-collage-main { height: 300px; width: 72%; } .about-collage-top { height: 134px; width: 42%; } .about-collage-bottom { bottom: 2px; height: 138px; width: 48%; } .about-collage-badge { bottom: 21px; height: 82px; left: 5%; width: 82px; } .about-collage-badge i { font-size: 1rem; } .about-collage-badge span { font-size: .52rem; } .about-experience { padding: 58px 0; } .branch-card-enhanced { padding: 25px; } .enquiry-section { margin-top: 56px; } .enquiry-intro, .enquiry-form-wrap { padding: 30px 24px; } .enquiry-required { display: block; margin: 12px 0 0; } }
.facility-list { display: grid; gap: 14px; }
.facility-list div, .info-panel, .branch-card, .contact-card { background: #fff; border-radius: var(--border-radius); box-shadow: var(--shadow-md); padding: 26px; }
.facility-list div { display: flex; align-items: center; gap: 16px; font-weight: 600; }
.facility-list i, .contact-card > i { color: var(--secondary); font-size: 1.5rem; }
.info-panel ul { padding-left: 1.2rem; margin: 1rem 0 0; }
.info-panel li { padding: .35rem 0; }
.branch-card { height: 100%; border-top: 4px solid var(--secondary); }
.contact-card { height: 100%; text-align: center; }
.contact-card > i { font-size: 2rem; margin-bottom: 16px; }
.contact-card h4 { margin-bottom: 14px; }
.contact-card p { margin-bottom: 0; }
.cta-band { background: var(--secondary); padding: 70px 0; color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band p { opacity: .9; margin-bottom: 24px; }
.gallery-grid { columns: 1; column-gap: 18px; }
.gallery-item { break-inside: avoid; overflow: hidden; margin: 0 0 18px; border-radius: var(--border-radius); background: var(--light-bg); opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.gallery-item.is-visible { opacity: 1; transform: translateY(0); }
.gallery-item img { display: block; width: 100%; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-status { color: var(--text-muted); text-align: center; padding: 22px 0 5px; }
.category-number { align-items: center; background: var(--secondary); border-radius: 50%; color: #fff; display: inline-flex; font-family: "Poppins", sans-serif; font-size: .8rem; font-weight: 700; height: 42px; justify-content: center; width: 42px; }
.catalogue-card { background: #fff; border: 1px solid #e7ecf4; border-radius: var(--border-radius); box-shadow: var(--shadow-sm); padding: 25px; transition: var(--transition); }
.catalogue-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.catalogue-card h4 { font-size: 1.05rem; line-height: 1.45; }
.course-summary { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }
.course-detail { color: var(--text-muted); font-size: .88rem; }
.course-detail i, .course-benefit i { color: var(--secondary); margin-right: 8px; }
.course-pricing { border-top: 1px solid #e7ecf4; border-bottom: 1px solid #e7ecf4; margin: 18px 0; padding: 10px 0 2px; }
.course-pricing p { font-size: .83rem; margin-bottom: 8px; }
.course-benefit { color: #42662a; font-size: .83rem; line-height: 1.5; }
.catalogue-tools { align-items: center; display: flex; gap: 16px; justify-content: space-between; margin-bottom: 18px; }
.catalogue-search { align-items: center; background: #fff; border: 1px solid #dce4f0; border-radius: 12px; display: flex; max-width: 560px; padding: 0 16px; width: 100%; }
.catalogue-search i { color: var(--secondary); }
.catalogue-search input { background: transparent; border: 0; box-shadow: none; font: inherit; outline: 0; padding: 14px 12px; width: 100%; }
.category-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 12px; }
.category-nav a { background: var(--light-bg); border: 1px solid #dce4f0; border-radius: 999px; color: var(--primary); font-size: .78rem; font-weight: 600; padding: 8px 12px; text-decoration: none; }
.category-nav a:hover { background: var(--primary); color: #fff; }
.catalogue-count { color: var(--text-muted); font-size: .86rem; margin-bottom: 34px; }
.catalogue-card-top { align-items: center; display: flex; gap: 8px; justify-content: space-between; margin-bottom: 15px; }
.course-type { color: var(--secondary); font-size: .68rem; font-weight: 700; letter-spacing: .04em; max-width: 70%; text-transform: uppercase; }
.course-duration { background: #eef2fc; border-radius: 99px; color: var(--primary); font-size: .72rem; font-weight: 600; padding: 5px 8px; white-space: nowrap; }
.course-duration i { color: var(--secondary); margin-right: 5px; }
.course-syllabus { border-top: 1px solid #e7ecf4; margin-top: 16px; padding-top: 14px; }
.course-syllabus summary { color: var(--secondary); cursor: pointer; font-size: .86rem; font-weight: 700; list-style: none; }
.course-syllabus summary::-webkit-details-marker { display: none; }
.course-syllabus summary i { float: right; transition: transform .2s ease; }
.course-syllabus[open] summary i { transform: rotate(180deg); }
.course-syllabus p { color: var(--text-muted); font-size: .84rem; line-height: 1.65; margin: 13px 0 2px; }
@media (max-width: 575.98px) { .catalogue-tools { margin-bottom: 14px; }.category-nav { flex-wrap: nowrap; margin-left: -12px; margin-right: -12px; overflow-x: auto; padding: 0 12px 5px; }.category-nav a { white-space: nowrap; }.course-type { max-width: 62%; } }
@media (min-width: 576px) { .gallery-grid { columns: 2; } }
@media (min-width: 992px) { .gallery-grid { columns: 3; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.trust-item i {
  color: var(--secondary);
  font-size: 1rem;
}
/* Full-bleed image shown on mobile above the content card */
.hero-mobile-img {
  width: 100%;
  height: 55vw;
  background: url(../images/hero-banner.webp) no-repeat right center / cover;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .hero-section {
    /* tablet: let content determine height rather than forcing full-dvh */
    min-height: auto;
    padding: 4rem 0 80px;
    background:
      linear-gradient(
        to right,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.92) 60%,
        rgba(255, 255, 255, 0.5) 100%
      ),
      url(../images/hero-banner.webp) no-repeat right center / cover;
  }
  .hero-content {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .hero-section {
    flex-direction: column;
    background: var(--white);
    min-height: auto;
    padding: 0;
    align-items: stretch;
  }
  /* white card slides up over the image */
  .hero-section > .container {
    background: var(--white);
    border-radius: 1.5rem 1.5rem 0 0;
    margin-top: -1.5rem;
    padding: 1.75rem 1.25rem 3rem;
    position: relative;
    z-index: 2;
  }
  .hero-title {
    font-size: clamp(1.6rem, 5.5vw, 1.85rem);
  }
  .hero-trust {
    gap: 12px;
  }
  .hero-stats {
    margin-top: -20px;
  }
}

/* Hero Stats Overlay */
.hero-stats {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
.stat-item h3 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
}
.stat-item p {
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* 5. Why Choose Us */
.feature-box {
  padding: 30px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border-bottom: 4px solid transparent;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--secondary);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-bg);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* 6. Popular Courses */
.course-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.course-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.course-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.course-card:hover .course-img-wrapper img {
  transform: scale(1.1);
}
.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.course-content {
  padding: 25px;
}
.home-course-card .course-img-wrapper { height: 215px; }
.course-card-link { color: var(--secondary); display: inline-flex; font-size: .86rem; font-weight: 700; gap: 8px; margin-top: 7px; text-decoration: none; }
.course-card-link:hover { color: var(--primary); }
.home-moments-section { background: linear-gradient(135deg, var(--primary), #174d7b); color: rgba(255, 255, 255, .82); overflow: hidden; padding: 85px 0; }
.home-moments-section h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.65rem); line-height: 1.28; }
.home-moments-section .eyebrow { color: var(--accent); }
.home-moments-grid { min-height: 395px; position: relative; }
.home-moments-grid img { box-shadow: 0 16px 34px rgba(0, 0, 0, .24); object-fit: cover; position: absolute; }
.home-moment-main { border-radius: 20px; height: 330px; left: 0; top: 32px; width: 64%; }
.home-moment-top { border: 5px solid #fff; border-radius: 16px; height: 165px; right: 0; top: 0; width: 42%; }
.home-moment-bottom { border: 5px solid #fff; border-radius: 16px; bottom: 0; height: 180px; right: 3%; width: 47%; }
.home-path-copy { max-width: 590px; }
.home-path-card { background: #fff; border: 1px solid #e4eaf3; border-radius: 16px; box-shadow: var(--shadow-sm); height: 100%; padding: 31px; position: relative; transition: var(--transition); }
.home-path-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.home-path-card > span { color: #d6dfef; font-family: "Poppins", sans-serif; font-size: 2.45rem; font-weight: 800; position: absolute; right: 25px; top: 14px; }
.home-path-card > i { align-items: center; background: #eaf0ff; border-radius: 12px; color: var(--secondary); display: inline-flex; font-size: 1.2rem; height: 48px; justify-content: center; width: 48px; }
.home-path-card h3 { font-size: 1.15rem; margin: 20px 0 10px; }
.home-path-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }
.home-path-card a { color: var(--secondary); font-size: .86rem; font-weight: 700; text-decoration: none; }
.home-path-card a i { margin-left: 6px; }
@media (max-width: 575.98px) {
  .home-moments-section { padding: 58px 0; }
  .home-moments-grid { min-height: 325px; }
  .home-moment-main { height: 268px; width: 68%; }
  .home-moment-top { height: 125px; width: 42%; }
  .home-moment-bottom { height: 140px; width: 49%; }
  .home-path-card { padding: 27px; }
}
.course-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

/* 7. Learning Methodology */
.method-step {
  text-align: center;
  position: relative;
  padding: 20px;
}
.method-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}
.method-step::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: dashed 2px var(--secondary);
  z-index: 1;
}
.col-md-3:last-child .method-step::after {
  display: none;
}
@media (max-width: 768px) {
  .method-step::after {
    display: none;
  }
}

/* 8. Facilities Gallery */
.facility-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 250px;
  margin-bottom: 24px;
}
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 42, 84, 0.9), transparent);
  padding: 20px;
  color: var(--white);
}

/* 9. Success Stories */
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin: 15px;
}
.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid var(--secondary);
}
.rating {
  color: var(--accent);
  margin-bottom: 15px;
}

/* 11. Events */
.event-card {
  display: flex;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition);
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}
.event-date {
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  text-align: center;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-date h4 {
  color: var(--white);
  margin: 0;
  font-size: 2rem;
}
.event-info {
  padding: 20px;
}

/* 14. Certificates & Recognition */
.partner-logo {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
  max-height: 60px;
  margin: 0 auto;
  display: block;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* 18. CTA Banner */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin: 60px 0;
}

/* 20. Footer */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 20px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.footer-brand-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
}
.footer-brand-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}
.footer h5 {
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 600;
}
.footer-branches { display: grid; gap: 16px; }
.footer-branches strong { color: var(--white); font-size: .88rem; }
.footer-branches p { font-size: .78rem; line-height: 1.5; margin: 3px 0 5px; opacity: .75; }
.footer-branches a { color: rgba(255, 255, 255, .85); font-size: .8rem; text-decoration: none; }
.footer-branches a:hover { color: var(--accent); }
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}
@media (max-width: 575.98px) {
  .footer-logo-img {
    height: 46px;
  }
  .footer-brand-title {
    font-size: 1.2rem;
  }
}

/* Floating Elements */
.float-whatsapp {
  position: fixed;
  bottom: 96px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s;
}
.scroll-top:hover {
  background-color: var(--secondary);
}
@media (max-width: 575.98px) {
  .float-whatsapp { bottom: 82px; right: 20px; width: 54px; height: 54px; font-size: 27px; }
  .scroll-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
}
