      :root {
            --dark-blue: #005661;
            --turquoise: #00A6A6;
            --light-turquoise: #e6f6f6;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --dark-gray: #333333;
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            background-color: var(--light-gray);
            color: var(--dark-gray);
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        /* Navbar Styling */
        .navbar {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
            background-color: var(--white);
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
        }
        
        .logo-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dark-blue), var(--turquoise));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        }
        
        .logo-text {
            color: var(--white);
            font-weight: 800;
            font-size: 37px;
        }
        
        .brand-name {
            font-weight: 800;
            font-size: 1.5rem;
        }
        
        .brand-name span:first-child {
            color: var(--dark-blue);
        }
        
        .brand-name span:last-child {
            color: var(--turquoise);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0;
            font-size: 1.5rem;
            color: var(--dark-blue);
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .nav-link {
            color: var(--dark-gray);
            font-weight: 600;
            position: relative;
            margin: 0 10px;
            padding: 8px 15px !important;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, 
        .nav-link.active {
            color: var(--dark-blue);
            background: rgba(0, 166, 166, 0.1);
        }
        
        .nav-link:after {
            display: none;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 86, 97, 0.7), rgba(0, 166, 166, 0.7)), url('https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1632&q=80');
            background-size: cover;
            background-position: center;
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 100px 0;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                padding: 70px 0;
            }
            .navbar {
    padding: 0px 0;
}
.navbar.scrolled {
    padding: 5px 0;
}
        }
        
        .hero-content {
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-content h1 {
            font-weight: 800;
            line-height: 1.3;
        }
        
        .hero-content .lead {
            font-size: 1.4rem;
            font-weight: 500;
        }
        
        .water-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }
        
        .water-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 100px;
        }
        
        .water-wave .shape-fill {
            fill: var(--dark-blue);
        }
        
        /* Section Styling */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--dark-blue);
            font-weight: 800;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 80px;
            height: 4px;
            background: var(--turquoise);
            border-radius: 10px;
        }
        
        .section-title.center:after {
            right: 50%;
            transform: translateX(50%);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .bg-light-custom {
            background-color: var(--light-turquoise);
        }
        
        /* Cards Styling */
        .value-card {
            border: none;
            border-radius: 15px;
            transition: all 0.4s ease;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            overflow: hidden;
            background: var(--white);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .feature-box {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            text-align: center;
            border-top: 4px solid var(--turquoise);
        }
        
        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            font-size: 3.5rem;
            color: var(--turquoise);
            margin-bottom: 25px;
            transition: transform 0.4s ease;
        }
        
        .feature-box:hover .feature-icon {
            transform: scale(1.1);
        }
        
        .stats-box {
            background: var(--white);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            border: 1px solid rgba(0, 166, 166, 0.15);
        }
        
        .stats-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark-blue);
            line-height: 1;
        }
        
        .stats-label {
            font-size: 1.1rem;
            color: var(--turquoise);
            font-weight: 600;
        }
        
        /* Sponsors */
        .sponsor-logo {
            max-width: 180px;
            height: 80px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: all 0.4s ease;
            opacity: 0.7;
            padding: 15px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        
        /* Buttons */
        .btn {
            font-weight: 600;
            border-radius: 30px;
            padding: 12px 30px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .btn-primary-custom {
            background: linear-gradient(to right, var(--dark-blue), var(--turquoise));
            border: none;
            color: var(--white);
            box-shadow: 0 5px 15px rgba(0, 86, 97, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 86, 97, 0.4);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }
        
        .btn-outline-custom:hover {
            background: var(--white);
            color: var(--dark-blue);
        }
        
        /* Investment Section */
        .investment-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, var(--dark-blue), var(--turquoise));
            color: var(--white);
            padding: 40px;
        }
        
        /* Contact Form */
        .contact-form .form-control {
            border-radius: 12px;
            padding: 14px 20px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--turquoise);
            box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.2);
        }
        
        .contact-info-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            font-size: 1.4rem;
            color: #239da1;
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--white);
            color: var(--dark-blue);
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background: var(--dark-blue);
            color: var(--white);
            padding: 80px 0 30px;
            position: relative;
        }
        
        .footer-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background: var(--turquoise);
            border-radius: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
            transition: all 0.3s ease;
            position: relative;
            padding-right: 20px;
        }
        
        .footer-links a:hover {
            color: var(--white);
            transform: translateX(-5px);
        }
        
        .footer-links a:before {
            content: "›";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--turquoise);
        }
        
        .hashtag {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 8px 18px;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s ease;
            color: var(--white);
            text-decoration: none;
        }
        
        .hashtag:hover {
            background: var(--turquoise);
            transform: scale(1.05);
        }
        
        .copyright {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Mobile Optimizations */
        @media (max-width: 992px) {
            .section {
                padding: 60px 0;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content .lead {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .navbar-collapse {
                background: var(--white);
                padding: 20px;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                margin-top: 15px;
            }
            
            .nav-item {
                margin-bottom: 8px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .hero-content .lead {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .stats-number {
                font-size: 2.2rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }