/* 
 * Sikkim Global Institute of Learning (SGIL) - Main Stylesheet
 * Custom CSS Design System
 */

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

:root {
    --primary-navy: #062B52;
    --dark-navy: #031D38;
    --gold: #C89A35;
    --light-gold: #DDB45A;
    --dark-gold: #AA7F22;
    --white: #FFFFFF;
    --bg-light: #F5F8FC;
    --text-main: #14253D;
    --text-muted: #5F738E;
    --border-color: #E2E8F0;
    --card-shadow: 0 10px 30px rgba(6, 43, 82, 0.07);
    --hover-shadow: 0 15px 35px rgba(6, 43, 82, 0.14);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1280px;
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.25;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styling */
.section {
    padding: 90px 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark-navy {
    background-color: var(--dark-navy);
    color: var(--white);
}

.bg-navy {
    background-color: var(--primary-navy);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.section-title.text-white {
    color: var(--white);
}

.section-title.text-gold {
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 3px;
    background: var(--primary-navy);
    right: -15px;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 154, 53, 0.35);
}

.btn-navy {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.btn-navy:hover {
    background-color: var(--dark-navy);
    border-color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 43, 82, 0.25);
}

.btn-outline-navy {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline-navy:hover {
    background-color: var(--primary-navy);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-navy);
    border-color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

/* ====================================================
   1. TOP BAR
   ==================================================== */
.top-bar {
    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--light-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--gold);
}

.top-bar-info a:hover {
    color: var(--gold);
}

/* ====================================================
   2. MAIN HEADER & NAVIGATION
   ==================================================== */
.main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--primary-navy);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-cta {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-navy);
    cursor: pointer;
}

/* ====================================================
   3. HERO SECTION
   ==================================================== */
.hero-section {
    position: relative;
    background: var(--dark-navy);
    color: var(--white);
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 29, 56, 0.95) 0%, rgba(3, 29, 56, 0.8) 50%, rgba(3, 29, 56, 0.2) 100%);
    z-index: 2;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 650px;
}

.hero-welcome-badge {
    display: inline-block;
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title-main {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-title-gold {
    color: var(--gold);
    display: block;
}

.hero-supporting-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: var(--gold);
    width: 30px;
    border-radius: 6px;
}

/* ====================================================
   4. QUICK ACCESS CARDS
   ==================================================== */
.quick-access-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.quick-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(6, 43, 82, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.quick-card::top-border {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--gold);
}

.quick-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 154, 53, 0.12);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.quick-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.quick-card-list {
    margin-bottom: 20px;
    font-size: 13.5px;
    color: var(--text-main);
}

.quick-card-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-card-list i {
    color: var(--gold);
    font-size: 12px;
}

.quick-card-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quick-card-link:hover {
    color: var(--gold);
}

/* ====================================================
   5. ABOUT SGIL SECTION
   ==================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-left .section-tag {
    margin-bottom: 6px;
}

.about-content-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-light);
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.pillar-icon {
    width: 38px;
    height: 38px;
    background: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pillar-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-navy);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
}

/* ====================================================
   6. ACADEMIC PROGRAMS
   ==================================================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.program-card {
    background: var(--white);
    padding: 40px 24px 30px 24px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--gold);
}

.program-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--primary-navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 6px 16px rgba(6, 43, 82, 0.15);
}

.program-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.program-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.program-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.program-link:hover {
    color: var(--gold);
}

/* ====================================================
   7. COURSES SECTION
   ==================================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.course-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--hover-shadow);
}

.course-icon-header {
    width: 50px;
    height: 50px;
    background: rgba(6, 43, 82, 0.06);
    color: var(--primary-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.course-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.course-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ====================================================
   8. WHY CHOOSE SGIL (DARK NAVY SECTION)
   ==================================================== */
