/* =========================================================
   ADNI ISLAMIC SCHOOL - MASTER HOME CSS INDEX
   =========================================================
   00. GLOBAL / BRAND VARIABLES / TYPOGRAPHY
   01. NAVBAR
   02. HERO
   03. WHY CHOOSE ADNI
   04. EDUCATION JOURNEY / TIMELINE
   05. QGDP EDUCATIONAL FOUNDATION
   06. CURRICULUM / TABS
   07. TESTIMONIALS
   08. OUR TEAMS
   09. LATEST UPDATES / SOCIAL FEED
   10. ADMISSION
   11. FAQ
   12. CONTACT
   13. FOOTER
   14. FLOATING UI / SEARCH
   15. RESPONSIVE / DARK MODE
   ========================================================= */

:root {
            --primary: #273480; /* Deep Royal Blue (Requested Font Color) */
            --primary-light: #3b4ea3;
            --secondary: #c5a253; /* Gold Accent kept for luxury contrast */
            --secondary-light: #d4af37;
            --neutral-white: #ffffff;
            --neutral-soft-grey: #f1f5f9;
            --neutral-dark-slate: #273480; /* Headings & Dark elements using the requested blue */
            --bg-warm: #f8fafc;
            --text-body: #475569; /* Readable body text */
            --shadow-soft: 0 10px 40px -10px rgba(39, 52, 128, 0.2);
            --shadow-card: 0 4px 20px -5px rgba(0,0,0,0.08);
            --transition-base: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
  

        /* =========================================================
   SECTION 01 : NAVBAR
   Header styling is handled by assets/css/global.css
   ========================================================= */

html,
body{
    overflow-x:hidden;
    width:100%;
}
        /* =========================================================
   SECTION 02 : HERO
   ========================================================= */
/* Hero Section */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
        }

      .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('../images/home/hero1.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 1;

    will-change: transform, opacity;

    transition: opacity 1.5s ease-in-out;
}

      .hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.25),
        rgba(0,0,0,.15)
    );

    z-index:2;
}

        .hero-content {
            position: relative;
            z-index: 3;
        }

        .stat-card-glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 1.5rem;
            transition: var(--transition-base);
        }

        .stat-card-glass:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        /* Section Styling */
        .section-padding {
            padding: 6rem 0;
        }

        .section-title {
            margin-bottom: 3.5rem;
        }

        .section-tag {
            display: inline-block;
            color: var(--secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
		.hero-description{
			font-weight:500;
			line-height:1.7;

			text-shadow:
        0 2px 4px rgba(0,0,0,.9),
        0 4px 14px rgba(0,0,0,.6);
}
        
        /* =========================================================
   HERO MOBILE
========================================================= */
@media (max-width: 768px) {

    .hero-section{
        min-height: 90vh;
    }

    .hero-bg{
        /* Kurangkan zoom */
        background-size: cover;

        /* Alih fokus gambar */
        background-position: 65% center;
    }

}/* =========================================================
   SECTION 03 : WHY CHOOSE ADNI / SHARED PREMIUM CARDS
   ========================================================= */
/* Premium Cards */
        .premium-card {
            background: var(--neutral-white);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(255,255,255,0.5);
            transition: var(--transition-base);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .premium-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px -15px rgba(39, 52, 128, 0.25);
        }

        .premium-card:hover::before {
            transform: scaleX(1);
        }

        .icon-box {
            width: 70px;
            height: 70px;
            background: rgba(39, 52, 128, 0.08); /* Light blue background */
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--primary); /* Blue Icon */
            margin-bottom: 1.5rem;
            transition: var(--transition-base);
        }

        .premium-card:hover .icon-box {
            background: var(--primary); /* Solid Blue on hover */
            color: var(--neutral-white);
            transform: rotate(-5deg) scale(1.1);
        }
		
		
/* =========================================================
   ADNI CORPORATE VIDEO
========================================================= */

.video-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    background: #000;
}

.adni-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* =========================================================
   ADNI EDUCATIONAL ROADMAP
   PREMIUM / CLEAN VERSION
========================================================= */

/* =========================================================
   ROADMAP WRAPPER
========================================================= */

.adni-roadmap-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 20px 80px;
    box-sizing: border-box;
}


/* =========================================================
   ROADMAP TITLE
========================================================= */

.roadmap-title {
    max-width: 900px;
    margin: 0 auto 42px;
}

.roadmap-title .section-tag {
    display: inline-block;

    color: #c9a44c;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.roadmap-title h2 {
    margin: 0 0 10px;

    color: #123b5d;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;

    text-transform: uppercase;
}

.roadmap-title p {
    max-width: 820px;
    margin: 0 auto;

    color: #687786;
    font-size: .82rem;
    line-height: 1.7;
}

.roadmap-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 16px;
}

.roadmap-divider span {
    width: 35px;
    height: 2px;
    background: #c9a44c;
}

.roadmap-divider i {
    color: #c9a44c;
    font-size: .45rem;
}


/* =========================================================
   ROADMAP MAIN
========================================================= */

.adni-roadmap {
    width: 100%;
}


/* =========================================================
   ROADMAP LEVEL
========================================================= */

.roadmap-level {
    width: 100%;
    margin: 0 auto 18px;
}


/* =========================================================
   ROADMAP CARDS - BASE
========================================================= */

.roadmap-card {
    position: relative;

    background: #ffffff;
    border: 1px solid #e5e8eb;
    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(18, 59, 93, .07);

    text-align: center;

    box-sizing: border-box;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.roadmap-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 32px rgba(18, 59, 93, .12);
}


