/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

.voye_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --midnight-blue: #020035;
    --golden: #d99a28;
    --white: #ffffff;
    --midnight-blue-light: #041257;
    --golden-light: #f4b942;
    --text-dark: #020035;
    --text-light: #5a5a5a;
    --light-bg: #fefefe;
    --lighter-bg: #f9f9f9;
    --section-vertical: 70px;
    /* default vertical spacing between sections */
}

/* Typography */
.voye_highlight {
    color: #020035 !important;
    font-weight: 900 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    /* border: 2px solid #d99a28 !important; */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(217, 154, 40, 0.3) !important;
}

.voye_highlight-contact {
    color: #d99a28;
    font-weight: 700;
}

/* Hero Banner */
.voye_hero-banner {
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    background: url('../images/Banner Image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.voye_hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 0, 53, 0.6), rgba(217, 154, 40, 0.3));
    backdrop-filter: blur(1px);
    z-index: 1;
}

.voye_hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.voye_hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(2, 0, 53, 0.3);
    animation: fadeInUp 1s ease-out;
}

    /* Specific styling for highlight text in hero title */
    .voye_hero-title .voye_highlight {
        color: #020035 !important;
        /* Deep navy-blue text */
        font-weight: 900 !important;
        /* Extra bold text */
        background: rgba(255, 255, 255, 0.98) !important;
        /* Light white background */
        padding: 8px 16px !important;
        /* Consistent spacing */
        border-radius: 10px !important;
        /* Smooth rounded corners */
        border: none !important;
        /* No border */
        text-shadow: none !important;
        /* Flat text look */
        display: inline-block !important;
        /* Keep inline element styling */
        box-shadow: 0 6px 20px rgba(2, 0, 53, 0.15) !important;
        /* Soft blue shadow for depth */
        margin: 0 4px !important;
        /* Even spacing */
    }

.voye_hero-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 200;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.voye_cta-button {
    background: var(--midnight-blue);
    color: white;
    /* padding: 20px 40px; */
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

    .voye_cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .voye_cta-button:hover::before {
        left: 100%;
    }

    .voye_cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 40px rgba(2, 0, 53, 0.6), 0 0 50px rgba(2, 0, 53, 0.3);
        background: var(--midnight-blue-light);
    }

    .voye_cta-button i {
        transition: transform 0.3s ease;
    }

    .voye_cta-button:hover i {
        transform: translateX(5px);
    }

/* Banner border and partner CTA padding adjustments */
.voye_hero-banner {
    /* subtle golden border to separate the banner from the rest of the page */
    border-bottom: 6px solid rgba(217, 154, 40, 0.10);
    /* slight outer shadow to lift the banner visually */
    box-shadow: 0 8px 30px rgba(2, 0, 53, 0.06);
}

    .voye_hero-banner .voye_cta-button {
        /* slightly larger touch target inside the banner */
        padding: 22px 48px;
        /* light subtle border to make the CTA stand out on the image */
        border: 2px solid rgba(255, 255, 255, 0.08);
    }

        /* If needed, target a more specific partner CTA when present (add class="partner" to the button)
   to give it a more pronounced golden outline */
        .voye_hero-banner .voye_cta-button.partner {
            padding: 24px 52px;
            border: 2px solid var(--golden);
        }

/* Section Header */
.voye_section-header {
    text-align: center;
    margin-bottom: 40px;
    /* reduced gap between header and content */
}

    .voye_section-header h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    .voye_section-header p {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }

/* Achievements Section */
.voye_achievements {
    padding: 120px 0;
    background: var(--light-bg);
}

.voye_achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.voye_achievement-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.voye_card-purple {
    border-color: rgba(2, 0, 53, 0.3);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_card-blue {
    border-color: rgba(217, 154, 40, 0.3);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_card-pink {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_achievement-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.voye_card-purple:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--midnight-blue);
}

.voye_card-blue:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--golden);
}

.voye_card-pink:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--midnight-blue);
}

