:root {
    --vcs-navy: #18425a;
    --vcs-red: #e94d4e;
    --navy: #18425a;
    --red: #e94d4e;
    --white: #ffffff;
}

body {
    font-family: 'Manrope', sans-serif;
}

/* TOP BAR */
.top-bar {
    background: var(--vcs-navy);
    padding: 8px 0;
    color: white;
    font-size: 13px;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--vcs-red);
    margin-right: 5px;
}

.top-social a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* NAVIGATION */
.nav-bar {
    background: var(--vcs-navy);
}

.nav-link {
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13.5px;
    padding: 15px !important;
}

.nav-link:hover {
    background: var(--vcs-red);
}

/* Bootstrap Dropdown Customization */
.dropdown-menu {
    border-top: 3px solid var(--vcs-red);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    margin-top: 0;
}

.dropdown-item {
    font-weight: 600;
    color: var(--vcs-navy);
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--vcs-red);
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        animation: fadeInDropdown 0.25s ease;
    }

    .navbar .nav-item.dropdown:hover>.nav-link {
        background: var(--vcs-red);
    }
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Thank You Popup */
.vsp-thankyou-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.vsp-thankyou-popup .popup-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Header Elements */
.payment-btn {
    background: var(--vcs-red);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.contact-box b {
    color: var(--vcs-navy);
}

/* ============================================= */
/* OPPORTUNITIES BANNER */
/* ============================================= */
.opportunities-banner {
    background: linear-gradient(135deg, rgba(24, 66, 90, 0.92) 0%, rgba(18, 51, 70, 0.88) 100%),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=1600');
    background-size: cover;
    background-position: center;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dotted Flight Path Animation */
.flight-paths {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.path-line {
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-dasharray: 10, 10;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

/* ACTION BUTTONS (The Shine Logic) */
.vsp-action-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: white !important;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #e94d4e 0%, #18425a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vsp-action-btn b {
    font-size: 18px;
    letter-spacing: 1px;
}

/* The Shine Effect on Buttons */
.vsp-action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.vsp-action-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(233, 77, 78, 0.4);
}

.vsp-action-btn:hover::after {
    left: 150%;
}

/* Responsiveness */
@media (max-width: 991px) {
    .opportunities-banner {
        text-align: center;
        padding: 80px 0;
    }

    .vsp-action-btn {
        padding: 15px 20px;
    }
}


/* ============================================= */
/* MID HEADER */
/* ============================================= */
.text-navy {
    color: #18425a;
}

.logo-img {
    max-height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Header Info Styling */
.header-info-item .label {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
    font-weight: 700;
}

.header-info-item .value {
    font-size: 15px;
    color: var(--navy);
    transition: color 0.3s;
}

.header-info-item .value:hover {
    color: var(--red);
}

.info-icon i {
    font-size: 24px;
    color: var(--red);
}

/* Vertical Divider */
.v-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Payment Button */
.btn-vsp-payment {
    background: #e94d4e;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 77, 78, 0.2);
}

.btn-vsp-payment:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 66, 90, 0.3);
}

/* Pulse Effect */
.pulse-effect {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 77, 78, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(233, 77, 78, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 77, 78, 0);
    }
}

/* Mobile Buttons */
.btn-navy-sm {
    background: var(--navy);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
}

.btn-success-sm {
    background: #25d366;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
}


/* ============================================= */
/* SERVICES SECTION */
/* ============================================= */
.services-wrapper {
    position: relative;
    background-color: #fff;
    background-image: url('https://www.transparenttextures.com/patterns/world-map.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.services-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.93);
    z-index: 0;
}

.services-wrapper .container {
    position: relative;
    z-index: 1;
}

/* Section Title */
.section-main-title {
    color: var(--navy);
    font-size: 40px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.section-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--red);
}

/* THE CARD HOVER LOGIC */
.vsp-service-card {
    background: var(--white);
    border-radius: 15px;
    transition: all 0.5s ease;
    cursor: pointer;
    overflow: hidden;
}

/* Full background changes on hover */
.vsp-service-card:hover {
    background: var(--navy) !important;
}

