/* ============================= */
/* ROOT VARIABLES + GLOBAL RESET */
/* ============================= */
:root {
    --navy: #071a3d;
    --gold: #d4af37;
    --bg: #f4f6fa;
    --card: #ffffff;
    --muted: #6b7280;
    --glass: rgba(255, 255, 255, 0.6);
    --radius: 16px;
    --shadow: 0 12px 30px rgba(7, 26, 61, 0.08);
    --soft-shadow: 0 6px 18px rgba(7, 26, 61, 0.06);
    --max-width: 1200px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

* {
    box-sizing: border-box;
}

body {
    height: 100%;
    margin: 0;
    background: linear-gradient(180deg, var(--bg), #ffffff 50%);
    color: #102029;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.45;
    font-size: 16px;
}

/* ============================= */
/*            HEADER             */
/* ============================= */
.header {
    background: var(--card);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 60;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(7, 33, 68, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    width: calc(100% - 32px);
    max-width: var(--max-width);
    margin: 0 auto;
}

/* ============================= */
/*   HEADER BRAND (LOGO + NAME)  */
/* ============================= */
.header-brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-logo {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-brand h1 {
    margin: 0;
    font-size: 40px;
    color: var(--navy);
    letter-spacing: 0.2px;
}

.header-brand-small {
    font-size: 18px;
    display: flex;
    align-items: center;
    color: var(--muted);
}

/* ============================= */
/*          HEADER MENU          */
/* ============================= */
.header-menu-container ul {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu-container a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.header-menu-container a:hover {
    color: var(--navy);
}

/* ============================= */
/*        MOBILE MENU            */
/* ============================= */

.mobile-menu-toggle {
    display: none;
    width: 32px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 4px;
    width: 100%;
    background: var(--navy);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Cross Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--card);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    z-index: 150;
}

.mobile-menu a {
    padding: 16px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    border-bottom: 1px solid rgba(7, 33, 68, 0.08);
}

.mobile-menu a:hover {
    background: rgba(199, 155, 46, 0.08);
}

/* Show menu */
.mobile-menu.active {
    display: flex;
}

/* ============================= */
/*        HEADER BUTTONS         */
/* ============================= */
.header-btn-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-enroll-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: all .18s ease;
    box-shadow: 0 6px 16px rgba(2, 8, 23, 0.06);
    background: linear-gradient(90deg, var(--navy), #163a63);
    color: white;
}

.header-enroll-now-btn:focus {
    outline: 3px solid rgba(199, 155, 46, 0.12);
}

.header-enroll-now-btn:hover {
    transform: translateY(3px);
    box-shadow: 0 10px 30px rgba(7, 33, 68, 0.12);
}

/* ============================= */
/*         MAIN CONTAINER        */
/* ============================= */
.main-container {
    width: calc(100% - 32px);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0px 0px;
}

/* ============================= */
/*           ALL SECTION         */
/* ============================= */
section {
    scroll-margin-top: 120px;
    /* adjust if needed */
}

.all-section-heading {
    color: var(--navy);
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

/* ============================= */
/*          HOME SECTION         */
/* ============================= */
.home {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
    padding: 30px 0 20px 0;
    position: relative;
}

.home::before {
    content: "";
    position: absolute;
    inset: 0 -10px;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.15), transparent 60%);
    z-index: -1;
}

/* ============================= */
/*       HOME LEFT CONTENT       */
/* ============================= */
.home-left-container {
    align-self: start;
    height: 600px;
    overflow: hidden;
}

.home-eyebrow {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold), #e1b955);
    padding: 6px 12px;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    font-size: 13px;
}

.home-h-title {
    font-size: 45px;
    margin: 16px 0;
    color: var(--navy);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.home-main-title {
    font-size: 50px;
    margin: 0;
    margin-top: -10px;
    color: var(--gold);
    line-height: 1.08;
}

.home-h-lead {
    color: var(--muted);
    margin-bottom: 20px;
}

/* ============================= */
/*           HOME STATS          */
/* ============================= */
.home-status-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    width: 600px;
}

.home-status {
    background: linear-gradient(180deg, rgba(7, 33, 68, 0.04), transparent);
    padding: 10px 12px;
    border-radius: 12px;
    width: 180px;
}

.home-status b {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.home-status span {
    font-size: 13px;
    color: var(--muted);
}

/* ============================= */
/*         HOME BUTTONS          */
/* ============================= */
.home-btn-container {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 12px 40px;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: all .18s ease;
    box-shadow: 0 6px 16px rgba(2, 8, 23, 0.06);
}

.home-admission-btn {
    background: linear-gradient(90deg, var(--navy), #163a63);
    color: #fff;
}

.home-admission-btn:hover {
    transform: translateY(3px);
}

.home-courses-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.home-courses-btn:hover {
    background: var(--gold);
    color: #fff;
}

/* ============================= */
/*       HOME RIGHT CONTENT      */
/* ============================= */
.home-right-container {
    align-self: start;
    position: relative;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: var(--card);
}

/* ============================= */
/*          HOME SLIDER          */
/* ============================= */
.home-slider {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.home-img-slider {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.home-img-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.home-slider-dots {
    position: absolute;
    left: 14px;
    bottom: 12px;
    display: flex;
    gap: 8px;
}

.home-slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    display: inline-block;
    cursor: pointer;
}

.home-slider-dots span.active {
    background: var(--gold);
}

/* ============================= */
/*       HOME TRUST BADGES       */
/* ============================= */
.trust-badge-container {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    grid-template-columns: 1fr 1fr;
}

.trust-badge {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(212, 175, 55, 0.08);
    color: var(--navy);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: small;
    transition: all 0.2s ease;
}

.trust-badge:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    fill: var(--gold);
}

/* ============================= */
/*       COURSES SECTION         */
/* ============================= */
/* ============================= */
/*     COURSES CARD CONTAINER    */
/* ============================= */
.course-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 12px;
}

.course-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(7, 33, 68, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 210px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7, 26, 61, 0.12);
}

.course-card::before {
    content: "";
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), transparent);
    position: absolute;
    top: 0;
    left: 0;
}

