/*
Theme Name: Visa Consultancy
Author: Your Name
Description: Custom WordPress theme for Visa Consultancy Website
Version: 1.0
*/
html, body {
    margin: 0;
    padding: 0;
}

/* Header */



.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    /* z-index: 1000; */
    z-index: 1200;
}


.container {
    width: 90%;
    /* max-width: 1200px; */
    max-width: 1400px;
    margin: 0 auto;
}

.header-inner {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */

.site-logo a {
    text-decoration: none;
    color: #1c1c1c;
    font-size: 25px;
    font-weight: 700;
}

.site-logo span {
    color: #c59d5f;
}

/* Navigation */

.main-navigation {
    margin-left: auto;
}

.primary-menu {
    display: flex;
    align-items: center;

    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    color: #222222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}


/* CTA */

.header-button a {
    display: inline-block;
    padding: 13px 22px;
    background: #0B1F3A;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
}



/* Custom Logo Size Control */
.site-logo img.custom-logo {
    max-width: 170px; /* Ya aapko jitni width rakhni ho (e.g., 180px - 220px) */
    height: auto;
    display: block;
}


/* ==========================================
   Announcement Top Bar Styles
   ========================================== */
.top-announcement-bar {
    background-color: #0b1c3e !important; /* Dark Blue Background */
    color: #ffffff;
    font-size: 13px;
    padding: 10px 0;
    width: 100%;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, 
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-announcement-bar .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.top-announcement-bar .info-item i {
    color: #ffffff;
    font-size: 14px;
}

.top-announcement-bar a {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-announcement-bar a:hover {
    opacity: 0.8;
}

/* Social Links Box Styling */
.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border-radius: 3px;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #0B1F3A; /* Red Hover Effect */
}

/* Responsive View for Mobile */
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left, 
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}


/**Hero Banner **/

/* ==========================================
   Hero Banner Section Styles
   ========================================== */
.hero-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1600') no-repeat center center/cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(11, 31, 58, 0.75);  */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-subtitle {
    color: #c59d5f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #000000;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #634a4a;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c59d5f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0b1c3e;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0b1c3e;
}

/* @media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
} */

@media (max-width: 768px) {
    .hero-title { font-size: 32px; }
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .btn-primary, .btn-secondary {
        padding: 8px 14px;
        font-size: 13px;
        flex: 1 1 auto;
        text-align: center;
        min-width: 100px;
    }
}

/* ==========================================
   Hero Overlapping Feature Cards
   ========================================== */
.hero-features-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Demo site jaisa hero banner par overlap karne ke liye */
    margin-bottom: 50px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-card {
    display: flex;
    align-items: center;
    padding: 22px 20px;
    border-radius: 4px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card.dark-blue {
    background-color: #0b1c3e; /* Dark Blue Cards */
}

.feature-card.red-highlight {
    background-color: #0b1c3e; /* Red Active/Highlight Card */
}

.feature-icon {
    font-size: 32px;
    margin-right: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.feature-info h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.feature-info p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-features-wrapper {
        margin-top: -30px;
    }
}

/* @media (max-width: 576px) {
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
    .hero-features-wrapper {
        margin-top: 0;
    }
} */

@media (max-width: 576px) {
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .hero-features-wrapper {
        margin-top: 0;
    }
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 16px 10px;
    }
    .feature-icon {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 22px;
        min-width: auto;
    }
    .feature-info h4 {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .feature-info p {
        font-size: 10px;
        line-height: 1.3;
    }
}
/* .hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 80px 0;
} */


/* =========================================================
   OUR SERVICES FLIP CARD SECTION
   ========================================================= */

.services-section {
    padding: 30px 0;
    background: #f7f8fa;
}

.services-title {
    text-align: center;
    font-size: 32px;
    color: #0b1c3e !important;
    margin-bottom: 40px;
    text-transform: uppercase;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 3D Flip Card CSS */
.service-card-wrapper {
    background-color: transparent;
    perspective: 1000px; /* Enables 3D Space */
    min-height: 200px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-radius: 6px;
}

/* Hover par Rotate (Y-axis Flip) */
.service-card-wrapper:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, 
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 6px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #eee;
}

/* Front Side Styling */
.service-card-front {
    background-color: #ffffff;
    color: #0b1c3e;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,28,62,0.08);
    margin-bottom: 18px;
}

.service-icon i {
    font-size: 28px;
    color: #0b1c3e;
}

.service-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b1c3e;
    text-transform: uppercase;
    margin: 0;
}

/* Back Side Styling (Flip backside) */
.service-card-back {
    background-color: #BFDED8; /* NB Visa Yellow/Gold Theme */
    color: #121111;
    transform: rotateY(180deg);
}

/* .service-back-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ffffff;
} */

/* Back Side Styling (Flip backside) */
.service-card-back {
    background-color: #BFDED8; /* Light Green / Teal Background */
    color: #000000;            /* Default text color to Black */
    transform: rotateY(180deg);
}

.service-back-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #000000;            /* Text color changed to Black */
}