.vsp-service-card:hover .vsp-content-box h3,
.vsp-service-card:hover .vsp-content-box p,
.vsp-service-card:hover .vsp-content-box li {
    color: var(--white) !important;
}

.vsp-service-card:hover .vsp-content-box h3 span {
    color: var(--red);
}

/* THE SHINE EFFECT (On Image) */
.vsp-img-wrapper {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.service-img {
    height: 480px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

/* Shining Overlay */
.vsp-img-wrapper::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
    z-index: 5;
}

/* Hover: shine sweeps across */
.vsp-service-card:hover .vsp-img-wrapper::after {
    left: 150%;
    transition: all 0.8s ease-in-out;
}

.vsp-service-card:hover .service-img {
    transform: scale(1.1);
}

/* Content Area */
.vsp-content-box h3 {
    color: var(--navy);
    margin-bottom: 20px;
    transition: 0.5s;
}

.vsp-content-box h3 span {
    color: var(--red);
}

.vsp-content-box p {
    font-size: 18px;
    line-height: 1.6;
    transition: 0.5s;
}

/* Features List */
.vsp-features-list {
    list-style: none;
    padding: 0;
    transition: 0.5s;
}

.vsp-features-list li {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 15px;
}

/* Learn More Button */
.vsp-learn-more {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.vsp-learn-more:hover {
    background: var(--white);
    color: var(--red);
    border-color: var(--red);
}

/* Responsive */
@media (max-width: 991px) {
    .service-img {
        height: 300px;
    }
}


/* ============================================= */
/* ABOUT / INTERACTIVE BOXES */
/* ============================================= */
.ls-2 {
    letter-spacing: 2px;
}

.fw-800 {
    font-weight: 800;
}

/* Box Container */
.vsp-interactive-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f4f4f4;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Image Handling */
.vsp-interactive-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Shine Effect */
.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    transition: none;
    z-index: 2;
}

/* Hover Effects on individual box only */
.vsp-interactive-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(24, 66, 90, 0.2);
    background: var(--navy);
}

.vsp-interactive-box:hover.shine-effect::after {
    left: 150%;
    transition: all 0.7s ease-in-out;
}

.vsp-interactive-box:hover img {
    transform: scale(1.1);
    opacity: 0.3;
}

/* Overlay Text on hover */
.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.box-overlay span {
    color: white;
    font-weight: 800;
    font-size: 18px;
    border-bottom: 2px solid var(--red);
}

.vsp-interactive-box:hover .box-overlay {
    opacity: 1;
}

/* Experience Box */
.exp-box {
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.exp-box:hover {
    background: var(--navy) !important;
}

/* Modern Button */
.vsp-btn-modern {
    display: inline-block;
    padding: 18px 45px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(24, 66, 90, 0.2);
}

.vsp-btn-modern:hover {
    background: var(--red);
    color: white;
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .vsp-interactive-box {
        aspect-ratio: auto;
        height: 200px;
    }
}

/* About Section */
.vsp-about-section {
    background: #f8f9ff;
}


/* ============================================= */
/* FUNFACTS SECTION */
/* ============================================= */
.vsp-funfacts {
    background: #f8f9fa;
    transition: all 0.6s ease;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* Full section hover turns navy */
.vsp-funfacts:hover {
    background: var(--navy) !important;
}

.fact-card {
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 4px solid var(--red);
}

.fact-icon i {
    font-size: 35px;
    color: var(--red);
    margin-bottom: 15px;
    transition: 0.4s;
}

.fact-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 5px;
    transition: 0.4s;
}

.fact-label {
    font-size: 11px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
}

/* Text colors change on section hover */
.vsp-funfacts:hover .fact-number,
.vsp-funfacts:hover .fact-label {
    color: #ffffff;
}

.vsp-funfacts:hover .fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Shine on Card Hover */
.shine-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: 0.6s ease-in-out;
}

.fact-card:hover::after {
    left: 150%;
}


/* ============================================= */
/* ROADMAP */
/* ============================================= */
.vsp-roadmap-final {
    background: #f8f9ff;
}

