* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #27AAE1;
            --secondary-color: #00aeef;
            --accent-color: #00aeef;
            --dark-color: #333;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --border-radius: 12px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
        }
/* Top Bar - WAXAAN BEDDELAY - LOGO LEFT, LINKS RIGHT */
        .top-bar {
            background: linear-gradient(90deg, var(--primary-color) 0%, #2a4cb3 100%);
            color: white;
            padding: 12px 0;
            font-size: 0.9rem;
            position: relative;
            z-index: 1001;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-top {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-top img {
            height: 55px;
            width: auto;
            transition: var(--transition);
        }

        .logo-top:hover img {
            transform: scale(1.05);
        }

        .top-bar-right {
            display: flex;
            gap: 25px;
        }

        .top-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 20px;
        }

        .top-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            font-weight: 600;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Main Header - WAXAAN BEDDELAY - LOGO LEFT, NAV MIDDLE, BUTTON RIGHT */
        .main-header {
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-bottom: 3px solid var(--secondary-color);
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-main {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-main img {
            height: 55px;
            width: auto;
            transition: var(--transition);
        }

        .logo-main:hover img {
            transform: scale(1.05);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .main-nav {
            display: flex;
            justify-content: center;
            flex-grow: 1;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            padding: 10px 0;
            position: relative;
            transition: var(--transition);
            font-size: 1.05rem;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            transition: var(--transition);
            border-radius: 2px;
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .job-portal-btn {
            background: linear-gradient(90deg, var(--secondary-color) 0%, #00c6ff 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
            white-space: nowrap;
        }

        .job-portal-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            transition: var(--transition);
        }

        .menu-toggle:hover {
            background: rgba(26, 58, 143, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .about-content {
                gap: 50px;
            }
        }

        @media (max-width: 992px) {
            .main-nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                padding: 100px 30px 30px;
                z-index: 999;
                overflow-y: auto;
                backdrop-filter: blur(10px);
            }
            
            .main-nav.active {
                display: block;
                animation: slideIn 0.3s ease;
            }
            
            @keyframes slideIn {
                from { opacity: 0; transform: translateY(-20px); }
                to { opacity: 1; transform: translateY(0); }
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            
            .main-nav ul li {
                width: 100%;
                text-align: center;
            }
            
            .nav-link {
                display: block;
                padding: 20px 0;
                font-size: 1.3rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .menu-toggle {
                display: block;
                z-index: 1000;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero {
                height: 70vh;
                min-height: 600px;
            }
            
            .programs-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .partner-info {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            
            .partner-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }
        
        /* ENHANCED FOOTER STYLES */
        .main-footer {
            background: linear-gradient(135deg, #27AAE1 0%, #0a1f5c 100%);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/images/img.png') center/cover;
            opacity: 0.05;
            z-index: 1;
        }

        .main-footer .container {
            position: relative;
            z-index: 2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col {
            padding: 0 20px;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--secondary-color);
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .footer-about {
            max-width: 350px;
        }

        .footer-logo {
            height: 60px;
            width: auto;
            margin-bottom: 25px;
            
        }

        .footer-about p {
            margin-bottom: 30px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px) rotate(5deg);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-col ul li a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .footer-col ul li i {
            color: var(--secondary-color);
            font-size: 1.1rem;
            min-width: 25px;
        }

        .footer-contact ul li {
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-bottom p {
            opacity: 0.8;
            font-size: 1rem;
        }

        .slogan {
            font-size: 1.2rem !important;
            color: var(--secondary-color) !important;
            font-weight: 700;
            letter-spacing: 1px;
            opacity: 1 !important;
        }   