   /* ===== CSS VARIABLES ===== */
        :root {
            --color-primary: #003366;
            --red: #aa2020;
            --gradient: linear-gradient(135deg, #003366 0%, #aa2020 100%);
            --gradient-light: linear-gradient(135deg, #003366a1 0%, #aa2020ba 100%);

            --color-primary-dark: #1d4ed8;
            --color-primary-light: #60a5fa;
            --color-secondary: #10b981;
            --color-dark: #1f2937;
            --color-gray: #6b7280;
            --color-light-gray: #e5e7eb;
            --color-light: #f9fafb;
            --color-white: #ffffff;
            --color-black: #111827;
            
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
        }
        
        /* ===== GLOBAL STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--color-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }
        
        section {
            padding: 5rem 0;
        }
        
        a{
            text-decoration:none;
        }
        
       
        .my-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            gap: 0.5rem;
        }
        
        .my-btn-primary {
            /*background: var(--color-primary);*/
            background: linear-gradient(135deg, #003366 0%, #aa2020 100%);
            color: var(--color-white);
        }
        
        .my-btn-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--color-white);
        }
        
        .my-btn-outline {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }
        
        .my-btn-outline:hover {
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .my-mb-2 { margin-bottom: 0.5rem; }
        .my-mb-4 { margin-bottom: 1.5rem; }
        .my-mt-2 { margin-top: 0.5rem; }
        
        .my-object-fit-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .my-hover-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .my-hover-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        /* ===== HEADER STYLES ===== */
        .site-header {
            background: var(--color-white);
            box-shadow: var(--shadow-sm);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.5rem 0;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-primary);
            display: flex;
            align-items: center;
        }
        
        .navbar-logo {
            height: 55px;
            width: auto;
            object-fit: contain;
        }
        
        @media (max-width: 768px) {
            .navbar-logo {
                height: 36px;
            }
        }
        
        .navbar-nav {
            gap: var(--space-xs);
        }
        
        .nav-link {
            color: var(--color-dark);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: var(--space-xs) 0.75rem;
        }
        
        .nav-link:hover,
        .nav-link.active {
            color: var(--red) !important;
            background: #00336614;
            border-radius: 8px;

        }
        
        /*.nav-link.active::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    bottom: 0;*/
        /*    left: 0.75rem;*/
        /*    width: calc(100% - 1.5rem);*/
        /*    height: 2px;*/
        /*    background: var(--color-primary);*/
        /*}*/
        
        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius-md);
            padding: var(--space-sm) 0;
        }
        
        .dropdown-item {
            padding: var(--space-xs) var(--space-md);
            font-size: 0.9rem;
        }
        
        .dropdown-item:hover {
            background-color: var(--color-light);
            color: var(--color-primary);
        }
        
        .header-actions {
            display: flex;
            gap: var(--space-sm);
            align-items: center;
        }
        
        /* ===== HERO SECTION ===== */
        .home-hero-section {
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            /*margin-top: 60px;*/
        }
        
        .home-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://img.freepik.com/free-photo/side-view-man-holding-passports_23-2150433348.jpg?t=st=1767442479~exp=1767446079~hmac=8336e0efa6266af9605a45b1656728bc8e421f86c92b85517af8b596a83c20e4&w=1480');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }
        
        .home-hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /*background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);*/
            background: linear-gradient(135deg, #003366 0%, #aa2020 100%);
            z-index: -1;
        }
        
        .home-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 1.25rem;
            color: var(--color-white);
        }
        
        .hero-highlight {
            color: var(--color-primary-light);
            background: linear-gradient(135deg, var(--color-primary-light), #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-description {
            color: #e2e8f0;
            font-size: 1.125rem;
            margin-bottom: 2rem;
            max-width: 500px;
        }
        
        .hero-features-grid {
            display: flex;
            gap: 2rem;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--color-white);
            font-weight: 500;
        }
        
        .hero-feature i {
            color: var(--color-secondary);
            font-size: 1.25rem;
        }
        
        .hero-image-container {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 400px;
        }
        
        .hero-cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        /* ===== VISA CHECK PROMO ===== */
        .visa-check-promo {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            margin-top: -3rem;
            position: relative;
            z-index: 100;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-light-gray);
        }
        
        .visa-check-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .visa-check-icon {
            color: var(--color-primary);
            font-size: 1.5rem;
        }
        
        .visa-check-btn {
            background: var(--gradient);
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            border: none;
            transition: all 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .visa-check-btn:hover {
            background: #162f8c;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(31, 63, 179, 0.3);
        }
        
        .form-group {
            margin-bottom: 0;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--color-dark);
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--color-light-gray);
            border-radius: var(--radius-md);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        /* ===== SECTIONS COMMON STYLES ===== */
        .section-header-center {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title-large {
            font-size: 2.25rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .section-subtitle-large {
            color: var(--color-gray);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
      
        
  /* ===== VISA CARD ===== */
.destination-link {
    text-decoration: none;
    color: inherit;
}

.destination-card-new {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
    height: 100%;
}

.destination-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.destination-image-box {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.destination-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card-new:hover img {
    transform: scale(1.08);
}

.destination-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--gradient);
    color: #fff;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.destination-badge i {
    color: #00ff6a;
}

.destination-body {
    padding: 16px 18px 18px;
}

.destination-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.destination-type {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.destination-eta {
    font-size: 0.82rem;
    color: #374151;
}

.destination-eta span {
    font-weight: 700;
    color: var(--red);
}

        
        /* ===== SERVICES SECTION ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .service-item-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.3s;
            border: 1px solid var(--color-light-gray);
            height: 100%;
        }
        
        .service-item-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }
        
        .service-icon-container {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #00336624 0%, #aa202036 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--color-primary);
            font-size: 1.75rem;
        }
        
        .service-item-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .service-description {
            color: var(--color-gray);
            font-size: 0.9375rem;
            margin-bottom: 1.25rem;
        }
        
        .service-link {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .service-link:hover {
            color: var(--color-primary-dark);
        }
        
        /* ===== PROCESS SECTION ===== */
        /*.process-steps-container {*/
        /*    display: flex;*/
        /*    justify-content: space-between;*/
        /*    position: relative;*/
        /*    max-width: 900px;*/
        /*    margin: 0 auto;*/
        /*}*/
        
        /*.process-steps-container::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 40px;*/
        /*    left: 50px;*/
        /*    right: 50px;*/
        /*    height: 2px;*/
        /*    background: #e5e7eb;*/
        /*    z-index: 1;*/
        /*}*/
        
        /*.process-step-item {*/
        /*    text-align: center;*/
        /*    position: relative;*/
        /*    z-index: 2;*/
        /*    width: 180px;*/
        /*}*/
        
        /*.step-number-circle {*/
        /*    width: 80px;*/
        /*    height: 80px;*/
        /*    background: var(--color-white);*/
        /*    border: 2px solid var(--color-primary);*/
        /*    color: var(--color-primary);*/
        /*    border-radius: 50%;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    font-size: 1.5rem;*/
        /*    font-weight: 700;*/
        /*    margin: 0 auto 1.25rem;*/
        /*    transition: all 0.3s;*/
        /*}*/
        
        /*.process-step-item:hover .step-number-circle {*/
        /*    background: var(--color-primary);*/
        /*    color: var(--color-white);*/
        /*    transform: scale(1.1);*/
        /*}*/
        
        /*.process-step-item h3 {*/
        /*    font-size: 1.125rem;*/
        /*    margin-bottom: 0.5rem;*/
        /*}*/
        
        /*.process-step-description {*/
        /*    color: var(--color-gray);*/
        /*    font-size: 0.875rem;*/
        /*}*/
        
        /* ===== PROCESS SECTION REDESIGN ===== */
.home-process-section {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

/*.home-process-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, */
/*        var(--color-primary) 0%, */
/*        var(--color-secondary) 100%);*/
/*}*/

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    position: relative;
    padding: 0 var(--space-md);
}

.process-step-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--color-light-gray);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.process-step-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.process-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-item:hover::before {
    opacity: 1;
}

.step-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.step-number-circle {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: var(--red);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
    stroke-width: 1.5;
}

.process-step-item:hover .step-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.process-step-item h3 {
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0;
    font-weight: 600;
}

.process-step-description {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Connector lines for desktop */
@media (min-width: 768px) {
    .process-steps-container {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
    
    .process-step-item::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -32px;
        width: 32px;
        height: 2px;
        background: var(--color-primary-light);
        transform: translateY(-50%);
        z-index: 1;
    }
    
    .process-step-item:last-child::after {
        display: none;
    }
    
    .process-step-item:nth-child(2) .step-icon {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    }
    
    .process-step-item:nth-child(3) .step-icon {
        background: linear-gradient(135deg, var(--color-secondary) 0%, #059669 100%);
    }
    
    .process-step-item:nth-child(4) .step-icon {
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .process-steps-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: var(--space-lg);
    }
    
    .process-step-item {
        padding: var(--space-md);
    }
    
    .step-icon-container {
        width: 80px;
        height: 80px;
    }
    
    .step-icon svg {
        width: 32px;
        height: 32px;
    }
}
        
        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .testimonial-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            height: 305px;
        }
        
        .testimonial-rating {
            color: #f59e0b;
            margin-bottom: 1.25rem;
        }
        
        .testimonial-text {
            color: var(--color-dark);
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .client {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .client h4 {
            margin-bottom: 0.25rem;
        }
        
        .client p {
            color: var(--color-gray);
            font-size: 0.875rem;
        }
        
        /* ===== STATS SECTION ===== */
        .home-stats-section {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: var(--color-white);
            padding: 5rem 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            text-align: center;
        }
        
        .stat-item {
            padding: 2rem 1rem;
        }
        
        .stat-value {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--color-white);
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-label {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }
        
        /* ===== FAQ SECTION ===== */
#faq {
    padding: 70px 0;
    background: #f8f9fa;
}

#faq .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Item */
#faq .accordion-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Remove default bootstrap border */
#faq .accordion-item:not(:first-of-type) {
    border-top: 1px solid #e5e5e5;
}

/* Question Button */
#faq .accordion-button {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    background: #ffffff;
    box-shadow: none;
}

/* Remove Bootstrap blue focus */
#faq .accordion-button:focus {
    box-shadow: none;
}

/* Active Question */
#faq .accordion-button:not(.collapsed) {
    background: #003366 !important;
    color: #fff;
}

