@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    --white: #FFFFFF;
    --dark: #333333;
    --mute: #666;
    --grey: #E5E7EB;

}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Inter", sans-serif;
    font-style: normal;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.apply-btn {
    font-family: "Montserrat", sans-serif;
    /* font-family: "Outfit", sans-serif; */
    font-style: normal;
    font-weight: 600;
}

section {
    padding: 80px 0;
}

.d-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.d-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.topbar {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    font-size: .92rem;
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
    padding: .35rem 0;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .95);
    white-space: nowrap;
}

.topbar-item i {
    color: var(--primary-light);
}

.topbar-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, .18);
}

.topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .28rem .7rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .95);
    font-size: .84rem;
}

.main-navbar {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(51, 51, 51, .08);
    border-bottom: 1px solid var(--grey);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.main-navbar .navbar {
    padding: .8rem 0;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    padding: .9rem 1rem !important;
    position: relative;
    transition: .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: .45rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2rem);
}

.btn-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-weight: 600;
    text-decoration: none;

    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    white-space: nowrap;
}

.btn-status:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(243, 142, 32, .15);
    filter: brightness(1.02);
}

.btn-status i {
    font-size: .9rem;
}

.navbar-toggler {
    border: 1px solid var(--grey);
    border-radius: 14px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}


.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;

    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 4rem 0;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.hero-content p {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.75rem;
}

.hero-content .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all .2s ease;

}

.hero-content .hero-btn:hover {
    color: var(--white);
    transform: translateY(-1px);

}

.steps-section {
    background: var(--light);
    padding: 3rem 0;
    overflow: hidden;
}

.steps-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-desktop .step-card {
    flex: 1 1 0;
    max-width: 300px;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.step-number {
    font-size: 9rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.07) 100%);
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.07) 100%);
    margin-bottom: 0;
}

.step-icon-wrap {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--white);

    box-shadow: 0 4px 16px rgba(46, 139, 87, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -4rem 2.5rem 0.2rem auto;
    position: relative;
    z-index: 3;
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
}

.step-card:hover .step-icon-wrap {
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(46, 139, 87, .22);
}

.step-icon-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.step-title-2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .3rem;
}

.step-desc {
    font-size: .9rem;
    color: var(--mute);
    font-weight: 500;
    margin: 0;
}

.step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2.5rem;
}

.connector-inner {
    position: relative;
    width: 60px;
    height: 28px;
}

.connector-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 2px dashed var(--grey);
    transform: translateY(-50%);
}

.connector-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 11px;
    height: 11px;
    border-top: 2.5px solid var(--accent);
    border-right: 2.5px solid var(--accent);
    transform: translateY(-50%) rotate(45deg);
}

.connector-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    transform: translateY(-50%);
    animation: rideLine 2.2s ease-in-out infinite;
}

@keyframes rideLine {
    0% {
        left: 0;
        opacity: 1;
    }

    80% {
        left: calc(100% - 16px);
        opacity: 1;
    }

    100% {
        left: calc(100% - 16px);
        opacity: 0;
    }
}

.steps-swiper-wrapper {
    display: none;
}


.visa-types {
    background: var(--white);
    padding: 80px 0;
}


.sec-title {
    position: relative;
    display: block;
    text-align: center;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;

    margin-bottom: 70px;
}

.sec-title::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -12px;

    transform: translateX(-50%);

    width: 70px;
    height: 4px;

    background: var(--accent);
    border-radius: 50px;
}

.visa-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.visa-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .8s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    background: rgba(120, 120, 120, .15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    transition: bottom .45s ease,
        background .45s ease;
    z-index: 2;
}

.card-content h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .5px;
}

.card-details {
    max-height: 0;
    overflow: hidden;
    /* opacity: 0; */
    /* transform: translateY(20px); */
    transition:
        max-height .7s ease,
        opacity .4s ease,
        transform .4s ease;
}

.card-details p {
    color: rgba(255, 255, 255, .95);
    margin-top: 15px;
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 15px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--accent);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.card-btn:hover {
    background: var(--primary-light);
    color: var(--dark);
}

.visa-card:hover img {
    transform: scale(1.08);
}

.visa-card:hover .card-content {
    bottom: 0;
    background: rgba(80, 80, 80, .35);
}

.visa-card:hover .card-details {
    max-height: 250px;
    opacity: 1;
    transform: translateY(0);
}

.eligible-countries {
    background: var(--light);
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #b7bcc4;
}

.search-box input {
    height: 45px;
    border-radius: 10px;
    border: 1px solid #d8dbe0;
    padding-left: 42px;
    font-size: 18px;
    box-shadow: none !important;
}

.country-card {
    background: var(--white);
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    transition: .25s;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 40px;
}

.country-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.country-card:hover .country-name {
    color: var(--primary);
}

.country-name {
    color: var(--dark);
    transition: .25s;
    font-size: 12px;
}

.country-card .fi {
    font-size: 20px;
}

.btn-show-all {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 0;
    font-weight: 600;
}

.btn-show-all:hover {
    background: var(--primary-light);
    color: white;
}

.country-col {
    width: 16.666666%;
}


.contact-cta .container {
    position: relative;
    z-index: 2;
}

.contact-cta {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    min-height: 280px;
    display: flex;
    align-items: center;
}

.contact-cta::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10%;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--accent),
            var(--accent));
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.contact-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-tag::before {
    content: "";
    width: 55px;
    height: 4px;
    border-radius: 20px;
    background: var(--primary);
}

.contact-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.btn-apply {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all .3s ease;

}

