
/*MAIN CSS*/

:root {
            --black: #0a0a0a;
            --dark-gray: #1a1a1a;
            --silver: #c0c0c0;
            --light-silver: #e8e8e8;
            --gold: #d4af37;
            --light-gold: #f4e5b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light-silver);
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Comfortaa', sans-serif;
        }

        /* Top Bar */
        .top-bar {
            background: var(--black);
            color: var(--silver);
            padding: 0.5rem 0;
            font-size: 0.9rem;
            border-bottom: 2px solid var(--gold);
        }

        .top-bar a {
            color: var(--silver);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .top-bar a:hover {
            color: var(--gold);
        }

        .top-bar i {
            color: var(--gold);
            margin-right: 0.5rem;
        }

        .top-bar-item {
            display: inline-flex;
            align-items: center;
            margin-right: 2rem;
        }

        /* Navigation */
        .navbar {
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /*Navigation Logo*/
        .navbar-brand {
            font-family: 'Comfortaa', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .nav-link {
            color: var(--silver) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--gold) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }
        
        .dropdown-menu {
            background: var(--dark-gray);
            border: 1px solid var(--gold);
            border-radius: 8px;
            padding: 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
        }
        
        .dropdown-item {
            color: var(--silver) !important;
            padding: 10px 20px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--black);
            color: var(--gold) !important;
        }
        
        @media (min-width: 992px) {
            .dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
                display: block;
                margin-top: -1px;
                margin-left: -1px;
            }
            .dropdown-submenu {
                position: relative;
            }
            .dropdown-submenu>.dropdown-menu {
                top: 0;
                left: 100%;
                margin-top: 0;
                margin-left: .1rem;
            }
        }

       /* ================= HERO (CLEAN) ================= */
.hero {
    position: relative;
    margin-top: var(--header-total);

    min-height: 60vh;
    max-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

/* Image */
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    /* optional slight zoom-out (remove if not wanted) */
    transform: scale(0.95);
}

/* ❌ REMOVED overlay completely */

/* Content (no blur now) */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;

    background: rgba(10, 10, 10, 0.45); /* keeps readability */
    border-radius: 15px;

    /* ❌ REMOVED blur */
    backdrop-filter: none;
}

.hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold);
}





        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid white;
        }

        .slider-dot.active {
            background: var(--gold);
            border-color: var(--gold);
            transform: scale(1.2);
        }

        /* --- ABOUT SECTION --- */
        .about-section {
            padding: 40px 0;
            background: white;
        }

        .values-list {
            list-style: none;
            padding-left: 0;
        }

        .values-list li {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .values-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--gold);
        }
        
        footer {
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
            color: var(--silver);
            padding: 2rem 0 1rem;
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 280px;
            }
            .hero h1 {
                font-size: 1.5rem; 
                white-space: normal;
            }
        }

         /* ---------- PAGE HEADER ------------------------------------------------------------------------------------------------------------------------- */
        .page-header {
            height: 150px; 
            background: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .page-header h1 { color: var(--gold); font-size: 2.5rem; margin: 0; }


        /* --- TABLE DESIGN --- */
        .header-overlay {
            z-index: 10;
            text-align: center;
            width: 90%;
        }
        .header-overlay h1 {
            font-size: 2.5rem;
            color: var(--gold);
        }


         /* NEW CONTENT AREA */
        .page-header { background: var(--dark-gray); padding: 40px 0; border-bottom: 1px solid var(--gold); color: var(--gold); margin-bottom: 40px; }
        main { min-height: 60vh; background: white; padding: 40px 0; }



        /* Mobile Submenu Display */
@media (max-width: 991.98px) {
    .dropdown-submenu .dropdown-menu.show {
        display: block;
        position: static;
        float: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.05); /* Slight tint for contrast */
    }
}


/* TABLE SETTING */
   .team-section { margin-bottom: 50px; }
        .team-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--light-silver);
        }
        .role-title { font-weight: 600; color: var(--dark-gray); }
        .staff-name { color: var(--gold); font-weight: 500; }