/* Custom arrow color */
#faq .accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Collapsed arrow */
#faq .accordion-button.collapsed::after {
    filter: none;
}

/* Answer Body */
#faq .accordion-body {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    background: #ffffff;
}

/* Optional hover effect */
#faq .accordion-button:hover {
    background: #f0f4f8;
}

/* Responsive */
@media (max-width: 576px) {
    #faq .accordion-button {
        font-size: 15px;
        padding: 15px;
    }

    #faq .accordion-body {
        font-size: 14px;
    }
}

        
        
        /* ===== FOOTER ===== */

.site-footer {
    background:var(--gradient);
    color: #cbd5e1;
    padding: 70px 0 30px;
    font-size: 0.9rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0d6efd;
}

.footer-about {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #0d6efd;
    margin-top: 3px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.footer-seo {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }
}

        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1200px) {
            .home-hero-content {
                gap: 3rem;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .home-hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero-image-container {
                height: 350px;
                order: -1;
            }
            
            .destinations-grid,
            .services-grid,
            .testimonials-grid,
            .footer-grid,
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps-container {
                flex-direction: column;
                align-items: center;
                gap: 2.5rem;
            }
            
            .process-steps-container::before {
                display: none;
            }
            
            .process-step-item {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .home-hero-section {
                padding: 100px 0 60px;
                margin-top: 56px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .hero-features-grid {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-cta-buttons {
                flex-direction: column;
            }
            
            .visa-check-promo {
                margin-top: -2rem;
                padding: 1.5rem;
            }
            
            .section-title-large {
                font-size: 1.75rem;
            }
            
            .section-subtitle-large {
                font-size: 1rem;
            }
            
            .destinations-grid,
            .services-grid,
            .testimonials-grid,
            .footer-grid,
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-value {
                font-size: 2.5rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .navbar-nav {
                text-align: center;
                padding: 1rem 0;
            }
            
            .header-actions {
                justify-content: center;
                margin-top: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.75rem;
            }
            
            .hero-image-container {
                height: 250px;
            }
            
            .section-title-large {
                font-size: 1.5rem;
            }
            
            .service-item-card,
            .testimonial-card {
                padding: 1.5rem 1rem;
                height:100%;
            }
            
            .footer-bottom {
                font-size: 0.75rem;
            }
        }
/*        .video-section {*/
/*    background: #f9fafb;*/
/*    padding: 60px 0;*/
/*}*/

/*.video-title {*/
/*    font-size: 2rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: 12px;*/
/*}*/

/*.video-text {*/
/*    color: #6b7280;*/
/*    font-size: 0.95rem;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.video-points {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/*.video-points li {*/
/*    font-size: 0.9rem;*/
/*    margin-bottom: 10px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*}*/

/*.video-points i {*/
/*    color: #0d6efd;*/
/*}*/

/*.video-box {*/
/*    position: relative;*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 15px 35px rgba(0,0,0,0.15);*/
/*}*/

/*.video-box video {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: block;*/
/*    border-radius: 8px;*/
/*}*/

 .video-section {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    padding: 70px 0;
}

.video-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.video-card iframe {
    width: 100%;
    height: 240px;
    display: block;
    border-radius: 18px;
}

/* Play overlay glow */
.video-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-card:hover::before {
    opacity: 1;
}

/* Video label */
.video-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(13, 110, 253, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Owl nav styling */
.visa-video-carousel .owl-nav button {
    position: absolute;
    top: 40%;
    background: #fff !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.visa-video-carousel .owl-nav .owl-prev {
    left: -22px;
}

.visa-video-carousel .owl-nav .owl-next {
    right: -22px;
}

.visa-video-carousel .owl-nav span {
    font-size: 26px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .video-card iframe {
        height: 200px;
    }
}



        /* ===== DESTINATIONS PAGE SPECIFIC STYLES ===== */
        
        /* Destinations Hero Section */
        .destinations-hero-section {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 64, 175, 0.8) 100%);
            color: var(--color-white);
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .destinations-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 0;
        }
        
        .destinations-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .destinations-hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--color-white);
        }
        
        .destinations-hero-highlight {
            color: var(--color-primary-light);
            background: linear-gradient(135deg, var(--color-primary-light), #93c5fd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .destinations-hero-description {
            font-size: 1.25rem;
            color: #e2e8f0;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .destinations-hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-primary-light);
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-label {
            display: block;
            font-size: 1rem;
            color: #cbd5e1;
            margin-top: 0.5rem;
        }
        
        /* Destinations Filter Section */
        .destinations-filter-section {
            padding: 3rem 0;
            background: var(--color-light);
        }
        
        .destinations-filter-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-light-gray);
        }
        
        .filter-title {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            color: var(--color-dark);
        }
        
        .filter-subtitle {
            color: var(--color-gray);
            margin-bottom: 2rem;
        }
        
        .filter-controls .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-dark);
            font-weight: 500;
            margin-bottom: 0.75rem;
        }
        
        .filter-controls .form-group label i {
            color: var(--color-primary);
        }
        
        .filter-tags {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        
        .filter-tag {
            padding: 0.5rem 1.25rem;
            background: var(--color-light);
            border: 1px solid var(--color-light-gray);
            border-radius: 20px;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-tag:hover,
        .filter-tag.active {
            background: var(--color-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
        }
        
        /* Category Headers */
        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--color-light-gray);
        }
        
        .category-header h3 {
            font-size: 1.5rem;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 0;
        }
        
        .category-header h3 i {
            color: var(--color-primary);
        }
        
        .category-count {
            background: var(--color-primary);
            color: var(--color-white);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        /* Destination Cards - Matching Homepage Style */
        .destination-link {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .destination-link:hover {
            transform: translateY(-5px);
        }
        
        .destination-card-new {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .destination-link:hover .destination-card-new {
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }
        
        .destination-image-box {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        
        .destination-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .destination-link:hover .destination-image-box img {
            transform: scale(1.05);
        }
        
        /*.destination-badge {*/
        /*    position: absolute;*/
        /*    top: 10px;*/
        /*    right: 10px;*/
        /*    background: var(--color-white);*/
        /*    color: var(--color-primary);*/
        /*    padding: 4px 10px;*/
        /*    border-radius: 20px;*/
        /*    font-size: 0.75rem;*/
        /*    font-weight: 600;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    gap: 4px;*/
        /*    box-shadow: var(--shadow-sm);*/
        /*}*/
        
        /*.destination-badge i {*/
        /*    color: var(--color-secondary);*/
        /*}*/
        
        /*.destination-body {*/
        /*    padding: 1.5rem;*/
        /*}*/
        
        /*.destination-body h3 {*/
        /*    font-size: 1.25rem;*/
        /*    margin-bottom: 0.5rem;*/
        /*    color: var(--color-dark);*/
        /*    font-weight: 600;*/
        /*}*/
        
        /*.destination-type {*/
        /*    color: var(--color-gray);*/
        /*    font-size: 0.875rem;*/
        /*    margin-bottom: 1rem;*/
        /*    line-height: 1.4;*/
        /*}*/
        
        /*.destination-eta {*/
        /*    background: #f0f9ff;*/
        /*    border-radius: var(--radius-sm);*/
        /*    padding: 0.75rem;*/
        /*    font-size: 0.875rem;*/
        /*    color: var(--color-dark);*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    gap: 0.5rem;*/
        /*}*/
        
        /*.eta-time {*/
        /*    font-weight: 600;*/
        /*    color: var(--color-primary);*/
        /*}*/
        
        /* CTA Section */
        .destinations-cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        }
        
        .destinations-cta-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            box-shadow: var(--shadow-xl);
        }
        
        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .cta-content p {
            color: var(--color-gray);
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .cta-image {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .cta-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .cta-image:hover img {
            transform: scale(1.05);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .destinations-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .destinations-hero-text h1 {
                font-size: 2.5rem;
            }
            
            .destinations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .destinations-cta-card {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .destinations-hero-stats {
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .destinations-hero-section {
                padding: 120px 0 40px;
            }
            
            .destinations-hero-text h1 {
                font-size: 2rem;
            }
            
            .destinations-hero-description {
                font-size: 1rem;
            }
            
            .destinations-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .destinations-filter-card {
                padding: 1.5rem;
            }
            
            .filter-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .destinations-hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons .my-btn {
                width: 100%;
                justify-content: center;
            }
            
            .destination-image-box {
                height: 160px;
            }
        }
        
        /*common bredcrumb sections*/
        
        .bredcrumb_common_main{
                padding: 140px 0 60px;
                /*background: var(--gradient);*/
                color: var(--color-white);
                /*margin-top: 60px;*/
                position: relative;
                overflow: hidden;
                text-align: center;
        }
        .travel_visa_bg{
         background:var(--gradient-light),url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');   
        }
        
        /* ===== TRAVEL VISA PAGE SPECIFIC STYLES ===== */
        
        /* Travel Visa Hero Section */
        /*.travel-visa-hero-section {*/
        /*    padding: 140px 0 60px;*/
        /*    background: var(--gradient);*/
        /*    color: var(--color-white);*/
        /*    margin-top: 60px;*/
        /*    position: relative;*/
        /*    overflow: hidden;*/
        /*    text-align: center;*/
        /*}*/
        
        /*.travel-visa-hero-section::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    bottom: 0;*/
        /*    background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');*/
        /*    background-size: cover;*/
        /*    background-position: center;*/
        /*    opacity: 0.2;*/
        /*    z-index: 0;*/
        /*}*/
        
        .bred-visa-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .bred-visa-hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--color-white);
        }
        
        .bred-visa-hero-highlight {
            color: #a5b4fc;
            background: linear-gradient(135deg, #a5b4fc, #c7d2fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .bred-visa-hero-description {
            font-size: 1.25rem;
            color: #e2e8f0;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .bred-visa-hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #a5b4fc;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-label {
            display: block;
            font-size: 1rem;
            color: #cbd5e1;
            margin-top: 0.5rem;
        }
        
        /* Travel Visa Types Section */
        .travel-visa-types-section {
            padding: 5rem 0;
            background: var(--color-light);
        }
        
        .visa-type-card-enhanced {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .visa-type-card-enhanced:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }
        
        .visa-type-icon-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-primary), #6d28d9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--color-white);
            font-size: 2rem;
        }
        
        .visa-type-card-enhanced h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .visa-type-description {
            color: var(--color-gray);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .visa-type-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
            text-align: left;
        }
        
        .visa-type-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
            color: var(--color-gray);
        }
        
        .visa-type-features li i {
            color: var(--color-secondary);
        }
        
        .visa-type-cta {
            margin-top: auto;
        }
        
        /* Popular Travel Destinations */
        .popular-travel-destinations {
            padding: 5rem 0;
        }
        
        .travel-destination-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .travel-destination-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }
        
        .travel-destination-image {
            height: 200px;
            overflow: hidden;
        }
        
        .travel-destination-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .travel-destination-card:hover .travel-destination-image img {
            transform: scale(1.05);
        }
        
        .travel-destination-content {
            padding: 1.5rem;
        }
        
        .travel-destination-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--color-dark);
        }
        
        .travel-destination-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .travel-destination-type {
            background: #f0f9ff;
            color: var(--color-primary);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .travel-destination-processing {
            font-size: 0.875rem;
            color: var(--color-gray);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .travel-destination-processing i {
            color: var(--color-primary);
        }
        
        .travel-destination-description {
            color: var(--color-gray);
            font-size: 0.875rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .travel-destination-requirements {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .requirement-tag {
            background: #f3f4f6;
            color: var(--color-gray);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
        }
        
        .travel-destination-actions {
            display: flex;
            gap: 0.75rem;
        }
        
        .btn-apply-travel {
            flex: 1;
            padding: 0.5rem 1rem;
            background: var(--gradient);
            color: var(--color-white);
            border: none;
            border-radius: var(--radius-sm);
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-apply-travel:hover {
            background: var(--color-primary-dark);
            color: var(--color-white);
            transform: translateY(-2px);
        }
        
        .btn-details-travel {
            flex: 1;
            padding: 0.5rem 1rem;
            background: transparent;
            color: var(--color-primary);
            border: 1px solid var(--color-primary);
            border-radius: var(--radius-sm);
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .btn-details-travel:hover {
            background: var(--color-primary);
            color: var(--color-white);
        }
        
        /* Travel Visa Process */
        .travel-visa-process {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .process-step-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .process-step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-primary), #6d28d9);
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .process-step-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .process-step-description {
            color: var(--color-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Requirements Section */
        .requirements-section {
            padding: 5rem 0;
        }
        
        .requirements-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            height: 100%;
        }
        
        .requirements-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .requirements-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid var(--color-light-gray);
        }
        
        .requirements-list li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .requirement-icon {
            width: 40px;
            height: 40px;
            background: #f0f9ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            flex-shrink: 0;
        }
        
        .requirement-content h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--color-dark);
        }
        
        .requirement-content p {
            color: var(--color-gray);
            font-size: 0.875rem;
            margin: 0;
        }
        
        /* CTA Section */
        .travel-visa-cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        }
        
        .travel-visa-cta-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            box-shadow: var(--shadow-xl);
        }
        
        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .cta-content p {
            color: var(--color-gray);
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .cta-image {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        
        .cta-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .cta-image:hover img {
            transform: scale(1.05);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .travel-visa-hero-text h1 {
                font-size: 2.5rem;
            }
            
            .travel-visa-cta-card {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .travel-visa-hero-stats {
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .travel-visa-hero-section {
                padding: 120px 0 40px;
            }
            
            .travel-visa-hero-text h1 {
                font-size: 2rem;
            }
            
            .travel-visa-hero-description {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .travel-destination-actions {
                flex-direction: column;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons .my-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .travel-visa-hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .travel-destination-image {
                height: 160px;
            }
        }
        
      
        /* ===== VISA GALLERY PAGE SPECIFIC STYLES ===== */
        
        /* Visa Gallery Hero Section */
        .visa-gallery-hero-section {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, rgb(0 0 0 / 34%) 0%, rgb(0 0 0 / 80%) 100%);
            color: var(--color-white);
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .visa-gallery-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://img.freepik.com/free-vector/realistic-travel-background-with-elements_52683-77784.jpg?t=st=1768225519~exp=1768229119~hmac=ee4deaf49cf4553c9ef09d3d8b0baceb2c2365645835793b4b2b533419053b3d&w=1480');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .visa-gallery-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .visa-gallery-hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--color-white);
        }
        
        .visa-gallery-hero-highlight {
            color: #c4b5fd;
            background: linear-gradient(135deg, #c4b5fd, #ddd6fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .visa-gallery-hero-description {
            font-size: 1.25rem;
            color: #e2e8f0;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .visa-gallery-hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #c4b5fd;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-label {
            display: block;
            font-size: 1rem;
            color: #cbd5e1;
            margin-top: 0.5rem;
        }
        
        /* Gallery Filter Section */
        .gallery-filter-section {
            padding: 3rem 0;
            background: var(--color-light);
        }
        
        .gallery-filter-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .filter-tab {
            padding: 0.75rem 1.5rem;
            background: var(--color-white);
            border: 1px solid var(--color-light-gray);
            border-radius: var(--radius-md);
            color: var(--color-gray);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .filter-tab:hover,
        .filter-tab.active {
            background: var(--color-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
        }
        
        .filter-tab i {
            font-size: 1rem;
        }
        
        .gallery-search {
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Gallery Grid Section */
        .visa-gallery-grid-section {
            padding: 5rem 0;
        }
        
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .gallery-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s ease;
            height: 300px;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .gallery-item.large {
            grid-column: span 2;
            height: 400px;
        }
        
        @media (max-width: 768px) {
            .gallery-item.large {
                grid-column: span 1;
                height: 300px;
            }
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 2rem 1.5rem 1.5rem;
            color: var(--color-white);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--color-primary);
            color: var(--color-white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .gallery-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-white);
        }
        
        .gallery-description {
            font-size: 0.875rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .gallery-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.75rem;
            opacity: 0.8;
        }
        
        .gallery-meta span {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        /* Success Stories Section */
        .success-stories-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        .story-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        
        .story-image {
            height: 200px;
            overflow: hidden;
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .story-card:hover .story-image img {
            transform: scale(1.05);
        }
        
        .story-content {
            padding: 2rem;
        }
        
        .story-quote {
            color: var(--color-primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .story-text {
            color: var(--color-gray);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .story-client {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--color-light-gray);
        }
        
        .client-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-primary), #6d28d9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-weight: 600;
            font-size: 1.25rem;
        }
        
        .client-info h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--color-dark);
        }
        
        .client-info p {
            color: var(--color-gray);
            font-size: 0.875rem;
            margin: 0;
        }
        
        /* Photo Gallery Section */
        .photo-gallery-section {
            padding: 5rem 0;
        }
        
        .photo-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .photo-item {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            height: 200px;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }
        
        .photo-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
            z-index: 10;
        }
        
        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .photo-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: var(--color-white);
            padding: 0.75rem;
            font-size: 0.875rem;
            text-align: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .photo-item:hover .photo-caption {
            opacity: 1;
        }
        
        /* Gallery CTA Section */
        .gallery-cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
        }
        
        .gallery-cta-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 3rem;
            text-align: center;
            box-shadow: var(--shadow-xl);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .gallery-cta-card h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .gallery-cta-card p {
            color: var(--color-gray);
            margin-bottom: 2rem;
            font-size: 1.125rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Modal Styles */
        .gallery-modal .modal-content {
            border-radius: var(--radius-lg);
            border: none;
            overflow: hidden;
        }
        
        .gallery-modal .modal-header {
            border-bottom: 1px solid var(--color-light-gray);
            background: var(--color-light);
        }
        
        .gallery-modal .modal-body {
            padding: 2rem;
        }
        
        .modal-image {
            width: 100%;
            border-radius: var(--radius-md);
            margin-bottom: 1.5rem;
        }
        
        .modal-image img {
            width: 100%;
            border-radius: var(--radius-md);
        }
        
        .modal-details h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .modal-details p {
            color: var(--color-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .modal-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .modal-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-gray);
        }
        
        .modal-meta-item i {
            color: var(--color-primary);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .visa-gallery-hero-text h1 {
                font-size: 2.5rem;
            }
            
            .visa-gallery-hero-stats {
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .visa-gallery-hero-section {
                padding: 120px 0 40px;
            }
            
            .visa-gallery-hero-text h1 {
                font-size: 2rem;
            }
            
            .visa-gallery-hero-description {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .gallery-filter-tabs {
                gap: 0.5rem;
            }
            
            .filter-tab {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }
            
            .gallery-cta-card h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .my-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .visa-gallery-hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .gallery-grid {
                gap: 1rem;
            }
            
            .gallery-item {
                height: 250px;
            }
        }
        
        /* ===== DOCUMENT TRANSLATION PAGE SPECIFIC STYLES ===== */
        
        /* Hero Section */
        .translation-hero-section {
            padding: 140px 0 60px;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(29, 78, 216, 0.8) 100%);
            color: var(--color-white);
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .translation-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1589998059171-988d887df646?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .translation-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .translation-hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--color-white);
        }
        
        .translation-hero-highlight {
            color: #93c5fd;
            background: linear-gradient(135deg, #93c5fd, #bfdbfe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .translation-hero-description {
            font-size: 1.25rem;
            color: #e2e8f0;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .translation-hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: #93c5fd;
            font-family: 'Poppins', sans-serif;
        }
        
        .stat-label {
            display: block;
            font-size: 1rem;
            color: #cbd5e1;
            margin-top: 0.5rem;
        }
        
        /* Content Section */
        .translation-content-section {
            padding: 5rem 0;
        }
        
        .translation-main-content {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
        }
        
        .translation-image-container {
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-lg);
        }
        
        .translation-image-container img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .translation-image-container:hover img {
            transform: scale(1.03);
        }
        
        .content-block {
            margin-bottom: 3rem;
        }
        
        .content-block:last-child {
            margin-bottom: 0;
        }
        
        .content-block h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--color-dark);
            position: relative;
            padding-bottom: 0.75rem;
        }
        
        .content-block h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--color-primary);
        }
        
        .content-block p {
            color: var(--color-gray);
            margin-bottom: 1.25rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .content-block p:last-child {
            margin-bottom: 0;
        }
        
        /* Process Steps */
        .translation-process-section {
            padding: 5rem 0;
            background: var(--color-light);
        }
        
        .process-step-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .process-step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        }
        
        .process-step-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            color: var(--color-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }
        
        .process-step-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .step-description {
            color: var(--color-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .step-features {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        
        .step-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--color-gray);
            font-size: 0.95rem;
        }
        
        .step-features li i {
            color: var(--color-secondary);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        
        /* Instructions Section */
        .instructions-section {
            padding: 5rem 0;
        }
        
        .instructions-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
        }
        
        .instruction-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--color-light-gray);
        }
        
        .instruction-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .instruction-icon {
            width: 60px;
            height: 60px;
            background: #f0f9ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .instruction-content h4 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--color-dark);
        }
        
        .instruction-content p {
            color: var(--color-gray);
            margin: 0;
            line-height: 1.7;
        }
        
        /* Form Section */
        .translation-form-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }
        
        /*.translation-form-container {*/
        /*    background: var(--color-white);*/
        /*    border-radius: var(--radius-lg);*/
        /*    padding: 3rem;*/
        /*    box-shadow: var(--shadow-lg);*/
        /*    border: 1px solid var(--color-light-gray);*/
        /*}*/
        
        .form_img img{
                border-radius: var(--radius-md);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .form-header h2 {
            font-size: 2.25rem;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }
        
        .form-header p {
            color: var(--color-gray);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .translation-form .form-group {
            margin-bottom: 1.5rem;
        }
        
        .translation-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--color-dark);
        }
        
        .translation-form .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--color-light-gray);
            border-radius: var(--radius-md);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .translation-form .form-control:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-submit-btn {
            background: var(--color-primary);
            color: var(--color-white);
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-weight: 600;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .form-submit-btn:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Services CTA Section */
        .services-cta-section {
            padding: 5rem 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .service-card-mini {
            background: var(--color-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-light-gray);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card-mini:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--color-primary);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card-mini:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 1.5rem;
            text-align: center;
        }
        
        .service-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--color-dark);
        }
        
        .service-link {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .service-link:hover {
            color: var(--color-primary-dark);
            gap: 0.75rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .translation-hero-text h1 {
                font-size: 2.5rem;
            }
            
            .translation-hero-stats {
                gap: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .translation-hero-section {
                padding: 120px 0 40px;
            }
            
            .translation-hero-text h1 {
                font-size: 2rem;
            }
            
            .translation-hero-description {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .translation-main-content {
                padding: 2rem;
            }
            
            .content-block h2 {
                font-size: 1.75rem;
            }
            
            .instruction-item {
                flex-direction: column;
                text-align: center;
            }
            
            .instruction-icon {
                margin: 0 auto;
            }
            
            /*.translation-form-container {*/
            /*    padding: 2rem;*/
            /*}*/
            
            .form-header h2 {
                font-size: 1.75rem;
            }
        }
        
        @media (max-width: 576px) {
            .translation-hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .process-step-card {
                padding: 2rem 1.5rem;
            }
                .home-hero-section {
        padding: 30px 0 60px;
        margin-top: 0px;
    }
          .site-header .navbar {
    padding: 0px;
}  
            .bredcrumb_common_main {
    padding: 65px 0 60px;
    
}




.bred-visa-hero-text h1 {
    font-size: 35px;
   
}


.bred-visa-hero-description {
    font-size: 16px;
    
}
.stat-number {
        font-size: 30px !important;
    }
.study-hero {
    padding: 65px 0 60px !important;
  
}

            
        }