.service-back-btn {
    display: inline-block;
    padding: 8px 18px;
    background-color: #0b1c3e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.service-back-btn:hover {
    background-color: #ffffff;
    color: #0b1c3e;
}

/* 8th Card (Yellow Box without Flip) */
.service-card-static {
    background: #BFDED8;
    color: #000000;
    height: 100%;
    border-radius: 6px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.service-highlight-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.service-highlight-btn {
    color: #0b1c3e;
    font-weight: 700;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   COUNTRIES WE SERVE — Interactive World Map
   style.css mein add karein
   ========================================================= */

.countries-map-section {
    padding: 30px 0;
    background: #ffffff;
    text-align: center;
}

.countries-map-section .section-tagline {
    color: #c59d5f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.countries-map-title {
    font-size: 32px;
    color: #0b1c3e;
    margin: 10px 0 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.countries-map-desc {
    max-width: 620px;
    margin: 0 auto 40px;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

.world-map-wrapper {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    overflow: hidden;
    background: #fbfbfb;
}

.world-map-img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-user-select: none;
    user-select: none;
}

/* SVG overlay jisme route lines draw hoti hain */
.map-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-route {
    fill: none;
    stroke: #c59d5f;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    opacity: 0.45;
    transition: all 0.35s ease;
}

.map-route-active {
    stroke: #0b1c3e;
    stroke-width: 2.5;
    stroke-dasharray: none;
    opacity: 1;
}

/* Markers */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    text-decoration: none;
    z-index: 2;
}

.marker-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: #e31e25;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(227, 30, 37, 0.2);
    transition: transform 0.3s ease;
}

.base-marker .marker-dot {
    background: #0b1c3e;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 4px rgba(11, 28, 62, 0.2);
}

.map-marker:hover .marker-dot,
.map-marker:focus .marker-dot {
    transform: scale(1.4);
}

/* Tooltip */
.marker-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #0b1c3e;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0b1c3e;
}

.map-marker:hover .marker-tooltip,
.map-marker:focus .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .countries-map-title { font-size: 24px; }
    .countries-map-desc  { font-size: 14px; padding: 0 15px; }
    .marker-tooltip       { font-size: 10px; padding: 3px 7px; }
    .marker-dot            { width: 8px; height: 8px; }
}


.world-map-wrapper {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    background: #ffffff;
}

/* Canvas Overlay */
.map-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.world-map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Radar Pulse Pins (Visa Venue Style) */
.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-decoration: none;
}

.marker-dot {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    background: #334155;
    border-radius: 50%;
}

.marker-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(51, 65, 85, 0.25);
    animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.base-marker .marker-dot {
    background: #0b1c3e;
    width: 12px;
    height: 12px;
}




/** Responsive ** /
/* =========================================================
   OUR SERVICES FLIP CARD SECTION (Responsive & Optimized)
   ========================================================= */

.services-section {
    padding: 50px 0;
    background: #f7f8fa;
}

.services-title {
    text-align: center;
    font-size: 32px;
    color: #0b1c3e !important;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-weight: 800;
}

/* Base Desktop Grid Layout (4 per row) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 3D Flip Card Container */
.service-card-wrapper {
    background-color: transparent;
    perspective: 1000px;
    min-height: 200px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-radius: 8px;
}

/* Touch screen / Mouse Hover Flip */
.service-card-wrapper:hover .service-card-inner,
.service-card-wrapper:active .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front, 
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #e2e8f0;
}

