/********** Template CSS **********/
:root {
    --primary: #3E2723;
    --secondary: #946E67;
    --accent: #FFA726;
    --light: #FFF8E1;
    --dark: #000000;
    --deep-brown: #4C2A14;
    --sun-yellow: #FFA726;
    --hover-soft: #F5E5D8;
    --text: #3E2723;
    --hover-bg: #F5E5D8;
}

body {
    background-color: var(--light);
    color: var(--primary);
    
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}

/* :root {
            --primary: #4C2A14;
            --accent: #FFA726;
            --light: #FFF8E1;
            --text: #3E2723;
            --hover-bg: #F5E5D8;
        } */
        .full-screen-img {
            width: 100vw;      
            height: auto;      
            max-height: 100vh; 
            object-fit: cover; 
            display: block; 
        }
        
        .highlight-box {
            background-color: #FFF;
            border-radius: 15px;
            padding: 50px 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .cta {
            background-color: var(--light);  
            color: var(--primary);
            text-align: center;
            padding: 40px 20px;
            /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
        }

        .cta:hover {
            background-color: var(--light) !important;
            color: var(--primary) !important;
        }

        .cta .btn {
            background-color: var(--accent);
            color: var(--text);
            border-radius: 50px;
            padding-left: 25px;
            padding-right: 25px;
            margin: 10px;
            transition: all 0.3s ease;
        }

        .cta .btn:hover {
            background-color: #fff;
            color: var(--primary); 
            transform: translateY(-3px);
        }

        .program-highlight {
            padding: 1.5rem;
            background-color: #f9f9f9;
            border-radius: 10px;
        }
        .program-highlight h5 {
            font-weight: bold;
        }
        .program-highlight ul {
            list-style: none;
            padding-left: 0;
        }
        .program-highlight ul li::before {
            content: "→ ";
            font-weight: bold;
            color: #000;
        }
        .program-highlight .section-title {
            margin-top: 1rem;
            font-weight: 600;
        }

        .text-overlay {
            background-color: rgba(0, 0, 0, 0.6);
            padding: 30px;
            border-radius: 15px;
        }

        /* Accent button */
        .btn-orange {
            background-color: var(--accent); 
            border-color: var(--accent);
            color: #fff;
        }
        
        .btn-orange:hover {
            background-color: #fff;
            border-color: #fff;
            color: var(--accent); 
        }

        /* Light button */
        .btn-light {
            background-color: #fff;
            border-color: #fff;
            color: #000;
        }

        .btn-light:hover {
            background-color: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        /* 📱 Responsive Adjustments */
        @media (max-width: 768px) {
            .text-overlay {
                padding: 20px;
                border-radius: 10px;
                font-size: 0.9rem;
            }

            .btn-orange,
            .btn-light {
                font-size: 0.9rem;
                padding: 10px 20px;
            }
        }

        @media (max-width: 480px) {
            .text-overlay {
                padding: 15px;
                border-radius: 8px;
                font-size: 0.85rem;
            }

            .btn-orange,
            .btn-light {
                display: block; 
                width: 100%;
                margin-bottom: 10px;
                font-size: 0.85rem;
                padding: 12px;
            }
        } */


        /* count up */
        .stats-section {
            background-color: #fff;
            padding: 60px 0;
        }

        .stats-section:hover {
            background-color: #fff !important;
            /* color: var(--primary) !important; */
        }

        .stat-box {
            text-align: center;
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #000;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #a67c52;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (min-width: 768px) {
            .stat-container {
            display: flex;
            justify-content: center;
            gap: 60px;
            }
        }
        /* end of index */

        /* about */
        .stats-section {
            background-color: #fff;
            padding: 60px 0;
        }

        .stats-section:hover {
            background-color: #fff !important;
            /* color: var(--primary) !important; */
        }

        .stat-box {
            text-align: center;
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #000;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #a67c52;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (min-width: 768px) {
            .stat-container {
            display: flex;
            justify-content: center;
            gap: 60px;
            }
        }

        .section-title-centered-Offer {
            text-align: center;
            margin-bottom: 30px;
            background-color: #fff;
            padding: 30px 10px;
        }

        .section-title-centered {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title-centered ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 1rem;
        }

        .section-title-centered ul li {
            margin-bottom: 0.5rem;
        }
 
        .card-hover {
            transition: all 0.3s ease;
            transform: translateY(0);
            background-color: var(--hover-soft);
            border-radius: 15px;
            /* padding: 20px; */
            text-align: center;
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .icon-box {
            background-color: var(--light);
            border-radius: 15px;
            /* padding: 20px; */
            text-align: center; 
            border: 1px solid transparent;
            transition: all 0.3s ease;
            height: 100%;
        }

        .icon-box:hover {
            transform: translateY(-10px); 
            background-color: var(--hover-soft);
            border-color: var(--secondary);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        }

        .icon-box h6 {
            font-weight: bold;
            color: var(--primary);
        }

        .value-box {
            background-color: #fff;
            color: var(--primary);
            border-radius: 15px;
            padding: 20px;
            height: 100%;
            transition: 0.3s ease;
            border: 1px solid transparent;
        }

        .value-box strong {
            display: block;
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--primary); 
        }

        .value-box:hover strong{
            color: var(--primary);
        }

        @media(max-width: 768px) {
            .icon-box img {
                width: 45px;
                height: 45px;
            }
        }

        .arrow-list {
            list-style-type: none !important;
            padding-left: 0 !important;
            margin-left: 0 !important;
        }
        /* count up */

        .home-approach-section {
            background-color: var(--light);
            padding: 60px 20px;
        }

        .home-approach-section:hover {
            background-color: var(--light) !important;
            color: var(--primary) !important;
        }

        .home-approach-title {
            text-align: center;
            margin-bottom: 50px;
        }
 
        .home-approach-block {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
            background: #fff;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            border: 1px solid transparent; 
        }

        .home-approach-block:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary);
            background: var(--hover-soft);
        }

        .home-approach-block:nth-child(even) {
            flex-direction: row-reverse;
        }

        .home-approach-image {
            flex: 1 1 40%;
            height: 250px;
        }
        .home-approach-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .home-approach-content {
            flex: 1 1 60%;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .home-approach-content h5 {
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 20px;
            color: #333;
        }
        .home-approach-content p {
            font-size: 15px;
            color: #555;
        }
        @media (max-width: 768px) {
            .home-approach-block {
                flex-direction: column !important;
            }
            .home-approach-image {
                height: 200px;
            }
        }
        /* about end */

        /* project-start */
        .program-card {
            background-color: #ffffff;
            color: var(--primary);
            transition: all 0.3s ease-in-out;
            border: 1px solid transparent;
        }

        .program-card:hover {
            transform: translateY(-8px);
            background-color: var(--hover-soft);
            border-color: var(--accent);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .program-card img {
            height: 70px;
            margin-bottom: 15px;
        }

        .program-card .btn-warning {
            background-color: var(--accent);
            border: none;
            border-radius: 50px;
            padding-left: 25px;
            padding-right: 25px;
        }

        .program-card .btn-warning:hover {
            background-color: #fff;
            /* color: #FFF8E1; */
        }
     
        .program-highlight {
            padding: 1.5rem;
            background-color: #f9f9f9;
            border-radius: 10px;
        }
        .program-highlight h5 {
            font-weight: bold;
        }
        .program-highlight ul {
            list-style: none;
            padding-left: 0;
        }

        .program-highlight .section-title {
            margin-top: 1rem;
            font-weight: 600;
        }

        .partner-marquee-section {
            overflow: hidden;
            background: #fff;
            padding: 20px 0;
        }

        .partner-marquee-section:hover {
            background-color: #fff !important; 
            color: var(--primary) !important;
        }

        .partner-marquee {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .partner-track {
            display: flex;
            width: max-content;
            animation: scrollLeft 25s linear infinite;
        }

        .partner-track img {
            height: 100px;
            margin: 0 60px;
            object-fit: contain;
        }

        @keyframes scrollLeft {
            from {
                transform: translateX(0%);
            }
            to {
                transform: translateX(-50%);
            }
        }

        /* Section Background */
        #join-afrilumina {
            background-color: var(--light);
            font-family: 'Open Sans', sans-serif;
        }

        /* Headings */
        #join-afrilumina h2,
        #join-afrilumina h3 {
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        #join-afrilumina p {
            color: var(--primary);
        }

        .join-afrilumina-container {
            background-color: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            padding: 40px 30px;
            max-width: 1200px;
            /* margin: auto; */
            margin-bottom: 30px;
        } 

        .join-afrilumina-container h3 {
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .custom-fs-7 li {
            font-weight: 100 !important; 
            font-family: 'Poppins', sans-serif;
            color: var(--primary);
            line-height: 1.6;
        } 

        .join-afrilumina-container .join-image {
            border: 5px solid var(--primaryn);
            border-radius: 12px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

        /* Cards */
        .join-card {
            margin-top: 20px;
            background-color: #FFFFFF;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .join-card h5 {
            color: #3E2723;
        }

        .join-card:hover {
            background-color: #FFF3E0;
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        /* Button */
        .join-btn {
            background-color: var(--accent);
            color: var(--primary);
            font-weight: bold;
            font-family: 'Poppins', sans-serif;
            padding: 0.75rem 2.5rem;
            border-radius: 50px;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }

        .join-btn:hover {
            background-color: var(--accent);
            color: #FFF8E1;
            transform: translateY(-5px); 
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        /* project-end */

        /* financial-literacy-start */
        .hero-section {
            background: linear-gradient(rgba(30, 30, 30, 0.0), rgba(30, 30, 30, 0.0)),
                url('../img/financial.jpg') center center/cover no-repeat; 
            height: 100vh;
            padding: 0 15px;
            color: var(--light);
            margin-bottom: 20px;
            
        }
        .hero-section1 {
            min-height: 100vh;
            position: relative;
        }

        .hero-buttons {
            height: 100%;
            padding-bottom: 2vh;
        }

        .hero-content {
            max-width: 800px; 
        }
        .hero-content h1 {
            color: var(--light);
        }

        .hero-content .btn {
            background-color: var(--accent);
            color: var(--text);
            margin: 10px;
            border: 2px var(--accent);
            transition: all 0.3s ease;
        }

        .hero-content .btn:hover {
            background-color: #fff;
            color: var(--primary); 
            transform: translateY(-3px);
        }


        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                padding: 80px 20px;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        .section-title-centered {
            
            text-align: center;
            margin-bottom: 20px;
        }
        .section {
            padding: 20px 20px;
        }

        .section h2 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .benefit-box {
            background-color: #fff;
            border-radius: 10px;
            padding: 0px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .benefit-box:hover {
            background-color: var(--hover-bg);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .benefit-box img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            margin: 0;
            padding: 0;
        }

        .benefit-box .p-3 {
            flex: 1;
            padding: 1rem;
        }

        .section {
        padding: 20px 20px;
        }

        .impact {
            background-color: #fff;
            border-left: 5px solid var(--accent);
            padding: 20px;
            margin-top: 20px; 
        }

        /* financial-literacy-end */

        /* career-pathways-start */
        .hero-skills-career {
            background: linear-gradient(rgba(30,30,30,0.0), rgba(30,30,30,0.0)),
                        url('../img/career-pathway.jpg') center center/cover no-repeat;
            height: 100vh;
            padding: 0 15px;
            color: var(--light);
            margin-bottom: 20px;
        }

        .hero-career-content {
            max-width: 800px;
            margin: 0 auto; 
        }


        .hero-career h1 { 
            color: var(--light);
        }

        .hero-buttons1 {
            height: 100%;
            padding-bottom: 2vh;
        }

        .hero-career {
            max-width: auto;
        }
        .hero-career h1 { 
            color: var(--light);
        }

        .hero-career .btn {
            background-color: var(--accent);
            color: var(--text);
            margin: 10px;
            border: 2px var(--accent);
            transition: all 0.3s ease;
        }

        .hero-career .btn:hover {
            background-color: #fff;
            color: var(--primary); 
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero-career {
                height: auto;
                padding: 80px 20px;
            }

            .hero-career h1 {
                font-size: 1.8rem;
            }

            .hero-career p {
                font-size: 1rem;
            }
        }

        .btn-afri {
            background-color: var(--accent);
            color: var(--primary);
            font-weight: 500;
        }

        .btn-afri:hover {
            background-color: #fff;
            color: var(--primary);
            transform: translateY(-3px);
        }

        .bg-soft {
            background-color: var(--hover-soft);
        }

        .why-passion {
            background-color: #fff; 
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.05); 
        }

        .why-passion-section:hover { 
            background-color: var(--light) !important;
            color: var(--primary) !important;
        } 

        .offer-card {
            transition: all 0.3s ease-in-out;
            background-color: var(--light);
            border: 1px solid var(--hover-soft);
            position: relative;
            height: 100%;
            border-radius: 0.5rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            background-color: var(--hover-soft);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: var(--secondary); 
            z-index: 2;
        }

        .offer-section {
            padding: 60px 10px;
            background-color: #fff;
        }  

        .offer-section:hover { 
            background-color: #fff !important;
            color: var(--primary) !important;
        } 

        .offer-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .offer-card .p-4 {
            flex: 1;
            padding: 1rem;
        }

        .pathways-section:hover { 
            background-color: var(--light) !important;
            color: var(--primary) !important;
        } 

        /* career-pathway-end */

        /* personal development start */
        .hero-skills {
            background: linear-gradient(rgba(30, 30, 30, 0.0), rgba(30, 30, 30, 0.0)),
                url('../img/skill-dev-1.jpg') center center/cover no-repeat;
            height: 100vh;
            padding: 0 15px;
            /* color: var(--light); */
            margin-bottom: 20px;
            z-index: 1;
        }

        .hero-skills {
            min-height: 100vh;
            position: relative;
        }

        .hero-skills-buttons {
            height: 100%;
            padding-bottom: 2vh;
        }

        .hero-content {
            max-width: 800px;
        }
        .hero-content h1 {
            color: var(--light);
        }

        .hero-content .btn {
            background-color: var(--accent);
            color: var(--text);
            margin: 10px;
            border: 2px var(--accent);
            transition: all 0.3s ease;
        }

        .hero-content .btn:hover {
            background-color: #fff;
            color: #3E2723; 
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .hero-skills {
                height: auto;
                padding: 80px 20px;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }


        .btn-afri-primary {
            background-color: var(--accent);
            color: var(--text);
            font-weight: 500;
            border: none;
        }

        .btn-afri-primary:hover {
            background-color: #fff;
            color: var(--text);
            transform: translateY(-3px);
        }    
        /*personal dev end */

        /* mentorship start */
        .join-afrilumina-container {
            background-color: rgba(0, 0, 0, 0.6);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            padding: 40px 30px; 
            max-width: auto;
            /* margin: auto; */
            margin-bottom: 20px;
            height: 350px;
        } 

        .join-afrilumina-container h1 {
            color: #fff; /* AfriLumina dark brown */
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .join-afrilumina-container .join-image {
            height: 300px;
            border: 5px solid #5D4037;
            border-radius: 12px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

        .join-row {
            display: flex;
            gap: 20px;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .join-card {
            min-width: 250px;
            background-color: #FFFFFF;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 0 0 auto;
        }

        .join-card h5 {
            color: var(--text);
        }

        .join-card:hover {
            background-color: var(--hover-soft);
            /* border-color: #FFA726; */
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
 
        /* Optional: Hide scrollbar for a cleaner look */
        .join-row::-webkit-scrollbar {
            display: none;
        }
		
		#form-alert {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            display: none;
            min-width: 300px;
            text-align: center;
            padding: 20px 30px;
            font-size: 18px;
            border-radius: 10px;
            background-color: #f0fff2; /* same color for all */
            color: var(--text);
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
            animation: fadeIn 0.5s ease;
          }

          @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
          }

          @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
          }

        /* Button */
        .join-btn {
            background-color: #fff;
            color: var(--text);
            font-weight: bold;
            font-family: 'Poppins', sans-serif;
            padding: 0.75rem 2.5rem;
            border-radius: 50px;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }

        .join-btn:hover {
            border-color: var(--accent);
            background-color: var(--accent);
            color: var(--light);
            transform: translateY(-5px); 
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        /* mentorship end */

        /* contact start */
        .contact-container {
            background-color: var(--hover-soft);
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            padding: 40px 30px;
            max-width: auto;
            /* margin: auto; */
            margin-bottom: 20px;
            height: auto;
        } 

        .contact-container h3 {
            color: #3a2e2a; /* AfriLumina dark brown */
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        /* contact end */

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden; 
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
    color: var(--primary);
}

/* .btn-primary,
.btn-outline-primary:hover {
    color: #FFA726;
} */

btn-primary {
    background-color: var(--sun-yellow);
    border-color: var(--sun-yellow);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: #e4941f;
    border-color: #e4941f;
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--sun-yellow);
    border-color: var(--sun-yellow);
    color: var(--primary);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
    background-color: var(--deep-brown);
    color: var(--light);
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--light);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--sun-yellow);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/home-4.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    background-color: #FFFFFF !important;
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/project.jpg) left center no-repeat;
    background-size: cover;
     /* background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover; */
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    background-color: #FFFFFF !important;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    background-color: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Program Pillars Start */
 .hover-card {
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(245, 229, 216, 0.8);
            color: #3E2723;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 20px;
            text-align: center;
            font-weight: 500;
        }

        .hover-card:hover .hover-overlay {
            opacity: 1;
        }


/*** Footer ***/
.footer {
    background-color: var(--deep-brown);
    color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #F5E5D8;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--sun-yellow);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: var(--deep-brown);
}

.copyright a:hover {
    color: var(--sun-yellow) !important;
}
/* Apply subtle hover to section elements */
section:hover,
.card:hover,
.feature-item:hover,
.service-item:hover {
    background-color: var(--hover-soft);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--sun-yellow);
}