
        :root {
            --primary: #ff7800;
            --primary-dark: #e56c00;
            --secondary: #333333;
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .navbar-brand span {
            color: var(--primary);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover:before, .nav-link.active:before {
            width: 100%;
        }
        
        .nav-link.active {
            color: var(--primary) !important;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 120, 0, 0.2);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 120, 0, 0.3);
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 120, 0, 0.2);
        }
        
        .hero-section {
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.85) 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section:before {
            content: "";
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            z-index: -1;
            background: radial-gradient(ellipse at center, rgba(255, 120, 0, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            animation: pulse 15s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1);margin-top: -5px;
    margin-left: -4px; }
            50% { transform: scale(1.05); margin-top: -5px;
    margin-left: -4px;}
            100% { transform: scale(1); margin-top: -5px;
    margin-left: -4px;}
        }
        
        .hero-content {
            padding: 120px 0;
        }
        
        .hero-title {
            font-weight: 800;
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .hero-subtitle {
            font-weight: 700;
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 30px;
        }
        
        .hero-text {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .hero-image-container {
            position: relative;
        }
        
        .hero-image {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
            transform: perspective(1000px) rotateY(-15deg);
            position: absolute;
            top: -45vh;
        }
        
        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 20px;
            z-index: 10;
            animation: float 5s ease-in-out infinite;
        }
        
        .card-eligibility {
            top: 50px;
            right: -50px;
            width: 400px;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .stats-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin: 15px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-bottom: 3px solid var(--primary);
        }
        
        .stats-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stats-text {
            font-size: 0.9rem;
            color: var(--secondary);
            font-weight: 500;
        }
        
        .form-control {
            border-radius: 10px;
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            margin-bottom: 15px;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.15);
        }
        
        .form-select {
            border-radius: 10px;
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            margin-bottom: 15px;
            box-shadow: none;
            transition: all 0.3s ease;
        }
        
        .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.15);
        }
        
        .services-section {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-title {
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }
        
        .section-title:after {
            content: "";
            position: absolute;
            width: 100px;
            height: 4px;
            /*background: var(--primary);*/
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            background: #293f8e;
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
        }
        
        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: -100px;
            right: -100px;
        }
        
        .shape-3 {
            width: 150px;
            height: 150px;
            top: 70%;
            right: 26%;
        }
        
        .world-map {
            position: absolute;
            width: 100%;
            height: 110%;
            background-image: url('../../assets/img/world-map.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
            opacity: 1;
            z-index: -1;
        }
        
        .moving-globe {
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: #293f8e;
            border-radius: 50%;
            z-index: -1;
            animation: moveGlobe 20s linear infinite;
        }
        
        @keyframes moveGlobe {
            0% { left: -5%; top: 20%; }
            25% { left: 25%; top: 10%; }
            50% { left: 50%; top: 30%; }
            75% { left: 75%; top: 20%; }
            100% { left: 105%; top: 10%; }
        }
        
        .counter-animation {
            display: inline-block;
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 2.5rem;
            }
            
            .card-eligibility {
                position: static;
                width: 100%;
                margin-top: 20px;
            }
            
            .hero-image {
                margin-top: 50px;
                transform: none;
                position: relative;
                top: auto;
            }
            
            .hero-image:hover {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
                margin-top:2rem;
            }
            
            .hero-subtitle {
                font-size: 2rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }
            
            .stats-card {
                margin-bottom: 20px;
            }
            
            .hero-content {
                padding: 80px 10px;
            }
        }
        
        
        
        
        
         .services-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 15px;
            text-align: center;
            color: var(--dark);
            position: relative;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .title-underline {
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            margin: 15px auto 30px;
            border-radius: 2px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            z-index: 1;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(135deg, rgba(255, 120, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: -1;
            transition: all 0.4s ease;
            height: 100%;
        }
        
        /*.service-card:hover:before {*/
        /*    height: 100%;*/
        /*}*/
        
        .service-icon {
            width: 90px;
            height: 90px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 120, 0, 0.2);
        }
        
        .service-icon i {
            font-size: 2.2rem;
            color: var(--primary);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon i {
            transform: scale(1.1);
        }
        
        .service-icon:after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: var(--primary-light);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.7;
            transform: scale(0);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon:after {
            transform: scale(1.3);
            opacity: 0;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-title {
            color: var(--primary);
        }
        
        .service-description {
            text-align: center;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .btn-learn-more {
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 30px;
            padding: 8px 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            background-color: transparent;
            display: block;
            margin: 0 auto;
        }
        
        .btn-learn-more:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 120, 0, 0.2);
        }
        
        .shape-s {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 120, 0, 0.05);
            z-index: 0;
        }
        
        .shape-1-s {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
        }
        
        .shape-2-s {
            width: 200px;
            height: 200px;
            bottom: -100px;
            right: -100px;
        }
        
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-badge {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-row {
            margin-bottom: 30px;
        }
        
        
        .wave-separator {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave-separator svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 70px;
        }

        .wave-separator .shape-fill {
            fill: #FFFFFF;
        }
        
        .about-section {
            position: relative;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%), url('/api/placeholder/1200/600') center/cover no-repeat;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .text-primary-custom {
            color: var(--primary);
        }
        .feature-check {
            color: var(--primary);
            margin-right: 10px;
        }
        
        .btn-primary-custom {
            background-color: var(--primary);
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 95, 21, 0.3);
        }
        .rounded-circle {
            border-radius: 50% !important;
        }
        .globe-icon {
            font-size: 85px;
            color:#1f3352;
            animation: float 3s ease-in-out infinite;
        }
        .cus-globe{
            top:100px;
            z-index: 2;    
        }
        
        .trusted-by {
            opacity: 0.7;
            transition: all 0.3s;
        }

        .trusted-by:hover {
            opacity: 1;
        }
        
         .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            margin: 20px 0;
        }
        
        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
        }
        
        .testimonial-stars {
            color: #FFD700;
        }
        
        
        .contact-bubble {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(255, 95, 21, 0.4);
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        .contact-bubble:hover {
            transform: scale(1.1);
        }
        
        .contact-popup {
            position: fixed;
            bottom: 110px;
            right: 30px;
            background-color: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 99;
            width: 350px;
            display: none;
            animation: fadeIn 0.3s ease;
        }
        
        .contact-popup a{
            color: #212529;
            text-decoration: none;
        }
        
        .contact-popup a:hover{
            color:var(--primary);
        }
        
        
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        
         .footer {
            background-color: #212529;
            color: #fff;
            padding-top: 60px;
            position: relative;
        }
        
        .footer-wave {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            fill: var(--primary-color);
        }
        
        .footer-logo {
            max-width: 220px;
            margin-bottom: 20px;
        }
        
        .footer h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 22px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .footer-contact-info {
            margin-bottom: 30px;
        }
        
        .footer-contact-info li {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .footer-contact-info i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 20px;
            min-width: 25px;
            margin-top: 3px;
        }
        
        .footer-contact-info a{
            text-decoration: none;
            color:aliceblue;
        }
        .footer-contact-info a:hover{
            color: #ff7800;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .footer-links a {
            color: #fff;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }
        
        .footer-links a:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .visa-services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .visa-service-item {
            background-color: rgba(255,255,255,0.05);
            padding: 10px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .visa-service-item:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .visa-service-item i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .visa-service-item:hover i {
            color: #fff;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            margin-top: 50px;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 14px;
        }
        
        .get-consultancy-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-top: 15px;
            text-decoration: none;
        }
        
        .get-consultancy-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(240, 90, 40, 0.3);
            color: white;
        }
        
        .dream-section {
            background-color: #000;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
        .dream-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/1600/900');
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            z-index: 0;
        }
        
        .dream-content {
            position: relative;
            z-index: 2;
        }
        
        .heading-primary {
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .heading-primary span {
            color: #FF5722;
        }
        
        .subheading {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .world-map-container-2 {
            position: relative;
            width: 100%;
            height: 400px;
            margin-top: 30px;
        }
        
        .world-map-2 {
            width: 100%;
            height: 100%;
            background-image: url('../../assets/img/Map-large.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
        }
        
        .country-marker {
            position: absolute;
            width: 68px;
            height: 68px;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .country-marker:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .country-flag {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .country-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: rgba(255, 87, 34, 0.6);
            z-index: -1;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(0.95);
                opacity: 0.7;
                margin-top: -5px;
                margin-left: -4px;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.3;
                margin-top: -5px;
                margin-left: -4px;
            }
            100% {
                transform: scale(0.95);
                opacity: 0.7;
                margin-top: -5px;
                margin-left: -4px;
            }
        }
        
        .call-action {
            background: linear-gradient(90deg, #FF5722, #F44336);
            padding: 12px 25px;
            color: #fff;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
        }
        
        .call-action:hover {
            background: linear-gradient(90deg, #F44336, #FF5722);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
            color: #fff;
        }
        
        .call-action i {
            margin-right: 8px;
        }
        
        
        
        .hero-section-contact {
            background: linear-gradient(rgba(26, 75, 150, 0.8), rgba(26, 75, 150, 0.9)), url('/api/placeholder/1200/400') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-section-contact h1 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .contact-options {
            margin-top: -50px;
        }
        
        .contact-card {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .contact-icon i {
            font-size: 28px;
            color: var(--primary-color);
        }
        
        .contact-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .contact-info {
            color: var(--dark-text);
            margin-bottom: 5px;
        }
        
        .contact-info a {
            color: var(--dark-text);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: var(--primary-color);
        }
        
        .contact-form-section {
            background-color: var(--light-bg);
            padding: 80px 0;
        }
        
        .section-title-contact {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title-contact h2 {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .section-title-contact::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 15px auto 0;
        }
        
        .contact-form {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
        }
        
        .form-control-contact {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control-contact:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        
        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .world-map-section {
            background: linear-gradient(rgba(26, 75, 150, 0.9), rgba(26, 75, 150, 0.9)), url('/api/placeholder/1200/400') center/cover no-repeat;
            padding: 100px 0;
            color: white;
        }
        
        .subscribe-form {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 40px;
            padding: 8px;
            display: flex;
        }
        
        .subscribe-form input {
            flex: 1;
            background: transparent;
            border: none;
            color: white;
            padding: 12px 20px;
        }
        
        .subscribe-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .subscribe-form input:focus {
            outline: none;
        }
        
        .subscribe-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 30px;
            padding: 12px 25px;
            font-weight: 500;
        }
        
        .subscribe-form button:hover {
            background-color: #d32f2f;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .service-card {
                margin-bottom: 30px;
            }
            .cus-globe{
                top:20px;
                z-index: 2;    
            }
            .heading-primary {
                font-size: 2.8rem;
            }
            
            .world-map-container-2 {
                height: 350px;
            }
            
            .country-marker {
                width: 58px;
                height: 58px;
            }
            
            .country-flag {
                width: 50px;
                height: 50px;
            }
            
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
            .globe-icon {
                font-size: 50px;
            }
             .footer h3 {
                margin-top: 30px;
            }
            
            .visa-services {
                grid-template-columns: 1fr;
            }
            .heading-primary {
                font-size: 2.2rem;
            }
            
            .world-map-container-2 {
                height: 300px;
            }
            
            .country-marker {
                width: 48px;
                height: 48px;
            }
            
            .country-flag {
                width: 40px;
                height: 40px;
            }
        }
        
         @media (max-width: 576px) {
            .dream-section {
                padding: 60px 0;
            }
            
            .heading-primary {
                font-size: 1.8rem;
            }
            
            .world-map-container-2 {
                height: 250px;
            }
            
            .country-marker {
                width: 38px;
                height: 38px;
            }
            
            .country-flag {
                width: 30px;
                height: 30px;
                border-width: 2px;
            }
        }
        
        
    