/* Front Side Styling */
.service-card-front {
    background-color: #ffffff;
    color: #0b1c3e;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,28,62,0.08);
    margin-bottom: 14px;
}

.service-icon i {
    font-size: 24px;
    color: #0b1c3e;
}

.service-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #0b1c3e;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

/* Back Side Styling */
.service-card-back {
    background-color: #BFDED8;
    color: #000000;
    transform: rotateY(180deg);
}

.service-back-desc {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 12px;
    color: #0f172a;
}

.service-back-btn {
    display: inline-block;
    padding: 6px 14px;
    background-color: #0b1c3e;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-back-btn:hover {
    background-color: #ffffff;
    color: #0b1c3e;
}

/* 8th Card (Static Highlight Box) */
.service-card-static {
    background: #BFDED8;
    color: #000000;
    height: 100%;
    border-radius: 8px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    border: 1px solid #abd2ca;
}

.service-highlight-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px 0;
    color: #0f172a;
}

.service-highlight-btn {
    color: #0b1c3e;
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
}

/* =========================================================
   MEDIA QUERIES (TABLET & MOBILE RESPONSIVENESS)
   ========================================================= */

/* 1. TABLET VIEW (768px to 1024px) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr); /* 1 row me 4 compact cards */
        gap: 12px;
    }

    .service-card-wrapper {
        min-height: 185px;
    }

    .service-card-front, 
    .service-card-back,
    .service-card-static {
        padding: 16px 10px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .service-card-title {
        font-size: 13px;
    }

    .service-back-desc {
        font-size: 11px;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .service-back-btn {
        padding: 5px 10px;
        font-size: 10px;
    }

    .service-highlight-desc {
        font-size: 11.5px;
        line-height: 1.4;
    }
}

/* 2. MOBILE VIEW (320px to 767px) */
@media (max-width: 767px) {
    .services-section {
        padding: 20px 0;
    }

    .services-title {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* Mobile me 1 row me 2 cards */
        gap: 10px;
    }

    .service-card-wrapper {
        min-height: 100px;
    }

    .service-card-front, 
    .service-card-back,
    .service-card-static {
        padding: 14px 8px;
    }

    .service-icon {
        width: 20px;
        height: 20px;
        margin-bottom: 8px;
    }

    .service-icon i {
        font-size: 18px;
    }

    .service-card-title {
        font-size: 10px;
        letter-spacing: 0;
    }

    .service-back-desc {
        font-size: 8px;
        margin-bottom: 6px;
    }

    .service-back-btn {
        padding: 4px 8px;
        font-size: 10px;
    }

    .service-highlight-desc {
        font-size: 11px;
        line-height: 1.35;
    }
}


/** Contries **/
/* =========================================================
   COUNTRIES WE SERVE — Flag Grid Section
   ========================================================= */
.countries-serve-section {
    padding: 20px 0;
    background: #ffffff;
    text-align: center;
}

.countries-serve-section .section-tagline {
    color: #c59d5f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.countries-serve-title {
    font-size: 32px;
    color: #0b1c3e;
    margin: 10px 0 15px;
    text-transform: uppercase;
    font-weight: 800;
}

.countries-serve-desc {
    max-width: 620px;
    margin: 0 auto 40px;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

.countries-serve-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-top: 3px solid #0b1c3e;
    border-radius: 6px;
    padding: 25px 15px;
    text-decoration: none;
    color: #1c1c1c;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Border color variety, jaisa video mein tha */
.country-card:nth-child(7n+2) { border-top-color: #e31e25; }
.country-card:nth-child(7n+3) { border-top-color: #c59d5f; }
.country-card:nth-child(7n+4) { border-top-color: #14b8a6; }
.country-card:nth-child(7n+5) { border-top-color: #64748b; }
.country-card:nth-child(7n+6) { border-top-color: #16a34a; }
.country-card:nth-child(7n+7) { border-top-color: #f97316; }

.country-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.country-flag {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
}

.country-name {
    font-size: 15px;
    font-weight: 700;
    color: #0b1c3e;
}

/* Hover par expand hone wala hidden content */
.country-extra {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    font-size: 12px;
    color: #555555;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.35s ease;
}

.country-card:hover .country-extra {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
}

.country-view {
    color: #c59d5f;
    
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .countries-serve-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .countries-serve-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .countries-serve-title { font-size: 24px; }
    .country-flag { font-size: 28px; }
}
@media (max-width: 480px) {
    .countries-serve-grid { grid-template-columns: repeat(2, 1fr); }
}


/** Footer css**/
/* =========================================================
   PREMIUM FOOTER
   ========================================================= */

.site-footer {
    background: #07152f;
    color: #ffffff;
    margin-top: 80px;
}


/* Container */

.site-footer .container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* Main Footer */

.footer-main {
    padding: 50px 0 60px;
}


/* Grid */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 55px;
}


/* Logo */

.footer-logo {
    margin-bottom: 22px;
}

.footer-logo img {
    max-width: 190px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* If normal site title is used */

.footer-site-title {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
}


/* Description */

.footer-description {
    color: #b9c3d5;
    font-size: 14px;
    line-height: 1.8;
    max-width: 360px;
    margin: 0 0 25px;
}


/* Footer Headings */

.footer-column h3 {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: #ffffff;
}


/* Small premium line under heading */

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: #e31e25;
}


/* Menus */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #b9c3d5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: #ffffff;
    padding-left: 5px;
}


/* Social */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #e31e25;
    border-color: #e31e25;
    transform: translateY(-3px);
}


/* Contact */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
    color: #b9c3d5;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item a {
    color: #b9c3d5;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #ffffff;
}


/* Contact Icon */

.contact-icon {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
}


/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0;
}


.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.footer-bottom p {
    margin: 0;
    color: #9faabd;
    font-size: 13px;
}


/* Legal */

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #9faabd;
    font-size: 13px;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 15px;
    }

}

/** faq css**/
/* =========================================================
   PREMIUM FAQ SECTION
   ========================================================= */

.faq-section {
    padding: 50px 0;
    background: #f7f9fc;
}


/* Header */

.faq-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}


