/* =========================================================
   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);
        }
.navbar-brand{
    padding:0;
    margin-right:50px;
}

.navbar-logo{
    height:70px;
    width:auto;
    transition:.3s ease;
}

@media (max-width:991px){

    .navbar-logo{
        height:55px;
    }

}
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-warm);
            color: var(--text-body);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--neutral-dark-slate); /* #273480 applied here */
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        .display-1, .display-2, .display-3, .display-4 {
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .text-primary { color: var(--primary) !important; }
        .text-secondary { color: var(--secondary) !important; }
        .bg-primary { background-color: var(--primary) !important; }
        .bg-secondary { background-color: var(--secondary) !important; }
        .bg-warm { background-color: var(--bg-warm) !important; }

        .btn {
            font-weight: 600;
            padding: 0.85rem 2rem;
            border-radius: 50px;
            transition: var(--transition-base);
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--neutral-white);
            box-shadow: 0 10px 25px -10px rgba(39, 52, 128, 0.5);
        }

        .btn-primary:hover {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -10px rgba(39, 52, 128, 0.6);
        }

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

        .btn-outline-secondary:hover {
            background-color: var(--secondary);
            color: var(--neutral-white);
            transform: translateY(-3px);
        }

        .btn-light {
            background-color: var(--neutral-white);
            color: var(--primary);
            border: 1px solid transparent;
        }
        
        .btn-light:hover {
            background-color: var(--neutral-soft-grey);
            transform: translateY(-3px);
        }

        /* =========================================================
   SECTION 01 : NAVBAR
   ========================================================= */
/* Navbar */
        .navbar {
            transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
            padding: 1.5rem 0;
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 0.75rem 0;
        }

        .navbar-brand img {
            height: 45px;
            transition: height 0.4s ease;
        }
        .navbar.scrolled .navbar-brand img {
            height: 38px;
        }

        .nav-link {
            font-weight: 600;
            color: var(--neutral-dark-slate) !important;
            margin: 0 0.75rem;
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--neutral-dark-slate) !important;
        }

        .navbar:not(.scrolled) .nav-link {
            color: var(--neutral-white) !important;
        }
        
        .navbar:not(.scrolled) .navbar-brand .logo-light { display: block; }
        .navbar:not(.scrolled) .navbar-brand .logo-dark { display: none; }
        .navbar.scrolled .navbar-brand .logo-light { display: none; }
        .navbar.scrolled .navbar-brand .logo-dark { display: block; }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 4px;
            right: 0;
            background: var(--secondary);
            transition: width .3s ease;
            -webkit-transition: width .3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
            left: 0;
            background: var(--secondary);
        }

        .dropdown-menu {
            border: none;
            border-radius: 15px;
            box-shadow: var(--shadow-soft);
            padding: 1.5rem;
            min-width: 300px;
        }

        .dropdown-item {
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background-color: var(--neutral-soft-grey);
            color: var(--primary);
        }

.btn-secondary{
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover{
    background-color: #b38f42;
    border-color: #b38f42;
    color: #fff;
    transform: translateY(-3px);
}

        /* =========================================================
   SECTION 02 : HERO
   ========================================================= */
/* Hero Section */
        .hero-section {
            position: relative;
            min-height: 110vh;
            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/bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 1;
    will-change: transform;



}
      .hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.25)
    );

    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 MOBILE
========================================================= */
@media (max-width: 768px) {

    .hero-section{
        min-height: 90vh;
    }

    .hero-bg{
        /* Kurangkan zoom */
        background-size: 170% auto;

        /* Alih fokus gambar */
        background-position: center top;
    }

}

        /* =========================================================
   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);
        }

        /* =========================================================
   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;
        }

        /* =========================================================
   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-info .role {
        color: var(--accent);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .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:15px 0 30px}
.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: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}}