.voye_achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.voye_card-purple .voye_achievement-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--midnight-blue-light));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_card-blue .voye_achievement-icon {
    background: linear-gradient(45deg, var(--golden), var(--golden-light));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_card-pink .voye_achievement-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--golden));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.voye_achievement-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 20px;
}

.voye_achievement-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 0, 53, 0.05) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

/* Services Section */
.voye_services {
    padding: 120px 0;
    background: var(--white);
}

.voye_services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.voye_service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.voye_neon-card-1 {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_neon-card-2 {
    border-color: rgba(217, 154, 40, 0.2);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_neon-card-3 {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_neon-card-4 {
    border-color: rgba(217, 154, 40, 0.2);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_neon-card-5 {
    border-color: rgba(2, 0, 53, 0.2);
    box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
}

.voye_neon-card-6 {
    border-color: rgba(217, 154, 40, 0.2);
    box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
}

.voye_service-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.voye_neon-card-1:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--midnight-blue);
}

.voye_neon-card-2:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--golden);
}

.voye_neon-card-3:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--midnight-blue);
}

.voye_neon-card-4:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--golden);
}

.voye_neon-card-5:hover {
    box-shadow: 0 20px 60px rgba(2, 0, 53, 0.3);
    border-color: var(--midnight-blue);
}

.voye_neon-card-6:hover {
    box-shadow: 0 20px 60px rgba(217, 154, 40, 0.3);
    border-color: var(--golden);
}

.voye_service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.voye_neon-card-1 .voye_service-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--midnight-blue-light));
    box-shadow: 0 0 20px rgba(2, 0, 53, 0.4);
}

.voye_neon-card-2 .voye_service-icon {
    background: linear-gradient(45deg, var(--golden), var(--golden-light));
    box-shadow: 0 0 20px rgba(217, 154, 40, 0.4);
}

.voye_neon-card-3 .voye_service-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--golden));
    box-shadow: 0 0 20px rgba(2, 0, 53, 0.4);
}

.voye_neon-card-4 .voye_service-icon {
    background: linear-gradient(45deg, var(--golden), var(--midnight-blue));
    box-shadow: 0 0 20px rgba(217, 154, 40, 0.4);
}

.voye_neon-card-5 .voye_service-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--golden-light));
    box-shadow: 0 0 20px rgba(2, 0, 53, 0.4);
}

.voye_neon-card-6 .voye_service-icon {
    background: linear-gradient(45deg, var(--golden), var(--midnight-blue-light));
    box-shadow: 0 0 20px rgba(217, 154, 40, 0.4);
}

.voye_service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}

.voye_service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.voye_neon-card-1 .voye_service-glow {
    background: radial-gradient(circle, rgba(2, 0, 53, 0.08) 0%, transparent 70%);
}

.voye_neon-card-2 .voye_service-glow {
    background: radial-gradient(circle, rgba(217, 154, 40, 0.08) 0%, transparent 70%);
}

.voye_neon-card-3 .voye_service-glow {
    background: radial-gradient(circle, rgba(2, 0, 53, 0.08) 0%, transparent 70%);
}

.voye_neon-card-4 .voye_service-glow {
    background: radial-gradient(circle, rgba(217, 154, 40, 0.08) 0%, transparent 70%);
}

.voye_neon-card-5 .voye_service-glow {
    background: radial-gradient(circle, rgba(2, 0, 53, 0.08) 0%, transparent 70%);
}

.voye_neon-card-6 .voye_service-glow {
    background: radial-gradient(circle, rgba(217, 154, 40, 0.08) 0%, transparent 70%);
}

.voye_service-card:hover .voye_service-glow {
    opacity: 1;
    animation: rotate 8s linear infinite;
}

/* Brand Partnerships */
.voye_brand-partnerships {
    padding: 120px 0;
    background: var(--lighter-bg);
}