/* Small FAQ label */

.faq-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0B1F3A;
    margin-bottom: 12px;
}


.faq-header h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
    color: #0b1c3e;
    font-weight: 700;
}


.faq-header p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.8;
}


/* FAQ List */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}


/* FAQ Item */

.faq-item {
    background: #ffffff;
    border: 1px solid #e7ebf2;
    margin-bottom: 14px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.faq-item:hover {
    border-color: #d6dce7;
}


/* Question Button */

.faq-question {
    width: 100%;
    border: 0;
    background: #ffffff;
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    color: #0b1c3e;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
}


.faq-question:hover {
    color:#0B1F3A;
}


/* Question text */

.faq-question-text {
    flex: 1;
}


/* Plus Icon */

.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #f1f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1c3e;
    font-size: 13px;
    transition: all 0.3s ease;
}


/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}


/* Answer content */

.faq-answer-inner {
    padding: 0 25px 24px;
    color: #667085;
    font-size: 14px;
    line-height: 1.8;
}


/* Active FAQ */

.faq-item.active {
    border-color: #e1e5ec;
}


.faq-item.active .faq-icon {
    background: #0B1F3A;
    color: #ffffff;
    transform: rotate(45deg);
}


.faq-item.active .faq-question {
    color: #0b1c3e;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-header h2 {
        font-size: 36px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .faq-section {

        padding: 65px 0;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-header h2 {
        font-size: 30px;
    }

    .faq-header p {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px;
        font-size: 14px;
        gap: 12px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .faq-answer-inner {
        padding: 0 18px 20px;
        font-size: 13px;
    }

}


/** WHY Choose Us **/
/* Why Choose Us Section Styling */
.why-choose-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 45px;
}

.why-eyebrow {
    color: #e31e25;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.why-choose-header h2 {
    font-size: 32px;
    color: #0b1c3e;
    margin: 10px 0;
    font-weight: 700;
}

.why-choose-header p {
    color: #666;
    font-size: 16px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 4px solid #e31e25;
}

.why-icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px auto;
    background: #0b1c3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: background 0.3s ease;
}

.why-card:hover .why-icon-box {
    background:#0B1F3A;
}