.course-card h3 {
    margin: 8px 0 6px;
    color: var(--navy);
    font-weight: 700;
    font-size: 17px;
}

.course-th-style {
    font-size: small;
}

.course-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.course-btn-container {
    margin-top: auto;
}

.course-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    border: 2px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    transition: all .18s ease;
    box-shadow: 0 6px 16px rgba(2, 8, 23, 0.06);
    background: transparent;
}

.course-btn:hover {
    background: var(--gold);
    color: #fff;
}

/* ============================= */
/*    COURSE DETAIL CARD MODAL   */
/* ============================= */
.course-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.course-modal.active {
    display: flex;
}

.course-modal-card {
    background: var(--card);
    width: 90%;
    max-width: 480px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: scaleIn 0.25s ease;
    text-align: center;
}

.course-modal-card h2 {
    margin-top: 0;
    color: var(--navy);
}

.course-modal-card p {
    text-align: left;
    color: var(--muted);
    font-size: 15px;
}

.course-modal-card ul {
    text-align: left;
    margin: 16px 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 14px;
}

.modal-close-btn {
    margin-top: 20px;
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    background: linear-gradient(90deg, var(--navy), #163a63);
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================= */
/*        FACULTY SECTION        */
/* ============================= */
/* ============================= */
/*         FACULTY CARDS         */
/* ============================= */
.faculty-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.faculty-card {
    background: var(--card);
    padding: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faculty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7, 26, 61, 0.12);
}

.faculty-avatar {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e9eef5, #ffffff);
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    color: var(--navy);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.faculty-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    display: none;
}

/* Hide initials when image exists */
.faculty-avatar:not(.no-image) span {
    display: block;
}

/* Show image ONLY if available */
.faculty-avatar:not(.no-image) img {
    display: block;
}

/* Optional premium ring */
.faculty-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px rgba(212, 175, 55, 0.35);
    pointer-events: none;
}

.faculty-card h4 {
    margin: 10px 0 4px;
}

.faculty-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* ============================= */
/*          ABOUT SECTION        */
/* ============================= */
/* ============================= */
/*        ABOUT CONTAINER        */
/* ============================= */
.about-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    margin-top: 18px;
}

.about-content {
    background: var(--card);
    padding: 10px 20px;
    margin-top: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(7, 33, 68, 0.04);
}

.about-content h3 {
    margin-top: 8px;
    color: var(--navy);
}

.about-content p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 10px;
}

.about-list {
    margin-top: 14px;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
}

.about-list li {
    margin-bottom: 6px;
}

/* ============================= */
/*        ABOUT CARDS            */
/* ============================= */
.about-cards {
    display: grid;
    gap: 14px;
}