/* =========================================================
   STEP NUMBER
========================================================= */

.roadmap-step {
    width: 30px;
    height: 30px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #c9a44c;
    color: #ffffff;

    border-radius: 50%;

    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .03em;
}


/* =========================================================
   CARD ICON
========================================================= */

.roadmap-card-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef3f5;
    color: #123b5d;

    border-radius: 50%;

    font-size: 1.05rem;
}


/* =========================================================
   CARD TYPOGRAPHY
========================================================= */

.roadmap-card h3 {
    margin: 0;

    color: #123b5d;

    font-size: 1rem;
    font-weight: 800;

    line-height: 1.3;
}

.roadmap-card h4 {
    margin: 5px 0 0;

    color: #c9a44c;

    font-size: .65rem;
    font-weight: 800;

    letter-spacing: .08em;
}

.roadmap-card p {
    margin: 0;

    color: #687786;

    font-size: .72rem;
    line-height: 1.65;
}


/* =========================================================
   CARD GOLD LINE
========================================================= */

.roadmap-card-line {
    width: 30px;
    height: 2px;

    margin: 12px auto;

    background: #c9a44c;
}


/* =========================================================
   LABEL
========================================================= */

.roadmap-label {
    display: block;

    margin-top: 5px;

    color: #16856d;

    font-size: .55rem;
    font-weight: 800;

    letter-spacing: .12em;
}


/* =========================================================
   LEVEL 01 - THE GRADUATE
========================================================= */

.graduate-level {
    display: flex;
    justify-content: center;
}

.graduate-card {
    width: min(100%, 560px);

    padding: 20px 35px 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fffdf8 100%
        );

    border-color: #e6d4a5;
}

.graduate-card .roadmap-card-icon {
    background: #123b5d;
    color: #ffffff;
}

.graduate-card h3 {
    font-size: 1.15rem;
}