.why-card-title {
    font-size: 20px;
    color: #0b1c3e;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/** How It works **/
/* How It Works Section Styling */
.how-it-works-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.how-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-eyebrow {
    color: #0b1c3e;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.how-header h2 {
    font-size: 32px;
    color: #0b1c3e;
    margin: 10px 0;
    font-weight: 700;
}

.how-header p {
    color: #666;
    font-size: 16px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    position: relative;
}

.how-step-card {
    background: #f8f9fa;
    border: 1px solid #eef0f3;
    padding: 35px 20px 25px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.how-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border-color: #0b1c3e;
}

.step-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #0b1c3e;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.how-icon-wrap {
    width: 70px;
    height: 70px;
    background: #0b1c3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
}

.how-step-card:hover .how-icon-wrap {
    background: #0B1F3A;
}

.how-step-card h3 {
    font-size: 18px;
    color: #0b1c3e;
    margin-bottom: 12px;
    font-weight: 600;
}

.how-step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/** testimonials**/
/* =========================================================
   VISA CONSULTANCY — TESTIMONIALS
   ========================================================= */

.visa-testimonials {
    padding: 100px 20px;
    background: #f7f9fc;
    overflow: hidden;
}

.visa-testimonials-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.visa-testimonials-header {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
}

.visa-testimonials-eyebrow {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #e31e25;
}

.visa-testimonials-header h2 {
    margin: 0 0 15px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;

    color: #0b1c3e;
}

.visa-testimonials-header p {
    max-width: 620px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #687386;
}


/* =========================================================
   RATING
   ========================================================= */

.visa-testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin: 0 auto 55px;
    width: fit-content;

    padding: 15px 24px;

    background: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 50px;

    box-shadow: 0 10px 35px rgba(11, 28, 62, 0.06);
}

.visa-rating-stars {
    color: #f5b301;
    font-size: 17px;
    letter-spacing: 2px;
}

.visa-rating-number {
    font-size: 22px;
    font-weight: 800;
    color: #0b1c3e;
}

.visa-rating-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.visa-rating-info strong {
    font-size: 13px;
    color: #0b1c3e;
}

.visa-rating-info span {
    margin-top: 4px;

    font-size: 11px;
    color: #7c8798;
}


/* =========================================================
   SLIDER
   ========================================================= */

.visa-testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.visa-testimonials-slider {
    width: 100%;
    overflow: hidden;
}

.visa-testimonials-track {
    display: flex;

    gap: 25px;

    transition: transform 0.5s ease;

    will-change: transform;
}


/* =========================================================
   CARD
   ========================================================= */

.visa-testimonial-card {
    position: relative;

    flex: 0 0 calc((100% - 50px) / 3);

    min-width: 0;

    padding: 34px 30px 30px;

    background: #ffffff;

    border: 1px solid #e9edf3;
    border-radius: 18px;

    box-shadow: 0 15px 45px rgba(11, 28, 62, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.visa-testimonial-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 22px 55px rgba(11, 28, 62, 0.11);
}


/* Quote */

.visa-testimonial-quote {
    position: absolute;

    top: 25px;
    right: 28px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f4f9;

    color: #0b1c3e;

    font-size: 17px;
}


/* Stars */

.visa-testimonial-stars {
    margin-bottom: 22px;

    color: #f5b301;

    font-size: 14px;
    letter-spacing: 2px;
}


/* Review */

.visa-testimonial-review {
    margin: 0 0 30px;

    min-height: 125px;

    font-size: 15px;
    line-height: 1.8;

    color: #596579;
}


/* =========================================================
   CLIENT
   ========================================================= */

.visa-testimonial-client {
    display: flex;
    align-items: center;

    padding-top: 20px;

    border-top: 1px solid #edf0f4;
}

.visa-testimonial-client img,
.visa-testimonial-avatar {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 50%;
}

.visa-testimonial-client img {
    object-fit: cover;
}

.visa-testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b1c3e;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

.visa-testimonial-client-info {
    margin-left: 14px;
}

.visa-testimonial-client-info h3 {
    margin: 0 0 4px;

    font-size: 15px;
    font-weight: 700;

    color: #0b1c3e;
}

.visa-testimonial-client-info span {
    display: block;

    font-size: 12px;

    color: #788396;
}

.visa-testimonial-client-info small {
    display: block;

    margin-top: 5px;

    font-size: 10px;
    font-weight: 600;

    color: #38a169;
}

.visa-testimonial-client-info small i {
    margin-right: 3px;
}


/* =========================================================
   ARROWS
   ========================================================= */

.visa-testimonial-arrow {
    position: relative;
    z-index: 5;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e1e6ee;
    border-radius: 50%;

    background: #ffffff;

    color: #0b1c3e;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(11, 28, 62, 0.08);

    transition: all 0.3s ease;
}

.visa-testimonial-arrow:hover {
    background: #0b1c3e;
    color: #ffffff;
}

.visa-testimonial-prev {
    margin-right: 18px;
}

.visa-testimonial-next {
    margin-left: 18px;
}

.visa-testimonial-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}