.vsp-roadmap-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 50px 0;
}

.vsp-svg-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* THE PLANE: Ultra-Glow Effect */
.vsp-plane-mover {
    position: absolute;
    width: 45px;
    height: 45px;
    z-index: 50;
    color: #e94d4e;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 12px rgba(233, 77, 78, 1));
}

.vsp-engine-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(233, 77, 78, 0.4) 0%, transparent 70%);
    animation: enginePulse 0.8s infinite alternate;
}

@keyframes enginePulse {
    to {
        transform: scale(1.4);
        opacity: 0.2;
    }
}

/* STEP NODES: Initial State */
.vsp-step-node {
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 0.2;
    filter: grayscale(1);
    transition: all 0.6s ease;
}

.vsp-node-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 26px;
    color: #aaa;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vsp-step-node p {
    font-size: 11px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
}

/* ACTIVE NEON STATE */
.vsp-node-glow {
    opacity: 1 !important;
    filter: grayscale(0) !important;
}

.vsp-node-glow .vsp-node-icon {
    border-color: #e94d4e;
    color: #e94d4e;
    box-shadow: 0 0 30px rgba(233, 77, 78, 0.5);
    transform: scale(1.1) translateY(-5px);
}

.vsp-node-glow p {
    color: #18425a;
    font-weight: 800;
}

/* Row Positioning for S-Curve */
.roadmap-top-row {
    padding-top: 70px;
}

.roadmap-bottom-row {
    padding-top: 150px;
}

/* Special Marker: Global Arrival */
.vsp-node-glow .bg-navy {
    background: #18425a !important;
    color: white !important;
    border-color: #e94d4e !important;
}

/* Mobile View */
@media (max-width: 991px) {

    .vsp-svg-track,
    .vsp-plane-mover {
        display: none;
    }

    .vsp-step-node {
        opacity: 1;
        filter: grayscale(0);
        margin-bottom: 25px;
    }
}


/* ============================================= */
/* REVIEWS */
/* ============================================= */
.v-line-red {
    width: 50px;
    height: 3px;
    background: #e94d4e;
    border-radius: 2px;
}

.review-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.review-quote {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}


/* ============================================= */
/* WHY CHOOSE US */
/* ============================================= */
.vsp-why-choose {
    background: linear-gradient(135deg, #18425a 0%, #123346 100%);
    position: relative;
    z-index: 1;
}

.text-danger-vsp {
    color: #e94d4e;
}

/* Circular Counter */
.circle-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.circle-chart::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: #18425a;
    border-radius: 50%;
}

.percent-val {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

/* Inquiry Card — 3D Tilt */
.vsp-inquiry-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.vsp-inquiry-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.vsp-input {
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 8px;
    background: #fdfdfd;
}

.vsp-input:focus {
    border-color: #e94d4e;
    box-shadow: 0 0 10px rgba(233, 77, 78, 0.1);
}

.btn-vsp-submit {
    background: #e94d4e;
    color: white;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.btn-vsp-submit:hover {
    background: #18425a;
    color: white;
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 991px) {
    .vsp-inquiry-card {
        transform: none;
        margin-top: 40px;
    }

    .vsp-why-choose {
        text-align: center;
    }
}


/* ============================================= */
/* FOOTER */
/* ============================================= */
.vsp-main-footer {
    background-color: #18425a;
    padding: 100px 0 30px;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* World Map Overlay in Footer */
.footer-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/world-map.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

/* Typography & Widgets */
.footer-logo {
    max-height: 80px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.7;
}

.footer-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #e94d4e;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #e94d4e;
    transform: translateX(5px);
}

/* Contact */
.contact-info-list p {
    font-size: 14px;
    opacity: 0.8;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 5px;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #e94d4e;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .vsp-main-footer {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a:hover {
        transform: translateY(-3px);
    }

    .footer-desc {
        margin-bottom: 40px;
    }
}


/* ============================================= */
/* POPUP OVERLAY */
/* ============================================= */
#vspPopupOverlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 31, 68, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

#vspPopupOverlay.active {
    opacity: 1;
    pointer-events: all;
}

