:root {
            --primary: #3a50d4;
            --secondary: #ff6584;
            --accent: #42e2b8;
            --dark: #222222;
            --light: #f8f9fa;
        }

        body {
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        /* h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        } */

        /* Top Bar */
        .top-bar {
            /* background-color: var(--dark); */
            background-color: #3a50d4;
            color: white;
            font-size: 0.9rem;
            padding: 8px 0;
        }

        .top-contact a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            transition: all 0.3s;
        }

        .top-contact a:hover {
            color: var(--accent);
        }

        .top-contact i {
            margin-right: 5px;
        }

        .client-portal {
            /* background-color: var(--primary); */
            /* color: white; */
            padding: 5px 15px;
            /* border-radius: 20px; */
            /* text-decoration: none; */
            transition: all 0.3s;
        }

        .client-portal:hover {
            /* background-color: #554fd8; */
            transform: translateY(-2px);
        }

        /* Main Nav */
        .main-nav {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand img {
            height: 80px;
        }

        .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 8px;
            position: relative;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--primary);
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .free-assessment-btn {
            /* background-color: var(--secondary); */
            background-color: #3a50d4;
            color: white;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }

        .free-assessment-btn:hover {
            background-color: #3a50d4;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 80, 212, 0.3);
            text-decoration: none;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0) 70%);
            z-index: 0;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
        }

        .consultation-form {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .form-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 20px;
            text-align: center;
        }

        .form-control,
        .form-select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 15px;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
        }

        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px;
            width: 100%;
            font-weight: 600;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background-color: #554fd8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }

        /* Process Section */
        .process-section {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .process-step {
            text-align: center;
            padding: 20px;
            transition: all 0.3s;
            border-radius: 15px;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .step-number {
            background-color: var(--accent);
            color: var(--dark);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: absolute;
            top: -10px;
            right: -10px;
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .step-description {
            color: #666;
            font-size: 0.95rem;
        }

        /* Countries Section */
        .countries-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .country-card {
            text-align: center;
            padding: 25px 15px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }

        .country-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .country-flag {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 0 auto 15px;
        }

        .country-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .visa-types {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            min-height: 60px;
        }

        .explore-btn {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s;
            text-decoration: none;
        }

        .explore-btn:hover {
            background-color: #31c9a8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(66, 226, 184, 0.3);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background-color: white;
        }

        .testimonial-card {
            background-color: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin: 15px;
            position: relative;
        }

        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(108, 99, 255, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .client-name {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .client-location {
            color: #666;
            font-size: 0.9rem;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }

        .carousel-control-prev {
            left: -20px;
        }

        .carousel-control-next {
            right: -20px;
        }

        /* Video Testimonials */
        .video-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
        }

        .video-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 15px;
            position: relative;
        }

        .video-thumbnail {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .video-card:hover .play-btn {
            background-color: var(--primary);
            color: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
            margin: 15px 0 10px;
            padding: 0 15px;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin: 0 15px 15px;
            transition: all 0.3s;
        }

        .read-more:hover {
            color: #554fd8;
            transform: translateX(5px);
        }

        /* Footer */
        .footer {
            /* background-color: var(--dark); */
            background-color: #000;
            color: white;
            padding: 60px 0 0;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            margin-top: 40px;
        }

        .footer-bottom-links a {
            color: #bbb;
            text-decoration: none;
            margin-left: 15px;
            transition: all 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: #554fd8;
            transform: translateY(-5px);
        }

        /* .whatsapp-float {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        } */

        /* WhatsApp Float Container */
/* Floating Contact Panel (Sticky & Centered) */
.contact-float-panel {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

/* Contact Option Buttons */
.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Text Label (Hidden by default, shows on hover) */
.contact-option span {
    position: absolute;
    left: -100px;
    opacity: 0;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

/* Hover Effects */
.contact-option:hover {
    transform: scale(1.1);
}

.contact-option:hover span {
    left: 60px;
    opacity: 1;
}

/* Colors for Each Button */
.contact-option.call {
    background: #007bff; /* Blue */
}

.contact-option.whatsapp {
    background: #25D366; /* WhatsApp Green */
}

.contact-option.message {
    background: #6f42c1; /* Purple */
}

/* Pulse Animation (for main button) */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-image {
                margin-top: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .top-contact span {
                display: none;
            }

            .top-contact a {
                margin-right: 10px;
                font-size: 1.2rem;
            }

            .client-portal span {
                display: none;
            }

            .client-portal i {
                margin-right: 0;
                font-size: 1.2rem;
            }

            .navbar-brand img {
                height: 60px;
            }

            .consultation-text {
            font-size: 0.85rem;
        }
        }

        @media (max-width: 575.98px) {
            .hero-section {
                padding: 60px 0;
            }

            .process-step {
                margin-bottom: 30px;
            }

            .carousel-control-prev {
                left: 0;
            }

            .carousel-control-next {
                right: 0;
            }
        }



        /* New Hero Section Styles */
        .new-hero-section {
            /* background-color: #3950d5; */
            /* Plain white background */
            background-color: #fafafa;
        }

        .new-hero-img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }

        .new-hero-form-container {
            border: 1px solid #e9ecef;
        }

        .new-hero-form-title {
            color: #2f2e41;
            font-weight: 600;
            font-size: 1.5rem;
        }

        .new-hero-input,
        .new-hero-select {
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }

        .new-hero-input:focus,
        .new-hero-select:focus {
            border-color: #c10100;
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
        }

        .new-hero-submit-btn {
            background-color: #c10100;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .new-hero-submit-btn:hover {
            background-color: #c10100;
            transform: translateY(-2px);
        }

        @media (max-width: 767.98px) {

            .new-hero-image-col,
            .new-hero-form-col {
                width: 100%;
                flex: 0 0 100%;
                max-width: 100%;
            }
        }


        /* Solutions Section Styles */
        .solutions-section {
            background-color: #f8f9fa;
        }

        .solution-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .solution-img-container {
            height: 180px;
            overflow: hidden;
        }

        .solution-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .solution-card:hover .solution-img {
            transform: scale(1.05);
        }

        .solution-title {
            color: #2f2e41;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .solution-text {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .solution-link {
            color: #3a50d4;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .solution-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .solution-link:hover {
            color: #554fd8;
        }

        .solution-link:hover i {
            transform: translateX(5px);
        }


        /* Process Section Styles */
        .process-section {
            background-color: #fff;
        }

        .process-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .process-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .process-img-container {
    height: 180px;
    overflow: hidden;
    position: relative;
    width: 100%; /* Add this to ensure container takes full width */
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Ensures focus stays on important parts of image */
    transition: transform 0.5s ease;
    display: block; /* Removes extra space below image */
}

.process-card:hover .process-img {
    transform: scale(1.05);
}

        .step-number {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #3a50d4;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }

        .process-content {
            background-color: white;
        }

        .process-title {
            color: #2f2e41;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .process-text {
            color: #666;
            font-size: 0.95rem;
        }

       @media (max-width: 767.98px) {
    .process-img-container {
        height: auto; /* Change from fixed height to auto */
        aspect-ratio: 16/9; /* Maintains image proportions */
    }
    
    .process-img {
        height: auto; /* Allows natural image scaling */
        min-height: 150px; /* Fallback for older browsers */
    }
}




        /* New Hero Section with Background Image */
        .new-hero-section {
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .new-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .new-hero-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .new-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(90deg, rgba(47,46,65,0.85) 0%, rgba(47,46,65,0.7) 100%); */
            /* background: linear-gradient(90deg, rgba(47,46,65,0.2) 0%, rgba(47,46,65,0.2) 100%); */
           
        }

        .new-hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--dark);
        }

        .new-hero-title span {
            color: #3a50d4;
        }

        .new-hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        /* Form Styles (same as before) */
        .new-hero-form-container {
            border: 1px solid #e9ecef;
        }

        .new-hero-form-title {
            color: #2f2e41;
            font-weight: 600;
            font-size: 1.5rem;
        }

        .new-hero-input,
        .new-hero-select {
            padding: 10px 15px;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }

        .new-hero-input:focus,
        .new-hero-select:focus {
            border-color: #3a50d4;
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
        }

        .new-hero-submit-btn {
            background-color: #3a50d4;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .new-hero-submit-btn:hover {
            background-color: #554fd8;
            transform: translateY(-2px);
        }

        .z-index-1 {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 991.98px) {
            .new-hero-title {
                font-size: 2.5rem;
            }

            .new-hero-section {
                min-height: auto;
                padding-top: 100px;
                padding-bottom: 100px;
            }
        }

        @media (max-width: 767.98px) {
            .new-hero-title {
                font-size: 2rem;
            }

            .new-hero-subtitle {
                font-size: 1rem;
            }

            .new-hero-content-col,
            .new-hero-form-col {
                width: 100%;
                flex: 0 0 100%;
                max-width: 100%;
            }
        }



        /* Top Bar Styles - Fixed for Mobile */
    .top-bar {
        background-color: var(--primary);
        color: white;
        font-size: 0.9rem;
        padding: 8px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .top-bar::-webkit-scrollbar {
        display: none;
    }
    
    .top-contact a {
        color: white;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 0.8rem;
    }
    
    .top-contact a:hover {
        color: #42e2b8;
    }
    
    .client-portal {
        /* background-color: #222222; */
        color: white;
        /* padding: 5px 10px;
        border-radius: 20px; */
        text-decoration: none;
        transition: all 0.3s;
        font-size: 0.8rem;
        white-space: nowrap;
        margin-left: 10px;
    }
    
    .client-portal:hover {
        /* background-color: #cccccc; */
        transform: translateY(-2px);
        color: #42e2b8;
    }
    
    @media (max-width: 575.98px) {
        .top-bar {
            font-size: 0.7rem;
        }
        
        .top-contact a {
            font-size: 0.7rem;
            margin-right: 5px;
        }
        
        .client-portal {
            padding: 4px 8px;
            font-size: 0.7rem;
        }
    }


    .consultation-text {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .consultation-text:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 1px;
        background: rgba(108, 99, 255, 0.3);
    }

    /* Quote Section Styles */
    .quote-section {
        background-color: #f8f9fa;
        position: relative;
    }
    
    .globiq-quote {
        position: relative;
        padding: 0;
        margin: 0;
    }
    
    .quote-text {
        font-size: 1.5rem;
        color: #2f2e41;
        line-height: 1.6;
        font-weight: 500;
        font-style: italic;
        position: relative;
        padding: 20px 40px;
    }
    
    .quote-text:before,
    .quote-text:after {
        content: '"';
        font-size: 3rem;
        color: #3a50d4;
        opacity: 0.3;
        position: absolute;
    }
    
    .quote-text:before {
        top: 0;
        left: 0;
    }
    
    .quote-text:after {
        bottom: -20px;
        right: 0;
    }
    
    .highlight {
        color: #3a50d4;
        font-weight: 700;
        font-style: normal;
    }
    
    @media (max-width: 767.98px) {
        .quote-text {
            font-size: 1rem;
            padding: 15px 30px;
        }
        
        .quote-text:before,
        .quote-text:after {
            font-size: 2rem;
        }
    }



     /* Enhanced Navbar Dropdown Styles */
    .navbar {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-menu {
        border: none;
        border-radius: 10px;
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        animation: fadeInDropdown 0.3s ease-out;
    }
    
    @keyframes fadeInDropdown {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .dropdown-item {
        padding: 8px 20px;
        border-radius: 6px;
        margin: 2px 10px;
        font-size: 0.95rem;
        transition: all 0.3s;
        display: flex;
        align-items: center;
    }
    
    .dropdown-item:hover, .dropdown-item:focus {
        background-color: rgba(108, 99, 255, 0.1);
        color: #3a50d4;
        transform: translateX(5px);
    }
    
    .dropdown-header {
        font-size: 0.8rem;
        font-weight: 600;
        color: #3a50d4;
        text-transform: uppercase;
        padding: 5px 20px;
        margin-top: 5px;
    }
    
    .dropdown-divider {
        border-color: rgba(108, 99, 255, 0.1);
        margin: 10px 0;
    }
    
    .free-assessment-btn {
        background-color: var(--primary);
        color: white;
        border-radius: 30px;
        padding: 8px 20px;
        font-weight: 600;
        transition: all 0.3s;
        text-decoration: none;
    }
    
    .free-assessment-btn:hover {
        background-color: rgba(85, 79, 216, 1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(85, 79, 216, 0.3);
    }
    
    /* Flag Icons (you'll need to include flag-icon.css or use your own solution) */
    .flag-icon {
        width: 20px;
        height: 15px;
        display: inline-block;
        background-size: cover;
        border-radius: 2px;
    }
    
    .flag-icon-ca { background-image: url('https://flagcdn.com/w20/ca.png'); }
    .flag-icon-au { background-image: url('https://flagcdn.com/w20/au.png'); }
    .flag-icon-gb { background-image: url('https://flagcdn.com/w20/gb.png'); }
    .flag-icon-us { background-image: url('https://flagcdn.com/w20/us.png'); }
    .flag-icon-nz { background-image: url('https://flagcdn.com/w20/nz.png'); }
    .flag-icon-nl { background-image: url('https://flagcdn.com/w20/nl.png'); }
    .flag-icon-de { background-image: url('https://flagcdn.com/w20/de.png'); }
    .flag-icon-ie { background-image: url('https://flagcdn.com/w20/ie.png'); }
    .flag-icon-se { background-image: url('https://flagcdn.com/w20/se.png'); }

    /* FAQ Section Styles */
    .faq-section {
        background-color: #f8f9fa;
    }
    
    .accordion-button {
        /* font-family: 'Playfair Display', serif; */
        font-weight: 600;
        background-color: white;
        color: #2f2e41;
    }
    
    .accordion-button:not(.collapsed) {
        background-color: white;
        color: #3a50d4;
        box-shadow: none;
    }
    
    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    
    .accordion-body {
        background-color: rgba(248, 249, 250, 0.7);
    }
    
    .faq-cta {
        background: linear-gradient(135deg, #3a50d4 0%, #2942d1ff 100%);
        box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
    }
    
    @media (max-width: 767.98px) {
        .accordion-button {
            font-size: 1rem;
            padding: 1rem;
        }
        
        .faq-cta {
            padding: 1.5rem !important;
        }
    }

    /* Modal Custom Styles */
    .modal-content {
        border-radius: 12px;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 0;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        /* font-family: 'Playfair Display', serif; */
        font-weight: 600;
    }
    
    /* Form Styles */
    .form-control {
        padding: 10px 15px;
        border-radius: 8px;
    }
    
    .form-control:focus {
        border-color: #6c63ff;
        box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.15);
    }
    
    /* Link Styles 
    a[data-bs-toggle="modal"] {
        color: #6c63ff;
        font-weight: 500;
    }
    
    a[data-bs-toggle="modal"]:hover {
        text-decoration: underline !important;
    }*/

    /* Assessment Page Styles */
    .assessment-section {
        background-color: #f8f9fa;
    }
    
    .assessment-card {
        border: none;
    }
    
    .assessment-progress {
        border-right: 1px solid #e9ecef;
    }
    
    .progress-steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        display: flex;
        align-items: flex-start;
        opacity: 0.5;
    }
    
    .step.active {
        opacity: 1;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        background-color: #6c63ff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-weight: bold;
    }
    
    .step.active .step-number {
        background-color: #6c63ff;
    }
    
    .step-content h6 {
        font-weight: 600;
        margin-bottom: 3px;
    }
    
    .step-content p {
        font-size: 0.85rem;
        color: #6c757d;
        margin-bottom: 0;
    }
    
    .form-section {
        display: none;
    }
    
    .form-section.active {
        display: block;
    }
    
    .form-label {
        font-weight: 500;
        margin-bottom: 8px;
    }
    
    @media (max-width: 991.98px) {
        .assessment-progress {
            display: none;
        }
    }

    #success-stories,#canada-details,#australia-details,#uk-details,#usa-details,
    #visa-express-entry,#ourservices,#our-story,#our-team,#current-openings,#why-join-us,#apply-now,#countries-section {
  scroll-margin-top: 100px; /* adjust based on your navbar height */
}
.display-4{
    font-size: 2.5rem !important;
}
.pulse-animate {
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: all 0.3s ease;
    }
    
    .pulse-animate::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            rgba(255,255,255,0.1) 0%, 
            rgba(255,255,255,0.3) 50%, 
            rgba(255,255,255,0.1) 100%);
        z-index: -1;
        transform: translateX(-100%);
        animation: shine 2.5s infinite;
    }
    
    .pulse-animate:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    }
    
    @keyframes shine {
        0% {
            transform: translateX(-100%);
        }
        20% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(100%);
        }
    }

    .pulse-ripple {
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: all 0.3s ease;
    }
    
    .pulse-ripple::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
        animation: ripple 2s infinite;
    }
    
    .pulse-ripple:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
    }
    
    @keyframes ripple {
        0% {
            transform: scale(0, 0) translate(-50%);
            opacity: 0.5;
        }
        20% {
            transform: scale(25, 25) translate(-50%);
            opacity: 0;
        }
        100% {
            transform: scale(25, 25) translate(-50%);
            opacity: 0;
        }
    }


    .eye-catch-btn {
        position: relative;
        overflow: hidden;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-weight: 600;
        letter-spacing: 0.5px;
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    }
    
    .btn-text {
        position: relative;
        z-index: 2;
    }
    
    .btn-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            rgba(255,255,255,0) 0%, 
            rgba(255,255,255,0.4) 50%, 
            rgba(255,255,255,0) 100%);
        z-index: 1;
        transform: translateX(-100%);
        animation: gentleFlow 4s infinite;
        animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    }
    
    @keyframes gentleFlow {
        0% {
            transform: translateX(-100%);
            opacity: 0.6;
        }
        15% {
            opacity: 0.8;
        }
        30% {
            transform: translateX(100%);
            opacity: 0.6;
        }
        100% {
            transform: translateX(100%);
            opacity: 0;
        }
    }
    
    .eye-catch-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
    }
    
    .eye-catch-btn:active {
        transform: translateY(1px);
    }
    
    /* Pulsing background effect */
    .eye-catch-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.1);
        z-index: 0;
        border-radius: 8px;
        animation: pulseBg 4s infinite;
    }
    
    @keyframes pulseBg {
        0% {
            opacity: 0.3;
        }
        50% {
            opacity: 0.1;
        }
        100% {
            opacity: 0.3;
        }
    }

    /* Base Button Styles */
    .eye-catch-btn {
        position: relative;
        overflow: hidden;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        z-index: 1;
        transition: all 0.4s ease-out;
        background: linear-gradient(135deg, #3950d5 0%, #c20000 50%, #23471e 100%);
        background-size: 300% 300%;
        color: white;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        border: 2px solid rgba(255,255,255,0.15);
    }

    /* Text Layer */
    .btn-text {
        position: relative;
        z-index: 4;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        font-size: 1.1rem;
    }

    /* Animated Gradient Background */
    .eye-catch-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #3950d5 0%, #c20000 50%, #23471e 100%);
        background-size: 300% 300%;
        z-index: 1;
        animation: gradientPulse 8s ease infinite;
    }

    /* Glow Effect */
    .btn-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, 
                      rgba(255,255,255,0.8) 0%, 
                      rgba(255,255,255,0) 70%);
        z-index: 2;
        opacity: 0;
        animation: glowPulse 4s ease-in-out infinite;
    }

    /* Color Particles */
    .btn-pulse {
        position: absolute;
        width: 20px;
        height: 20px;
        background: rgba(255,255,255,0.6);
        border-radius: 50%;
        z-index: 3;
        opacity: 0;
        animation: 
            colorPulse1 6s infinite,
            colorPulse2 7s infinite 1s,
            colorPulse3 5s infinite 2s;
    }

    /* Animations */
    @keyframes gradientPulse {
        0% { background-position: 0% 50% }
        50% { background-position: 100% 50% }
        100% { background-position: 0% 50% }
    }

    @keyframes glowPulse {
        0%, 100% { opacity: 0; transform: scale(0.8); }
        50% { opacity: 0.4; transform: scale(1.1); }
    }

    @keyframes colorPulse1 {
        0% { transform: translate(0, 0); opacity: 0; }
        20% { transform: translate(20px, -15px); opacity: 0.6; }
        100% { transform: translate(40px, -30px); opacity: 0; }
    }

    @keyframes colorPulse2 {
        0% { transform: translate(0, 0); opacity: 0; }
        20% { transform: translate(-25px, 10px); opacity: 0.6; }
        100% { transform: translate(-50px, 20px); opacity: 0; }
    }

    @keyframes colorPulse3 {
        0% { transform: translate(0, 0); opacity: 0; }
        20% { transform: translate(15px, 20px); opacity: 0.6; }
        100% { transform: translate(30px, 40px); opacity: 0; }
    }

    /* Hover Effects */
    .eye-catch-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }

    .eye-catch-btn:active {
        transform: translateY(1px);
    }


    /* Base Button - Deep Blue (#3950d5) */
    .eye-catch-btn-final {
        position: relative;
        overflow: hidden;
        border: none;
        border-radius: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
        background-color: #3950d5;
        color: white;
        z-index: 1;
        box-shadow: 
            0 4px 20px rgba(57, 80, 213, 0.5),
            0 0 0 1px rgba(255,255,255,0.1) inset;
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.4, 1);
    }

    /* Text Layer */
    .btn-text {
        position: relative;
        z-index: 4;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        font-size: 1.1rem;
        display: block;
        transform: translateZ(0);
    }

    /* Ripple Effect */
    .btn-ripple {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 100%;
        transform: translate(-50%, -50%);
        z-index: 2;
        animation: ripple 3s ease-out infinite;
    }

    /* Shine Effect */
    .btn-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
            90deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.15) 50%,
            rgba(255,255,255,0) 100%
        );
        z-index: 3;
        animation: shine 4s ease-in-out infinite;
        animation-delay: 1s;
    }

    /* Animations */
    @keyframes ripple {
        0% {
            width: 0;
            height: 0;
            opacity: 0.5;
        }
        80% {
            width: 150%;
            height: 150%;
            opacity: 0;
        }
        100% {
            width: 150%;
            height: 150%;
            opacity: 0;
        }
    }

    @keyframes shine {
        0% {
            left: -100%;
        }
        20% {
            left: 120%;
        }
        100% {
            left: 120%;
        }
    }

    /* Hover Effects */
    .eye-catch-btn-final:hover {
        transform: translateY(-4px);
        box-shadow: 
            0 8px 30px rgba(57, 80, 213, 0.7),
            0 0 0 1px rgba(255,255,255,0.2) inset;
    }

    .eye-catch-btn-final:active {
        transform: translateY(1px);
    }

    /* Continuous Pulse Effect */
    .eye-catch-btn-final::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.05);
        z-index: 0;
        animation: pulse 3s ease infinite;
    }

    @keyframes pulse {
        0%, 100% {
            opacity: 0.1;
        }
        50% {
            opacity: 0.2;
        }
    }

    .brand-text-animated {
        font-weight: 700;
        font-size: 1.2em;
        /* letter-spacing: 0.5px; */
        display: inline-block;
    }
    
    .brand-part {
        position: relative;
        color: var(--brand-color);
        animation: textGlow 4s infinite;
        text-shadow: 0 0 0px var(--brand-color);
    }
    
    /* Individual animation delays */
    .brand-part:nth-child(1) { animation-delay: 0s; }
    .brand-part:nth-child(2) { animation-delay: 0.5s; }
    .brand-part:nth-child(3) { animation-delay: 1s; }
    
    @keyframes textGlow {
        0%, 100% {
            text-shadow: 0 0 0px var(--brand-color);
            transform: translateY(0);
        }
        50% {
            text-shadow: 0 0 8px var(--brand-color);
            transform: translateY(-2px);
        }
    }
    
    /* Optional hover effect */
    .brand-text-animated:hover .brand-part {
        animation-play-state: paused;
    }
    
    .brand-text-animated:hover .brand-part::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--brand-color);
        animation: underlineExpand 0.3s forwards;
    }
    
    @keyframes underlineExpand {
        from { transform: scaleX(0); }
        to { transform: scaleX(1); }
    }




    /* Countries Showcase Styles */
    .countries-showcase {
        background-color: #f8f9fa;
    }
    
    .country-card {
        display: block;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
        height: 100%;
    }
    
    .country-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .country-flag {
        /* height: 160px; */
        overflow: hidden;
    }
    
    .country-flag img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .country-card:hover .country-flag img {
        transform: scale(1.05);
    }
    
    .country-content {
        padding: 20px;
    }
    
    .country-content h3 {
        color: #2f2e41;
        margin-bottom: 15px;
        /* font-family: 'Playfair Display', serif; */
    }
    
    .program-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .program-badges span {
        background-color: rgba(57, 80, 213, 0.1);
        color: #3950d5;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
    }
    
    .country-cta {
        display: flex;
        align-items: center;
        color: #3950d5;
        font-weight: 600;
    }
    
    .country-cta i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .country-card:hover .country-cta i {
        transform: translateX(5px);
    }
    
    /* Self-contained CSS - Won't conflict with other styles */
    .countries-showcase {
        background-color: #f8fafc;
        position: relative;
    }
    
    .section-heading {
        /* font-family: 'Playfair Display', serif; */
        font-size: 2.2rem;
        color: #2f2e41;
        margin-bottom: 1rem;
    }
    
    .section-subheading {
        color: #6c757d;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .country-card-wrapper {
        height: 100%;
        padding: 5px;
    }
    
    .country-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
    }
    
    .country-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }
    
    /*.country-flag {
        height: 180px;
        overflow: hidden;
    }
    
     .country-flag img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .country-card:hover .country-flag img {
        transform: scale(1.05);
    } */
    
    .country-details {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .country-details h3 {
        font-size: 1.4rem;
        color: #2f2e41;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .country-benefits {
        list-style: none;
        padding: 0;
        margin: 0 0 15px 0;
        flex-grow: 1;
    }
    
    .country-benefits li {
        padding: 6px 0;
        display: flex;
        align-items: flex-start;
    }
    
    .country-benefits i {
        color: #28a745;
        margin-right: 10px;
        font-size: 0.9rem;
        margin-top: 3px;
    }
    
    .country-benefits span {
        color: #495057;
        font-size: 0.92rem;
        line-height: 1.4;
    }
    
    .country-cta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
    
    .btn-apply {
        background-color: #3950d5;
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s;
        flex: 1;
        margin-right: 10px;
        text-align: center;
    }
    
    .btn-apply:hover {
        background-color: #2c3fb0;
        color: white;
    }
    
    .btn-explore {
        color: #3950d5;
        font-weight: 500;
        font-size: 0.9rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: all 0.3s;
    }
    
    .btn-explore i {
        margin-left: 5px;
        transition: transform 0.3s;
    }
    
    .btn-explore:hover {
        color: #2c3fb0;
    }
    
    .btn-explore:hover i {
        transform: translateX(3px);
    }
    
    @media (max-width: 1199.98px) {
        /* .country-flag {
            height: 160px;
        } */
    }
    
    @media (max-width: 767.98px) {
        /* .country-flag {
            height: 140px;
        } */
        
        .section-heading {
            font-size: 1.8rem;
        }
        
        .country-cta {
            flex-direction: column;
            gap: 10px;
        }
        
        .btn-apply {
            width: 100%;
            margin-right: 0;
            margin-bottom: 5px;
        }
        
        .btn-explore {
            width: 100%;
            justify-content: center;
        }
    }



    /* Country Detail Section Styles */
    .country-detail-section {
        border-top: 1px solid rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .benefits-box {
        background-color: #f8f9fa;
        padding: 1.5rem;
        border-radius: 10px;
        border-left: 4px solid #3950d5;
    }
    
    .benefits-list {
        list-style: none;
        padding: 0;
    }
    
    .benefits-list li {
        padding: 8px 0;
        display: flex;
        align-items: flex-start;
    }
    
    .benefits-list i {
        margin-right: 10px;
        font-size: 0.9rem;
        margin-top: 3px;
    }
    
    .eligibility-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }
    
    .eligibility-card {
        background: white;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .eligibility-card i {
        font-size: 1.5rem;
        color: #3950d5;
        margin-bottom: 10px;
        display: block;
    }
    
    .visa-types-box {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }
    
    .visa-card {
        padding: 15px 0;
        border-bottom: 1px dashed #eee;
    }
    
    .visa-card:last-child {
        border-bottom: none;
    }
    
    .visa-card h5 {
        color: #2f2e41;
        font-size: 1.1rem;
    }
    
    .visa-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
    
    .learn-more {
        color: #3950d5;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .learn-more:hover {
        text-decoration: underline;
    }
    
    .lead-generation-box {
        /* background: linear-gradient(135deg, #3950d5 0%, #6c63ff 100%); */
        background: linear-gradient(135deg, #181515 0%, #181515 100%);
        color: white;
    }
    
    .lead-generation-box .btn-outline-primary {
        color: white;
        border-color: white;
    }
    
    .lead-generation-box .btn-outline-primary:hover {
        background: rgba(255,255,255,0.2);
    }
    
    @media (max-width: 767.98px) {
        .eligibility-cards {
            grid-template-columns: 1fr;
        }
        
        .visa-card-footer {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }
    }
    .bg-counters{
        background-color: #f5f5f5 !important;
    }


     /* Careers Page Specific Styles */
.careers-hero {
    background-position: center;
    background-size: cover;
}

.benefit-card {
    transition: transform 0.3s;
    border: 1px solid rgba(0,0,0,0.1);
}
.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-card {
    transition: all 0.3s;
    border-left: 4px solid transparent;
}
.job-card:hover {
    border-left-color: var(--bs-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.process-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--bs-primary);
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -1px;
}
.process-step {
    position: relative;
    margin-bottom: 30px;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.step-content {
    padding-left: 30px;
}

@media (max-width: 767px) {
    .process-timeline::before {
        left: 25px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Webinars Page Specific Styles */
.webinars-hero {
    background-position: center;
    background-size: cover;
}

.webinar-date {
    min-width: 80px;
}
.webinar-date .month {
    font-weight: 600;
    font-size: 0.9rem;
}
.webinar-date .day {
    font-size: 2rem;
    line-height: 1;
}

.webinar-card {
    transition: all 0.3s;
}
.webinar-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.past-webinar-card .card {
    transition: all 0.3s;
}
.past-webinar-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .webinar-date {
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
        flex-direction: row;
        align-items: center;
    }
    .webinar-date .month {
        border-radius: 0.25rem 0 0 0.25rem !important;
        padding: 0.5rem;
    }
    .webinar-date .day {
        border-radius: 0 0.25rem 0.25rem 0 !important;
        border-left: none !important;
    }
}

.badge {
    text-decoration: none;
}



/* Full-width content blocks */
.full-width-content {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
}

/* Table styling */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Impact cards */
.impact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* Primary dark variant */
.bg-primary-dark {
    background-color: #0b5ed7 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .full-width-content {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .px-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

