/*=========================================================
COLOR SCHEME
===========================================================
Primary    : #0F172A
Secondary  : #2563EB
Accent     : #06B6D4
Success    : #10B981
Background : #F8FAFC
Text       : #1E293B
==========================================================*/
/* =========================================================
   ROOT
========================================================= */
:root {
    --primary: #81870e;
    --primary-dark: #93a102;
    --secondary: #a7b32c;
	--background: #bfd3a5;
	--semibackground:#edf3e4;
    --dark: #0f172a;
    --dark-2: #172033;
    --text: #465533;
    --muted: #7f8b64;
    --light: #f9fcf8;
    --surface: #ffffff;
    --border: #e8f0e2;
    --success: #10b981;
    --radius: 18px;
    --shadow:
        0 15px 40px rgba(15, 23, 42, .08);
    --transition:
        all .3s ease;
}
/* =========================================================
   RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    /*font-family: "Federo", sans-serif;*/
	font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height: 1.7;
    overflow-x: hidden;
}
img {
    width: 100%;
    display: block;
    object-fit: cover;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
textarea,
select {
    font-family: inherit;
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}
.section {
    padding: 100px 0;
}
/* =========================================================
   TOP BAR
========================================================= */
.top-bar {
    background: var(--dark);
    color: #cbd5e1;
    font-size: 13px;
}
.top-bar-inner {
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-left {
    display: flex;
    gap: 25px;
}
.top-left span {
    display: flex;
    gap: 7px;
    align-items: center;
}
.top-left i {
    color: #60a5fa;
}
.top-right {
    display: flex;
    gap: 15px;
}
.top-right a {
    transition: var(--transition);
}
.top-right a:hover {
    color: white;
    transform: translateY(-2px);
}
/* =========================================================
   HEADER
========================================================= */
.main-header {
    background: rgba(255,255,255,.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}
.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
    font-family: Poppins;
    /*background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );*/
    box-shadow:
        0 8px 20px rgba(37,99,235,.25);
}
.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-text strong {
    /*font-family: Poppins;*/
    font-size: 20px;
    color: var(--dark);
}
.brand-text small {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .3px;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.desktop-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    position: relative;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    left: 0;
    bottom: -7px;
    transition: var(--transition);
}
.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
}
.mobile-nav {
    display: none;
}
/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}
.btn-primary {
    color: white;
    background: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow:
        0 10px 25px rgba(37,99,235,.25);
}
.btn-dark {
    color: white;
    background: var(--dark);
}
.btn-dark:hover {
    transform: translateY(-2px);
    background: var(--dark);
}
.btn-white {
    background: white;
    color: var(--primary);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline-light {
    color: white;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
}
.btn-outline-light:hover {
    background: white;
    color: var(--dark);
}
.btn-large {
    padding: 15px 25px;
    font-size: 15px;
}
/* =========================================================
   HERO
========================================================= */
.hero {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #0d1702f0,
            #1c2a0fb8
        ),
        url("../images/hero-1.jpg")
        center / cover;
}
.hero-container {
    position: relative;
    z-index: 2;
}
.hero-content {
    width: min(700px, 100%);
    color: white;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: #dbeafe;
    font-size: 13px;
    margin-bottom: 25px;
}
.hero h1 {
    font-family: Poppins;
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 25px;
}
.hero h1 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--primary-dark),
            var(--secondary)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p {
    color: #cbd5e1;
    max-width: 600px;
    font-size: 17px;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}