.btn-apply:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);

}


.why-us {
    background: var(--light);
}

.reason-card {
    background: #fff;
    border: 1px solid var(--grey);
    border-radius: 20px;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 30px;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.reason-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--primary-light));
    transform: scaleX(0);
    transition: .35s;
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(179, 179, 179, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;
}

.reason-icon i {
    font-size: 30px;
    color: var(--primary);
}

.reason-card h5 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--grey);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .3s;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.testimonial-card:hover {
    transform: translateY(-4px);

}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--mute);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonialsSwiper {
    padding: 15px 5px 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px !important;
    height: 48px !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .12);
    color: var(--primary) !important;
}

.testimonial-prev:after,
.testimonial-next:after {
    display: none;
}

.testimonial-prev {
    left: -20px;
}

.testimonial-next {
    right: -20px;
}

.testimonial-section {
    background: var(--light);
}

.testimonial-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.summary-card {
    flex: 0 0 240px;
    border: 1px solid #ddd;
    border-radius: 15px;
    background: var(--white);
    padding: 15px 20px;
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
}

.rating-score span {
    font-size: 1.2rem;
}

.stars {
    color: #ff7a00;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.review-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--dark);
    font-weight: 600;
}

.brand {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}

.testimonial-slider {
    flex: 1;
    position: relative;
    min-width: 0;
    padding: 0 60px;
    display: flex;
}

.swiper {
    margin: auto;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    display: flex;
    height: auto;
    justify-content: center;
}

.review-card {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 15px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card h6 {
    margin-top: 15px;
    font-weight: 700;
    color: var(--dark);
}

.review-card small {
    color: var(--mute);
}

.review-card p {
    margin: 15px 0 0 0;
    color: var(--dark);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(9, 99, 126, .1);
    border-radius: 50%;
    font-size: 20px;
    height: 40px;
    width: 40px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.custom-faq {
    max-width: 1200px;
}

.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.custom-faq .accordion-button {
    padding: 22px 25px;
    font-weight: 600;
    color: var(--primary);
    font-size: 24px;
    background: var(--white);
    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--primary);
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

.custom-faq .accordion-body {
    padding: 15px 25px;
    color: var(--dark);
    font-size: 18px;
    line-height: 1.8;
}

.site-footer {
    background: #000;
    color: var(--white);
    padding-top: 70px;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-logo img {
    max-height: 90px;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    max-width: 350px;
}

.footer-title {
    color: #EFBF04;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #EFBF04;
    padding-left: 4px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: rgb(32, 32, 32);
    color: #fff;
    transition: .3s;
}

.footer-social a:hover {
    background: #EFBF04;
    color: #000000;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    color: rgba(255, 255, 255, .65);
    font-size: .95rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-payments img {
    height: 45px;
    width: auto;

    border-radius: 6px;
}


/* -------------- Media queries for responsiveness ----------------- */
@media(max-width:1200px) {
    .country-col {
        width: 25%;
    }
}

@media(max-width:991px) {
    .navbar-collapse {
        padding-top: .75rem;
    }

    .nav-link {
        padding: .75rem 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .btn-status {
        width: 100%;
        margin-top: .75rem;
    }

    .visa-card {
        height: 450px;
    }


    .card-content h3 {
        font-size: 1.6rem;
    }

    .country-col {
        width: 33.3333%;
    }

    .contact-cta {
        text-align: center;
        padding: 60px 0;
    }

    .contact-cta::after {
        width: 100%;
        opacity: .15;
        clip-path: none;
        right: 0;
    }

    .cta-tag {
        justify-content: center;
    }

    .cta-action {
        margin-top: 30px;
    }

    .testimonial-prev,
    .testimonial-next {
        display: none;
    }

    /*  */
    .testimonial-wrapper {
        display: block;
    }

    .summary-card {
        width: calc(100% - 120px);
        margin: 0 auto 20px auto;
    }

    .review-card {
        height: auto;
        min-height: 180px;
    }

    .footer-title {
        margin-top: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
    }
}

@media(max-width:768px) {
    .topbar-left {
        margin: auto;
    }

    .topbar-right {
        display: none;
    }

    .hero-section {
        min-height: 60vh;
    }

    .hero-content {
        padding: 3rem 0;
        text-align: left;
    }

    .step-icon-wrap {
        margin: -4.5rem -0.5rem 0.1rem auto;

    }

    .steps-desktop {
        display: none !important;
    }

    .steps-swiper-wrapper {
        display: block;
    }

    .steps-section {
        padding: 2.5rem 0 3rem;
    }

    .steps-swiper .swiper-pagination-bullet {
        background: var(--primary-light);
        opacity: .5;
        width: 8px;
        height: 8px;
    }

    .steps-swiper .swiper-pagination-bullet-active {
        background: var(--accent);
        opacity: 1;
        width: 24px;
        border-radius: 4px;
        transition: width .3s;
    }

    .swiper-pagination {
        bottom: -2px !important;
    }

    .country-col {
        width: 50%;
    }
        .reason-card {
        min-height: 180px;
        padding: 25px;
    }

    .reason-icon {
        width: 65px;
        height: 65px;
    }

    .reason-icon i {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .topbar-inner {
        align-items: flex-start;
    }

    .topbar-sep {
        display: none;
    }

    .visa-card {
        height: 400px;
    }

    .card-content {
        padding: 18px;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .card-details p {
        font-size: 14px;
    }

    .country-col {
        width: 100%;
    }

    .testimonial-slider {
        padding: 0 50px;

    }


}