.graduate-card p {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   LEVEL 02 - ACADEMIC + QURANIC
========================================================= */

.dual-level {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    max-width: 1000px;

    margin: 0 auto 18px;
}

.pillar-card {
    min-height: 190px;

    padding: 20px 28px;
}

.pillar-card p {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HIDE OLD CONNECTORS
========================================================= */

.roadmap-connector,
.roadmap-middle-connector {
    display: none !important;
}


/* =========================================================
   LEVEL 03 - INTEGRATED SYSTEM
========================================================= */

.system-card {
    max-width: 760px;

    margin: 0 auto;

    padding: 22px 40px;

    background:
        linear-gradient(
            145deg,
            #17496d 0%,
            #123b5d 100%
        );

    border: none;

    color: #ffffff;
}

.system-card .roadmap-step {
    background: #c9a44c;
}

.system-card .roadmap-card-icon {
    background: rgba(255,255,255,.12);
    color: #ffffff;
}

.system-card h3 {
    color: #ffffff;
}

.system-card p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    color: #dce8f2;
}

.system-card .roadmap-card-line {
    background: #c9a44c;
}


/* =========================================================
   LEVEL 04 - THREE FOUNDATIONS
========================================================= */

.foundation-level {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

    max-width: 1000px;

    margin: 0 auto 35px;
}

.foundation-card {
    min-height: 205px;

    padding: 18px 22px;

    border-top: 3px solid #c9a44c;
}

.foundation-card .roadmap-card-icon {
    width: 44px;
    height: 44px;

    font-size: .95rem;
}

.foundation-card h3 {
    font-size: .88rem;
}

.foundation-card p {
    font-size: .68rem;
    line-height: 1.6;
}


/* =========================================================
   ROADMAP DESTINATION
========================================================= */

.roadmap-destination {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #123b5d;

    font-size: .65rem;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;

    margin-top: 8px;
}

.roadmap-destination i {
    color: #c9a44c;
    font-size: .7rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .adni-roadmap-wrapper {
        padding:
            10px 16px 60px;
    }

    .roadmap-title {
        margin-bottom: 30px;
    }

    .roadmap-title h2 {
        font-size: 1.65rem;
    }

    .roadmap-title p {
        font-size: .76rem;
        line-height: 1.65;
    }

    .dual-level {
        gap: 14px;
    }

    .foundation-level {
        gap: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .adni-roadmap-wrapper {
        padding:
            5px 12px 50px;
    }


    /* TITLE */

    .roadmap-title {
        margin-bottom: 24px;
    }

    .roadmap-title .section-tag {
        font-size: .58rem;
        letter-spacing: .13em;
    }

    .roadmap-title h2 {
        font-size: 1.4rem;
        line-height: 1.25;
    }

    .roadmap-title p {
        font-size: .7rem;
        line-height: 1.6;
    }


    /* BASE CARD */

    .roadmap-card {
        border-radius: 17px;
    }


    /* STEP */

    .roadmap-step {
        width: 28px;
        height: 28px;

        margin-bottom: 10px;

        font-size: .6rem;
    }


    /* ICON */

    .roadmap-card-icon {
        width: 44px;
        height: 44px;

        margin-bottom: 10px;

        font-size: .95rem;
    }


    /* GRADUATE */

    .graduate-card {
        width: 100%;

        padding:
            18px 20px 20px;
    }

    .graduate-card h3 {
        font-size: 1rem;
    }

    .graduate-card h4 {
        font-size: .58rem;
    }

    .graduate-card p {
        font-size: .67rem;
    }


    /* ACADEMIC + QURANIC */

    .dual-level {
        grid-template-columns: 1fr;

        gap: 12px;

        width: 100%;
    }

    .pillar-card {
        min-height: auto;

        padding:
            18px 20px;
    }

    .pillar-card p {
        font-size: .68rem;
    }


    /* SYSTEM */

    .system-card {
        padding:
            20px 20px;
    }

    .system-card h3 {
        font-size: .9rem;
    }

    .system-card p {
        font-size: .67rem;
    }


    /* FOUNDATIONS */

    .foundation-level {
        grid-template-columns: 1fr;

        gap: 12px;

        width: 100%;
    }

    .foundation-card {
        min-height: auto;

        padding:
            18px 20px;
    }

    .foundation-card h3 {
        font-size: .9rem;
    }

    .foundation-card p {
        font-size: .68rem;
    }


    /* DESTINATION */

    .roadmap-destination {
        flex-wrap: wrap;

        gap: 8px;

        font-size: .52rem;

        text-align: center;
    }

}

/* =========================================================
   ROADMAP - FONT SIZE
========================================================= */

/* Tajuk utama roadmap */
.roadmap-title h2 {
    font-size: 2rem;
}

/* Step number */
.roadmap-step {
    font-size: .9rem;
}

/* Tajuk setiap card */
.roadmap-card h3 {
    font-size: 1.15rem;
    line-height: 1.35;
}

/* Subtitle seperti MUTTAQIN & KHALIFAH / label */
.roadmap-card h4 {
    font-size: .85rem;
}

/* Label QGDP / MUTTAQIN / KHALIFAH */
.roadmap-label {
    font-size: .75rem;
}

/* Description dalam card */
.roadmap-card p {
    font-size: .9rem;
    line-height: 1.6;
}

/* Text destination bawah */
.roadmap-destination {
    font-size: .85rem;
}

/* =========================================================
   ROADMAP - MOBILE FONT
========================================================= */

@media (max-width: 767.98px) {

    .roadmap-title h2 {
        font-size: 1.7rem;
    }

    .roadmap-card h3 {
        font-size: 1.1rem;
    }

    .roadmap-card h4 {
        font-size: .8rem;
    }

    .roadmap-card p {
        font-size: .88rem;
        line-height: 1.55;
    }

    .roadmap-label {
        font-size: .72rem;
    }

}

/* =========================================================
   HOMEPAGE
   VISION • MISSION • PHILOSOPHY
========================================================= */

.foundation-section{
    padding:90px 0;
    background:#f7f9fc;
}

.foundation-heading{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.foundation-label{
    display:inline-block;
    margin-bottom:8px;
    color:#0b4d8a;
    font-size:.72rem;
    font-weight:800;
    letter-spacing:2.5px;
}

.foundation-heading h2{
    margin:0 0 15px;
    color:#052b57;
    font-size:clamp(2rem,4vw,2.8rem);
}

.foundation-heading p{
    max-width:650px;
    margin:0 auto;
    color:#6b7280;
    line-height:1.8;
}

.foundation-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.foundation-card{
    position:relative;
    min-height:360px;
    padding:30px;
    background:#fff;
    border-radius:22px;
    border:1px solid rgba(5,43,87,.07);
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    overflow:hidden;

    display:flex;
    flex-direction:column;

    transition:.4s ease;
}

.foundation-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(0,0,0,.11);
}

.foundation-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;

    background:
        linear-gradient(
            90deg,
            #f2c94c,
            #0b4d8a
        );
}

.foundation-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.foundation-number{
    color:#d5dce5;
    font-size:.75rem;
    font-weight:800;
}

.foundation-icon{
    width:62px;
    height:62px;
    border-radius:16px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#eaf2fb;
    color:#0b4d8a;

    font-size:25px;

    transition:.4s ease;
}

.foundation-card:hover .foundation-icon{
    background:#0b4d8a;
    color:#fff;
    transform:rotate(-5deg) scale(1.08);
}

.foundation-content{
    margin-top:35px;
}

.foundation-tag{
    color:#b48a00;
    font-size:.68rem;
    font-weight:800;
    letter-spacing:2px;
}

.foundation-content h3{
    margin:8px 0 15px;
    color:#052b57;
    font-size:1.55rem;
}

.foundation-content p{
    margin:0;
    color:#666;
    line-height:1.8;
    text-align:justify;
}

.foundation-arrow{
    margin-top:auto;
    padding-top:25px;
    color:#0b4d8a;
    transition:.4s ease;
}

.foundation-card:hover .foundation-arrow{
    transform:translateX(8px);
}


/* TABLET */

@media(max-width:900px){

    .foundation-grid{
        grid-template-columns:1fr;
        max-width:650px;
        margin:auto;
    }

}


/* MOBILE */

@media(max-width:600px){

    .foundation-section{
        padding:65px 0;
    }

    .foundation-card{
        min-height:320px;
        padding:25px;
    }

    .foundation-content p{
        font-size:.94rem;
    }

}

        /* =========================================================
   SECTION 04 : EDUCATION JOURNEY / TIMELINE
   ========================================================= */
/* Timeline */
        .timeline {
            position: relative;
            padding: 2rem 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            width: 50%;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 3rem;
            text-align: right;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 3rem;
        }
        .timeline-dot {
            position: absolute;
            top: 1.5rem;
            width: 18px;
            height: 18px;
            background: var(--neutral-white);
            border: 4px solid var(--secondary);
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(197, 162, 83, 0.2);
        }
        .timeline-item:nth-child(odd) .timeline-dot {
            right: -9px;
        }
        .timeline-item:nth-child(even) .timeline-dot {
            left: -9px;
        }
        .timeline-content {
            background: var(--neutral-white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-soft);
        }

        /* =========================================================
   SECTION 05 : IHES FRAMEWORK
   ========================================================= */
/* IHES Infographic */
        .ihes-core {
            width: 180px;
            height: 180px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            text-align: center;
            margin: 0 auto;
            box-shadow: 0 0 0 10px rgba(39, 52, 128, 0.1), 0 0 0 20px rgba(39, 52, 128, 0.05);
            position: relative;
            z-index: 2;
        }

        /* =========================================================
   SECTION 06 : CURRICULUM / TABS
   ========================================================= */
/* Curriculum Tabs */
        .nav-pills .nav-link {
            color: var(--neutral-dark-slate);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            font-weight: 600;
            background: var(--neutral-white);
            margin: 0.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }
        .nav-pills .nav-link.active {
            background: var(--primary);
            color: var(--neutral-white);
            box-shadow: 0 10px 20px -5px rgba(39, 52, 128, 0.4);
        }

        /* =========================================================
   SECTION 07 : SHARED GALLERY / TESTIMONIAL VISUALS
   ========================================================= */
/* Gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-card);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, rgba(39, 52, 128, 0.85), transparent);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition-base);
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        /* Campus Cards */
        .campus-card {
            position: relative;
            height: 400px;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-card);
        }
        .campus-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .campus-card:hover img {
            transform: scale(1.05);
        }
        .campus-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to top, rgba(39, 52, 128, 0.95), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            color: white;
        }

        /* Accordion */
        .accordion-item {
            border: none !important;
            background: transparent;
            margin-bottom: 1rem;
        }
        .accordion-button {
            background: var(--neutral-white);
            box-shadow: var(--shadow-card);
            border-radius: 15px !important;
            font-weight: 600;
            color: var(--neutral-dark-slate);
            padding: 1.5rem 2rem;
        }
        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: var(--neutral-white);
            box-shadow: none;
        }
        .accordion-button::after {
            filter: invert(1);
        }
        .accordion-body {
            padding: 2rem;
            background: var(--neutral-white);
            border-radius: 0 0 15px 15px;
            margin-top: -1px;
        }

        /* Form Controls */
        .form-control {
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            background-color: #f8fafc;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(39, 52, 128, 0.1);
            background-color: white;
        }
        
        /* =========================================================
   TESTIMONIALS - 5 COLUMN DESKTOP
   ========================================================= */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial-col {
    min-width: 0;
}

