  /* Global Styles */
        :root {
            --primary: #12384c;
            --secondary: #14374d;
            --accent: #45cf75;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #f5f7fa;
            overflow-x: hidden;
        }
        
/* Mobile menu styles */
nav ul {
    display: flex;
    list-style: none;
    transition: var(--transition);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
        overflow-y: auto;
        z-index: 999;
    }
    
    nav ul.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    nav ul li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }
    
    nav ul.active li:nth-child(1) { animation-delay: 0.1s; }
    nav ul.active li:nth-child(2) { animation-delay: 0.2s; }
    nav ul.active li:nth-child(3) { animation-delay: 0.3s; }
    nav ul.active li:nth-child(4) { animation-delay: 0.4s; }
    nav ul.active li:nth-child(5) { animation-delay: 0.5s; }
    nav ul.active li:nth-child(6) { animation-delay: 0.6s; }
    nav ul.active li:nth-child(7) { animation-delay: 0.7s; }
    
    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .mobile-menu:hover {
        color: var(--secondary);
        transform: scale(1.1);
    }
    
    /* Disable body scroll when menu is open */
    body.no-scroll {
        overflow: hidden;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 1rem;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        span {
            font-size: 1.05rem;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--secondary), #45cf75);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 1px 0 10px 0 rgb(255 255 255 / 30%);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), #2a4d8f);
            transition: var(--transition);
            z-index: -1;
        }
        
        .btn:hover:before {
            left: 0;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26, 58, 108, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
            box-shadow: none;
        }
        
        .btn-outline:before {
            background: white;
        }
        
        .btn-outline:hover {
            color: var(--primary);
            border-color: transparent;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            display: inline-block;
            position: relative;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 10px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 70px;
            margin-right: 15px;
            transition: var(--transition);
        }
        
        .logo h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: var(--primary);
            transition: var(--transition);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(42, 157, 143, 0.8)), url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 200px 0 150px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.5s;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 0.8s;
        }
        
        .hero-btns {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s forwards 1.1s;
        }
        
        .hero-btns .btn {
            margin: 0 10px;
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            opacity: 0.1;
            border-radius: 50%;
            background: white;
            animation: float 15s infinite linear;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 85%;
            animation-delay: 4s;
        }
        
        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 15%;
            animation-delay: 6s;
        }
        
        .shape:nth-child(5) {
            width: 70px;
            height: 70px;
            top: 20%;
            left: 70%;
            animation-delay: 8s;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text {
            padding-right: 20px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .about-image:hover {
            transform: perspective(1000px) rotateY(0);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Values Section */
        .values {
            background-color: var(--light);
            position: relative;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(254px, 1fr));
            gap: 20px;
        }
        
        .value-card {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 30px 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            color: white;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .value-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transition: var(--transition);
            z-index: -1;
        }
        
        .value-card:hover:before {
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-15px);
            color: white;
        }
        
        .value-card:hover h3,
        .value-card:hover .value-icon {
            color: white;
        }
        
        .value-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .value-card h3 {
            transition: var(--transition);
            color: white;
        }
        
        /* Qualifications Section */
        .qualifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }
        
        .qual-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            position: relative;
        }
        
        .qual-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .qual-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .qual-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
        }
        
        .qual-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .qual-card:hover .qual-image img {
            transform: scale(1.1);
        }
        
        .qual-content {
            padding: 25px;
        }
        
        .qual-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Roadmap Section */
        .roadmap {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .roadmap-steps {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .roadmap-steps:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 30px;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .step {
            display: flex;
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .step.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .step:nth-child(even) {
            transform: translateX(50px);
        }
        
        .step:nth-child(even).visible {
            transform: translateX(0);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-right: 30px;
            flex-shrink: 0;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(26, 58, 108, 0.3);
        }
        
        .step-content {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 30px;
            color: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            flex-grow: 1;
            position: relative;
        }
        
        .step-content h3{
            color: white;
        }
        
        .step-content:before {
            content: '';
            position: absolute;
            top: 20px;
            left: -10px;
            width: 20px;
            height: 20px;
            background: #12384c;
            transform: rotate(45deg);
        }
        
        /* Policies Section */
        .policies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .policy-item {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 30px 25px;
            border-radius: 10px;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-left: 5px solid var(--primary);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .policy-item h3{
            color: white;
        }
        
        .policy-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transition: var(--transition);
            z-index: -1;
        }
        
        .policy-item:hover:before {
            left: 0;
        }
        
        .policy-item:hover {
            transform: translateY(-10px);
            color: white;
        }
        
        .policy-item:hover h3 {
            color: white;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            align-items: center;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: white;
            margin-right: 20px;
            margin-top: 5px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .submit-btn{
            width: 100%;
            padding: 18px;
            border-radius: 8px;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #12384cad;
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 58, 108, 0.1);
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary), #0f2a52);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }
        
        .footer-column p {
            color: rgba(255,255,255,0.8);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a{
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: baseline;
        }
        
        .contact-item-div a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: baseline;
        }
        
        .footer-column ul li a i {
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .footer-column ul li a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
        }
        
        #header-title{
            background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(42, 157, 143, 0.8)), url(https://images.unsplash.com/photo-1523580494863-6f3031224c94?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 110px 0 0px;
            position: relative;
            overflow: hidden;
        }
        
        #header-title h2{
            color: white;
            margin-bottom: 2.5rem;
        }
        
        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-text {
                padding-right: 0;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 540px){

            .hero h1 {
                font-size: 1.8rem !important;
            }

        }

        @media (min-width: 541px) and (max-width: 767px){

            .hero h1 {
                font-size: 2.5rem !important;
            }

        }
        
        @media (max-width: 950px){
            
            .stat-number{
                font-size: 30px !important;
            }
            
            .stats-grid{
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                text-align: center;
            }
            
            nav ul.active {
                display: flex;
            }
            
            .contact-info h3{
                text-align: center;
            }
            
            .logo img{
                height: 60px;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 80px 0;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 150px 0 100px;
            }
            
            .step {
                flex-direction: column;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .step-content:before {
                display: none;
            }
            
            .roadmap-steps:before {
                left: 30px;
            }
            
            .hero-btns .btn {
                display: block;
                margin: 10px auto;
                width: 80%;
                max-width: 250px;
            }
        }

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-container {
    padding: 60px 0px 0px 0px;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--neutral-100);
}

.visible {
    visibility: visible;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--neutral-600);
    font-weight: 500;
}

        