.voye_brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.voye_brand-card {
    background: var(--white);
    padding: 15px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .voye_brand-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 25px 50px rgba(2, 0, 53, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
        border-color: var(--midnight-blue);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 255, 1) 100%);
    }

    .voye_brand-card img {
        max-width: 90%;
        width: auto;
        height: 100%;
        max-height: 120px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        transition: all 0.4s ease;
        filter: brightness(1.1) contrast(1.1) saturate(1.1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        border-radius: 10px;
    }

    .voye_brand-card:hover img {
        transform: scale(1.08);
        filter: brightness(1.3) contrast(1.2) saturate(1.2) drop-shadow(0 8px 25px rgba(2, 0, 53, 0.3));
    }

.voye_brand-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 0, 53, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 12s linear infinite;
}

.voye_brand-card:hover .voye_brand-glow {
    opacity: 1;
}

/* Platform Management */
.voye_platform-management {
    padding: 120px 0;
    background: var(--white);
}

.voye_platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding: 20px 0;
}

.voye_platform-card {
    background: var(--white);
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
}

    .voye_platform-card:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 25px 50px rgba(2, 0, 53, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
        border-color: var(--midnight-blue);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 245, 255, 1) 100%);
    }

    .voye_platform-card img {
        width: auto;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        transition: all 0.4s ease;
        filter: brightness(1.1) contrast(1.1) saturate(1.1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }

    .voye_platform-card:hover img {
        transform: scale(1.08);
        filter: brightness(1.3) contrast(1.2) saturate(1.2) drop-shadow(0 8px 25px rgba(2, 0, 53, 0.3));
    }

.voye_platform-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.voye_platform-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(2, 0, 53, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.voye_platform-card:hover .voye_platform-shine {
    top: -150%;
    left: -150%;
    opacity: 1;
    animation: shine 1s ease-in-out;
}

/* Client Success Stories Section */
.voye_client-success-stories {
    padding: 120px 0;
    background: var(--white);
}

.voye_success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.voye_success-story-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(2, 0, 53, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .voye_success-story-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(2, 0, 53, 0.2);
    }

.voye_story-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

    .voye_story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.voye_success-story-card:hover .voye_story-image img {
    transform: scale(1.05);
}

.voye_story-content {
    padding: 30px;
}

    .voye_story-content p {
        color: var(--text-dark);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
        font-style: italic;
        position: relative;
    }

        .voye_story-content p::before {
            content: '"';
            font-size: 3rem;
            color: var(--golden);
            position: absolute;
            top: -15px;
            left: -15px;
            font-family: serif;
            opacity: 0.4;
            line-height: 1;
        }

.voye_client-attribution {
    border-top: 2px solid var(--lighter-bg);
    padding-top: 20px;
}

    .voye_client-attribution h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--midnight-blue);
        margin: 0 0 5px 0;
    }

    .voye_client-attribution span {
        color: var(--text-light);
        font-size: 0.95rem;
        font-weight: 400;
    }

/* FAQ Section */

/* Client Testimonials Section */
.voye_client-testimonials {
    padding: 120px 0;
    background: var(--lighter-bg);
}

.voye_testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.voye_testimonials-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.voye_testimonial-card {
    min-width: 100%;
    display: flex;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

    .voye_testimonial-card.active {
        opacity: 1;
    }

.voye_property-image {
    width: 50%;
    min-height: 400px;
    overflow: hidden;
}

    .voye_property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.voye_testimonial-card:hover .voye_property-image img {
    transform: scale(1.05);
}

.voye_testimonial-content {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

    .voye_testimonial-content p {
        color: var(--text-dark);
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 40px;
        font-style: italic;
        position: relative;
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

        .voye_testimonial-content p::before {
            content: '"';
            font-size: 5rem;
            color: var(--golden);
            position: absolute;
            top: -30px;
            left: -20px;
            font-family: serif;
            opacity: 0.3;
            line-height: 1;
        }

.voye_client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 2px solid var(--golden);
    margin-top: auto;
}

.voye_client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--golden);
    flex-shrink: 0;
}

    .voye_client-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.voye_client-details h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin: 0 0 8px 0;
}

.voye_client-details span {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.voye_carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 0;
}