.testimonial-col .premium-card {
    height: 100%;
}

#testimonials .premium-card p {
    font-style: italic;
    line-height: 1.8;
}


/* TABLET */
@media (max-width: 991.98px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/* MOBILE */
@media (max-width: 767.98px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* SMALL MOBILE */
@media (max-width: 575.98px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

        /* =========================================================
   SECTION 14 : FLOATING UI
   ========================================================= */
/* Floating Elements */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: var(--transition-base);
        }
        .floating-whatsapp:hover {
            transform: scale(1.1) rotate(5deg);
            color: white;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 10px 20px rgba(39, 52, 128, 0.3);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-base);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* =========================================================
   SECTION 13 : FOOTER
   ========================================================= */
/* Footer */
        .footer-section {
            background: var(--neutral-dark-slate); /* Now #273480 */
            color: rgba(255,255,255,0.7);
            padding: 5rem 0 2rem 0;
        }
        .footer-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition-base);
            display: block;
            margin-bottom: 0.75rem;
        }
        .footer-link:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 0.5rem;
            transition: var(--transition-base);
        }
        .social-icon:hover {
            background: var(--secondary);
            color: var(--neutral-white);
            transform: translateY(-3px);
        }

        /* =========================================================
   SECTION 15 : RESPONSIVE
   ========================================================= */
/* Responsive Adjustments */
        @media (max-width: 768px) {
            .timeline::before { left: 20px; }
            .timeline-item { width: 100%; padding-left: 50px !important; padding-right: 0 !important; text-align: left !important; left: 0 !important; }
            .timeline-item .timeline-dot { left: 11px !important; right: auto !important; }
            .display-2 { font-size: 2.5rem; }
            .section-padding { padding: 4rem 0; }
        }

        /* =========================================================
   SECTION 15B : DARK MODE
   ========================================================= */