.why-sgil-section {
    background-color: var(--dark-navy);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-item {
    text-align: center;
    padding: 30px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-item:last-child {
    border-right: none;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
}

.why-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ====================================================
   9. FLEXIBLE LEARNING
   ==================================================== */
.flexible-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.flexible-img {
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.flexible-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.flex-feature-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.flex-feature-box i {
    font-size: 26px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.flex-feature-box h4 {
    font-size: 15px;
    color: var(--primary-navy);
}

/* ====================================================
   10. CAMPUS LIFE & STATS
   ==================================================== */
.campus-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    border-top: 3px solid var(--gold);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
}

.campus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.campus-gallery-grid img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.campus-gallery-grid img:hover {
    transform: scale(1.03);
}

/* ====================================================
   11. TESTIMONIALS
   ==================================================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-quote {
    font-size: 14.5px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
}

.author-course {
    font-size: 12.5px;
    color: var(--gold);
    font-weight: 600;
}

.rating-stars {
    color: var(--gold);
    font-size: 13px;
    margin-top: 4px;
}

/* ====================================================
   12. LATEST NEWS & EVENTS
   ==================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

.news-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.date-day {
    font-size: 16px;
    font-weight: 800;
    display: block;
    color: var(--gold);
}

.date-month {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.news-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.news-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    color: var(--gold);
}

/* ====================================================
   13. PARTNERS STRIP
   ==================================================== */
.partners-section {
    padding: 45px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo-item img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ====================================================
   14. ADMISSION CTA BANNER
   ==================================================== */
.cta-banner {
    background-color: var(--primary-navy);
    padding: 60px 0;
    color: var(--white);
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 154, 53, 0.15);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.cta-title {
    font-size: 30px;
    color: var(--white);
    margin-bottom: 4px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.cta-btn-group {
    display: flex;
    gap: 16px;
}

/* ====================================================
   15. CONTACT US SECTION & FORM
   ==================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-list {
    margin-top: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(6, 43, 82, 0.08);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text-block h5 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.info-text-block p, .info-text-block a {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 600;
}

.enquiry-form-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #FAFAFA;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(6, 43, 82, 0.1);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ====================================================
   16. FOOTER
   ==================================================== */
.main-footer {
    background-color: var(--dark-navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
    gap: 30px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 55px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-motto {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-grid, .vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.vision-mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 0;
}

/* ====================================================
   RESPONSIVE STYLES & MOBILE OPTIMIZATIONS
   Breakpoints: 1200px, 1024px, 768px, 480px, 390px, 360px
   ==================================================== */

@media (max-width: 1200px) {
    :root {
        --container-max: 960px;
    }
    .quick-cards-grid, .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 24px 12px;
    }
}

@media (max-width: 1024px) {
    :root {
        --container-max: 720px;
    }
    .section {
        padding: 65px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .hero-title-main {
        font-size: 38px;
    }
    .hero-supporting-text {
        font-size: 16px;
    }
    .programs-grid, .courses-grid, .news-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-header .container {
        height: 72px;
    }
    
    .logo-brand img {
        height: 46px;
    }
    
    .brand-title {
        font-size: 14px;
    }
    
    .brand-tagline {
        font-size: 8px;
    }
    
    .mobile-toggle {
        display: block;
        padding: 8px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 3px solid var(--gold);
        z-index: 999;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .header-cta-group {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-section .container {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    
    .hero-title-main {
        font-size: 30px;
    }
    
    .hero-supporting-text {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-btn-group .btn {
        width: 100%;
    }
    
    .quick-access-wrapper {
        margin-top: -30px;
    }
    
    .quick-cards-grid, .programs-grid, .courses-grid, .news-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .about-grid, .flexible-grid, .campus-grid, .contact-grid, .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-content-left h2 {
        font-size: 28px;
    }
    
    .about-image-wrapper img, .flexible-img {
        height: 280px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .why-item {
        padding: 20px 10px;
    }
    
    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cta-btn-group .btn {
        width: 100%;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .enquiry-form-card {
        padding: 24px 18px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents iOS Safari auto-zoom on input focus */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 24px;
    }
    .hero-title-main {
        font-size: 25px;
    }
    .about-pillars-grid, .flexible-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .stat-number {
        font-size: 28px;
    }
    .campus-gallery-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .campus-gallery-grid img {
        height: 200px;
    }
    .partner-logo-item img {
        max-height: 28px;
    }
}

@media (max-width: 390px) {
    .brand-title {
        font-size: 12px;
    }
    .hero-title-main {
        font-size: 22px;
    }
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

