
        :root {
            --primary-color: #0d369f;
            --secondary-color: #f8f9fa;
            --accent-color: #ff6b00;
        }
        
        .bg-primary-custom {
            background-color: var(--primary-color);
        }
        
        .text-primary-custom {
            color: var(--primary-color);
        }
        
        .btn-accent {
            background-color: var(--accent-color);
            color: white;
        }
        
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            font-size: 0.9rem;
        }

        /* Hero Section with Video Background */
        .hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 54, 159, 0.7); /* Primary color with opacity */
            z-index: 1;
        }

        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .nav-item .nav-link {
            font-weight: 500;
            position: relative;
            padding: 8px 15px;
        }
        
        .nav-item .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-item .nav-link:hover:after,
        .nav-item .nav-link.active:after {
            width: 70%;
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            margin-top: 8px;
        }
        
        .dropdown-item {
            padding: 10px 20px;
            transition: all 0.3s;
            position: relative;
        }
        
        .dropdown-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background-color: var(--accent-color);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .dropdown-item:hover:before {
            opacity: 1;
        }
        
        .dropdown-item:hover {
            background-color: rgba(13, 54, 159, 0.05);
            padding-left: 25px;
        }
        
        .country-flag {
            width: 20px;
            margin-right: 10px;
            display: inline-block;
        }
        
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 500px;
            }
        }

        .hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

.card {
    border-radius: 12px !important;
    overflow: hidden;
}
   
.contact-hero {
        background: linear-gradient(rgba(13, 54, 159, 0.9), rgba(13, 54, 159, 0.9)), url('images/contact-bg.jpg');
        background-size: cover;
        background-position: center;
    }
    
    .form-control, .form-select {
        padding: 10px 15px;
        border-radius: 8px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    #contactForm {
        max-width: 600px;
        margin: 0 auto;
    }
    
    @media (min-width: 992px) {
        .contact-page .card {
            margin-top: -50px;
        }
    }

    .bg-primary-custom {
            background-color: var(--primary-color);
        }
        
        .text-primary-custom {
            color: var(--primary-color);
        }
        
        .btn-accent {
            background-color: var(--accent-color);
            color: white;
            border: none;
        }
        
        .btn-accent:hover {
            background-color: #e05a00;
        }
        
        .hero-section {
            background: linear-gradient(rgba(13, 54, 159, 0.8), rgba(13, 54, 159, 0.8)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
        }
        
        .card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .course-card {
            height: 100%;
        }
        
        .course-card .card-body {
            padding: 25px;
        }
        
        .course-icon {
            width: 60px;
            height: 60px;
            background: rgba(13, 54, 159, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .course-icon i {
            color: var(--primary-color);
            font-size: 24px;
        }
        
        .university-logo {
            height: 80px;
            margin: 20px auto;
            display: block;
            object-fit: contain;
        }
        
        .stats-card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .stats-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .benefit-card {
            padding: 30px;
            text-align: center;
            height: 100%;
        }
        
        .benefit-card i {
            font-size: 40px;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .cta-section {
            background: linear-gradient(to right, #0d369f, #1a56db);
            color: white;
            padding: 80px 0;
        }
        
        .testimonial-card {
            padding: 30px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            margin-top: 40px;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 30px;
            font-size: 100px;
            color: var(--accent-color);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .student-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
        }
        
        .uk-flag {
            height: 30px;
            margin-right: 10px;
        }
        
        .nav-pills .nav-link {
            color: var(--primary-color);
            border-radius: 30px;
            margin-bottom: 10px;
            font-weight: 500;
            padding: 10px 20px;
        }
        
        .nav-pills .nav-link.active {
            background: var(--primary-color);
            color: white;
        }

         .usa-strip {
            background: linear-gradient(to right, var(--usa-blue), var(--usa-red));
            height: 10px;
        }

         .usa-flag {
            height: 30px;
            margin-right: 10px;
        }
        
       