/* Dark Mode Overrides */
        body.dark-mode {
            --bg-warm: #0f172a;
            --neutral-white: #1e293b;
            --neutral-dark-slate: #f8fafc; /* Reverts heading to white in dark mode for readability */
            --text-body: #cbd5e1;
            --neutral-soft-grey: #334155;
            --shadow-card: 0 4px 20px -5px rgba(0,0,0,0.3);
        }
        body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
            color: var(--neutral-white);
        }
        body.dark-mode .navbar.scrolled {
            background-color: rgba(15, 23, 42, 0.95);
        }
        body.dark-mode .nav-link {
            color: #cbd5e1 !important;
        }
        body.dark-mode .dropdown-menu {
            background-color: var(--neutral-white);
            border: 1px solid rgba(255,255,255,0.1);
        }
        body.dark-mode .dropdown-item {
            color: #cbd5e1;
        }
        body.dark-mode .dropdown-item:hover {
            background-color: var(--neutral-soft-grey);
            color: white;
        }
        body.dark-mode .form-control {
            background-color: #0f172a;
            color: white;
            border-color: #334155;
        }
		.social-feed-card{
    background:#fff;
    border-radius:28px;
    padding:60px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.05);
}

  /* NOTA: Bahagian ini untuk our-teams */
  
  :root {
        --primary: #273480;
        --accent: #f5b800;
        --bg-color: #f4f7f6;
        --text-dark: #333;
        --text-light: #777;
        --white: #ffffff;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background-color: var(--bg-color);
        color: var(--text-dark);
    }

    .team-section {
        padding: 80px 20px;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .main-title {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

    .main-title::after {
        content: '';
        width: 60px;
        height: 4px;
        background-color: var(--accent);
        display: block;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .subtitle {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 20px auto 60px;
    }

    /* Kategori / Pembatas Section */
    .team-category {
        margin-bottom: 60px;
    }

    .category-title {
        font-size: 1.5rem;
        color: var(--white);
        background-color: var(--primary);
        display: inline-block;
        padding: 8px 30px;
        border-radius: 30px;
        margin-bottom: 40px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /* Grid Layout System */
    .team-row {
        display: grid;
        grid-template-columns: repeat(var(--cols, 4), 1fr); /* Default 4 kolom */
        gap: 30px;
        justify-items: center;
    }

    /* Card Styling */
    .team-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        width: 100%;
        max-width: 320px;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(39, 52, 128, 0.15);
    }

    .team-image {
        width: 100%;
        height: 280px;
        overflow: hidden;
        position: relative;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .team-card:hover .team-image img {
        transform: scale(1.1);
    }

    .team-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, rgba(39, 52, 128, 0.4), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .team-card:hover .team-image::after {
        opacity: 1;
    }

    .team-info {
        padding: 25px 20px;
        position: relative;
    }

    .team-info h3 {
        font-size: 1.2rem;
        color: var(--primary);
        margin-bottom: 5px;
    }

    /* =========================================================
   TEAM ROLE
   ========================================================= */

.team-info .role {
    min-height: 42px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;

    font-size: 0.78rem;
    line-height: 1.4;
    font-weight: 700;
    color: #0753ad;
}

/* Longer management positions */
.team-card .role {
    max-width: 100%;
}

/* Mobile */
@media (max-width: 600px) {
    .team-info .role {
        min-height: auto;
    }


    .team-info p {
        color: var(--text-light);
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        background: #f0f0f0;
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .social-links a:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-3px);
    }

    /* Responsif untuk Tablet & HP */
    @media (max-width: 900px) {
        .team-row { grid-template-columns: repeat(2, 1fr) !important; }
    }

    @media (max-width: 600px) {
        .main-title { font-size: 2rem; }
        .team-row { grid-template-columns: 1fr !important; }
    }
	
	/* =========================================================
   SECTION 08 : ADMISSIONS
========================================================= */


/* =========================================================
   01. ADMISSION PROCEDURE
========================================================= */

.admission-steps {
    position: relative;
}


/* ---------------------------------------------------------
   STEP CARD
--------------------------------------------------------- */

.admission-step-card {
    position: relative;
    padding: 35px 25px;
    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.admission-step-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);
}


/* ---------------------------------------------------------
   STEP NUMBER
--------------------------------------------------------- */

.step-number {
    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 2.8rem;
    font-weight: 800;

    color: rgba(0, 0, 0, 0.05);

    line-height: 1;
}


/* ---------------------------------------------------------
   STEP ICON
--------------------------------------------------------- */

.admission-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background:
        rgba(var(--bs-primary-rgb), 0.10);

    color:
        var(--bs-primary);

    font-size: 1.8rem;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.admission-step-card:hover .admission-icon {
    background:
        var(--bs-primary);

    color: #ffffff;

    transform:
        scale(1.08);
}


/* ---------------------------------------------------------
   STEP CONTENT
--------------------------------------------------------- */

.admission-step-card h5 {
    margin-bottom: 12px;

    font-weight: 700;
}

.admission-step-card p {
    margin-bottom: 0;

    color: #6c757d;

    font-size: 0.95rem;

    line-height: 1.7;
}


/* =========================================================
   02. IMPORTANT INFORMATION
========================================================= */

.admission-information {
    margin-top: 70px;
}


/* =========================================================
   03. ADMISSION ACCORDION
========================================================= */

.admission-accordion {
    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.07);
}


/* ---------------------------------------------------------
   ACCORDION ITEM
--------------------------------------------------------- */

.admission-accordion .accordion-item {
    border: 0;

    border-bottom:
        1px solid #eeeeee;
}

.admission-accordion .accordion-item:last-child {
    border-bottom: 0;
}


/* ---------------------------------------------------------
   ACCORDION BUTTON
--------------------------------------------------------- */

.admission-accordion .accordion-button {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 22px 25px;

    background: #ffffff;

    color: #222222;

    box-shadow: none;
}

.admission-accordion .accordion-button:not(.collapsed) {
    background:
        rgba(var(--bs-primary-rgb), 0.04);

    color:
        var(--bs-primary);
}

.admission-accordion .accordion-button:focus {
    box-shadow: none;
}


/* ---------------------------------------------------------
   ACCORDION TITLE ICON
--------------------------------------------------------- */

.accordion-title-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(var(--bs-primary-rgb), 0.10);

    color:
        var(--bs-primary);

    font-size: 1.3rem;
}

.admission-accordion
.accordion-button:not(.collapsed)
.accordion-title-icon {

    background:
        var(--bs-primary);

    color:
        #ffffff;
}


/* ---------------------------------------------------------
   ACCORDION TITLE TEXT
--------------------------------------------------------- */

.accordion-heading-text {
    display: block;
}

.accordion-heading-text strong {
    display: block;

    margin-bottom: 3px;

    font-size: 1.05rem;
}

.accordion-heading-text small {
    display: block;

    color: #888888;

    font-weight: 400;
}


/* ---------------------------------------------------------
   ACCORDION BODY
--------------------------------------------------------- */

.admission-accordion .accordion-body {
    padding: 30px;

    background: #ffffff;
}


/* =========================================================
   04. ENROLMENT DOCUMENTATION
========================================================= */

.document-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


/* ---------------------------------------------------------
   DOCUMENT ITEM
--------------------------------------------------------- */

.document-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 15px;

    background: #f8f9fa;

    border-radius: 10px;

    font-size: 0.95rem;

    line-height: 1.6;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.document-item:hover {
    transform:
        translateY(-2px);

    background:
        rgba(var(--bs-primary-rgb), 0.05);
}

.document-item i {
    margin-top: 3px;

    color:
        var(--bs-primary);

    font-size: 1.05rem;
}


/* =========================================================
   05. STUDENT VISA
========================================================= */

.info-highlight {
    display: flex;

    gap: 20px;

    padding: 25px;

    background:
        rgba(var(--bs-primary-rgb), 0.05);

    border-radius: 14px;
}


/* ---------------------------------------------------------
   VISA ICON
--------------------------------------------------------- */

.info-highlight-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--bs-primary);

    color:
        #ffffff;

    font-size: 1.4rem;
}


/* ---------------------------------------------------------
   VISA CONTENT
--------------------------------------------------------- */

.info-highlight-content {
    flex: 1;
}

.info-highlight h5 {
    margin-bottom: 10px;

    font-weight: 700;
}

.info-highlight p {
    color: #666666;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   VISA CONTACT
--------------------------------------------------------- */

.visa-contact {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 20px;

    padding: 15px 20px;

    border:
        1px solid #eeeeee;

    border-radius: 12px;
}

.visa-contact > i {
    color:
        var(--bs-primary);

    font-size: 1.4rem;
}

.visa-contact small {
    display: block;

    color: #888888;
}

.visa-contact a {
    color:
        var(--bs-primary);

    font-weight: 600;

    text-decoration: none;
}

.visa-contact a:hover {
    text-decoration: underline;
}


/* =========================================================
   06. ADMISSION POLICIES
========================================================= */

.policy-block {
    display: flex;

    gap: 20px;

    padding: 25px 0;

    border-bottom:
        1px solid #eeeeee;
}

.policy-block:first-child {
    padding-top: 0;
}

.policy-block:last-of-type {
    border-bottom: 0;
}


/* ---------------------------------------------------------
   POLICY ICON
--------------------------------------------------------- */

.policy-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(var(--bs-primary-rgb), 0.10);

    color:
        var(--bs-primary);

    font-size: 1.25rem;
}


/* ---------------------------------------------------------
   POLICY CONTENT
--------------------------------------------------------- */

.policy-content {
    width: 100%;
}

.policy-block h5 {
    margin-bottom: 10px;

    font-weight: 700;
}

.policy-block p {
    margin-bottom: 8px;

    color: #666666;

    line-height: 1.7;
}


/* =========================================================
   07. PAYMENT ITEMS
========================================================= */

.payment-item {
    padding: 15px 0;

    border-bottom:
        1px dashed #dddddd;
}

.payment-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.payment-item strong {
    display: block;

    margin-bottom: 5px;

    color:
        var(--bs-primary);
}


/* =========================================================
   08. POLICY NOTE
========================================================= */

.policy-note {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-top: 25px;

    padding: 18px 20px;

    background: #fff8e6;

    border-left:
        4px solid #f4b400;

    border-radius: 8px;

    color: #66521c;

    line-height: 1.6;
}

.policy-note i {
    margin-top: 3px;

    font-size: 1.1rem;
}


/* =========================================================
   09. ADMISSION CALL TO ACTION
========================================================= */

.admission-cta {
    position: relative;

    margin-top: 70px;

    padding: 55px 30px;

    overflow: hidden;

    border-radius: 24px;

    background:
        var(--bs-primary);

    color:
        #ffffff;
}


/* ---------------------------------------------------------
   CTA DECORATION
--------------------------------------------------------- */

.admission-cta::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -140px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);
}

.admission-cta::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -120px;
    left: -50px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.04);
}


/* Keep CTA content above decoration */

.admission-cta > * {
    position: relative;

    z-index: 2;
}


/* ---------------------------------------------------------
   CTA ICON
--------------------------------------------------------- */

.admission-cta-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    font-size: 1.8rem;
}


/* ---------------------------------------------------------
   CTA SMALL TITLE
--------------------------------------------------------- */

.cta-small-title {
    display: block;

    margin-bottom: 8px;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0.75;
}


/* ---------------------------------------------------------
   CTA HEADING
--------------------------------------------------------- */

.admission-cta h2 {
    margin-bottom: 12px;

    color:
        #ffffff;

    font-weight: 700;
}


/* ---------------------------------------------------------
   CTA DESCRIPTION
--------------------------------------------------------- */

.admission-cta > p {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    color:
        rgba(255, 255, 255, 0.75);
}


/* ---------------------------------------------------------
   CTA BUTTONS
--------------------------------------------------------- */

.admission-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 25px;
}