.voye_indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(2, 0, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .voye_indicator.active {
        background: var(--midnight-blue);
        transform: scale(1.2);
    }

    .voye_indicator:hover {
        background: var(--golden);
    }

/* Testimonials Slider Section (keep for backward compatibility) */
.voye_testimonials-slider {
    padding: 120px 0;
    background: var(--white);
}

.voye_testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.voye_testimonial-slide {
    min-width: 100%;
    display: flex;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

    .voye_testimonial-slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

.voye_testimonial-image {
    width: 33.33%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

    .voye_testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.voye_testimonial-text {
    width: 66.67%;
    padding: 50px;
    background: var(--white);
    border: 1px solid rgba(2, 0, 53, 0.1);
    border-left: none;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

    .voye_testimonial-text p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-dark);
        margin-bottom: 30px;
        font-style: italic;
        position: relative;
    }

        .voye_testimonial-text p::before {
            content: '"';
            font-size: 4rem;
            color: var(--golden);
            position: absolute;
            top: -25px;
            left: -20px;
            font-family: serif;
            opacity: 0.3;
        }

.voye_testimonial-author h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin: 0 0 5px 0;
}

.voye_testimonial-author span {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 400;
}

.voye_slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.voye_slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--midnight-blue);
    background: var(--white);
    color: var(--midnight-blue);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .voye_slider-btn:hover {
        background: var(--midnight-blue);
        color: var(--white);
        transform: scale(1.1);
    }

.voye_slider-indicators {
    display: flex;
    gap: 15px;
}

    .voye_slider-indicators .voye_indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(2, 0, 53, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .voye_slider-indicators .voye_indicator.active {
            background: var(--midnight-blue);
            transform: scale(1.2);
        }

        .voye_slider-indicators .voye_indicator:hover {
            background: var(--golden);
        }

/* FAQ Section */
.voye_faq {
    padding: 120px 0;
    background: var(--lighter-bg);
}

.voye_faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.voye_faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .voye_faq-item:hover {
        border-color: var(--midnight-blue);
        box-shadow: 0 15px 40px rgba(2, 0, 53, 0.15);
        transform: translateY(-5px);
    }

.voye_faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, transparent, rgba(2, 0, 53, 0.02));
}

    .voye_faq-question:hover {
        background: linear-gradient(45deg, rgba(2, 0, 53, 0.05), rgba(217, 154, 40, 0.02));
    }

    .voye_faq-question h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
        flex: 1;
    }

    .voye_faq-question i {
        font-size: 1.2rem;
        color: var(--midnight-blue);
        transition: transform 0.3s ease;
        margin-left: 20px;
    }

.voye_faq-item.active .voye_faq-question i {
    transform: rotate(180deg);
    color: var(--golden);
}

.voye_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.voye_faq-item.active .voye_faq-answer {
    max-height: 200px;
}

