:root {
    --gold: #e1a809;
    --gold-light: #d4b55f;
    --dark-bg: #0a0805;
    --cream: #f0e8d0;
    --cream-muted: rgba(240, 232, 208, 0.65);
    --cream-dim: rgba(240, 232, 208, 0.40);
    --gold-border: rgba(201, 168, 76, 0.25);
    --gold-border-hover: rgba(201, 168, 76, 0.6);
    --form-bg: rgba(18, 14, 8, 0.94);
    --input-bg: rgba(255, 255, 255, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;

    align-items: center;
    justify-content: center;
    font-family: "Montserrat", "sans-serif";
}


/* ================= NAVBAR DESIGN ================= */

.custom-navbar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    transition: 0.4s ease;
}

.navbar-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.brand-logo img{
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
}

/* Menu */
.nav-menu{
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-menu a{
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s ease;
}

/* Hover Underline */
.nav-menu a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #C9A84C;
    transition: 0.3s ease;
}

.nav-menu a:hover{
    color: #C9A84C;
}

.nav-menu a:hover::after{
    width: 100%;
}

/* Button */
.nav-btn{
    background: #C9A84C;
    color: #111;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    border: 1px solid #C9A84C;
}

.nav-btn:hover{
    background: transparent;
    color: #fff;
}

/* Mobile Toggle */
.mobile-toggle{
    display: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .nav-menu{
        display: none;
    }

    .nav-btn{
        display: none;
    }

    .mobile-toggle{
        display: block;
    }

    .brand-logo img{
        width: 70px;
        height: 70px;
    }

}










/* ─── HERO SECTION ─── */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3) sepia(0.35);
    z-index: 0;
}



.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(10, 8, 5, 0.98) 0%,
            rgba(10, 8, 5, 0.90) 40%,
            rgba(10, 8, 5, 0.55) 65%,
            rgba(10, 8, 5, 0.10) 100%);
    z-index: 1;
}

.gold-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
}