/* =========================================================
   10. TABLET RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .admission-information {
        margin-top: 55px;
    }

    .admission-cta {
        margin-top: 55px;
    }

}


/* =========================================================
   11. MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    /* Documentation becomes one column */

    .document-list {
        grid-template-columns: 1fr;
    }


    /* Visa */

    .info-highlight {
        flex-direction: column;

        padding: 20px;
    }


    /* Policies */

    .policy-block {
        flex-direction: column;

        gap: 15px;
    }


    /* Accordion */

    .admission-accordion
    .accordion-button {

        padding: 18px;
    }

    .admission-accordion
    .accordion-body {

        padding: 20px;
    }


    /* CTA */

    .admission-cta {
        margin-top: 45px;

        padding: 40px 20px;

        border-radius: 18px;
    }

    .admission-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .admission-cta-buttons .btn {
        width: 100%;
    }

}


/* =========================================================
   12. SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .admission-step-card {
        padding: 30px 20px;
    }

    .admission-information {
        margin-top: 45px;
    }

    .accordion-title-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 1.1rem;
    }

    .accordion-heading-text strong {
        font-size: 0.95rem;
    }

    .accordion-heading-text small {
        font-size: 0.78rem;
    }

}
/* =========================================================
   SECTION 05 : QGDP EDUCATIONAL FOUNDATION
   Signature educational framework section for ADNI Master Home
   ========================================================= */