/* =========================================================
   DOTS
   ========================================================= */

.visa-testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 8px;

    margin-top: 35px;
}

.visa-testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #cbd3df;

    cursor: pointer;

    transition: all 0.3s ease;
}

.visa-testimonial-dot.active {
    width: 25px;

    border-radius: 20px;

    background: #0b1c3e;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .visa-testimonials {
        padding: 80px 20px;
    }

    .visa-testimonial-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .visa-testimonials {
        padding: 70px 16px;
    }

    .visa-testimonials-header {
        margin-bottom: 25px;
    }

    .visa-testimonials-header h2 {
        font-size: 32px;
    }

    .visa-testimonials-header p {
        font-size: 14px;
        line-height: 1.7;
    }

    .visa-testimonials-rating {
        margin-bottom: 35px;

        padding: 12px 18px;

        gap: 10px;
    }

    .visa-rating-stars {
        font-size: 13px;
    }

    .visa-rating-number {
        font-size: 18px;
    }

    .visa-rating-info strong {
        font-size: 11px;
    }

    .visa-rating-info span {
        font-size: 9px;
    }

    .visa-testimonial-card {
        flex: 0 0 100%;

        padding: 28px 24px 25px;
    }

    .visa-testimonial-review {
        min-height: auto;

        font-size: 14px;
    }

    .visa-testimonial-arrow {
        position: absolute;

        top: 50%;

        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .visa-testimonial-prev {
        left: 8px;
        margin: 0;
    }

    .visa-testimonial-next {
        right: 8px;
        margin: 0;
    }

    .visa-testimonials-slider {
        padding: 0 5px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .visa-testimonials-header h2 {
        font-size: 28px;
    }

    .visa-testimonials-rating {
        border-radius: 15px;
    }

    .visa-testimonial-card {
        padding: 25px 20px;
    }

}


/**** menu sub menu**/
/* =========================================================
   NAVIGATION DROPDOWN MENU — Visa Venue Style
   ========================================================= */

.primary-menu li {
    position: relative;
}

.primary-menu li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 4px 4px 0 0;
    transition: background 0.25s ease, color 0.25s ease;
}

/* Chevron icon (Font Awesome already enqueued in functions.php) */
.primary-menu li.menu-item-has-children > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.primary-menu li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Parent item highlight on hover */
.primary-menu li.menu-item-has-children:hover > a {
    background: #f4f2ee;
    color: #0b1c3e;
}

/* Dropdown panel */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.primary-menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.primary-menu .sub-menu li a:hover {
    background: #f1f3f6;
    color: #0b1c3e;
}

/* 3rd-level (nested) submenu opens to the right */
.primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Mobile: fallback to normal stacked list (no absolute dropdown) */
@media (max-width: 992px) {
    .primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    .primary-menu li.menu-item-has-children.open > .sub-menu {
        display: block;
    }
}

/* Mobile view par Announcement Top Bar se Timing aur Social Links ko hide karne ke liye */
@media (max-width: 768px) {
    /* Right side me timing aur social links dono hide kar dein */
    .top-announcement-bar .top-bar-right {
        display: none !important;
    }

    /* Email aur Phone number ko mobile screen par center me align karne ke liye */
    .top-announcement-bar .top-bar-left {
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
}

/**hero**/
@media (max-width: 768px) {
    .service-card-wrapper:has(.service-card-static) {
        display: none !important;
    }
}


.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 600;   /* Desktop image ratio */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 0;
    min-height: unset;
}

@media (max-width: 768px) {
    .hero-banner {
        aspect-ratio: 768 / 800;   /* Mobile image ratio */
    }
    .hero-content {
        padding: 0 15px;
    }
}