.about-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(7, 33, 68, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7, 26, 61, 0.12);
}

.about-card strong {
    display: block;
    color: var(--navy);
    margin-bottom: 6px;
}

.about-card p {
    font-size: 14px;
    color: var(--muted);
}

/* ============================= */
/*       CONTACT US SECTION      */
/* ============================= */
/* ============================= */
/*  LOCATION & CONTACT COTAINER  */
/* ============================= */
.location-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 18px;
}

/* ============================= */
/*          CONTACT CARD         */
/* ============================= */
.contact-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    border: 1px solid rgba(7, 33, 68, 0.04);
}

.contact-big-heading {
    margin-top: 0;
}

/* ============================= */
/*         LOCATION CARD         */
/* ============================= */
.location-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.location-big-heading {
    margin-top: 0;
}

.map-embed {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================= */
/*    FIXED CONTACT BUTTONS   */
/* ============================= */
.contact-btn-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.contact-btn img {
    width: 70%;
    height: 70%;
    border-radius: 50%;
}

.phone:hover {
    background: linear-gradient(135deg, #6EE7B7, #219653);
}

.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.email:hover {
    background: linear-gradient(135deg, #FF6B6B, #E63946);
}

.instagram:hover {
    background: linear-gradient(135deg, #DD2A7B, #8134AF);
}

.address:hover {
    background: linear-gradient(135deg, #FFA500, #FF6347);
}

/* ============================= */
/*            FOOTER             */
/* ============================= */
footer {
    padding: 40px 0;
    margin-top: 36px;
    background: #f1f4f8;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    width: calc(100% - 32px);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0px 0px;
}

.footer-big-heading {
    margin: 0 0 8px;
}

.footer-small-heading {
    font-size: 13px;
    color: var(--muted);
}

/* ============================= */
/*       FOOTER FOLLOW US        */
/* ============================= */
.footer-follow-us-container {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-follow-us-muted {
    color: var(--muted);
}

.social-icon img {
    width: 33px;
    height: 33px;
    margin-top: 5px;
    transition: 0.2s ease-in-out;
}

.social-icon img:hover {
    transform: scale(1.2);
}

.footer-quick-link-container ul {
    display: block;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-quick-link-container a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.footer-quick-link-container a:hover {
    color: var(--navy);
}

.footer-last-small {
    text-align: center;
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
}

/* ============================= */
/*     SIMPLE MOBILE HEADER      */
/*     (NO MENU VERSION)         */
/* ============================= */

@media (max-width: 768px) {

    /* ============================= */
    /*           ALL SECTION         */
    /* ============================= */
    section {
        scroll-margin-top: 90px;
    }

    .all-section-heading {
        font-size: 28px;
    }

    /* ============================= */
    /*            HEADER             */
    /* ============================= */
    .header-container {
        padding: 10px 0;
        justify-content: unset;
    }

    .header-logo {
        width: 60px;
        height: 60px;
    }

    .header-brand h1 {
        font-size: 20px;
        line-height: 1.2;
    }

    .header-brand-small {
        font-size: 15px;
    }

    .header-menu-container {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-enroll-now-btn {
        display: none;
    }

    /* ============================= */
    /*          HOME SECTION         */
    /* ============================= */
    .home {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 10px 0;
    }

    .home-left-container {
        height: 500px;
    }

    .home-eyebrow {
        font-size: 12px;
        padding: 5px 10px;
    }

    .home-h-title {
        font-size: 25px;
        margin: 10px 0;
        line-height: 1.2;
    }

    .home-main-title {
        font-size: 30px;
    }

    .home-h-lead {
        font-size: 14px;
    }

    /* ============================= */
    /*          HOME STATS           */
    /* ============================= */
    .home-status-container {
        width: 400px;
    }

    .home-status {
        width: calc(30% - 5px);
        min-width: unset;
        padding: 8px;
    }

    .home-status b {
        font-size: 10px;
    }

    .home-status span {
        font-size: 9px;
    }

    /* ============================= */
    /*         HOME BUTTONS          */
    /* ============================= */
    .home-btn {
        padding: 8px 20px;
    }

    /* ============================= */
    /*       HOME RIGHT CONTENT      */
    /* ============================= */
    .home-right-container {
        order: 2;
        padding: 12px;
    }

    /* ============================= */
    /*          HOME SLIDER          */
    /* ============================= */
    .home-slider {
        height: 240px;
    }

    .home-img-slider img {
        height: 240px;
    }

    .home-slider-dots span {
        width: 7px;
        height: 7px;
    }

    /* ============================= */
    /*        TRUST BADGES           */
    /* ============================= */
    .trust-badge {
        font-size: 10px;
        padding: 6px 10px;
    }

    /* ============================= */
    /*       COURSES SECTION         */
    /* ============================= */
    /* ============================= */
    /*     COURSES CARD CONTAINER    */
    /* ============================= */
    .course-card-container {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 16px;
    }

    .course-card {
        padding: 14px;
        text-align: center;
        height: 210px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .course-card h3 {
        font-size: 13px;
    }

    .course-th-style {
        font-size: 8px;
    }

    .course-card p {
        font-size: 12px;
        margin-top: 6px;
        text-align: start;
    }

    .course-btn-container {
        margin-top: auto;
    }

    .course-btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
        padding: 12px;
        font-size: 14px;
    }

    /* ============================= */
    /*    COURSE DETAIL CARD MODAL   */
    /* ============================= */
    .course-modal-card {
        width: 92%;
        padding: 18px;
    }

    .course-modal-card h2 {
        font-size: 20px;
    }

    .course-modal-card p,
    .course-modal-card ul {
        font-size: 14px;
    }

    /* ============================= */
    /*        FACULTY SECTION        */
    /* ============================= */
    /* ============================= */
    /*         FACULTY CARDS         */
    /* ============================= */
    .faculty-card-container {
        grid-template-columns: 1fr 1fr;
        /* 2 cards per row */
        gap: 12px;
        margin-top: 16px;
    }

    .faculty-card {
        padding: 12px;
    }

    .faculty-avatar {
        width: 70px;
        height: 70px;
        font-size: 16px;
    }

    .faculty-card h4 {
        font-size: 14px;
        margin-top: 8px;
    }

    .faculty-card p {
        font-size: 12px;
    }

    /* ============================= */
    /*         ABOUT SECTION         */
    /* ============================= */
    /* ============================= */
    /*        ABOUT CONTAINER        */
    /* ============================= */
    .about-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-content {
        padding: 18px;
    }

    .about-content h3 {
        font-size: 18px;
    }

    .about-content p,
    .about-list,
    .about-card p {
        font-size: 14px;
    }

    /* ============================= */
    /*           CONTACT US          */
    /* ============================= */
    /* ============================= */
    /*  LOCATION & CONTACT COTAINER  */
    /* ============================= */
    .location-contact-container {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 16px;
    }

    /* ============================= */
    /*          CONTACT CARD         */
    /* ============================= */
    .contact-card {
        padding: 16px;
    }

    .contact-big-heading {
        font-size: 16px;
        text-align: center;
    }

    .contact-card p {
        font-size: 14px;
    }

    /* ============================= */
    /*         LOCATION CARD         */
    /* ============================= */
    .location-card {
        padding: 16px;
    }

    .location-big-heading {
        font-size: 16px;
        text-align: center;
    }

    .map-embed {
        height: 220px;
    }

    /* ============================= */
    /*    FIXED CONTACT BUTTONS   */
    /* ============================= */
    .contact-btn-container {
        right: 10px;
        gap: 10px;
    }

    .contact-btn {
        width: 48px;
        height: 48px;
    }

    .contact-btn img {
        width: 65%;
        height: 65%;
    }

    /* ============================= */
    /*            FOOTER             */
    /* ============================= */
    footer {
        padding: 30px 0 20px;
        margin-top: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        /* Stack all sections */
        gap: 20px;
    }

    .footer-big-heading {
        font-size: 16px;
        text-align: center;
    }

    .footer-small-heading {
        font-size: 13px;
        line-height: 1.6;
    }

    /* ============================= */
    /*       FOOTER FOLLOW US        */
    /* ============================= */
    .footer-follow-us-container {
        margin-top: 10px;
        text-align: center;
    }

    .footer-follow-us-muted {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
    }

    .social-icon img {
        width: 30px;
        height: 30px;
        margin: 0 8px;
    }

    .footer-quick-link-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-quick-link-container ul {
        display: flex;
        gap: 20px;
    }

    .footer-quick-link-container a {
        font-size: small;
    }

    .footer-last-small {
        font-size: 12px;
        padding: 10px 12px 0;
        line-height: 1.4;
    }
}