/* Contact Section */
        .contact-box { 
            margin-top: 40px; 
            padding: 30px; 
            background-color: #f8f9fa; 
            border-left: 5px solid var(--gold);
            border-radius: 0 8px 8px 0;
        }

        

        /* --- CONTENT --- */
        .main-content { padding: 60px 0; background: white; flex-grow: 1; }
        .content-box { text-align: left; margin-bottom: 2rem; }
        .highlight-list { 
            list-style: none; 
            padding-left: 0; 
            margin: 1.5rem 0;
            background: #fdfdfd;
            border-left: 4px solid var(--gold);
            padding: 1.5rem;
        }
        .highlight-list li { margin-bottom: 10px; display: flex; align-items: flex-start; }
        .highlight-list i { color: var(--gold); margin-right: 12px; margin-top: 5px; }




        /* --- CONTENT --- */
        .main-content { padding: 60px 0; background: white; flex-grow: 1; }
        .content-box { text-align: left; margin-bottom: 2rem; }
        
        /* Pathway Detailed Section */
        .pathway-section {
            margin-top: 3rem;
        }
        .pathway-detail-card {
            border: 1px solid var(--light-silver);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: 0.3s;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }
        .pathway-detail-card:hover {
            border-color: var(--gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .pathway-title {
            color: var(--gold);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1rem;
        }
        .pathway-title i {
            font-size: 1.5rem;
        }


/* Preparing for Life */
        /* --- CONTENT --- */
        .main-content { padding: 60px 0; background: white; flex-grow: 1; }
        .content-box { text-align: left; }
        
        .aspiration-card {
            border-left: 5px solid var(--gold);
            background: #fcfcfc;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 0 8px 8px 0;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.05);
        }
        .aspiration-card h3 { color: var(--black); font-weight: 700; margin-bottom: 1rem; }
        
        .ambition-list {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }
        .ambition-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: var(--light-silver);
            border-radius: 6px;
            display: flex;
            align-items: center;
        }
        .ambition-list i { color: var(--gold); margin-right: 15px; font-size: 1.2rem; }
  

/*********Assessment and Progress Page***********/
/* --- CONTENT --- */
        .main-content { padding: 60px 0; background: white; flex-grow: 1; }
        .content-box { text-align: left; }
        .feature-list { 
            list-style: none; 
            padding-left: 0; 
            margin: 1.5rem 0;
            border-left: 4px solid var(--gold);
            padding: 1rem 2rem;
            background: #fdfdfd;
        }
        .feature-list li { margin-bottom: 12px; display: flex; align-items: baseline; }
        .feature-list i { color: var(--gold); margin-right: 15px; }

/**********Table Setting*************/
        .govenor {
  white-space: nowrap; /* prevents wrapping */
}



/* Download Card */
.download-card {
    background: var(--black);
    color: var(--silver);
    border-radius: 12px;
    border: 1px solid var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: white;
    color: var(--black);
}

/* Phase Table Styles */
.custom-table thead {
    background-color: var(--light-silver);
    color: var(--black);
}

.phase-name {
    font-weight: 700;
    color: var(--gold);
    width: 30%;
}

/* Impact Table Styles */
.impact-table thead th {
    background-color: var(--black);
    color: var(--gold);
    border-color: var(--dark-gray);
    text-align: center;
}

.impact-table td {
    font-size: 0.95rem;
    vertical-align: top;
}




/* PDF Download Card */
.pdf-card {
    background: var(--black);
    color: var(--silver);
    border: 2px solid var(--gold);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: white;
    color: var(--black);
}

/* Specific highlight for Prep for Adulthood */
div[style*="background: var(--light-gold)"] {
    border-left: 5px solid var(--gold);
}

/* Values list adjustments for dark backgrounds */
.bg-dark .values-list li {
    color: var(--silver);
    margin-bottom: 0.8rem;
}



.table-bordered {
    border: 1px solid var(--light-silver) !important;
}

.table thead th {
    color: var(--gold) !important;
    font-family: 'Comfortaa', sans-serif;
    border-bottom: 2px solid var(--gold) !important;
    padding: 15px;
}

.table tbody td {
    padding: 12px 15px;
    color: var(--dark-gray);
    border-color: var(--light-silver);
}



/* Centre align submenu arrow with the text */
.dropdown-submenu > .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes text to left and arrow to right */
    gap: 10px;
}

@media (min-width: 992px) {
    .dropdown-submenu > .dropdown-toggle::after {
        content: "\f105" !important; /* Font Awesome chevron-right */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        border: none; /* Removes default Bootstrap caret */
        margin: 0;   /* Reset margins as flex handles alignment */
        font-size: 0.8rem;
    }
}

       