/** Countries map section fix — names visible by default (not hover-only) **/
.marker-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #0b1c3e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    z-index: 6;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0b1c3e;
}

/* Markers jo close hain unke labels alag side (upar/neeche) dikhte hain taaki overlap na ho */
.map-marker.marker-below .marker-tooltip {
    bottom: auto;
    top: 130%;
}
.map-marker.marker-below .marker-tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #0b1c3e;
}

@media (max-width: 768px) {
    .marker-tooltip {
        font-size: 9px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .marker-tooltip {
        font-size: 8px;
        padding: 2px 5px;
    }
    .marker-dot { width: 7px; height: 7px; }
    .base-marker .marker-dot { width: 10px; height: 10px; }
}


/**Mobile Fix**/
/** Countries map section fix — names visible by default (not hover-only) **/
.marker-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #0b1c3e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    z-index: 6;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0b1c3e;
}

/* Markers jo close hain unke labels alag side (upar/neeche) dikhte hain taaki overlap na ho */
.map-marker.marker-below .marker-tooltip {
    bottom: auto;
    top: 130%;
}
.map-marker.marker-below .marker-tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: #0b1c3e;
}

/* =========================================================
   MOBILE FIX — the map box was collapsing too short on narrow
   screens (image's natural wide aspect ratio was driving the
   height), which squeezed all 8 labels into a tiny vertical
   strip and made them overlap/cut off. Giving the wrapper an
   explicit taller height + object-fit:cover fixes this.
   ========================================================= */
@media (max-width: 768px) {
    .world-map-wrapper {
        overflow: visible;
        min-height: 380px;
        border-radius: 10px;
    }

    .world-map-wrapper .world-map-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
    }

    .marker-tooltip {
        font-size: 9px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .world-map-wrapper {
        min-height: 340px;
    }

    .marker-tooltip {
        font-size: 7px;
        padding: 2px 4px;
        border-radius: 3px;
        letter-spacing: 0.2px;
    }

    .marker-dot { width: 6px; height: 6px; }
    .base-marker .marker-dot { width: 9px; height: 9px; }
}

@media (max-width: 360px) {
    .world-map-wrapper {
        min-height: 300px;
    }

    .marker-tooltip {
        font-size: 6.5px;
        padding: 1px 4px;
    }
}

/** Countries we serve**/


.countries-serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* 7 se 4 kiya - 8 cards ke liye 2 rows of 4 */
    gap: 15px;
}
@media (max-width: 992px) {

    /* Toggle chevron button */
    .submenu-toggle {
        position: absolute;
        top: 8px;
        right: 10px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #0b1c3e;
        transition: transform 0.3s ease;
    }

    .primary-menu li.menu-item-has-children.open > .submenu-toggle {
        transform: rotate(180deg);
    }

    /* Smooth accordion animation (max-height base state) */
    .primary-menu .sub-menu {
        display: block !important;   /* JS max-height se control karega */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        padding: 0;
    }

    .primary-menu li.menu-item-has-children.open > .sub-menu {
        padding: 6px 0;
    }

    /* Nested (3rd level) submenu ko thoda indent do */
    .primary-menu .sub-menu .sub-menu {
        padding-left: 15px;
    }
}

/* Footer Accordion — Mobile Only */

.footer-accordion-icon {
    display: none;
}

@media (max-width: 768px) {

    .footer-column.footer-accordion > .footer-accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        margin-bottom: 0;
        padding-bottom: 16px;
    }

    .footer-accordion-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .footer-column.footer-accordion.active .footer-accordion-icon {
        transform: rotate(45deg); /* + ban jaayega x */
    }

    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .footer-column.footer-accordion.active .footer-accordion-content {
        max-height: 500px;
    }

    .footer-accordion-content .footer-menu {
        padding-top: 8px;
    }
}

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 0 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
        text-align: center;          /* NEW — sab text center */
    }

    .footer-logo {
        display: flex;
        justify-content: center;     /* NEW — logo center */
    }

    .footer-description {
        max-width: 100%;
        margin-left: auto;           /* NEW */
        margin-right: auto;          /* NEW */
    }

    .footer-social {
        justify-content: center;     /* NEW — social icons center */
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 15px;
    }

}

/* Extra close Button  mobile menu hide */
.mobile-menu-toggle.active {
    display: none;
}