.vsp-popup-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

#vspPopupOverlay.active .vsp-popup-box {
    transform: translateY(0);
}

.vsp-popup-box .popup-badge {
    display: inline-block;
    background: #e94d4e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 12px;
}

.vsp-popup-box h3 {
    color: #18425a;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.vsp-popup-box p.sub {
    color: #888;
    font-size: 13px;
    margin-bottom: 22px;
}

.vsp-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.vsp-popup-close:hover {
    color: #e94d4e;
}

.vsp-popup-box .form-control {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vsp-popup-box .form-control:focus {
    border-color: #e94d4e;
    box-shadow: 0 0 0 3px rgba(233, 77, 78, 0.12);
    outline: none;
}

.vsp-popup-box textarea.form-control {
    resize: none;
    min-height: 90px;
}

.btn-popup-submit {
    background: linear-gradient(135deg, #e94d4e, #c0392b);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 77, 78, 0.4);
}


/* ============================================= */
/* MOBILE NAVIGATION FIXES */
/* ============================================= */
@media (max-width: 991px) {
    .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        background: #123346;
        border: none;
    }

    .dropdown-item {
        color: #fff;
    }
}

/* ============================================= */
/* UTILITY CLASSES */
/* ============================================= */
.text-navy {
    color: #18425a !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.ls-2 {
    letter-spacing: 2px;
}

.v-line-red {
    width: 60px;
    height: 4px;
    background: #e94d4e;
    border-radius: 2px;
}

/* ============================================= */
/* COURSE PAGE STYLES */
/* ============================================= */
.vsp-input {
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vsp-input:focus {
    border-color: #e94d4e;
    box-shadow: 0 0 0 3px rgba(233, 77, 78, 0.12);
}

.btn-vsp-submit {
    background: linear-gradient(135deg, #e94d4e, #c0392b);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-vsp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 77, 78, 0.4);
    color: #fff;
}

.vsp-btn-modern {
    display: inline-block;
    background: linear-gradient(135deg, #e94d4e, #c0392b);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.vsp-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 77, 78, 0.4);
}

/* Accordion Styles */
.accordion-button:not(.collapsed) {
    background: #f8f9ff;
    color: #18425a;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e8ecf0;
}

.accordion-button::after {
    filter: none;
}

/* Service Cards Hover */
.card[style*="border-top"]:hover {
    border-top-color: #e94d4e !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* ============================================= */
/* UNIVERSITIES SECTION */
/* ============================================= */
.university-section {
    background: #f8f9ff;
}

.country-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* ============================================= */
/* GLOBAL RECOGNITIONS */
/* ============================================= */
.recognition-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.recognition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.recognition-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #18425a, #123346);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 1.4rem;
}

/* ============================================= */
/* BREADCRUMB STYLES */
/* ============================================= */
.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================= */
/* RESPONSIVE COURSE PAGES */
/* ============================================= */
@media (max-width: 767px) {
    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .position-sticky {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 575px) {
    .badge {
        font-size: 0.7rem;
    }

    .country-flag {
        font-size: 2rem;
    }
}

/* ============================================= */
/* COURSE / SERVICE HERO BANNER */
/* ============================================= */
.course-hero-banner {
    background: linear-gradient(135deg, #18425a 0%, #123346 100%);
    min-height: 280px;
    display: flex;
    align-items: center;
}

/* Fix table overflow on course pages (TOEFL, etc.) */
.col-lg-8 .table-responsive,
.col-lg-8 table {
    max-width: 100%;
    overflow-x: auto;
}

.col-lg-8 .accordion {
    max-width: 100%;
}

/* Country Map Section */
.country-map-section {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 3px solid #18425a;
}

.country-map-section iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Nav pills for university tabs */
.nav-pills .nav-link {
    color: #18425a;
    font-weight: 700;
    border: 2px solid #e8ecf0;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-pills .nav-link:hover {
    background: #f0f4f8;
    border-color: #18425a;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #18425a, #1a4f72);
    border-color: #18425a;
    color: #fff;
}