.trust-avatars {
    display: flex;
}
.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    border: 2px solid white;
    margin-left: -7px;
    font-size: 12px;
    font-weight: 700;
}
.avatar:first-child {
    margin-left: 0;
}
.hero-trust strong {
    display: block;
    font-size: 13px;
}
.hero-trust small {
    display: block;
    color: #94a3b8;
    font-size: 11px;
}
.hero-floating-card {
    position: absolute;
    right: 40px;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
    animation: floating 3s ease-in-out infinite;
}
.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--background);
    color: var(--primary);
}
.hero-floating-card strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
}
.hero-floating-card span {
    display: block;
    color: var(--muted);
    font-size: 11px;
}
@keyframes floating {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* =========================================================
   STATS
========================================================= */
.stats-section {
    position: relative;
    margin-top: -55px;
    z-index: 10;
}
.stats-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 28px;
    border-right: 1px solid var(--border);
}
.stat-card:last-child {
    border-right: 0;
}
.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--light);
    font-size: 20px;
}
.stat-card strong {
    display: block;
    font-family: Poppins;
    font-size: 25px;
    color: var(--dark);
    line-height: 1;
}
.stat-card strong::after {
    content: "+";
}
.stat-card span {
    font-size: 12px;
    color: var(--muted);
}
/* =========================================================
   SECTION HEADINGS
========================================================= */
.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    margin-bottom: 12px;
}
.section-label.light {
    color: #93c5fd;
}
.section-heading {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}
.section-heading.centered {
    display: block;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.section-heading h2,
.about-content h2,
.contact-content h2 {
    font-family: Poppins;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.2;
    letter-spacing: -1px;
}
.section-heading h2 span,
.about-content h2 span,
.contact-content h2 span {
    color: var(--primary);
}
.section-heading p {
    color: var(--muted);
    margin-top: 12px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.text-link i {
    transition: var(--transition);
}
.text-link:hover i {
    transform: translateX(5px);
}
/* =========================================================
   ABOUT
========================================================= */
.about-grid {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    padding: 20px;
}
.about-image {
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.about-image img {
    height: 100%;
}
.experience-card {
    position: absolute;
    left: -5px;
    bottom: 50px;
    z-index: 4;
    background: white;
    border-radius: 15px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
}
.experience-card strong {
    color: var(--primary);
    font-family: Poppins;
    font-size: 35px;
    line-height: 1;
}
.experience-card span {
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}
.about-pattern {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(
        #bfdbfe 1px,
        transparent 1px
    );
    background-size: 12px 12px;
    right: -10px;
    top: -10px;
}
.about-content p {
    color: var(--muted);
    margin: 18px 0;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
}
.about-features div {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
}
.about-features i {
    color: var(--success);
}
/* =========================================================
   WHY
========================================================= */
.why-section {
    background: var(--light);
}
.why-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #bfdbfe;
}
.feature-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 14px;
    font-size: 23px;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: Poppins;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--muted);
    font-size: 13px;
}
/* =========================================================
   COURSES
========================================================= */
.courses-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 20px;
}
.course-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
    transition: var(--transition);
}
.course-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.course-image {
    height: 190px;
    position: relative;
    overflow: hidden;
}
.course-image img {
    height: 100%;
    transition: .5s ease;
}
.course-card:hover .course-image img {
    transform: scale(1.06);
}
.course-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 30px;
    color: white;
    background: var(--primary);
    font-size: 10px;
    font-weight: 700;
}
.course-body {
    padding: 22px;
}
.course-meta {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    color: var(--muted);
    font-size: 10px;
    margin-bottom: 12px;
}
.course-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.course-body h3 {
    color: var(--dark);
    font-family: Poppins;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.course-body p {
    color: var(--muted);
    font-size: 12px;
    min-height: 75px;
}
.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-top: 1px solid var(--border);
    padding-top: 15px;
    margin-top: 15px;
}
.course-footer small {
    display: block;
    font-size: 9px;
    color: var(--muted);
}
.course-footer strong {
    color: var(--dark);
    font-family: Poppins;
}
.course-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: var(--primary);
    transition: var(--transition);
}
.course-arrow:hover {
    transform: rotate(45deg);
}
/* =========================================================
   CTA
========================================================= */
.cta-section {
    padding: 80px 0;
    color: white;
    background:
        linear-gradient(
            110deg,
            #1d4ed8,
            #0891b2
        );
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.cta-section h2 {
    font-family: Poppins;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
    margin-bottom: 12px;
}
.cta-section p {
    color: #dbeafe;
}
.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
/* =========================================================
   FACULTY
========================================================= */
.faculty-section {
    background: var(--light);
}
.faculty-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: auto;
}
.faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.faculty-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.faculty-image {
    height: 330px;
}
.faculty-image img {
    height: 100%;
}
.faculty-body {
    padding: 20px;
    text-align: center;
}
.faculty-body h3 {
    font-family: Poppins;
    color: var(--dark);
    font-size: 17px;
}
.faculty-body > span {
    font-size: 11px;
    color: var(--muted);
}
.faculty-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.faculty-social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    font-size: 12px;
}
/* =========================================================
   TOPPERS
========================================================= */
.toppers-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    max-width: 850px;
    margin: auto;
    gap: 20px;
    align-items: end;
}
.topper-card {
    position: relative;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,.04);
}
.topper-card.advanced {
    padding-top: 45px;
    transform: translateY(-20px);
    border-color: #bfdbfe;
    box-shadow: var(--shadow);
}
.topper-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto auto 15px;
    border: 5px solid var(--light);
}
.topper-photo img {
    height: 100%;
}
.topper-card h3 {
    font-family: Poppins;
    color: var(--dark);
    font-size: 16px;
}
.topper-card > span:not(.rank) {
    font-size: 11px;
    color: var(--muted);
    display: block;
}
.topper-card strong {
    display: block;
    margin-top: 10px;
    color: var(--primary);
    font-family: Poppins;
    font-size: 24px;
}
.rank {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: 800;
    color: #f59e0b;
}
/* =========================================================
   RESULTS
========================================================= */
.results-section {
    padding: 75px 0;
    color: white;
    background:
        linear-gradient(
            110deg,
            #0f172a,
            #1e293b
        );
}
.results-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.results-content {
    max-width: 550px;
}
.results-section h2 {
    font-family: Poppins;
    font-size: 40px;
    line-height: 1.2;
}
.results-section h2 span {
    color: #60a5fa;
}
.results-section p {
    color: #94a3b8;
    margin-top: 12px;
}
.result-search {
    display: flex;
    gap: 10px;
    width: min(500px, 100%);
}
.input-group {
    position: relative;
    flex: 1;
}
.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}
.input-group input {
    width: 100%;
    height: 52px;
    border: 0;
    outline: 0;
    padding: 0 15px 0 45px;
    border-radius: 10px;
    font-size: 13px;
}
/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials-section {
    background: var(--light);
}
.testimonial-slider {
    display: grid;
    grid-template-columns:
        repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: auto;
}
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
}
.quote {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 40px;
    color: #dbeafe;
}
.rating {
    color: #f59e0b;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.testimonial-card p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 25px;
}
.student-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.student-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: var(--primary);
    font-weight: 700;
}
.student-info strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
}
.student-info span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}
/* =========================================================
   GALLERY
========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns:
        1.5fr 1fr 1fr;
    grid-template-rows:
        220px 220px;
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}
.gallery-item img {
    height: 100%;
    transition: .5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item.large {
    grid-row: span 2;
}
/* =========================================================
   NEWS
========================================================= */
.news-section {
    background: var(--light);
}
.news-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 25px;
}
.news-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.news-image {
    height: 220px;
    position: relative;
}
.news-image img {
    height: 100%;
}
.news-date {
    position: absolute;
    left: 15px;
    bottom: 15px;
    background: white;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 10px;
}
.news-body {
    padding: 22px;
}
.news-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 800;
}
.news-body h3 {
    font-family: Poppins;
    color: var(--dark);
    font-size: 17px;
    line-height: 1.4;
    margin: 8px 0;
}
.news-body p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 15px;
}
/* =========================================================
   CONTACT
========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 70px;
    align-items: center;
}
.contact-content > p {
    color: var(--muted);
    margin: 20px 0 30px;
    max-width: 500px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--primary);
    background: var(--light);
}
.contact-item strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
}
.contact-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}
.contact-form-wrapper {
    padding: 35px;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.form-control {
    margin-bottom: 17px;
}
.form-control label {
    display: block;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 7px;
}
.form-control input,
.form-control select,
.form-control textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: 0;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 12px;
    background: #f8fafc;
    transition: var(--transition);
}
.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow:
        0 0 0 3px rgba(37,99,235,.08);
}
.form-control textarea {
    resize: vertical;
}
/* =========================================================
   FOOTER
========================================================= */
.footer {
    background: var(--dark);
    color: #94a3b8;
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns:
        2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand .brand-text strong {
    color: white;
}
.footer-brand .brand-text small {
    color: #64748b;
}
.footer-about p {
    font-size: 13px;
    max-width: 350px;
    margin: 20px 0;
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #1e293b;
    color: #cbd5e1;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links h3 {
    color: white;
    font-family: Poppins;
    font-size: 14px;
    margin-bottom: 8px;
}
.footer-links a {
    font-size: 12px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    font-size: 10px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .desktop-nav {
        gap: 17px;
    }
    .courses-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}
@media (max-width: 850px) {
    .top-left span:last-child {
        display: none;
    }
    .desktop-nav,
    .nav-admission {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .mobile-nav {
        display: none;
        flex-direction: column;
        padding: 15px 20px 25px;
        background: white;
        border-top: 1px solid var(--border);
    }
    .mobile-nav.show {
        display: flex;
    }
    .mobile-nav a {
        padding: 12px 0;
        font-size: 14px;
        font-weight: 600;
        border-bottom: 1px solid var(--border);
    }
    .mobile-nav .btn {
        margin-top: 15px;
        color: white;
        border-bottom: 0;
    }
    .hero {
        min-height: 620px;
    }
    .hero-floating-card {
        display: none;
    }
    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .stat-card:nth-child(2) {
        border-right: 0;
    }
    .stat-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .faculty-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .results-container,
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .result-search {
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns:
            1fr 1fr;
        grid-template-rows:
            220px 220px 220px;
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns:
            1fr 1fr;
    }
}
@media (max-width: 600px) {
    .container {
        width: min(
            100% - 28px,
            1180px
        );
    }
    .section {
        padding: 70px 0;
    }
    .top-bar-inner {
        justify-content: center;
    }
    .top-left {
        gap: 10px;
    }
    .top-right {
        display: none;
    }
    .brand-text small {
        display: none;
    }
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    .hero {
        min-height: 620px;
    }
    .hero h1 {
        font-size: 45px;
        letter-spacing: -1.5px;
    }
    .hero p {
        font-size: 14px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .stats-section {
        margin-top: -30px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-card {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .stat-card:last-child {
        border-bottom: 0;
    }
    .about-image {
        height: 380px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .why-grid,
    .courses-grid,
    .faculty-grid,
    .toppers-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    .topper-card.advanced {
        transform: none;
    }
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 35px;
    }
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    .cta-buttons .btn {
        width: 100%;
    }
    .result-search {
        flex-direction: column;
    }
    .result-search .btn {
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows:
            repeat(5, 220px);
    }
    .gallery-item.large {
        grid-column: span 1;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 22px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}
/* =====================================================
   RESULT MODAL
===================================================== */
.result-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.70);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}
.result-modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Modal width */
.result-modal-box {
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}
/* Modal content */
.result-modal-inner {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.30);
}
/* Header */
.result-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.result-modal-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.result-modal-header h3 {
    margin: 5px 0 0;
    font-size: 26px;
}
/* Close */
.result-close {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #eeeeee;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.result-close:hover {
    background: #dddddd;
}
/* Student information */
.result-student-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 18px;
    margin-bottom: 18px;
    background: var(--light);
    border-radius: 12px;
}
.result-student-info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.result-student-info span {
    font-size: 12px;
    opacity: 0.65;
}
.result-student-info strong {
    font-size: 16px;
}
/* Summary */
.result-summary {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
.result-summary-item {
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}
.result-summary-item span {
    display: block;
    font-size: 12px;
    opacity: 0.65;
    margin-bottom: 5px;
}
.result-summary-item strong {
    font-size: 15px;
}
/* Marks */
.result-marks {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.result-mark-card {
    padding: 16px;
    text-align: center;
    background: var(--light);
    border-radius: 10px;
}
.result-mark-card span {
    display: block;
    font-size: 12px;
    opacity: 0.65;
    margin-bottom: 5px;
}
.result-mark-card strong {
    font-size: 21px;
}
/* Remarks Option */
.result-marks-remarks {
    display: grid;
    margin-bottom: 20px;
}
/* Table */
.result-table-wrapper {
    width: 100%;
    overflow-x: auto;
}
.result-table {
    width: 100%;
    border-collapse: collapse;
}
.result-table th,
.result-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
}
.result-table th {
    width: 40%;
    background: var(--light);
    font-weight: 600;
}
.result-table td {
    font-weight: 500;
}
/* Loading */
.result-loading {
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
}
.result-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eeeeee;
    border-top-color: currentColor;
    border-radius: 50%;
    animation:
        resultSpin 0.8s linear infinite;
}
@keyframes resultSpin {
    to {
        transform: rotate(360deg);
    }
}
/* Error */
.result-message {
    padding: 40px 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
}
.result-message-icon {
    font-size: 38px;
    margin-bottom: 12px;
}
.result-message h3 {
    margin: 0 0 10px;
}
.result-message p {
    margin: 0 0 8px;
}
.result-message span {
    font-size: 13px;
    opacity: 0.65;
}
/* Mobile */
@media (max-width: 600px) {
    .result-modal {
        padding: 10px;
    }
    .result-modal-inner {
        padding: 18px;
    }
    .result-student-info {
        grid-template-columns: 1fr;
    }
    .result-summary {
        grid-template-columns: 1fr;
    }
    .result-marks {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .result-table th,
    .result-table td {
        padding: 10px;
        font-size: 13px;
    }
}
        /* =====================================================
           COURSES PAGE
        ===================================================== */
        .courses-page {
            padding: 80px 0;
            background: var(--light);
        }
        .courses-page-heading {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 45px;
        }
        .courses-page-heading h1 {
            margin: 10px 0 15px;
        }
        .courses-page-heading p {
            margin: 0;
        }
        /* =====================================================
           COURSE ACCORDION
        ===================================================== */
        .courses-accordion {
            max-width: 1000px;
            margin: 0 auto;
        }
        .course-accordion-item {
            margin-bottom: 15px;
            background: var(--light);
            border-radius: 14px;
            overflow: hidden;
            box-shadow:
                0 5px 25px rgba(0,0,0,.06);
        }
        .course-accordion-header {
            width: 100%;
            border: 0;
            background: var(--semibackground);
            padding: 22px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            text-align: left;
            cursor: pointer;
        }
        .course-heading-left {
            display: flex;
            align-items: center;
            gap: 18px;
            min-width: 0;
        }
        .course-number {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            background: var(--primary);
        }
        .course-heading-text {
            min-width: 0;
        }
        .course-code {
            display: block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: .65;
            margin-bottom: 3px;
        }
        .course-heading-text h2 {
            margin: 0;
            font-size: 20px;
        }
        .course-header-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 7px;
        }
        .course-badge {
            display: inline-flex;
            padding: 4px 9px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            background: #f1f1f1;
        }
        .course-chevron {
            flex-shrink: 0;
            font-size: 20px;
            transition: transform .25s ease;
        }
        .course-accordion-item.open
        .course-chevron {
            transform: rotate(180deg);
        }
        /* =====================================================
           COURSE CONTENT
        ===================================================== */
        .course-accordion-content {
            display: none;
            border-top: 1px solid #eeeeee;
            padding: 30px;
        }
        .course-overview {
            margin-bottom: 30px;
        }
        .course-overview h3,
        .course-section-title {
            margin: 0 0 15px;
            font-size: 19px;
        }
        .course-description {
            line-height: 1.8;
        }
        /* =====================================================
           COURSE INFORMATION
        ===================================================== */
        .course-info-grid {
            display: grid;
            grid-template-columns:
                repeat(3, 1fr);
            gap: 12px;
            margin: 25px 0 30px;
        }
        .course-info-item {
            padding: 15px;
            border-radius: 10px;
            background: var(--light);
        }
        .course-info-item span {
            display: block;
            font-size: 12px;
            opacity: .65;
            margin-bottom: 5px;
        }
        .course-info-item strong {
            font-size: 15px;
        }
        /* =====================================================
           MODULES
        ===================================================== */
        .course-modules {
            margin-top: 30px;
        }
        .module-item {
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .module-header {
            width: 100%;
            border: 0;
            background: #fafafa;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            text-align: left;
            cursor: pointer;
        }
        .module-header-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .module-number {
            font-weight: 700;
        }
        .module-title {
            font-weight: 600;
        }
        .module-header i {
            transition: transform .25s ease;
        }
        .module-item.open
        .module-header i {
            transform: rotate(180deg);
        }
        .module-content {
            display: none;
            padding: 18px;
            border-top: 1px solid #eeeeee;
        }
        .module-description {
            margin: 0 0 15px;
            line-height: 1.7;
        }
        .topic-list {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .topic-list li {
            position: relative;
            padding: 8px 0 8px 25px;
            border-bottom: 1px solid #f0f0f0;
        }
        .topic-list li:last-child {
            border-bottom: 0;
        }
        .topic-list li::before {
            content: "\F26A";
            font-family: bootstrap-icons;
            position: absolute;
            left: 0;
            top: 9px;
            font-size: 13px;
        }
        /* =====================================================
           SEMESTERS
        ===================================================== */
        .course-semesters {
            margin-top: 35px;
        }
        .semester-item {
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .semester-header {
            width: 100%;
            border: 0;
            background: #fafafa;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            cursor: pointer;
            text-align: left;
        }
        .semester-name {
            font-weight: 600;
        }
        .semester-meta {
            font-size: 12px;
            opacity: .65;
        }
        .semester-header i {
            transition: transform .25s ease;
        }
        .semester-item.open
        .semester-header i {
            transform: rotate(180deg);
        }
        .semester-content {
            display: none;
            padding: 18px;
            border-top: 1px solid #eeeeee;
        }
        /* =====================================================
           SUBJECTS
        ===================================================== */
        .subjects-list {
            display: grid;
            grid-template-columns:
                repeat(2, 1fr);
            gap: 10px;
        }
        .subject-item {
            padding: 13px 15px;
            border-radius: 8px;
            background: var(--light);
        }
        .subject-code {
            display: block;
            font-size: 11px;
            font-weight: 700;
            opacity: .6;
            margin-bottom: 3px;
        }
        .subject-name {
            font-weight: 600;
        }
        /* =====================================================
           EMPTY STATES
        ===================================================== */
        .course-empty {
            padding: 20px;
            border-radius: 10px;
            background: var(--light);
            text-align: center;
            opacity: .7;
        }
        /* =====================================================
           MOBILE
        ===================================================== */
        @media (max-width: 700px) {
            .courses-page {
                padding: 50px 0;
            }
            .course-accordion-header {
                padding: 18px;
            }
            .course-heading-left {
                gap: 12px;
            }
            .course-number {
                width: 40px;
                height: 40px;
            }
            .course-heading-text h2 {
                font-size: 17px;
            }
            .course-accordion-content {
                padding: 20px;
            }
            .course-info-grid {
                grid-template-columns: 1fr 1fr;
            }
            .subjects-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 450px) {
            .course-info-grid {
                grid-template-columns: 1fr;
            }
        }
        /* =========================================================
           ABOUT PAGE
        ========================================================= */
        .about-page {
            background: #fff;
        }
        /* =========================================================
           PAGE HERO
        ========================================================= */
        .about-page-hero {
            position: relative;
            padding: 100px 0 90px;
            overflow: hidden;
            background:
                linear-gradient(
                    135deg,
                    rgba(129, 135, 14, 0.96),
                    rgba(60, 65, 5, 0.96)
                );
            color: #fff;
        }
        .about-page-hero::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(255,255,255,.06);
            top: -180px;
            right: -100px;
        }
        .about-page-hero::after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(255,255,255,.04);
            bottom: -150px;
            left: -100px;
        }
        .about-page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
        }
        .about-page-hero .section-label {
            color: #fff;
            opacity: .9;
        }
        .about-page-hero h1 {
            margin: 12px 0 20px;
            font-size: clamp(38px, 5vw, 64px);
            line-height: 1.08;
            font-weight: 800;
        }
        .about-page-hero h1 span {
			display: block;
			background:
				linear-gradient(
					90deg,
					var(--primary-dark),
					var(--secondary)
				);
			-webkit-background-clip: text;
			background-clip: text;
			color: transparent;
        }
        .about-page-hero p {
            max-width: 720px;
            margin: 0;
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255,255,255,.88);
        }
        /* =========================================================
           INTRODUCTION
        ========================================================= */
        .about-introduction {
            padding: 90px 0;
        }
        .about-introduction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about-introduction-image {
            position: relative;
        }
        .about-introduction-image img {
            display: block;
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 22px;
            box-shadow: 0 25px 60px rgba(0,0,0,.12);
        }
        .about-introduction-image::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary)
            border-radius: 22px;
            top: 18px;
            left: 18px;
            z-index: -1;
        }
        .about-introduction-content .section-label {
            display: inline-block;
            margin-bottom: 12px;
        }
        .about-introduction-content h2 {
            margin: 0 0 20px;
            font-size: clamp(30px, 4vw, 46px);
            line-height: 1.2;
        }
        .about-introduction-content h2 span {
            color: var(--primary)
        }
        .about-introduction-content p {
            margin-bottom: 18px;
            color: #666;
            line-height: 1.8;
        }
        /* =========================================================
           MISSION / VISION
        ========================================================= */
        .about-values {
            padding: 90px 0;
            background: #f7f7f4;
        }
        .about-values-heading {
            max-width: 700px;
            margin: 0 auto 50px;
            text-align: center;
        }
        .about-values-heading h2 {
            margin: 12px 0 15px;
            font-size: clamp(30px, 4vw, 44px);
        }
        .about-values-heading h2 span {
            color: var(--primary)
        }
        .about-values-heading p {
            color: #666;
            line-height: 1.8;
        }
        .about-values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        .about-value-card {
            background: #fff;
            border-radius: 18px;
            padding: 35px 30px;
            box-shadow: 0 10px 35px rgba(0,0,0,.06);
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .about-value-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(0,0,0,.10);
        }
        .about-value-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            margin-bottom: 22px;
            background: rgba(129,135,14,.12);
            color: var(--primary)
            font-size: 27px;
        }
        .about-value-card h3 {
            margin: 0 0 12px;
            font-size: 22px;
        }
        .about-value-card p {
            margin: 0;
            color: #666;
            line-height: 1.75;
        }
        /* =========================================================
           STUDY CENTERS
        ========================================================= */
        .study-centers-section {
            padding: 100px 0;
        }
        .study-centers-heading {
            max-width: 750px;
            margin-bottom: 45px;
        }
        .study-centers-heading h2 {
            margin: 10px 0 15px;
            font-size: clamp(32px, 4vw, 48px);
        }
        .study-centers-heading h2 span {
            color: var(--primary)
        }
        .study-centers-heading p {
            margin: 0;
            color: #666;
            line-height: 1.8;
        }
        .study-centers-layout {
            display: grid;
            grid-template-columns: 370px 1fr;
            gap: 25px;
            align-items: stretch;
        }
        /* =========================================================
           CENTER LIST
        ========================================================= */
        .study-centers-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .study-center-card {
            width: 100%;
            border: 1px solid #e5e5e5;
            background: #fff;
            border-radius: 14px;
            padding: 20px;
            text-align: left;
            cursor: pointer;
            transition:
                background .25s ease,
                border-color .25s ease,
                transform .25s ease,
                box-shadow .25s ease;
        }
        .study-center-card:hover {
            transform: translateX(4px);
            border-color: rgba(129,135,14,.45);
            box-shadow: 0 8px 25px rgba(0,0,0,.07);
        }
        .study-center-card.active {
            background: var(--primary)
            border-color: var(--primary)
            color: var(--text);
            box-shadow: 0 12px 30px rgba(129,135,14,.25);
        }
        .study-center-card-top {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .study-center-number {
            flex: 0 0 40px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(129,135,14,.12);
            color: var(--primary)
            font-weight: 700;
        }
        .study-center-card.active .study-center-number {
            background: var(--primary);
            color: var(--surface);
        }
        .study-center-card h3 {
            margin: 0 0 5px;
            font-size: 17px;
            line-height: 1.35;
        }
        .study-center-short {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary)
        }
        .study-center-card.active .study-center-short {
            color: var(--text);
        }
        .study-center-address {
            display: block;
            margin-top: 12px;
            padding-left: 54px;
            font-size: 13px;
            line-height: 1.6;
            color: #777;
        }
        .study-center-card.active .study-center-address {
            color: var(--muted);
        }
        /* =========================================================
           MAP
        ========================================================= */
        .study-centers-map-wrapper {
            position: relative;
            min-height: 620px;
            border-radius: 20px;
            overflow: hidden;
            background: #eee;
            box-shadow: 0 15px 45px rgba(0,0,0,.12);
        }
        #studyCentersMap {
            width: 100%;
            height: 100%;
            min-height: 620px;
        }
        .map-overlay-title {
            position: absolute;
            z-index: 5;
            top: 20px;
            left: 20px;
            padding: 13px 18px;
            border-radius: 12px;
            background: rgba(255,255,255,.95);
            box-shadow: 0 5px 20px rgba(0,0,0,.12);
            pointer-events: none;
        }
        .map-overlay-title strong {
            display: block;
            color: #222;
            font-size: 15px;
        }
        .map-overlay-title span {
            color: #777;
            font-size: 12px;
        }
        /* =========================================================
           MAP INFO WINDOW
        ========================================================= */
        .map-info-window {
            max-width: 280px;
            padding: 4px;
        }
        .map-info-window h3 {
            margin: 0 0 8px;
            color: #222;
            font-size: 17px;
            line-height: 1.3;
        }
        .map-info-window p {
            margin: 0 0 14px;
            color: #666;
            font-size: 13px;
            line-height: 1.6;
        }
        .map-directions-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 13px;
            border-radius: 8px;
            background: var(--primary)
            color: #fff !important;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
        }
        .map-directions-link:hover {
            background: #686e08;
        }
        /* =========================================================
           LOCATION CTA
        ========================================================= */
        .about-location-cta {
            margin-top: 30px;
            padding: 35px;
            border-radius: 20px;
            background:
                linear-gradient(
                    135deg,
                    #81870e,
                    #676d08
                );
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .about-location-cta h3 {
            margin: 0 0 8px;
            font-size: 24px;
        }
        .about-location-cta p {
            margin: 0;
            color: rgba(255,255,255,.82);
        }
        .about-location-cta .btn {
            flex-shrink: 0;
            background: #fff;
            color: var(--primary)
        }
        /* =========================================================
           RESPONSIVE
        ========================================================= */
        @media (max-width: 1000px) {
            .about-introduction-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            .about-introduction-image {
                max-width: 700px;
                margin: 0 auto;
            }
            .about-values-grid {
                grid-template-columns: 1fr 1fr;
            }
            .study-centers-layout {
                grid-template-columns: 1fr;
            }
            .study-centers-list {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }
            .study-centers-map-wrapper {
                min-height: 550px;
            }
            #studyCentersMap {
                min-height: 550px;
            }
        }
        @media (max-width: 700px) {
            .about-page-hero {
                padding: 75px 0 70px;
            }
            .about-introduction {
                padding: 65px 0;
            }
            .about-values {
                padding: 65px 0;
            }
            .study-centers-section {
                padding: 70px 0;
            }
            .about-values-grid {
                grid-template-columns: 1fr;
            }
            .study-centers-list {
                grid-template-columns: 1fr;
            }
            .study-centers-map-wrapper,
            #studyCentersMap {
                min-height: 450px;
            }
            .about-location-cta {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px;
            }
            .about-introduction-image img {
                height: 400px;
            }
        }
        @media (max-width: 480px) {
            .about-page-hero p {
                font-size: 16px;
            }
            .study-centers-map-wrapper,
            #studyCentersMap {
                min-height: 400px;
            }
            .map-overlay-title {
                top: 12px;
                left: 12px;
            }
        }