.qgdp-section{background:linear-gradient(180deg,#f7f9ff 0%,#fff 100%);position:relative;overflow:hidden}
.qgdp-section:before{content:"";position:absolute;width:520px;height:520px;border-radius:50%;background:rgba(197,162,83,.08);right:-240px;top:-240px}
.section-kicker{display:inline-block;color:var(--gold);font-weight:800;letter-spacing:.12em;text-transform:uppercase;font-size:.78rem}
.qgdp-acronym{font-size:clamp(4rem,10vw,8rem);font-weight:900;line-height:.9;color:rgba(39,52,128,.055);letter-spacing:.04em;margin:-45px 0 15px}
.qgdp-journey{display:flex;align-items:center;justify-content:center;gap:8px;margin:35px auto 18px;max-width:1100px}
.qgdp-stage{flex:1;border:1px solid rgba(39,52,128,.14);background:#fff;border-radius:18px;padding:16px 10px;color:var(--primary);transition:.25s;box-shadow:0 6px 18px rgba(39,52,128,.05)}
.qgdp-stage span,.qgdp-stage b,.qgdp-stage small{display:block}.qgdp-stage span{color:var(--gold);font-size:.72rem;font-weight:900}.qgdp-stage b{font-size:.9rem}.qgdp-stage small{font-size:.72rem;color:#7a819a}
.qgdp-stage:hover,.qgdp-stage.active{transform:translateY(-4px);background:var(--primary);color:#fff;border-color:var(--primary);box-shadow:0 14px 30px rgba(39,52,128,.18)}
.qgdp-stage.active small,.qgdp-stage:hover small{color:#d9ddf5}.qgdp-arrow{color:var(--gold);font-size:1.4rem;font-weight:900}
.qgdp-stage-display{max-width:800px;margin:0 auto 38px;background:#fff;border:1px solid rgba(39,52,128,.1);border-radius:18px;padding:20px 24px;display:flex;align-items:center;gap:18px;box-shadow:0 8px 28px rgba(39,52,128,.06)}
.qgdp-stage-display .stage-number{font-size:2.6rem;font-weight:900;color:var(--gold)}.qgdp-stage-display h3{margin:0 0 4px;color:var(--primary);font-size:1.2rem}.qgdp-stage-display p{margin:0;color:#6d7387;font-size:.92rem}
.qgdp-umbrella{max-width:720px;margin:0 auto 24px;padding:25px;border-radius:24px 24px 10px 10px;background:linear-gradient(135deg,var(--primary),#3c4ca1);color:#fff;box-shadow:0 18px 40px rgba(39,52,128,.2)}
.qgdp-umbrella span{display:inline-block;background:var(--gold);color:#fff;border-radius:999px;padding:6px 15px;font-size:.8rem;font-weight:900;letter-spacing:.12em}.qgdp-umbrella h3{color:#fff;margin:11px 0 5px}.qgdp-umbrella p{margin:0;color:#e5e8f7}
.qgdp-pillars{display:grid;grid-template-columns:repeat(4,1fr);gap:13px;max-width:1000px;margin:auto}
.qgdp-pillar{position:relative;border:1px solid rgba(39,52,128,.12);background:#fff;border-radius:20px;padding:22px 14px;transition:.25s;color:var(--primary);box-shadow:0 7px 22px rgba(39,52,128,.05)}
.qgdp-pillar:hover,.qgdp-pillar.active{background:#fff8e7;border-color:var(--gold);transform:translateY(-5px);box-shadow:0 15px 32px rgba(39,52,128,.12)}
.qgdp-pillar>span{position:absolute;top:10px;right:12px;color:#b5b9c9;font-size:.7rem;font-weight:900}.pillar-icon{width:48px;height:48px;margin:0 auto 12px;border-radius:15px;background:var(--primary);color:#fff;display:grid;place-items:center;font-size:1.25rem}.qgdp-pillar.active .pillar-icon{background:var(--gold)}
.qgdp-pillar h3{font-size:1rem;margin:0;color:var(--primary)}
.qgdp-pillar-panel{display:none;max-width:1000px;margin:15px auto 0;text-align:left;border-radius:20px;background:#fff;padding:30px;border-left:5px solid var(--gold);box-shadow:0 12px 35px rgba(39,52,128,.08)}
.qgdp-pillar-panel.active{display:block}.qgdp-pillar-panel h3{color:var(--primary);margin:6px 0 10px}.qgdp-pillar-panel p{
    color:#686f84;
    margin-bottom:16px;
    line-height:1.7;
}

.qgdp-pillar-panel p:last-child{
    margin-bottom:0;
}.pillar-panel-label{font-size:.75rem;color:var(--gold);font-weight:900;text-transform:uppercase;letter-spacing:.09em}
.mini-stages{display:flex;flex-wrap:wrap;gap:7px;margin-top:18px}.mini-stages span{background:#f1f3fb;color:var(--primary);border-radius:999px;padding:7px 10px;font-size:.76rem;font-weight:700}
@media(max-width:900px){.qgdp-journey{overflow:auto;justify-content:flex-start;padding-bottom:10px}.qgdp-stage{min-width:145px}.qgdp-arrow{min-width:18px}.qgdp-pillars{grid-template-columns:1fr 1fr}}
@media(max-width:575px){.qgdp-pillars{grid-template-columns:1fr 1fr}.qgdp-stage-display{align-items:flex-start}.qgdp-stage-display .stage-number{font-size:2rem}.qgdp-pillar-panel{padding:23px}}


/* =========================================================
   PREMIUM MOBILE NAVBAR (Refactored)
========================================================= */
@media (max-width:991.98px){

    .navbar{
        transition:background .2s ease, box-shadow .2s ease;
    }

    .navbar.mobile-open{
        background:#fff !important;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .navbar.mobile-open .nav-link,
    .navbar.mobile-open .dropdown-toggle,
    .navbar.mobile-open .navbar-toggler{
        color:var(--primary)!important;
    }

    .navbar.mobile-open .dropdown-menu{
        border:none;
        box-shadow:none;
        padding:.5rem 0 .5rem 1rem;
    }

    .navbar-collapse{
        padding:1rem 0;
    }
}

/* =========================================================
   FACEBOOK AUTO FEED
========================================================= */

.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

/* =========================================================
   FACEBOOK POST CARD
========================================================= */

.social-post-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.social-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
}

/* =========================================================
   FACEBOOK POST IMAGE
========================================================= */

.social-post-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f1f3f5;
}

.social-post-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   FACEBOOK POST BODY
========================================================= */

.social-post-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex: 1;
}

.social-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.82rem;
}

.social-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.social-platform i {
    font-size: 1rem;
}

.social-post-date {
    color: #6c757d;
    white-space: nowrap;
}

.social-post-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}

.social-post-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.social-post-link:hover {
    text-decoration: underline;
}

/* =========================================================
   FACEBOOK FEED STATES
========================================================= */

.social-loading,
.social-empty,
.social-error {
    width: 100%;
    min-height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 30px;

    color: #6c757d;
}

.social-loading .spinner-border {
    width: 2rem;
    height: 2rem;
    margin-bottom: 12px;
}

.social-loading p,
.social-empty p,
.social-error p {
    margin: 0;
}

.social-empty i,
.social-error i {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* =========================================================
   FACEBOOK FEED - RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .social-feed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-post-image {
        height: 220px;
    }

    .social-post-body {
        padding: 16px;
    }

    .social-post-meta {
        font-size: 0.78rem;
    }

    .social-post-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 6;
    }
    
/* =========================================================
   REGISTRATION POPUP - FIXED SIZE
========================================================= */

#registrationPopup {
    position: fixed !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    margin: 0 !important;
    padding: 20px !important;

    display: none;

    align-items: center !important;
    justify-content: center !important;

    background: rgba(0, 0, 0, 0.75);

    z-index: 2147483647 !important;
}


/* OPEN */

#registrationPopup.show {
    display: flex !important;
}


/* =========================================================
   POPUP BOX
========================================================= */

#registrationPopup .registration-popup-box {
    position: relative !important;

    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;

    height: auto !important;
    max-height: 85vh !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #fff;

    border-radius: 16px;

    overflow: hidden;

    box-sizing: border-box !important;
}


/* =========================================================
   POPUP IMAGE
========================================================= */

#registrationPopup .registration-popup-image {
    display: block !important;

    width: 320px !important;
    max-width: 320px !important;

    height: auto !important;

    max-height: 85vh !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;

    box-sizing: border-box !important;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

#registrationPopup .registration-popup-close {
    position: absolute !important;

    top: 10px !important;
    right: 10px !important;

    width: 38px !important;
    height: 38px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: none !important;
    border-radius: 50% !important;

    background: rgba(0, 0, 0, 0.7);

    color: #fff;

    font-size: 26px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    display: flex !important;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    #registrationPopup {
        padding: 15px !important;
    }

    #registrationPopup .registration-popup-box {
        width: 90vw !important;
        min-width: 0 !important;
        max-width: 90vw !important;
    }

    #registrationPopup .registration-popup-image {
        width: 90vw !important;
        max-width: 90vw !important;

        max-height: 85vh !important;
    }

}

/* =========================================================
   EDUCATIONAL ROADMAP - REMOVE ALL DECORATIVE LINES
   ========================================================= */

.roadmap-divider,
.roadmap-divider span,
.roadmap-connector,
.roadmap-middle-connector,
.road-dot,
.roadmap-card-line,
.roadmap-card::before,
.roadmap-card::after,
.roadmap-item::before,
.roadmap-item::after {
    display: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}