.voye_faq-answer p {
    padding: 0 30px 30px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Awards Section */
.voye_awards {
    padding: 120px 0;
    background: var(--white);
}

.voye_awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.voye_award-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .voye_award-card:nth-child(1) {
        border-color: rgba(217, 154, 40, 0.2);
        box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
    }

    .voye_award-card:nth-child(2) {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_award-card:nth-child(3) {
        border-color: rgba(217, 154, 40, 0.2);
        box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
    }

    .voye_award-card:nth-child(4) {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_award-card:nth-child(5) {
        border-color: rgba(217, 154, 40, 0.2);
        box-shadow: 0 10px 30px rgba(217, 154, 40, 0.15);
    }

    .voye_award-card:nth-child(6) {
        border-color: rgba(2, 0, 53, 0.2);
        box-shadow: 0 10px 30px rgba(2, 0, 53, 0.15);
    }

    .voye_award-card:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .voye_award-card:nth-child(1):hover {
        box-shadow: 0 25px 60px rgba(217, 154, 40, 0.3);
        border-color: var(--golden);
    }

    .voye_award-card:nth-child(2):hover {
        box-shadow: 0 25px 60px rgba(2, 0, 53, 0.3);
        border-color: var(--midnight-blue);
    }

    .voye_award-card:nth-child(3):hover {
        box-shadow: 0 25px 60px rgba(217, 154, 40, 0.3);
        border-color: var(--golden);
    }

    .voye_award-card:nth-child(4):hover {
        box-shadow: 0 25px 60px rgba(2, 0, 53, 0.3);
        border-color: var(--midnight-blue);
    }

    .voye_award-card:nth-child(5):hover {
        box-shadow: 0 25px 60px rgba(217, 154, 40, 0.3);
        border-color: var(--golden);
    }

    .voye_award-card:nth-child(6):hover {
        box-shadow: 0 25px 60px rgba(2, 0, 53, 0.3);
        border-color: var(--midnight-blue);
    }

.voye_award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.voye_award-card:nth-child(1) .voye_award-icon {
    background: linear-gradient(45deg, var(--golden), var(--golden-light));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_award-card:nth-child(2) .voye_award-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--midnight-blue-light));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_award-card:nth-child(3) .voye_award-icon {
    background: linear-gradient(45deg, var(--golden), var(--golden-light));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_award-card:nth-child(4) .voye_award-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--midnight-blue-light));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_award-card:nth-child(5) .voye_award-icon {
    background: linear-gradient(45deg, var(--golden), var(--midnight-blue));
    box-shadow: 0 0 30px rgba(217, 154, 40, 0.4);
}

.voye_award-card:nth-child(6) .voye_award-icon {
    background: linear-gradient(45deg, var(--midnight-blue), var(--golden));
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

.voye_award-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.voye_award-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}

.voye_award-year {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--midnight-blue), var(--golden));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(2, 0, 53, 0.3);
}

/* Contact Section */
.voye_contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--midnight-blue) 70%, var(--golden) 100%);
    color: white;
}