/* ─── NAVBAR ─── */
.hero-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
 
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-name {
    font-family: "Montserrat", "sans-serif";
    font-size: 19px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-enquire {
 background: #dba827;
    border: 1px solid var(--gold);
    color: #ffffff;
    font-family: "Montserrat", "sans-serif";
    font-size: 13px;
    padding: 9px 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 7px;
    text-decoration: none;
    display: inline-block;
}

.btn-enquire:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* ─── BADGE ─── */
.admissions-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--gold-border);
    padding: 7px 16px;
    margin-bottom: 22px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-text {
    font-family: "Montserrat", "sans-serif";
      font-size: 26px;
    color: #ffffff;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ─── HEADLINE ─── */
.headline-main {
    font-family: "Montserrat", "sans-serif";
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.04;
    margin-bottom: 4px;
}

.headline-italic {
    font-family: "Montserrat", "sans-serif";
    font-size: clamp(38px, 5vw, 58px);
    font-style: italic;
    font-weight: 400;
       color: #ffffff;
    line-height: 1.1;
    display: block;
    margin-bottom: 22px;
}

.hero-subtext {
    font-family: "Montserrat", "sans-serif";
    font-size: 17px;
    font-weight: 300;
    color: var(--cream-muted);
    line-height: 1.65;
    max-width: 400px;
    margin-bottom: 36px;
}

/* ─── STATS ─── */
.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.stat-num {
    font-family: "Montserrat", "sans-serif";
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-family: "Montserrat", "sans-serif";
    font-size: 11px;
       color: rgb(255 255 255);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* ─── DIVIDER ─── */
.gold-divider {
    width: 52px;
    height: 1px;
    background: rgba(201, 168, 76, 0.4);
    margin: 20px 0 24px;
}

/* ─── FEATURE LIST ─── */
.feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 11px;
}

.feature-check {
    width: 17px;
    height: 17px;
    border: 1px solid var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 10px;
    height: 10px;
}

.feature-text {
    font-family: "Montserrat", "sans-serif";
    font-size: 18px;
    color: rgb(255 255 255);
    letter-spacing: 0.02em;
}

/* ─── FORM CARD ─── */
.form-card {
    border-radius: 20px;
    background: rgb(255 255 255);
    border: 1px solid var(--gold-border);
    padding: 32px 30px;
}
.form-card-title {
    font-family: "Montserrat", "sans-serif";
    font-size: 21px;
    font-weight: 700;
        color: #000000;
    margin-bottom: 5px;
}

.form-card-sub {
    font-family: "Montserrat", "sans-serif";
    font-size: 13px;
    color: var(--cream-dim);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.form-label-custom {
    display: block;
    font-family: "Montserrat", "sans-serif";
    font-size: 10px;
    color:#edb10b;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.form-control-custom {
    width: 100%;
    background: var(--input-bg) !important;
    border: 1px solid var(--gold-border) !important;
    border-radius: 0 !important;
   color: #040404 !important !important;
    font-family: 'EB Garamond', serif !important;
    font-size: 14px !important;
    padding: 9px 12px !important;
    outline: none;
    transition: border-color 0.2s;
    height: 38px;
}

.form-control-custom::placeholder {
   color: #040404 !important !important;
}

.form-control-custom:focus {
    border-color: var(--gold-border-hover) !important;
    box-shadow: none !important;
    background: var(--input-bg) !important;
   color: #040404 !important !important;
}

.form-select-custom {
    width: 100%;
    background: var(--input-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center !important;
    border: 1px solid var(--gold-border) !important;
    border-radius: 0 !important;
    color: rgba(5, 5, 5, 0.89) !important;
    font-family: 'EB Garamond', serif !important;
    font-size: 14px !important;
    padding: 9px 12px !important;
    height: 38px;
    appearance: none;
    cursor: pointer;
}

.form-select-custom:focus {
    border-color: var(--gold-border-hover) !important;
    box-shadow: none !important;
    background-color: var(--input-bg) !important;
   color: #040404 !important !important;
}

.form-select-custom option {
    background: #120e08;
    color: var(--cream);
}

.form-textarea-custom {
    height: 68px !important;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    border: none;
    border-radius: 0;
    color: var(--dark-bg);
    font-family: "Montserrat", "sans-serif";
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--gold-light);
}

.privacy-note {
    text-align: center;
    margin-top: 11px;
    font-family: "Montserrat", "sans-serif";
    font-size: 11px;
    color: rgba(240, 232, 208, 0.3);
    letter-spacing: 0.05em;
}

.mb-custom {
    margin-bottom: 11px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }

    .hero-overlay {
        background: rgba(10, 8, 5, 0.92);
    }

    .hero-navbar {
        padding: 20px 0 28px;
    }

    .stats-row {
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .form-card {
        padding: 22px 18px;
    }

    .stats-row {
        gap: 18px;
    }

    .stat-num {
        font-size: 24px;
    }
}


/* ─── PROGRAMS SECTION ─── */
.programs-section {
    background: #f5f0e8;
    padding: 90px 0 100px;
    position: relative;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eyebrow-line {
    width: 52px;
    height: 1px;
    background: var(--gold);
}


.eyebrow-text1 {
    color: #dba827;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-family: "Montserrat", "sans-serif";
}



.eyebrow-text {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-family: "Montserrat", "sans-serif";
}
.section-heading {
    font-family: "Montserrat", "sans-serif";
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: #1a150d;
    text-align: center;
    line-height: 1.12;
    margin-bottom: 18px;
}

.section-subtext {
    font-family: "Montserrat", "sans-serif";
    font-size: 17px;
    font-weight: 300;
    color: #6b5d45;
    text-align: center;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 60px;
}

/* ─── PROGRAM CARD ─── */
.program-card {
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-top: 3px solid var(--gold);
    padding: 32px 28px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    position: relative;
}

.program-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.program-card.featured {
    border-top: 3px solid #1a150d;
}

/* ─── CARD ICON ─── */
.card-icon-wrap {
    width: 54px;
    height: 54px;
    background: #1a150d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    border-radius: 6px;
}

.card-icon-wrap.amber {
    background: #C9A84C;
}

.card-icon-wrap.dark {
    background: #1a150d;
}

.card-icon-wrap.wine {
    background: #5a2a2a;
}

.card-icon-wrap.slate {
    background: #3a3350;
}

.card-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* ─── CARD BADGE ─── */
.card-badge {
    font-family: "Montserrat", "sans-serif";
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 500;
}

.badge-undergraduate {
    color: #b07d30;
    background: #fdf3e0;
}

.badge-popular {
    color: #fff;
    background: #1a150d;
}

.badge-postgraduate {
    color: #5a7a3a;
    background: #eef5e4;
}

.badge-professional {
    color: #4a3070;
    background: #ede8f8;
}

/* ─── CARD TITLE ─── */
.card-title-prog {
    font-family: "Montserrat", "sans-serif";
    font-size: 22px;
    font-weight: 700;
    color: #1a150d;
    line-height: 1.2;
    margin-bottom: 14px;
}

/* ─── CARD DESC ─── */
.card-desc {
    font-family: "Montserrat", "sans-serif";
    font-size: 15px;
    font-weight: 300;
    color: #5c4f3a;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 0;
}

/* ─── DETAIL LIST ─── */
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    padding-top: 16px;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "Montserrat", "sans-serif";
    font-size: 14px;
    color: #4a3f2d;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 15px;
    height: 15px;
}

/* ─── CARD FOOTER ─── */
.card-footer-prog {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn-card-enquire {
    background: #1a150d;
    border: none;
    color: #fff;
    font-family: "Montserrat", "sans-serif";
    font-size: 14px;
    letter-spacing: 0.08em;
    padding: 11px 24px;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-card-enquire:hover {
    background: var(--gold);
    color: #1a150d;
}

.btn-card-enquire.gold-btn {
    background: var(--gold);
    color: #1a150d;
}

.btn-card-enquire.gold-btn:hover {
    background: #1a150d;
    color: #fff;
}

/* =========================
   FACILITIES SECTION
========================= */

.facilities-section{
    position: relative;
    padding: 100px 0;
      background: #d88f24;
    overflow: hidden;
}

/* Background Lines */
.facilities-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            135deg,
            rgba(201,168,76,0.04) 25%,
            transparent 25%,
            transparent 50%,
            rgba(201,168,76,0.04) 50%,
            rgba(201,168,76,0.04) 75%,
            transparent 75%,
            transparent
        );
    background-size: 80px 80px;
    opacity: .35;
    pointer-events: none;
}

/* =========================
   HEADING
========================= */

.facility-heading{
    position: relative;
    z-index: 2;

    margin-bottom: 60px;
}

.section-eyebrow{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.section-eyebrow .line{
    width: 42px;
    height: 1px;
    background: #ffffff;
}

.eyebrow-text{
    color: #ffffff;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-family: "Montserrat", "sans-serif";
}

.facility-heading h2{
    font-size: 50px;
    line-height: 1.05;
    color: #f7f1e8;
    margin-bottom: 24px;
    font-family: "Montserrat", "sans-serif";
    font-weight: 700;
}

.facility-heading h2 span{
    color: #ffffff;
    font-style: italic;
    font-weight: 500;
}

.facility-heading p{
    max-width: 720px;
    color: rgba(255,255,255,.68);
    font-size: 20px;
    line-height: 1.8;
    font-family: "Montserrat", "sans-serif";
}

/* =========================
   GRID
========================= */

.facility-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 24px;
}

/* =========================
   CARD
========================= */

.facility-card{
    border-radius: 18px;
      background: linear-gradient(135deg, #292d36 0%, #33485c 100%);
   
    border: 1px solid rgba(148,163,184,0.15);
    padding: 34px 32px;
    transition: .35s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Glow Effect */
.facility-card::before{
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: rgba(59,130,246,0.12);
    border-radius: 50%;
    transition: .4s ease;
}

.facility-card:hover{
    transform: translateY(-8px);
    border-color: rgba(96,165,250,.45);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}


.facility-card:hover::before{
    transform: scale(1.2);
    background: rgba(255,255,255,0.12);
}

/* Icon Box */
.facility-icon{
    width: 56px;
    height: 43px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* Title */
.facility-card h4{
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 14px;
    font-family: "Montserrat", "sans-serif";
    font-weight: 600;
}

/* Text */
.facility-card h6{
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 1.8;
    font-family: "Montserrat", "sans-serif";
    margin: 0;
}


section.facilities-section h6 {
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 1.8;
    font-family: "Montserrat", "sans-serif";
    margin: 0;
}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .facility-grid{
        grid-template-columns: 2fr;
    }

    .facilities-section{
        padding: 80px 0;
    }

    .facility-card h4{
        font-size: 26px;
    }
}

@media(max-width:576px){

    .facility-heading h2{
        font-size: 42px;
    }

    .facility-heading p{
        font-size: 17px;
    }

    .facility-card{
        padding: 26px;
    }
}





/* =========================
   AFFILIATION SECTION
========================= */

.affiliation-section{
    background: #ece9e6;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Heading */

.affiliation-heading{
    margin-bottom: 50px;
}

.affiliation-heading span{
    display: inline-block;
    color: #b48a2d;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: "Montserrat", "sans-serif";
}

.affiliation-heading h2{
    font-size: clamp(34px,4vw,52px);
    font-family: "Montserrat", "sans-serif";
    font-weight: 700;
    color: #1a150d;
}

/* =========================
   LOGO SLIDER
========================= */

.logo-slider{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track{
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: scrollLogos 28s linear infinite;
}

/* =========================
   LOGO CARD
========================= */

.logo-card {
    border: 1px solid #dba827b3;
    width: 170px;
    height: 120px;
    background: #f9f9f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
    transition: .3s ease;
}

.logo-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.logo-card img{
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(0%);
}

/* =========================
   ANIMATION
========================= */

@keyframes scrollLogos {

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .logo-card{
        width: 130px;
        height: 100px;
    }

    .logo-card img{
        max-height: 60px;
    }

    .logo-track{
        gap: 18px;
    }
}
/* =========================
   CTA SECTION
========================= */

.cta-section {
    padding: 90px 72px;
    background: #ede7d9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background Symbol */

.cta-section::before {
    content: '⚖';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* =========================
   EYEBROW
========================= */

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 42px;
    height: 1px;
    background: white;
    opacity: .7;
}

/* =========================
   TITLE
========================= */

.section-title {
       font-size: 36px;
    line-height: 1.08;
    color: #1a150d;
    margin-bottom: 24px;
    font-family: "Montserrat", "sans-serif";
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.section-title br{
    display: block;
}

.section-title span{
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

/* =========================
   DESCRIPTION
========================= */

.section-desc {
    max-width: 760px;
    margin: 0 auto;
    color: #5d5242;
    font-size: 20px;
    line-height: 1.8;
    font-family: "Montserrat", "sans-serif";
    position: relative;
    z-index: 2;
}

/* =========================
   CONTACT INFO
========================= */

.cta-contact-info{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 22px;
    margin: 42px 0 34px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Box */

.contact-box{
    border-radius: 10px;
    background: rgb(229 229 229 / 55%);
    border: 1px solid rgba(201,168,76,.18);
    padding: 20px 24px;
    min-width: 280px;
    
    gap: 14px;
    transition: .35s ease;
    backdrop-filter: blur(6px);
}

.contact-box:hover{
    transform: translateY(-5px);
    border-color: rgba(201,168,76,.45);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

/* Icon */

.contact-icon{
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}

/* Text */

.contact-box small{
    display: block;
    color: #8b6d2f;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: "Montserrat", "sans-serif";
}

.contact-box a,
.contact-box span{
    color: #1a150d;
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    font-family: "Montserrat", "sans-serif";
    font-weight: 600;
}

/* =========================
   BUTTONS
========================= */

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .cta-section{
        padding: 80px 40px;
    }

    .section-title{
        font-size: 52px;
    }
}

@media(max-width:768px){

    .cta-contact-info{
        flex-direction: column;
    }

    .contact-box{
        width: 100%;
        min-width: 100%;
    }

    .section-desc{
        font-size: 17px;
    }
}

@media(max-width:576px){

    .cta-section{
        padding: 70px 20px;
    }

    .section-title{
        font-size: 28px;
    }

    .section-desc{
        font-size: 16px;
        line-height: 1.7;
    }

    .cta-section::before{
        font-size: 180px;
    }
}





/* =========================
   FOOTER
========================= */

.footer-section{
    background: #120b07;
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-radius: 0 0 22px 22px;
    overflow: hidden;
}

/* Wrapper */

.footer-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* =========================
   BRAND
========================= */

.footer-brand{
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo{
    color: #C9A84C;
    font-size: 20px;
}

.footer-name{
    color: #f4eee3;
    font-size: 28px;
    font-family: "Montserrat", "sans-serif";
    font-weight: 600;
}

/* =========================
   LINKS
========================= */

.footer-links{
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li a{
    color: rgba(255,255,255,.58);
    text-decoration: none;
    font-size: 15px;
    transition: .3s ease;
    font-family: "Montserrat", "sans-serif";
}

.footer-links li a:hover{
    color: #C9A84C;
}

/* =========================
   COPYRIGHT
========================= */

.footer-copy{
    color: rgba(255,255,255,.38);
    font-size: 14px;
    font-family: "Montserrat", "sans-serif";
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .footer-wrapper{
        flex-direction: column;
        text-align: center;
    }

    .footer-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
}

@media(max-width:576px){

    .footer-name{
        font-size: 24px;
    }

    .footer-links li a{
        font-size: 14px;
    }

    .footer-copy{
        font-size: 13px;
    }
}

.main-brand-icon img {
    margin-top: 86px;
    padding: 29px;
    width: 200px;
}


a.navbar-brand img {
       width: 190px;
}
.navbar{
    background-color: white;
}
.footer-brand img {
    width: 108px;
}


/* =========================
   ABOUT SECTION
========================= */

.about-modern-section{
    position: relative;
    padding: 110px 0;
    background: #f8fafc;
    overflow: hidden;
}

/* =========================
   IMAGE AREA
========================= */

.about-image-wrapper{
    position: relative;
}

.about-main-image{
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.about-main-image:hover img{
    transform: scale(1.05);
}

/* Floating Card */
.experience-card{
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 24px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: #fff;
    min-width: 220px;
}

.experience-card h3{
    font-size: 42px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #38bdf8;
}

.experience-card p{
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* =========================
   CONTENT
========================= */

.about-content{
    padding-left: 30px;
}

.about-tag{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.about-tag span{
    width: 50px;
    height: 2px;
    background: #38bdf8;
}

.about-content h2{
    font-size: 54px;
    line-height: 1.1;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 30px;
    font-family: "Montserrat", "sans-serif";
}

.about-content h2 span{
    color: #2563eb;
    font-style: italic;
}

.about-text{
    text-align: justify;
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 18px;
}

/* =========================
   STATS GRID
========================= */

.stats-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card{
    background: #ffffff;
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.stat-card:hover{
    transform: translateY(-6px);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.stat-card h3{
    font-size: 36px;
    margin-bottom: 10px;
    color: #2563eb;
    font-weight: 700;
    transition: 0.3s ease;
}

.stat-card p{
    margin: 0;
    color: #475569;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.stat-card:hover h3,
.stat-card:hover p{
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-modern-section{
        padding: 80px 0;
    }

    .about-content{
        padding-left: 0;
    }

    .about-content h2{
        font-size: 42px;
    }

    .experience-card{
        right: 20px;
        bottom: 20px;
    }
}

@media(max-width:576px){

    .about-content h2{
        font-size: 34px;
    }

    .stats-grid{
        grid-template-columns: 1fr;
    }

    .experience-card{
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        width: 100%;
    }
}

.facility-icon i {
    color: white;
}

.facility-card p {
        font-size: 14px;
    color: white;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: 20px;
    font-weight: var(--bs-nav-link-font-weight);
    color: rgb(3, 3, 3);
    text-decoration: none;
    background: 0px 0px;
    border: 0px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

/* ================= FLOATING CONTACT BUTTONS ================= */

.floating-contact{
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Common Button Style */
.float-btn{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}

/* Call */
.call-btn{
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* WhatsApp */
.whatsapp-btn{
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Hover */
.float-btn:hover{
    transform: scale(1.1);
    color: #fff;
}

/* Pulse Animation */
@keyframes pulse{
    0%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
    }
    70%{
        box-shadow: 0 0 0 14px rgba(0,0,0,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* Mobile */
@media(max-width:576px){

    .floating-contact{
        right: 15px;
        bottom: 15px;
    }

    .float-btn{
        width: 52px;
        height: 52px;
        font-size: 21px;
    }
}



.top-banner-text h5 {
    font-weight: 900;
}

.top-banner-text {
    font-weight: 900;
    border-radius: 6px;
    margin-bottom: 16px;
    padding: 4px;
    width: max-content;
    background-color: #dba827;
    color: #173e78;
    text-transform: uppercase;
}




section.hero-section.mobile-form {
    display: none !important;
}


.hero-section{
       min-height:100vh;
}

@media (max-width: 550px) and (min-width: 320px) {
  .top-banner-text h5 {
    font-weight: 900;
        font-size: 14px;
}

.form-card.desktop-form {
    display: none !important;
}


.badge-text {
    font-family: "Montserrat", "sans-serif";
    font-size: 15px !important;
    color: #ffffff;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.headline-main {
    font-family: "Montserrat", "sans-serif";
    font-size: 20px !important;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.04;
    margin-bottom: 4px;
}
.feature-text {
    font-family: "Montserrat", "sans-serif";
    font-size: 12px !important;
    color: rgb(255 255 255);
    letter-spacing: 0.02em;
}
.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 23px !important;
}

section.hero-section.mobile-form {
    display: contents !important;
}
.hero-section{
        min-height: 61vh !important; 
}
}

.affiliation-section{
    background:#f8f9fa;
}

.affiliation-heading .sub-title{
    display:inline-block;
    color:#0d8b5a;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:10px;
    text-transform:uppercase;
    font-size:14px;
}

.affiliation-heading h2{
    font-size:40px;
    font-weight:700;
    color:#222;
}

.logo-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.logo-card:hover{
    transform:translateY(-5px);
}

.logo-card img{
    max-width:100%;
    max-height:80px;
    object-fit:contain;
}

 .learning-section {
        background: linear-gradient(135deg, #DB6B1C 0%, #DF8D1A 100%);
        position: relative;
        overflow: hidden;
    }

    .learning-section::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 250px;
        height: 250px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .learning-section::after {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 50%;
    }

    .learning-content {
        position: relative;
        z-index: 2;
    }

    .section-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        backdrop-filter: blur(6px);
    }

    .learning-content h2 {
        color: #fff;
        font-size: 48px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .title-line {
        width: 80px;
        height: 4px;
        background: #fff;
        border-radius: 10px;
        margin-bottom: 25px;
    }

    .learning-content p {
        color: rgba(255, 255, 255, 0.92);
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 20px;
    }

    .award-box {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.12);
        padding: 18px 20px;
        border-radius: 18px;
        margin-top: 30px;
        backdrop-filter: blur(10px);
    }

    .award-icon {
        width: 60px;
        height: 60px;
        background: #fff;
        color: #DB6B1C;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        flex-shrink: 0;
    }

    .award-text {
        color: #fff;
        font-size: 15px;
        line-height: 1.7;
    }

    .explore-btn {
        display: inline-block;
        margin-top: 35px;
        background: #fff;
        color: #DB6B1C;
        padding: 14px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: 0.3s ease;
    }

    .explore-btn:hover {
        background: #1b1b1b;
        color: #fff;
        transform: translateY(-3px);
    }

    .learning-image {
        position: relative;
        text-align: center;
        z-index: 2;
    }

    .image-shape {
        position: absolute;
        width: 100%;
        height: 100%;
        /*background: rgba(255, 255, 255, 0.12);*/
        border-radius: 40px;
        top: 20px;
        left: 20px;
        z-index: -1;
    }

    .learning-image img {
        padding: 20px;
        border-radius: 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        position: relative;
        z-index: 2;
    }

    @media(max-width:991px) {
        .learning-content h2 {
            font-size: 38px;
        }

        .learning-image {
            margin-top: 20px;
        }
    }

    @media(max-width:576px) {
        .learning-content h2 {
            font-size: 30px;
        }

        .award-box {
            flex-direction: column;
            text-align: center;
        }

        .explore-btn {
            width: 100%;
            text-align: center;
        }
    }






