
        /* CSS Styles */
        :root {
            --blue: #2563EB;
            --orange: #F97316;
            --purple: #A855F7;
            --green: #84CC16;
            --pink: #EC4899;
            --light-bg: #F9FAFB;
        }
        
        /* Navigation Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            font-weight: 600;
            margin: 0 5px;
            position: relative;
        }
        
        /* Color coding for each nav item */
        .nav-home { color: var(--blue) !important; }
        .nav-services { color: var(--orange) !important; }
        .nav-country { color: var(--purple) !important; }
        .nav-success { color: var(--green) !important; }
        .nav-review { color: var(--pink) !important; }
        .nav-event { color: var(--blue) !important; }
        .nav-gallery { color: var(--orange) !important; }
        .nav-blog { color: var(--purple) !important; }
        .nav-contact { color: var(--green) !important; }
        
        /* Hover effects */
        .nav-link:hover::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: 0;
            left: 0;
            border-radius: 3px;
        }
        
        .nav-home:hover::after { background: var(--blue); }
        .nav-services:hover::after { background: var(--orange); }
        .nav-country:hover::after { background: var(--purple); }
        .nav-success:hover::after { background: var(--green); }
        .nav-review:hover::after { background: var(--pink); }
        .nav-event:hover::after { background: var(--blue); }
        .nav-gallery:hover::after { background: var(--orange); }
        .nav-blog:hover::after { background: var(--purple); }
        .nav-contact:hover::after { background: var(--green); }
        
        /* Mobile menu toggle */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Dropdown menu */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* CTA button */
        .btn-cta {
            background: linear-gradient(45deg, var(--orange), var(--pink));
            color: white !important;
            border: none;
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 50px;
        }

        /* Banner Section */
        .hero-banner {
            background: linear-gradient(135deg, #2563EB 0%, #A855F7 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-banner::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        
        .hero-banner::after {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        
        .btn-hero-primary {
            background: white;
            color: var(--blue);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            margin-right: 15px;
            border: 2px solid white;
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            border: 2px solid white;
        }
        
        /* About Us Section */
        .about-section {
            padding: 100px 0;
            background: var(--light-bg);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 30px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--orange);
            border-radius: 2px;
        }
        
        .about-img {
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .about-img:hover {
            transform: translateY(-10px);
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .feature-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 20px;
            transition: transform 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .feature-icon.blue { color: var(--blue); }
        .feature-icon.orange { color: var(--orange); }
        .feature-icon.green { color: var(--green); }
        
        /* Animation for feature cards */
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }
        
        /* Section title underline */
        .section-title {
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #2563EB, #A855F7);
            border-radius: 2px;
        }
        
        /* Image hover effect */
        .about-img {
            transition: all 0.5s ease;
        }
        
        .about-img:hover {
            transform: scale(1.02) rotate(-1deg);
        }
        
        /* Service Card Hover Effects */
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        
        /* Custom Button Colors */
        .btn-outline-purple {
            color: #A855F7;
            border-color: #A855F7;
        }
        
        .btn-outline-purple:hover {
            background-color: #A855F7;
            color: white;
        }
        
        .btn-outline-pink {
            color: #EC4899;
            border-color: #EC4899;
        }
        
        .btn-outline-pink:hover {
            background-color: #EC4899;
            color: white;
        }
        
        /* CTA Box Glow Effect */
        .cta-box {
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }
        
        /* Country Section Styles */
        .country-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #f0f4ff 100%);
        }
        
        .country-title {
            position: relative;
            padding-bottom: 15px;
        }
        
        .country-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, #2563EB, #A855F7);
            border-radius: 2px;
        }
        
        .country-flag-container {
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .country-flag-container:hover {
            transform: translateY(-5px);
        }
        
        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
        }
        
        .stat-box {
            transition: all 0.3s;
        }
        
        .stat-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Nav Pills Customization */
        .nav-pills .nav-link {
            color: #333;
            font-weight: 600;
            padding: 10px 20px;
            margin: 0 5px 10px;
            border-radius: 50px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .nav-pills .nav-link.active {
            background: linear-gradient(45deg, #2563EB, #A855F7);
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }
        
        .nav-pills .nav-link:not(.active):hover {
            background-color: #f0f4ff;
            border-color: #2563EB;
        }
        
        /* Accordion Customization */
        .accordion-button {
            font-weight: 600;
            background-color: rgba(37, 99, 235, 0.05);
        }
        
        .accordion-button:not(.collapsed) {
            color: #2563EB;
            background-color: rgba(37, 99, 235, 0.1);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(37, 99, 235, 0.2);
        }
        
        /* Success Section */
        .success-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #f0f8ff 100%);
        }
        
        .success-card {
            transition: all 0.3s ease;
            border-top: 4px solid #84CC16;
        }
        
        .success-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        
        .student-img {
            display: flex;
            justify-content: center;
        }
        
        .student-quote {
            position: relative;
        }
        
        .student-quote:before {
            content: '';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: linear-gradient(to right, #84CC16, #2563EB);
        }
        
        .rating i {
            font-size: 1.1rem;
        }
        
        /* Reviews Section */
        .reviews-section {
            background: linear-gradient(to bottom, #ffffff 0%, #fdf2ff 100%);
        }
        
        .review-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(236, 72, 153, 0.1);
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(236, 72, 153, 0.1);
            border-color: rgba(236, 72, 153, 0.3);
        }
        
        .rating i {
            font-size: 0.9rem;
        }
        
        .trust-indicators {
            border-top: 4px solid #EC4899;
        }
        
        .text-pink {
            color: #4915d8;
        }
        
        .bg-pink {
            background-color: #EC4899;
        }
        
        /* Events Section */
        .events-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #fff4ed 100%);
        }
        
        .event-card {
            transition: all 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(249, 115, 22, 0.1) !important;
        }
        
        .event-date {
            width: 50px;
            line-height: 1.2;
        }
        
        .event-img img {
            height: 200px;
            object-fit: cover;
        }
        
        .text-orange {
            color: #1640f9;
        }
        
        .bg-orange {
            background-color: #F97316;
        }
        
        .btn-orange {
            background-color: #F97316;
            color: white;
        }
        
        .btn-outline-orange {
            color: #F97316;
            border-color: #F97316;
        }
        
        .btn-outline-orange:hover {
            background-color: #F97316;
            color: white;
        }
        
        /* Gallery Section */
        .gallery-section {
            background: linear-gradient(to bottom, #ffffff 0%, #f0f7ff 100%);
        }
        
        .gallery-img-container {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .gallery-img-container img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(37, 99, 235, 0.8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-img-container:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-img-container:hover img {
            transform: scale(1.1);
        }
        
        .gallery-zoom {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .gallery-zoom:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }
        
        .text-blue {
            color: #eb8b0d;
        }
        
        .bg-blue {
            background-color: #2563EB;
        }
        
        .btn-blue {
            background-color: #2563EB;
            color: white;
        }
        
        .btn-outline-blue {
            color: #2563EB;
            border-color: #2563EB;
        }
        
        .btn-outline-blue:hover {
            background-color: #2563EB;
            color: white;
        }
        
        .btn-outline-blue.active {
            background-color: #2563EB;
            color: white;
        }
        
        /* Blog Section */
        .blog-section {
            background: linear-gradient(to bottom, #f8f9fa 0%, #f9f0ff 100%);
        }
        
        .blog-card {
            transition: all 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(168, 85, 247, 0.1) !important;
        }
        
        .blog-img {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .blog-img img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        
        .blog-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(168, 85, 247, 0.9);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }
        
        .blog-date span:first-child {
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .text-purple {
            color: #f77912;
        }
        
        .bg-purple {
            background-color: #A855F7;
        }
        
        .btn-purple {
            background-color: #A855F7;
            color: white;
        }
        
        .btn-outline-purple {
            color: #A855F7;
            border-color: #A855F7;
        }
        
        .btn-outline-purple:hover {
            background-color: #A855F7;
            color: white;
        }
        
        /* Footer Styles */
        /* Footer Link Hover Effects */
        .footer-link {
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
        }
        
        .footer-link:hover {
            color: white !important;
            padding-left: 5px;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #F97316;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 20px;
        }
        
        /* Social Icon Hover Effects */
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #F97316;
            transform: translateY(-3px);
        }
        
        /* Back to Top Button Hover */
        .back-to-top:hover {
            background: #EC4899 !important;
            transform: translateY(-5px);
        }
        
        /* Google Maps Container */
        .google-map-container {
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }
        
        .google-map-container:hover {
            transform: translateY(-5px);
        }
        
        /* WhatsApp Button Styles */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 20px;
            z-index: 100;
        }
        
        .whatsapp-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            background: #25D366;
            color: white;
            padding: 10px 15px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .whatsapp-link:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        .whatsapp-icon {
            font-size: 28px;
            margin-right: 10px;
        }
        
        .whatsapp-text {
            font-weight: 600;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .nav-pills .nav-link {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .section-title::after {
                bottom: -8px;
                width: 60px;
                height: 3px;
            }
            
            .country-title {
                font-size: 1.8rem;
            }
            
            .whatsapp-float {
                bottom: 20px;
                left: 10px;
            }
            
            .whatsapp-text {
                display: none;
            }
            
            .whatsapp-link {
                padding: 12px;
                width: 50px;
                height: 50px;
                justify-content: center;
            }
            
            .whatsapp-icon {
                margin-right: 0;
                font-size: 30px;
            }
        }
   