        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
        
        :root {
            --primary-dark: #003366;
            --gradient-light: #00AEEF;
            --gradient-dark: #005A9C;
            --primary: #2563eb;
            --secondary: #567aee;
            --accent: #5a94f1;
            --text: #1f2937;
            --light: #f9fafb;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       body {
    background: linear-gradient(135deg, #fefcf3 0%, #f8f6f0 50%, #fff8f0 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Left wave container */
.left-waves {
    position: fixed;
    left: 0;
    top: 0;
    width: 180px;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Right wave container */
.right-waves {
    position: fixed;
    right: 0;
    top: 0;
    width: 180px;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Left waves */
.left-wave {
    position: absolute;
    left: -30px;
    border-radius: 0 80px 80px 0;
    animation: left-flow 6s ease-in-out infinite;
}

.left-waves .wave1 {
    top: 5%;
    width: 150px;
    height: 200px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.6), rgba(245, 245, 220, 0.2));
    animation-delay: 0s;
}

.left-waves .wave2 {
    top: 35%;
    width: 120px;
    height: 250px;
    background: linear-gradient(45deg, rgba(222, 184, 135, 0.5), rgba(255, 248, 220, 0.15));
    animation-delay: -2s;
}

.left-waves .wave3 {
    top: 70%;
    width: 135px;
    height: 170px;
    background: linear-gradient(45deg, rgba(30, 144, 255, 0.4), rgba(253, 245, 230, 0.2));
    animation-delay: -4s;
}

.left-line {
    position: absolute;
    left: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.9), transparent);
    animation: left-line 5s ease-in-out infinite;
}

/* Right waves */
.right-wave {
    position: absolute;
    right: -30px;
    border-radius: 80px 0 0 80px;
    animation: right-pulse 8s ease-in-out infinite;
}

.right-waves .wave1 {
    top: 15%;
    width: 140px;
    height: 220px;
    background: radial-gradient(ellipse at left, rgba(100, 149, 237, 0.6), rgba(245, 245, 220, 0.1));
    animation-delay: -1s;
}

.right-waves .wave2 {
    top: 45%;
    width: 160px;
    height: 190px;
    background: radial-gradient(ellipse at left, rgba(240, 230, 140, 0.5), rgba(255, 250, 240, 0.12));
    animation-delay: -3s;
}

.right-waves .wave3 {
    top: 75%;
    width: 125px;
    height: 210px;
    background: radial-gradient(ellipse at left, rgba(70, 130, 180, 0.4), rgba(255, 255, 255, 0.08));
    animation-delay: -5s;
}

.right-line {
    position: absolute;
    right: 0;
    top: 30%;
    width: 4px;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(245, 222, 179, 0.9), transparent);
    animation: right-line 7s ease-in-out infinite;
}

/* Animations */
@keyframes left-flow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes right-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes left-line {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes right-line {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(30px); }
}


        /* Header Styles */
        .header {
            background: var(--white);
            position: relative;
            overflow: hidden;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 51, 102, 0.1);
        }

      .navbar {
            background-color: var(--light);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
            transition: all 0.3s ease;
            padding: 10px;
        }

        .navbar-brand img {
            height: 50px;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .nav-item.nav-link {
            display: inline-flex;
            align-items: center;
            padding: 10px 24px !important;
            background-color: black;
            color: white !important;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(74, 107, 255, 0.3);
            margin-left: 15px;
            border: 2px solid transparent;
        }

        .nav-item.nav-link:hover {
            background-color: #041a7e;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(74, 107, 255, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .nav-item.nav-link:active {
            transform: translateY(0);
        }

        .nav-item.nav-link::before {
            content: "←";
            margin-right: 8px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .nav-item.nav-link:hover::before {
            transform: translateX(-4px);
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: none;
            color:#00AEEF;
            font-size: 1.5rem;
        }

        @media (max-width: 992px) {
            .navbar-nav {
                padding-top: 15px;
            }

            .nav-item.nav-link {
                margin-left: 0;
                margin-top: 10px;
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .navbar-brand img {
                height: 40px;
            }
        }
        .hero-section {
            position: relative;
            z-index: 5;
            padding: 6rem 2rem 4rem;
            text-align: center;
            color: var(--primary-dark);
            background: var(--white);
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--gradient-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #666;
            font-weight: 400;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: var(--white);
            border-radius: 15px;
            border: 2px solid rgba(0, 174, 239, 0.1);
            min-width: 180px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 51, 102, 0.08);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: var(--gradient-light);
            box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gradient-light);
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--primary-dark);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* Mobile Navigation */
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .careers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .career-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .career-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 174, 239, 0.1);
        }
        
        .career-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
        }
        
        .card-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--gradient-dark));
            color: white;
            padding: 2rem 1.5rem;
            position: relative;
        }

        .card-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gradient-light), var(--gradient-dark));
        }
        
        .card-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .card-header p {
            opacity: 0.9;
            font-size: 0.95rem;
        }
        
        .card-body {
            padding: 2rem 1.5rem;
        }
        
        .job-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .job-meta span {
            background: linear-gradient(135deg, var(--gradient-light), var(--gradient-dark));
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .job-description {
            margin-bottom: 2rem;
            line-height: 1.7;
            color: #666;
        }
        
        .send-cv-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }
        
        .send-cv-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
        }

     .footer {
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 174, 239, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 174, 239, 0.3);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}



        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                gap: 1.5rem;
            }
            
            .career-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 4rem 1rem 3rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .careers-container {
                padding: 3rem 1rem;
            }
        }