.voye_contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.voye_contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.voye_contact-info p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.voye_contact-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voye_feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

    .voye_feature-item i {
        color: var(--white);
        font-size: 1.2rem;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

.voye_contact-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.voye_form-group {
    margin-bottom: 25px;
}

    .voye_form-group input,
    .voye_form-group textarea {
        width: 100%;
        padding: 18px 25px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .voye_form-group input::placeholder,
        .voye_form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .voye_form-group input:focus,
        .voye_form-group textarea:focus {
            outline: none;
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

.voye_submit-btn {
    width: 100%;
    background: var(--midnight-blue);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(2, 0, 53, 0.4);
}

    .voye_submit-btn:hover {
        background: var(--midnight-blue-light);
        transform: translateY(-3px);
        box-shadow: 0 0 50px rgba(2, 0, 53, 0.6);
    }

    .voye_submit-btn i {
        transition: transform 0.3s ease;
    }

    .voye_submit-btn:hover i {
        transform: translateX(5px);
    }

/* Office Address Section */
.voye_office-address {
    padding: 80px 0;
    background: var(--white);
}

.voye_office-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.voye_addresses-grid {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.voye_address-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(217, 154, 40, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .voye_address-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .voye_address-card h3 {
        font-size: 1.5rem;
        color: var(--midnight-blue);
        margin-bottom: 15px;
    }

    .voye_address-card p {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.5;
    }

/* Modal Styles */
.voye_modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

    .voye_modal-overlay.active {
        display: flex;
    }

.voye_modal-content {
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.voye_modal-overlay.active .voye_modal-content {
    transform: scale(1);
}

.voye_modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: none;
}

    .voye_modal-header h2 {
        color: midnightblue;
        font-size: 1.4rem;
        font-weight: 600;
        margin: 0;
        text-align: center;
        flex: 1;
    }

.voye_modal-close {
    background: none;
    border: none;
    color: midnightblue;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

    .voye_modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* Service Modal Styles - Vibrant Design */
.voye_service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .voye_service-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.voye_service-modal-content {
    background: var(--white);
    padding: 0;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.voye_service-modal-overlay.active .voye_service-modal-content {
    transform: scale(1);
}

.voye_service-modal-header {
    background: linear-gradient(45deg, var(--midnight-blue), var(--golden));
    color: white;
    padding: 30px 40px;
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .voye_service-modal-header h2 {
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0;
        text-align: center;
        flex: 1;
    }

.voye_service-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .voye_service-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

.voye_modal-form {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

    .voye_modal-form .voye_form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .voye_modal-form input,
    .voye_modal-form textarea {
        padding: 12px 15px;
        border: none;
        border-radius: 6px;
        font-size: 0.95rem;
        background: rgba(57, 82, 223, 0.15);
        color: var(--midnight-blue-light);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
        border: 1px solid rgba(7, 44, 206, 0.2);
        width: 100%;
        box-sizing: border-box;
    }

        .voye_modal-form input::placeholder,
        .voye_modal-form textarea::placeholder {
            color: var(--midnight-blue-light);
            font-weight: 400;
        }

        .voye_modal-form input:focus,
        .voye_modal-form textarea:focus {
            outline: none;
            background: white;
            border-color: var(--golden);
        }

    .voye_modal-form textarea {
        resize: vertical;
        min-height: 80px;
    }

.voye_modal-submit-btn {
    background: var(--midnight-blue);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

/* Make FAQ answers scrollable on small screens when expanded so long answers are readable */
@media (max-width: 768px) {
    .voye_faq-answer {
        transition: max-height 0.35s ease;
    }

    .voye_faq-item.active .voye_faq-answer {
        /* Allow the answer area to grow to most of the viewport and scroll internally */
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        /* keep a small bottom gap */
    }

    /* Reduce inner padding inside the expanded answer for tighter mobile layout */
    .voye_faq-answer p {
        padding: 0 16px 14px;
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .voye_faq-question h3 {
        font-size: 1.05rem;
    }
}

/* Mobile-specific tweaks for hero banner and success-stories carousel behavior */
@media (max-width: 768px) {

    /* Make hero more compact on phones and avoid forced word-breaks */
    .voye_hero-banner {
        height: auto;
        padding: 60px 0;
        background-position: center top;
    }

    .voye_hero-content {
        max-width: 92%;
        padding: 0 12px;
    }

    .voye_hero-title {
        font-size: 2rem;
        /* slightly smaller for narrow viewports */
        line-height: 1.15;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }

        /* Keep the highlighted word together unless it must wrap */
        .voye_hero-title .voye_highlight {
            display: inline-block;
            white-space: nowrap;
        }

    /* Make success-stories act like a single-item carousel on mobile */
    .voye_success-stories-grid {
        display: flex;
        overflow: hidden;
        gap: 16px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .voye_success-story-card {
        min-width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: center;
        margin: 0;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

        .voye_success-story-card .voye_story-image {
            height: 180px;
        }

    /* Navigation buttons (JS can use these if a carousel is added) */
    .voye_success-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #ffffff;
        border: 2px solid var(--golden);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        color: var(--golden);
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

        .voye_success-nav:hover {
            background: var(--golden);
            color: #fff;
            transform: translateY(-50%) scale(1.05);
        }

    .voye_success-nav-prev {
        left: 10px;
    }

    .voye_success-nav-next {
        right: 10px;
    }

    .voye_success-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .voye_success-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.18);
    }

        .voye_success-dot.active {
            background: var(--golden);
            transform: scale(1.15);
        }
}

.voye_modal-submit-btn:hover {
    background: var(--midnight-blue-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(2, 0, 53, 0.4);
}

.voye_service-modal-body {
    padding: 40px;
    text-align: left;
    color: var(--text-dark);
}

    .voye_service-modal-body h2 {
        text-align: center;
        margin-bottom: 20px;
    }

.voye_service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--midnight-blue), var(--golden));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 0 40px rgba(2, 0, 53, 0.4);
}

.voye_service-modal-header h2 {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {

    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Responsive Design */
/* Tablet Landscape Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .voye_hero-banner {
        height: 80vh;
        min-height: 500px;
        max-height: 650px;
    }

    .voye_hero-content {
        padding: 0 40px;
    }

    .voye_hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .voye_hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .voye_cta-button {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
}

/* Specific iPad Landscape (1024x768) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) and (min-height: 700px) and (max-height: 800px) {
    .voye_hero-banner {
        height: 75vh;
        min-height: 520px;
        max-height: 600px;
    }

    .voye_hero-content {
        max-width: 900px;
        padding: 0 50px;
    }

    .voye_hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .voye_hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Tablet Portrait Specific Styles */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
    .voye_hero-banner {
        height: 70vh;
        min-height: 600px;
        max-height: 750px;
    }

    .voye_hero-content {
        padding: 0 30px;
    }

    .voye_hero-title {
        font-size: 3.2rem;
        line-height: 1.15;
    }

    .voye_hero-subtitle {
        font-size: 1.2rem;
    }

    .voye_cta-button {
        padding: 20px 40px;
        font-size: 1.15rem;
    }
}

/* General tablet fixes for common issues */
@media (min-width: 769px) and (max-width: 1024px) {
    .voye_hero-banner {
        background-attachment: scroll;
        /* Better performance on tablets */
        background-size: cover;
        background-position: center center;
    }
}

/* Failsafe for all tablet-sized screens */
@media (min-width: 769px) and (max-width: 1366px) and (min-height: 500px) and (max-height: 900px) {
    .voye_hero-banner {
        height: clamp(500px, 75vh, 700px);
        min-height: 500px;
        max-height: 700px;
    }

    .voye_hero-content {
        padding: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .voye_platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Global spacing overrides to tighten vertical rhythm between sections */
/* Exclude the hero banner which intentionally uses full viewport height */
section:not(.voye_hero-banner) {
    padding-top: calc(var(--section-vertical));
    padding-bottom: calc(var(--section-vertical));
}

/* Reduce default grid top margins used throughout the site */
.voye_achievements-grid,
.voye_services-grid,
.voye_brands-grid,
.voye_platforms-grid,
.voye_awards-grid,
.voye_success-stories-grid {
    margin-top: 30px;
    /* tighter than original 60px */
}

.voye_testimonials-carousel,
.voye_testimonials-carousel-container,
.voye_review-container {
    margin-top: 30px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .voye_hero-title {
        font-size: 2.5rem;
    }

    .voye_hero-subtitle {
        font-size: 1.1rem;
    }

    .voye_section-header h2 {
        font-size: 1.5rem;
    }

    .voye_contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .voye_contact-info h2 {
        font-size: 1.5rem;
    }

    .voye_services-grid,
    .voye_platforms-grid {
        grid-template-columns: 1fr;
    }

    .voye_testimonials-slider {
        padding: 80px 0;
    }

    .voye_testimonials-carousel-container {
        margin: 40px 20px 0;
    }

    .voye_testimonial-slide {
        flex-direction: column;
    }

    .voye_testimonial-image {
        width: 100%;
        height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .voye_testimonial-text {
        width: 100%;
        padding: 30px;
        border-radius: 0 0 20px 20px;
        border-left: 1px solid rgba(2, 0, 53, 0.1);
    }

        .voye_testimonial-text p {
            font-size: 1rem;
            margin-bottom: 25px;
        }

    .voye_slider-controls {
        gap: 20px;
        margin-top: 30px;
    }

    .voye_slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .voye_testimonials-carousel {
        margin: 40px 20px 0;
    }

    .voye_testimonial-card {
        flex-direction: column;
        min-height: auto;
    }

    .voye_property-image {
        width: 100%;
        min-height: 250px;
    }

    .voye_testimonial-content {
        width: 100%;
        padding: 30px;
    }

        .voye_testimonial-content p {
            font-size: 1rem;
            margin-bottom: 30px;
        }

    .voye_client-info {
        padding-top: 20px;
        gap: 15px;
    }

    .voye_client-avatar {
        width: 60px;
        height: 60px;
    }

    .voye_client-details h4 {
        font-size: 1.2rem;
    }

    .voye_client-details span {
        font-size: 1rem;
    }

    .voye_achievements-grid {
        grid-template-columns: 1fr;
    }

    .voye_modal-body-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .voye_modal-content {
        max-width: 95%;
    }

    .voye_modal-info h3 {
        font-size: 1.6rem;
    }

    .voye_addresses-grid {
        flex-direction: column;
        gap: 20px;
    }

    .voye_address-card {
        max-width: 100%;
    }
}

/* Remove decorative glow/shine circles entirely (user removed icons/logos) */
.voye_brand-glow,
.voye_platform-shine {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide navigation arrows while any modal is open. JS will toggle `body.modal-open`. */
body.modal-open .voye_nav-arrow,
body.modal-open .voye_nav-arrow-left,
body.modal-open .voye_nav-arrow-right,
body.modal-open .voye_property-nav-arrow,
body.modal-open .voye_property-nav-prev,
body.modal-open .voye_property-nav-next {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Remove dots above images in the property detail modal (details view) */
/* This hides only the modal's image indicator dots so listing-card dots remain intact. */
.modal-image-dots,
.modal-image-dot {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Property Success Stories: force left-align for Before/After overview */
/* Use high specificity and !important fallbacks to override existing rules */
.voye_case-studies .voye_transformation-stats .voye_stat-item,
.voye_case-studies .voye_transformation-stats .voye_stat-item .voye_stat-details,
.voye_case-studies .voye_transformation-stats .voye_stat-item .voye_stat-row,
.voye_case-studies .voye_transformation-stats .voye_stat-item .voye_stat-label,
.voye_case-studies .voye_transformation-stats .voye_stat-item * {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

    /* If stat rows use flex, ensure children align to the start */
    .voye_case-studies .voye_transformation-stats .voye_stat-item .voye_stat-details,
    .voye_case-studies .voye_transformation-stats .voye_stat-item .voye_stat-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

/* Desktop: keep layout but preserve left alignment */
@media (min-width: 769px) {

    .voye_case-studies .voye_transformation-stats .voye_stat-item .voye_stat-details,
    .voye_case-studies .voye_transformation-stats .voye_stat-item .voye_stat-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* Safety: ensure modal before/after lists in the case study modal are also left-aligned */
.modal-stat-items .modal-stat-item,
.modal-stat-items .modal-stat-item * {
    text-align: left !important;
}

/* Career CTA Button Styles */
.voye_career-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #020035, #041257);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 0, 53, 0.3);
}

    .voye_career-btn:hover {
        background: linear-gradient(135deg, #041257, #020035);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(2, 0, 53, 0.4);
    }

    .voye_career-btn i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .voye_career-btn:hover i {
        transform: translateX(5px);
    }

/* Career CTA Section */
.voye_career-cta {
    background: linear-gradient(135deg, rgba(217, 154, 40, 0.1), rgba(2, 0, 53, 0.05));
    padding: 80px 40px;
    border-radius: 20px;
    margin: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .voye_career-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d99a28" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23020035" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
    }

    .voye_career-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #020035;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .voye_career-cta p {
        font-size: 1.2rem;
        color: #5a5a5a;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }

    .voye_career-cta .voye_container {
        position: relative;
        z-index: 1;
    }

/* Mobile Responsive for Career CTA */
@media (max-width: 768px) {
    .voye_career-cta {
        padding: 60px 20px;
        border-radius: 15px;
        margin: 20px;
    }

        .voye_career-cta h2 {
            font-size: 2rem;
        }

        .voye_career-cta p {
            font-size: 1rem;
        }

    .voye_career-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* ── Navbar alignment fix ──────────────────────────────────────────────────
   body { line-height: 1.6 } above creates extra half-leading around the
   28px WhatsApp icon, making it appear lower than the nav text.
   Turning .header-right-menu into a flex container vertically centres all
   children (nav links, whatsapp, hamburger) regardless of their line heights.
   The existing float:right on .navbar-right still works — a floated element
   can also be a flex container for its own children.
   -------------------------------------------------------------------------- */
.header-right-menu {
    display: flex !important;
    align-items: center !important;
}

    .header-right-menu .whatsap {
        float: none;
        display: flex;
        align-items: center;
        line-height: 1;
    }

        .header-right-menu .whatsap a {
            line-height: 1;
            padding: 15px;
            display: flex;
            align-items: center;
        }
