@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: SF Pro;
    src: url(/websiteassets/fonts/SFPRODISPLAYMEDIUM.OTF);
}

@font-face {
    font-family: SF Pro Regular;
    src: url(/websiteassets/fonts/SFPRODISPLAYREGULAR.OTF);
}

@font-face {
    font-family: SF Pro Light;
    src: url(/websiteassets/fonts/FontsFree-Net-SFProDisplay-Light.ttf);
}

body {
    /*        font-family: SF Pro;*/
    font-family: "Outfit" !important;
}

a {
    text-decoration: none;
    color: var(--dark-text-color);
}

ul li {
    list-style: none;
}

@media (max-width: 576px) {
    .container, .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ====================== Color Variables ====================== */
:root {
    --main-bg: #f4f7fc;
    --primary-color: #0F8A99;
    --warning-color: #d3a014;
    --dark-text-color: #000;
    --hero-heading-color: #313030;
    --muted-text: #6c757d;
    --muted-text-2: #5e5c5c;
    --main-text-color: #1B1C57;
    --footer-bg: #204476;
    --main-background-gradient: linear-gradient(90deg, #1FB970 0%, #105ECA 100%);
    --btn-background-gradient: linear-gradient( 180deg, #11a6b2 0%, #0f8a99 30%, #1b5c7b 100% );
    --light-bg-color: #f7f9fb;
    --text-color-light: #f8f9fa;
    --navbar-bg: #F4F7FC;
    --whatsapp-color: #25d366;
    --teal-light-bg: #ddf1f4;
    --dark-icon-color: #1a1a1a;
    --card-border-radius: 1.25rem;
    --ae-primary: #00b67a;
    --ae-secondary: #006eb6;
    --ae-dark: #0d2131;
    --ae-glass: rgba(255, 255, 255, 0.03);
    --ae-border: rgba(255, 255, 255, 0.1);
}

.dark-theme {
    --main-bg: #0d1117;
    --primary-color: #0f8a99;
    --warning-color: #d3a014;
    --dark-text-color: #f1f1f1;
    --muted-text: #b5b5b5;
    --footer-bg: #0a1e2c;
    --cool-background-gradient: linear-gradient(135deg, #0f8a99 0%, #0a1e2c 100%);
    --btn-background-gradient: linear-gradient( 180deg, #11a6b2 0%, #0f8a99 30%, #1b5c7b 100% );
    --light-bg-color: #161b22;
    --text-color-light: #f1f1f1;
    --navbar-bg: #000f1a;
    --whatsapp-color: #1fb257;
    --teal-light-bg: #0f1b1d;
    --dark-icon-color: #ffffff;
    --card-border-radius: 1.25rem;
}

/* ====================== Color Variables ====================== */

/* ====================== Basic Adjustment ====================== */
button:focus,
button:focus-visible,
button:active,
button:focus:not(:focus-visible),
.btn:focus,
.btn:active:focus,
.btn-close:focus {
    box-shadow: none !important;
    outline: none !important;
}

body {
    background-color: var(--main-bg);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--main-background-gradient);
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

    .scroll-top-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn i {
        transition: transform 0.3s ease;
        animation: arrowBounce 0.5s infinite alternate;
    }

    .scroll-top-btn:hover i {
        animation: arrowBounce 0.5s infinite alternate;
    }

@keyframes arrowBounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-5px);
    }
}

/* ====================== Basic Adjustment ====================== */

/* ====================== Preloader ====================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

/* Gate Styling */
.preloader-gate-left, .preloader-gate-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.87, 0, 0.13, 1);
}

.preloader-gate-left {
    left: 0;
}

.preloader-gate-right {
    right: 0;
}

.preloader-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

/* Plane Wrapper & Animation */
.plane-wrapper {
    position: relative;
    display: inline-block;
    animation: flightPath 3s infinite ease-in-out;
    /*    margin-bottom: 30px;*/
}

.plane-icon {
    font-size: 70px;
    background: linear-gradient(90deg, #00b67a 0%, #006eb6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


@keyframes flightPath {
    0% {
        transform: translate(-150px, 20px) rotate(10deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translate(0px, -30px) rotate(0deg);
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translate(150px, 20px) rotate(-10deg);
        opacity: 0;
    }
}

/* Branding */
.visa-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: #0d2131;
    margin: 0;
}

.grad {
    background: linear-gradient(90deg, #00b67a 0%, #006eb6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress Bar */
.loading-bar {
    width: 250px;
    height: 4px;
    background: #eee;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00b67a 0%, #006eb6 100%);
    animation: loadProgress 2.5s infinite ease;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.status-text {
    color: #888;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Outfit";
}

/* Gate Open Logic */
.preloader.gate-open .preloader-gate-left {
    transform: translateX(-101%);
}

.preloader.gate-open .preloader-gate-right {
    transform: translateX(101%);
}

.preloader.gate-open .preloader-inner {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}
/* ====================== Preloader ====================== */

/* ====================== Navbar ====================== */

.navbar-brand {
    padding-left: 5px;
}

.b2b-nav-logo {
    height: 50px !important;
    width: auto;
    object-fit: contain;
}

.custom-navbar {
    background-color: var(--navbar-bg);
    min-height: 70px;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 99999 !important;
    box-shadow: 0px 3px 31px 0px rgba(0, 0, 0, 0.08);
}

    /* Navbar Links Styling */
    .custom-navbar .nav-link {
        color: #5E5C5C;
        padding: 0.5rem 1rem !important;
        position: relative;
        font-weight: 400 !important;
        transition: color 0.3s;
        font-family: "Outfit";
        font-size: 14px;
    }

        .custom-navbar .nav-link:hover {
            color: var(--warning-color);
        }

    .custom-navbar .active {
        color: var(--warning-color) !important;
    }

    .custom-navbar .nav-link::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        width: 0;
        height: 3px;
        background-color: var(--warning-color);
        transition: width 0.3s ease, left 0.3s ease;
    }

.finish-btn-icon {
    margin-right: 5px;
}

.navbar-toggler {
    color: var(--text-color-light);
    padding: 6px 11px;
    /*    background-color: var(--primary-color);*/
    background: var(--main-background-gradient);
    border-radius: 12px;
    font-size: 19px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* --- Right Side Elements Styling --- */
/* WhatsApp Icon */
.whatsapp-icon {
    color: var(--whatsapp-color) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .whatsapp-icon img {
        transition: transform 0.2s;
    }

    .whatsapp-icon:hover img {
        transform: scale(1.1);
        color: white !important;
    }

.theme-btn {
    background-color: var(--primary-color);
    border: none;
    color: white;
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 6px 12px;
    border-radius: 5px;
    margin-right: 15px;
}

.currency-btn {
    position: relative;
    background: transparent;
    color: var(--dark-text-color);
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-family: "Outfit";
    border-radius: 14px;
    padding: 7px 20px;
    border: none;
    cursor: pointer;
    z-index: 1;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow: hidden;
}

    .currency-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 3px;
        background: var(--main-background-gradient);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    /* Hover Effect */
    .currency-btn:hover {
        opacity: 0.8;
        background: var(--main-background-gradient);
        color: var(--text-color-light);
    }

    .currency-btn:active {
        background: var(--main-background-gradient) !important;
        color: var(--text-color-light) !important;
    }

.login-btn {
    /*    background-color: var(--primary-color);*/
    background: var(--main-background-gradient);
    border: none;
    color: var(--text-color-light) !important;
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    font-family: "Outfit";
    border-radius: 14px;
    padding: 7px 20px;
}

    .login-btn:hover {
        color: var(--text-color-light);
        background-color: var(--primary-color) !important;
        transform: scale(1.07);
    }

    .login-btn:active {
        color: var(--text-color-light) !important;
        background-color: var(--primary-color) !important;
    }

.nav-join-btn {
    color: #5E5C5C !important;
}

    .nav-join-btn:hover {
        color: var(--text-color-light) !important;
    }

@media (max-width: 1199px) {
    .navbar-nav.mx-auto {
        position: absolute !important;
        left: 45% !important;
        transform: translateX(-50%) !important;
    }
}

@media (min-width: 992px) {
    .navbar-nav.mx-auto {
        position: absolute;
        left: 48%;
        transform: translateX(-50%);
    }
}

/* --- Logged In State Styling --- */

.user-menu-toggle {
    color: white !important;
}

.user-avatar {
    object-fit: cover;
    border: 2px solid var(--warning-color); /* Avatar border warning color */
}

/* --- Offcanvas Mobile Styling --- */

/* Offcanvas background */
.custom-offcanvas {
    border-radius: 0;
    background: var(--main-background-gradient);
    z-index: 999999;
    border: none !important;
}

/* Header */
.offcanvas-header.dark-bg {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-header .btn-close {
    color: var(--text-color-light) !important;
}

.logo-image-offcanvas {
    height: 38px;
    cursor: pointer;
}

/* Navigation links */
.offcanvas-body .nav-link {
    color: var(--text-color-light);
    font-size: 1.05rem;
    padding: 12px 0;
    transition: 0.3s ease;
    border-radius: 6px;
    font-family: 'Outfit';
}

    .offcanvas-body .nav-link:hover {
        padding-left: 8px;
        color: var(--text-color-light);
    }

    .offcanvas-body .nav-link.active {
        color: var(--primary-color);
        font-weight: 500;
    }

/* Divider */
.offcanvas-body hr {
    margin: 20px 0;
    color: rgb(255 255 255 / 32%);
}

/* Buttons */
.login-btn-mobile {
    background-color: var(--primary-color);
    border: none;
    color: var(--text-color-light);
    font-weight: 500;
    padding: 12px 0;
    border-radius: 10px;
    transition: 0.3s ease;
}

    .login-btn-mobile:hover {
        opacity: 0.9;
        background-color: var(--primary-color);
        color: var(--text-color-light);
    }

/* Currency button */
.pkr-button-mobile {
    border: none;
    background-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 0;
    border-radius: 10px;
    transition: 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--text-color-light);
}

    .pkr-button-mobile:hover {
        background-color: var(--primary-color);
        opacity: 0.9;
    }

/* WhatsApp link */
.whatsapp-icon-mobile {
    color: var(--text-color-light) !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 8px 0;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: 0.3s ease;
    background-color: var(--whatsapp-color) !important;
}

    .whatsapp-icon-mobile:hover {
        background-color: var(--whatsapp-color) !important;
        color: var(--text-color-light) !important;
    }

.offcanvas-body {
    padding: 20px;
}

#preferencesModal .modal-body {
    padding: 30px !important;
}

#preferencesModal .modal-header {
    padding: 30px 30px 10px 30px !important;
}

#preferencesModal {
    z-index: 999999 !important;
}

/* Background Backdrop Blur Effect */
.modal-backdrop.show {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 99999 !important;
}

.modal-title {
    color: var(--dark-text-color);
}

.modal-body .form-label {
    color: var(--dark-text-color);
}

.modal-update-preference-btn {
    background: var(--main-background-gradient);
    color: var(--text-color-light);
    border: none;
    border-radius: 10px !important;
    padding: 10px 0px;
}

    .modal-update-preference-btn:hover {
        background: var(--main-background-gradient);
        color: var(--text-color-light);
        border: none;
    }

    .modal-update-preference-btn:active {
        background: var(--main-background-gradient) !important;
        color: var(--text-color-light) !important;
        border: none !important;
    }

.modal-body .ts-wrapper.single .ts-control {
    min-height: 50px !important;
    height: 40px !important;
    padding: 8px 16px !important;
    display: flex;
    align-items: center;
}

/* Default (desktop) */
.currency-text,
.currency-separator,
.login-text {
    display: inline;
}

@media (max-width: 991.98px) {
    .currency-text,
    .currency-separator,
    .login-text {
        display: none;
    }

    /* icon spacing fix */
    .currency-btn {
        padding: 8px 10px;
    }

    .login-btn {
        padding: 7px 10px;
    }

        .login-btn .login-icon {
            font-size: 1rem;
        }

    .finish-btn-icon {
        margin-right: 0px;
    }
}

/* ====================== Navbar ====================== */

/* ====================== Hero Section ====================== */

.hero-section {
    width: 100%;
    /*    height: 280vh;*/
    /*    min-height: 100vh;*/
    padding-top: 130px;
    padding-bottom: 95px;
    background-color: #F4F7FC;
    background-image: url(../images/hero-new-behind-img.png);
    background-size: cover;
    background-position: 10% 128px;
    background-repeat: no-repeat;
    background-blend-mode: color-burn;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

    .hero-section > .container {
        position: relative;
    }

.plane-decoration-img {
    position: absolute;
    left: -316px;
    top: 412px;
}

    .plane-decoration-img img {
        width: 1600px;
    }

.hero-left-side-light {
    position: absolute;
    left: 0px;
    top: 295px;
    z-index: 8;
    pointer-events: none;
}

.hero-right-side-light {
    position: absolute;
    right: 0px;
    top: -63px;
    z-index: 8;
    pointer-events: none;
}

.hero-main-heading {
    width: 100%;
    /*    background-color:red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero-main-heading h1 {
        font-size: 73px !important;
        font-weight: 600 !important;
        font-family: "Outfit";
        color: var(--main-text-color);
    }

        .hero-main-heading h1 span {
            display: block;
        }

.hero-gold-text {
    color: var(--warning-color) !important;
    display: inline !important;
}

.hero-decore-underline {
    display: inline !important;
    position: relative;
}

    .hero-decore-underline::before {
        content: "";
        background-image: url(../images/Decore.png);
        position: absolute;
        width: 140%;
        height: 10px;
        bottom: 4px;
    }

.trustpilot-badge-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.3rem;
}

.trustpilot-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #105eca61;
    width: 215px;
    color: white;
    padding: 0.3rem 0.3rem;
    border-radius: 30px;
    font-family: "Outfit";
}

.hero-form-container {
    font-family: 'Outfit', sans-serif;
    max-width: 1300px;
    margin: 20px auto 0px auto;
}

.custom-label-dropdown {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-text-color);
    margin-bottom: 5px;
    padding-left: 5px;
}

/* Tom Select Styling */
.ts-control {
    border: 1px solid #3130303d !important;
    border-radius: 14px !important;
    padding: 12px 20px !important;
    min-height: 58px !important;
    background-color: transparent !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

    .ts-control:focus {
        outline: none;
    }

/* 1. Custom Arrow using Remix Icon (Arrow-Down-S-Line) */
.ts-wrapper.single .ts-control {
    position: relative !important;
    padding-right: 40px !important; /* Space for arrow */
}

    .ts-wrapper.single .ts-control::after {
        content: "\ea4e";
        font-family: 'remixicon' !important;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 20px;
        color: #64748B;
        transition: transform 0.3s ease;
        pointer-events: none;
    }


.ts-wrapper.single.dropdown-active .ts-control::after {
    transform: translateY(-50%) rotate(180deg);
}

/* 2. Options (Dropdown Menu) Styling */
.ts-dropdown {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    margin-top: 8px !important;
    padding: 8px !important;
    background: #ffffff !important;
}

    .ts-dropdown .option {
        padding: 12px 15px !important;
        border-radius: 8px !important;
        margin-bottom: 4px;
        margin-top: 5px;
        transition: all 0.2s ease;
        cursor: pointer;
    }

        .ts-dropdown .option.active,
        .ts-dropdown .option:hover {
            background-color: #f1f5f9 !important;
            color: #105ECA !important
        }

/* Hide default Tom Select arrow */
.ts-wrapper.single .ts-control::before {
    display: none !important;
}

/* Circle Flag Styling */
.flag-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* Get Started Button */
.btn-get-started {
    width: 100%;
    height: 58px;
    background: var(--main-background-gradient);
    border: none;
    border-radius: 14px;
    color: var(--text-color-light);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
}

    .btn-get-started:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -10px #105ECA;
    }

/* Dropdown Arrow Animation */
.ts-wrapper.dropdown-active .ts-control::after {
    transform: translateY(-50%) rotate(180deg);
}

.flag-icon-ts {
    width: 26px !important;
    height: 26px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.option-flag-wrapper, .item-flag-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.country-name-ts {
    font-size: 15px;
    color: #334155;
    font-weight: 400;
}

.ts-dropdown .option {
    padding: 12px 9px !important;
}

.plugin-dropdown_input .dropdown-input {
    outline: none !important;
}

.hero-traveller-img-part {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 75px;
    z-index: 2;
}

.hero-traveller-img {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

    .hero-traveller-img img {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

/* Main Box Styling */
.floating-box {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 15;
    min-width: 220px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: "Outfit";
}

.box-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

    .box-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.box-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--main-text-color);
    line-height: 1.2;
}

.box-content p {
    margin: 5px 0px 0px 0px;
    font-size: 13px;
    color: #68799F;
    font-weight: 400;
}

/* Positioning the Boxes */

/* Left Box: Top Left Corner */
.box-left {
    top: 5%;
    left: 1%;
    animation: floatAnim 3s ease-in-out infinite;
}

/* Right Box: Top Right Corner */
.box-right {
    top: 12%;
    right: -1.2%;
    animation: floatAnim 3s ease-in-out infinite reverse;
}

    .box-right .box-icon {
        width: 90px !important;
        height: 40px !important;
        display: flex;
        align-items: center;
        position: relative;
        top: 6px;
    }

        .box-right .box-icon img {
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            transform: scale(2.5);
        }

    .box-right .box-content h4 {
        font-family: "Outfit";
    }

/* Floating Animation */
@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .floating-box {
        display: none;
    }
}

/* --- FINAL REFINED MEDIA QUERIES --- */

/* 2. Tablet & Form Column Layout (993px and below) */
@media (max-width: 993px) {
    .hero-section {
        height: auto !important;
        padding-top: 100px;
        padding-bottom: 130px;
        background-position: center 100px;
    }

    .plane-decoration-img {
        display: none;
    }

    .floating-box {
        display: none !important;
    }

    .hero-form-container .row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
    }

    .hero-form-container .col-lg-4,
    .hero-form-container .col-lg-3,
    .hero-form-container .col-md-5 {
        width: 100% !important;
    }

    .hero-main-heading h1 {
        font-size: 60px !important;
    }

    .hero-left-side-light,
    .hero-right-side-light {
        display: none;
    }

    .right-side-light-2 {
        display: none;
    }
}

/* 3. Phone Text Fix (767px and below) */
@media (max-width: 767px) {
    .hero-main-heading h1 {
        font-size: 50px !important;
        line-height: 1.2 !important;
    }

        .hero-main-heading h1 span {
            display: inline !important;
        }

    .hero-decore-underline::before {
        width: 100%;
        height: 8px;
        bottom: 2px;
    }

    .trustpilot-box {
        margin: 15px auto;
    }

    .hero-traveller-img-part {
        margin-top: 40px;
    }
}

/* 4. Small Phones (480px and below) */
@media (max-width: 480px) {
    .hero-main-heading h1 {
        font-size: 39px !important;
    }

    .hero-form-container {
        padding: 0 10px;
    }

    .btn-get-started {
        font-size: 16px;
    }
}

/* Visa Rejection Part Styles */

.visa-analysis-unique-sec {
    position: relative;
    z-index: 12 !important;
}

/* --- Left Content Area --- */
.analysis-text-block {
    max-width: 580px;
}

.analysis-mini-tag {
    background: #ff6b7ac7;
    color: var(--text-color-light);
    padding: 7px 37px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 300;
    display: inline-block;
    font-family: "Outfit";
}

.analysis-main-title {
    color: #181E4B;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 25px;
}

.analysis-main-desc {
    color: var(--main-text-color);
    font-size: 17px;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Buttons */
.btn-analysis-primary {
    background: var(--main-background-gradient);
    color: #ffffff !important;
    padding: 16px 60px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    transition: 0.3s ease;
    font-family: "Outfit";
}

.btn-analysis-outline {
    background: transparent;
    border: 1px solid transparent;
    border-image-source: var(--main-background-gradient);
    border-image-slice: 1;
    border-radius: 16px;
    color: #7D848D !important;
    padding: 16px 60px;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    transition: 0.3s ease;
    font-family: "Outfit";
}


.btn-analysis-outline {
    position: relative;
    background: #f4f7fc;
    background-clip: padding-box;
    border: 1px solid transparent;
    border-radius: 16px;
}

    .btn-analysis-outline::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -1px;
        border-radius: inherit;
        background: var(--main-background-gradient);
    }

    .btn-analysis-outline:hover {
        color: var(--text-color-light) !important;
    }

    .btn-analysis-primary:hover, .btn-analysis-outline:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.analysis-disclaimer {
    display: flex;
    align-items: center;
    background-color: #FFF3E0;
    border-radius: 15px;
    padding: 14px 20px;
    position: relative;
    overflow: hidden;
    border-left: 3px solid #FF6F00;
    max-width: 560px;
    margin: 20px 0;
    gap: 12px;
}

.warning-sign-img img {
    width: 20px;
    height: auto;
    display: block;
}

.warning-message {
    color: #9A5400;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.7px;
}

@media (max-width: 576px) {
    .analysis-disclaimer {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* --- Right Side: Vertical Cards Stack --- */
.analysis-cards-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    position: relative;
}

.right-side-light-2 {
    position: absolute;
    right: -20px;
    bottom: -60px;
    z-index: 1;
    pointer-events: none;
}

.analysis-step-item {
    width: 291px;
    height: 174px;
    background: #ffffff;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0px 90.24px 72.19px 0px rgba(155, 192, 243, 0.35), 0px 58.49px 42.28px 0px rgba(0, 0, 0, 0.0152), 0px 34.76px 22.99px 0px rgba(0, 0, 0, 0.0121), 0px 18.05px 11.73px 0px rgba(0, 0, 0, 0.01), 0px 7.35px 5.88px 0px rgba(0, 0, 0, 0.0079), 0px 1.67px 2.84px 0px rgba(0, 0, 0, 0.0048);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.02);
}

.step-img-top {
    width: 38px;
    height: 38px;
    object-fit: contain;
    margin-bottom: 12px;
}

.step-heading-mid {
    color: var(--main-text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: "Outfit";
}

.step-para-bottom {
    color: var(--main-text-color);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    font-family: 'Outfit';
    font-weight: 400;
}

/* ============================================================
   RESPONSIVE LOGIC
   ============================================================ */

/* Tablet & Mobile (Standard Bootstrap Breakpoint) */
@media (max-width: 991.98px) {
    .analysis-text-block {
        text-align: center;
        margin-bottom: 50px;
        max-width: 100%;
    }

    .analysis-main-title {
        font-size: 38px;
    }

    .analysis-btn-flex {
        justify-content: center;
    }

    .analysis-cards-column {
        align-items: center;
    }

    .analysis-step-item {
        width: 100% !important;
        max-width: 550px;
        height: auto !important;
        min-height: 157px;
        padding: 30px;
    }

    .step-img-top {
        margin-bottom: 15px;
    }

    .as-disclaimer-parent {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {
    .analysis-main-title {
        font-size: 30px;
    }

    .analysis-btn-flex {
        flex-direction: column;
        gap: 15px;
    }

    .btn-analysis-primary, .btn-analysis-outline {
        width: 100%;
        text-align: center;
    }
}

/* ====================== Hero Section ====================== */

/* ====================== Why Choose Us Section ====================== */

.compare-heading {
    color: #1B1C57;
}

.compare-card {
    border-radius: var(--card-border-radius) !important;
    border: none;
    display: flex;
    flex-direction: column;
    background-color: white;
    position: relative;
    width: 100%;
}

    /* 1. Self-Managed Card (Compact Padding) */
    .compare-card.self-do {
        box-shadow: 0px 0px 15px 0px rgba(15, 138, 153, 0.3) !important;
        padding: 1.5rem !important;
        z-index: 1;
    }

    /* 2. Expertise Card (Narrow & Compact) */
    .compare-card.ae-visa-card {
        background-color: var(--teal-light-bg);
        /*        border: 1px solid #d1e8ea;*/
        padding: 0 !important;
        box-shadow: 0 15px 50px rgba(15, 138, 153, 0.12) !important;
        z-index: 2;
    }


.card-main-heading {
    font-family: inherit;
    font-weight: 400 !important;
    text-align: center;
    color: #222;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.card-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ae-visa-card-logo {
    height: 35px;
    width: auto;
    position: relative;
    bottom: 11px;
}

/* --- List Styling --- */
.comparison-list {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    padding: 1rem 0.3rem 1rem 0.3rem !important;
}

.list-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #000;
    line-height: 1.3;
}

    .list-item i {
        color: #313030 !important;
        margin-right: 10px;
        font-size: 1.3rem;
        padding-top: 2px;
    }

/* Divider Styling */
.dotted-divider {
    border-top: 1px dashed #ccc;
    opacity: 0.5;
    margin: 0.5rem 1rem;
}

/* --- GET STARTED BUTTON --- */
.custom-teal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /*    background-color: var(--primary-color);*/
    background: var(--main-background-gradient);
    color: white !important;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    height: 60px;
    width: 100%;
    border-bottom-left-radius: var(--card-border-radius);
    border-bottom-right-radius: var(--card-border-radius);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
    position: absolute;
    bottom: 0;
}

@media (min-width: 992px) {
    .visa-comparison-section .col-lg-5 {
        width: 44% !important;
        flex: 0 0 auto;
    }

    .visa-comparison-section .col-lg-4 {
        width: 36% !important;
        flex: 0 0 auto;
    }

    .visa-comparison-section {
        display: flex;
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .visa-comparison-section .col-lg-5,
    .visa-comparison-section .col-lg-4 {
        width: 100% !important;
        max-width: 1000px;
        margin: 0 auto 2rem auto;
        flex: 0 0 100%;
    }

    .visa-comparison-section .custom-teal-btn {
        position: relative !important;
        margin-top: 0;
    }

    .ae-visa-heading-logo {
        height: 35px !important;
        position: relative !important;
        bottom: 7px !important;
    }
}

@media (max-width :500px) {
    .ae-visa-heading-logo {
        height: 28px !important;
        position: relative !important;
        bottom: 6px !important;
    }
}
/* ====================== Why Choose Us ====================== */

/* ====================== Stats Counter Section ====================== */

.stats-counter-section {
    padding: 80px 0;
}

/* Common Card Styling */
.stat-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background-color: transparent;
}

.featured-stat .stat-card {
    background-color: #ffffff;
    box-shadow: 0px 90.24px 72.19px 0px rgba(155, 192, 243, 0.35), 0px 58.49px 42.28px 0px rgba(0, 0, 0, 0.0152), /* 1st Black */
    0px 34.76px 22.99px 0px rgba(0, 0, 0, 0.0121), 0px 18.05px 11.73px 0px rgba(0, 0, 0, 0.01), 0px 7.35px 5.88px 0px rgba(0, 0, 0, 0.0079), 0px 1.67px 2.84px 0px rgba(0, 0, 0, 0.0048);
    padding: 50px 30px !important;
    transform: scale(1.05);
    border-radius: 20px !important;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--main-text-color);
    line-height: 1;
    font-family: "Outfit";
}

.stat-description {
    font-size: 0.8rem;
    font-weight: 400;
    color: #68799F;
    font-family: "Outfit";
    /*    max-width: 150px;*/
    /*    margin: 0 auto;*/
}

[data-target-main="24"] {
    font-size: 2.8rem !important;
}

/* --- Responsive & Gaps --- */

@media (max-width: 991px) {
    .featured-stat .stat-card {
        transform: scale(1);
        padding: 40px 20px !important;
    }

    .stats-counter-section .g-4 {
        gap: 2rem !important;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

/* ====================== Stats Counter Section ====================== */

/* ====================== Our Process Section ====================== */

.process-section {
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}

.plane-path-image {
    position: absolute;
    bottom: -200px;
    right: 380px;
    pointer-events: none;
}

@media (max-width : 1399px) {
    .plane-path-image {
        right: 340px;
    }
}

.process-left-blue-light {
    position: absolute;
    left: 0px;
    top: 20px;
    z-index: -1;
}

.process-main-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--main-text-color);
    font-family: 'Outfit';
}

.process-sub-title {
    max-width: 500px;
    color: var(--main-text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.process-plane-path {
    position: absolute;
    bottom: -80px;
    left: 15%;
    width: 45%;
    z-index: 1;
}

/* Steps Styling */
.step-number {
    min-width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--main-text-color);
    margin-right: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-size: 16px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--main-text-color);
    margin-bottom: 2px;
    font-family: "Outfit";
}

.step-content p {
    color: var(--main-text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Outfit';
    font-weight: 400;
}

/* --- Video Card Styling --- */
.process-video-card {
    max-width: 395px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(27, 28, 87, 0.08);
}

/* Black Overlay on Thumbnail */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .video-thumbnail::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0000001f;
        pointer-events: none;
    }

    .video-thumbnail .main-thumb {
        width: 100%;
        height: 250px; /* Increased height */
        object-fit: cover;
    }

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #0000001a;
    backdrop-filter: blur(8px);
    /*    border: 1px solid rgba(255, 255, 255, 0.4);*/
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: 0.3s;
}

    .play-btn img {
        width: 13px; /* Adjust based on figma icon */
        pointer-events: none;
    }

/* Info Text Styling */
.card-title-text {
    font-family: "Outfit";
    font-weight: 500;
    color: var(--main-text-color);
    font-size: 1.1rem;
}

.video-duration {
    color: #888B97;
    font-size: 0.85rem;
}

.video-meta {
    color: #888B97;
    font-size: 0.85rem;
    font-family: "Outfit";
    font-weight: 500;
}

/* Icon Circles */
.icon-circle {
    width: 40px;
    height: 40px;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-circle img {
        width: 18px;
    }

.building-img {
    width: 18px;
    height: 18px;
}

.views-text {
    color: #888B97;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: "Outfit";
}

.heart-img {
    width: 18px;
    height: auto;
    cursor: pointer;
}

@media (max-width: 1285px) {
    .plane-path-image {
        display: none;
    }
}

/* --- Media Queries --- */
@media (max-width: 991px) {
    .process-main-title {
        font-size: 2.5rem;
    }

    .process-video-card {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .plane-path-image {
        display: none;
    }

    .process-left-blue-light {
        display: none;
    }
}

@media (max-width: 767px) {
    .process-main-title {
        font-size: 2rem;
    }

    .video-thumbnail .main-thumb {
        height: 280px;
    }
}



/* ====================== Our Process Section ====================== */

/* ====================== Forms Styling (Register/Sign In) ====================== */

.bg-light-blue {
    background-color: var(--main-bg);
}

.card-container {
    width: 100%;
    max-width: 1000px;
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

/* Left Section: Image Styling (Height FIX) */
.image-section {
    height: 100%;
    background-image: url("/websiteassets/images/register-img.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.login-img-section {
    height: 100%;
    background-image: url("/websiteassets/images/sign-up-img.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}

.form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.registration-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text-color);
}

.welcome-text {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.custom-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted-text);
    margin-bottom: 0.25rem;
    text-align: left !important;
    display: block;
}

    .custom-label span {
        color: rgb(229, 26, 26);
    }

.custom-input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    height: 45px;
    padding: 0.5rem 0.75rem;
    width: 100%;
}

.select-custom-input {
    font-size: 14px;
}

.custom-input:focus {
    /*    border-color: var(--primary-color) !important;*/
    border: 1px solid var(--primary-color) !important;
    box-shadow: none;
    outline: 0;
}

.custom-input::placeholder {
    color: #888888a2;
    font-size: 14px;
    font-weight: 300;
    font-family: "Outfit";
}

.user-profile-wrapper {
    cursor: pointer;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    /*    border: 2px solid rgba(255,255,255,0.3);*/
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text-color);
}

.user-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 200px;
    background: var(--light-bg-color);
    border-radius: 10px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 1000;
}

.user-profile-wrapper:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--dark-text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .user-dropdown .dropdown-item:hover {
        background: #8080803b;
        color: var(--dark-text-color);
    }

.dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 6px 0;
}


/* Register Button Styling (Teal color) */
.custom-register-btn {
    /*    background-color: var(--primary-color);*/
    background: var(--main-background-gradient);
    border: none;
    color: var(--text-color-light);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
}

    .custom-register-btn:active {
        background-color: var(--primary-color) !important;
        color: var(--text-color-light) !important;
    }

    .custom-register-btn:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--text-color-light);
    }

/* Login Link Styling */
.already-account-text {
    font-size: 0.85rem;
    color: var(--muted-text);
}

.log-in-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

    .log-in-link:hover {
        color: var(--primary-color);
    }

/* ===== Base (Desktop default) ===== */

.dropdown-user-header {
    display: none;
}

.user-name {
    display: inline-block;
}

/* ===== Mobile styles ===== */
@media (max-width: 991px) {

    .user-name {
        display: none;
    }

    .dropdown-user-header {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px 16px;
        border-bottom: 1px solid #8080803b;
        margin-bottom: 6px;
        position: relative;
        bottom: 5px;
    }

    .dropdown-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid rgba(255,255,255,0.3);
    }

    .dropdown-username {
        font-size: 14px;
        font-weight: 400;
        color: var(--dark-text-color);
    }

    /* Dropdown items underline separation */
    .user-dropdown .dropdown-item {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .user-dropdown .dropdown-item:last-child {
            border-bottom: none;
        }
}


/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
    .card-container {
        max-width: 500px;
    }

    .form-section {
        padding: 2rem !important;
    }

        .form-section .text-center {
            text-align: left !important;
        }

            .form-section .text-center .registration-title,
            .form-section .text-center .welcome-text {
                text-align: left !important;
            }

            .form-section .text-center.mt-3 {
                text-align: center !important;
            }
}

/* ====================== Forms Styling (Register/Sign In) ====================== */

/* ====================== Testimonial Section ====================== */

.testimonial-section {
    padding: 30px 0;
    overflow: hidden;
}

.testimonial-tag {
    color: #5E6282;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--main-text-color);
    line-height: 1.2;
}

.swiper-slide {
    width: auto !important;
    height: auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px 30px 25px 30px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 285px;
    border: none;
    margin-top: 30px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.testimonialSwiper {
    cursor: grab !important;
}

    .testimonialSwiper:active {
        cursor: grabbing !important;
        cursor: -webkit-grabbing !important;
    }

.swiper-grab-cursor {
    cursor: grab !important;
}

.swiper-grabbing {
    cursor: grabbing !important;
}

.user-avatar-testimonial {
    position: absolute;
    top: -16px;
    left: 1px;
    width: 55px;
    height: 55px;
    /*    border-radius: 50%;*/
    object-fit: cover;
    border: none !important;
}

.review-text {
    font-family: 'Outfit', sans-serif;
    color: #626687;
    font-size: 16px;
    line-height: 2.1;
    margin-top: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.card-footer-info {
    margin-top: auto;
    padding-top: 10px;
}

.user-name-testimonial {
    font-size: 16px;
    font-weight: 600;
    color: #5E6282;
    margin: 0;
    font-family: "Outfit";
}

.user-loc {
    font-size: 12px;
    color: #5E6282;
    margin: 0;
    font-family: "Outfit";
    font-weight: 500;
}

.rating-stars {
    color: #FFBE55;
    font-size: 14px;
    display: flex;
    gap: 5px;
}

/* Slider Navigation */
.nav-btn {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--main-text-color);
    transition: 0.3s;
}

    .nav-btn:hover {
        background: var(--warning-color);
        color: #fff;
    }

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .testimonial-card {
        max-width: 100%;
        height: auto;
        min-height: 285px;
        padding-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .swiper-slide {
        width: 495px !important;
    }

    .testimonial-card {
        width: 495px;
        height: 285px;
    }
}

@media (max-width: 991px) {
    .swiper-slide {
        width: 100% !important;
    }
}

@media (max-width: 993px) {
    .testimonial-card {
        height: 310px !important;
        min-height: 310px !important;
        max-height: 310px !important;
        padding-top: 50px;
        display: flex;
        flex-direction: column;
    }

    .card-footer-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .user-avatar-testimonial, .user-loc {
        display: block !important;
    }

    .testimonial-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .slider-navigation {
        justify-content: center !important;
        margin-top: 25px;
    }

    .nav-btn {
        display: none;
    }

    .testimonial-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .testimonial-title {
        font-size: 32px;
    }

    .review-text {
        -webkit-line-clamp: 6;
        font-size: 12px;
    }
}

/* ====================== Testimonial Section ====================== */

/* ====================== Global Travel Partner Section ====================== */

/* .global-partner-intro-section {
  background-color: #fcfdfe;
} */

.global-partner-heading {
    font-size: 3rem;
    color: var(--main-text-color);
    line-height: 1.2;
    font-family: "Outfit" !important;
}

.global-partner-description {
    font-size: 1.1rem;
    color: #313030;
    font-weight: 400;
    font-family: 'Outfit';
}

    .global-partner-description img {
        position: relative;
        bottom: 6px;
        padding-right: 2px;
    }

.partner-main-image-wrapper {
    border-radius: 12px;
    height: 500px;
}

    .partner-main-image-wrapper img {
        height: 100%;
        border-top-left-radius: 250px;
        border-bottom-left-radius: 250px;
        object-fit: cover;
    }

/* Responsive Adjustments for Section A */
@media (max-width: 991px) {
    .global-partner-heading {
        text-align: center;
    }

    .partner-text {
        text-align: center;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .partner-main-image-wrapper img {
        height: 100%;
        border-radius: 0px;
        object-fit: cover;
    }
    /* .partner-main-image-wrapper {
        height: 350px;
    } */
}

/* ====================== Global Travel Partner Section ====================== */

/* ====================== Global Company Section ====================== */

/* .growth-company-section {
  background-color: #fcfdfe;
} */

.globe-image-wrapper {
    height: 500px;
}

    .globe-image-wrapper img {
        height: 100%;
        border-top-right-radius: 250px;
        border-bottom-right-radius: 250px;
        object-fit: cover;
    }

/* Growth Text Styling */
.growth-company-heading {
    font-size: 3rem;
    color: var(--main-text-color);
    /* background-color: red; */
    text-align: end;
}

/*.growth-company-section .col-lg-6 {
    display: flex;
    justify-content: flex-end;
}*/

/* --- Responsive Alignment Fix for Section B --- */
@media (min-width: 992px) {
    /* .growth-company-section .row {
  
  } */

    /*    .growth-company-section .col-lg-6 {
        display: flex;
        align-items: center;
    }*/
}

@media (max-width: 991px) {
    .growth-company-heading {
        text-align: center !important;
        margin-bottom: 35px;
        font-size: 3rem;
    }
    /*    .growth-company-section .col-lg-6 {
        display: flex;
        align-items: center;
        justify-content:center;
    }*/
    /* .globe-image-wrapper {
    height: 350px;
  } */
    .growth-text {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .globe-image-wrapper img {
        border-radius: 10px;
    }
}

/* ====================== Global Company Section ====================== */

/* ====================== Download App Section ====================== */

.app-download-section {
    overflow-x: clip;
    position: relative;
}

    .app-download-section .container {
        position: relative;
    }

.app-download-wrapper {
    background: var(--main-background-gradient);
    border-radius: 20px;
    min-height: 100px !important;
    position: relative;
    z-index: 1;
    box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.02), 0px 64.81px 46.85px 0px rgba(0, 0, 0, 0.0152), 0px 38.52px 25.48px 0px rgba(0, 0, 0, 0.0121), 0px 20px 13px 0px rgba(0, 0, 0, 0.01), 0px 8.15px 6.52px 0px rgba(0, 0, 0, 0.0079), 0px 1.85px 3.15px 0px rgba(0, 0, 0, 0.0048);
}

/* Text and Description Styling */
.app-heading {
    font-size: 2.1rem;
    font-family: "Outfit";
    color: var(--text-color-light) !important;
    font-weight: 600;
}

.app-description {
    font-size: 1rem;
    max-width: 450px;
    font-family: "Outfit";
    font-weight: 400;
    color: var(--text-color-light) !important;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* App Badge Image Styling */
.app-badge-img {
    height: 55px;
    width: auto;
    transition: transform 0.2s;
}

.app-store-img-link:hover .app-badge-img {
    transform: scale(1.05); /* Hover effect */
}

.app-phone-col {
    position: absolute;
    top: 53%;
    right: 0%;
    left: 55%;
    width: 50%;
    z-index: 2;
    pointer-events: none;
    rotate: 345deg;
}

.app-phone-image {
    position: absolute;
    top: 50%;
    right: 10%;
    max-height: 520px;
    width: auto;
    transform: translateY(-50%) rotate(15deg);
    animation: smoothFloat 4s infinite ease-in-out;
}

@keyframes smoothFloat {
    0%, 100% {
        transform: translateY(-50%) rotate(15deg);
    }

    50% {
        transform: translateY(-55%) rotate(12deg);
    }
}

.app-phone-image:hover {
    transform: translateY(-50%) rotate(0deg) scale(1.05);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 600px) {
    .app-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .app-store-img-link {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px !important;
    }

        .app-store-img-link.me-3 {
            margin-right: 0 !important;
        }

    .app-download-wrapper {
        text-align: center;
    }

    .app-description {
        text-align: center;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .app-buttons {
        justify-content: center;
    }

    .app-store-img-link.me-3 {
        margin-right: 1rem !important;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
    }

    .app-store-img-link {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 575px) {
    .app-buttons {
        justify-content: center;
    }

    .app-store-img-link {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px !important;
    }

        .app-store-img-link.me-3 {
            margin-right: 0 !important;
        }

    .app-phone-col {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .app-download-wrapper {
        text-align: center;
    }

    .app-description {
        text-align: center;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ====================== Download App Section ====================== */

/* ====================== Policy Pages Styling ====================== */

.policy-container-main {
    margin-top: 8rem;
}

.policy-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px !important;
    /* margin-bottom: 50px; */
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 10px;
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #6c757d;
}

.content-section h1.main-heading {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 11px;
    /* margin-bottom: 15px; */
    color: var(--main-text-color);
    font-family: "Outfit";
}

.content-section p {
    font-family: 'Outfit';
}

.content-section h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 20px;
    color: #343a40;
    font-family: "Outfit";
}

.content-section strong {
    font-weight: 500;
}

.content-section {
    margin-bottom: 20px;
}

    .content-section ul {
        padding-left: 20px;
    }

        .content-section ul li {
            list-style: circle;
        }

    .content-section .contact-box {
        background: var(--main-background-gradient);
        padding: 20px 40px;
        border-radius: 6px;
        margin-top: 40px;
        /*        border: 1px solid #80808026;*/
        color: var(--text-color-light) !important;
    }

        .content-section .contact-box h2 {
            color: var(--text-color-light);
            margin-top: 1rem;
        }

        .content-section .contact-box p a {
            color: var(--text-color-light);
        }

@media (max-width: 768px) {
    .policy-container {
        padding: 20px;
    }
}

/* ====================== Policy Pages Styling ====================== */

/* ====================== Footer Section ====================== */

footer {
    width: 100%;
    height: auto !important;
    background-color: var(--footer-bg);
    margin-top: 3rem;
    padding: 1.5rem 0rem;
}

.footer-top-part {
    width: 100%;
    margin-top: 1.5rem;
}

.footer-logo img {
    width: 200px;
}

.footer-links {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 2rem;
}

.ft-links {
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 0;
    gap: 0.8rem;
    margin-top: 1.3rem;
    list-style: none;
}

.footer-link-heading {
    color: var(--text-color-light);
    font-size: 1.7rem;
}

.ft-links li a {
    color: var(--text-color-light);
    font-weight: 300 !important;
    font-family: 'Outfit';
    text-decoration: none;
    transition: all 0.3s;
}

.ft-links li {
    transition: all 0.3s;
}

    .ft-links li:hover a {
        text-decoration: underline;
    }

.footer-social-and-email-part {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.social-and-policy-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 4rem;
}

.connect-with-us-part h5 {
    color: var(--text-color-light);
    font-size: 1rem;
    font-family: 'Outfit' !important;
    margin-bottom: 15px;
}

.social-media-part {
    display: flex;
    gap: 0.3rem;
}

.social-media-link {
    background-color: var(--light-bg-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

    .social-media-link a {
        color: var(--dark-text-color);
        transition: all 0.1s;
    }

    .social-media-link:hover {
        background: var(--main-background-gradient);
        transform: translateY(-3px);
    }

        .social-media-link:hover a {
            color: var(--text-color-light);
        }

.policy-links-middle {
    display: flex;
    /*    flex-direction: column;*/
    gap: 1.2rem;
}

    .policy-links-middle a {
        color: var(--text-color-light);
        font-family: 'Outfit';
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
    }

        .policy-links-middle a:hover {
            opacity: 0.7;
            text-decoration: underline;
        }

/* Email Box Container */
.email-subscribe-box {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

    /* Input Field */
    .email-subscribe-box input {
        width: 100%;
        padding: 16px 300px 16px 20px;
        border: none;
        border-radius: 10px;
        outline: none;
        font-size: 16px;
        height: 55px;
    }

@media (max-width: 1199px) {
    .email-subscribe-box input {
        padding: 16px 150px 16px 20px;
    }
}

/* Signup Button - Full Height Cover */
.signup-btn-footer-new {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--main-background-gradient);
    color: white;
    border: none;
    padding: 0 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit';
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
}

    .signup-btn-footer-new i {
        transition: all 0.3s;
    }

    /* Hover effect */
    .signup-btn-footer-new:hover i {
        transform: translateX(5px);
    }

.footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin-top: 2.2rem;
}

/* Bottom Part Fix */
.footer-bottom-part {
    display: flex;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rights-reserved-text, .llc-ownership-text {
    color: var(--text-color-light);
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 300;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .social-and-policy-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-social-and-email-part {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-and-policy-wrapper {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .email-part {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .social-and-policy-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-part {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .email-subscribe-box input {
        padding: 15px 20px;
    }

    .email-subscribe-box {
        flex-direction: column;
        gap: 10px;
    }

    .signup-btn-footer-new {
        position: static;
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
}

/* ====================== Footer Section ====================== */

/* ====================== Apply Now Page Styles ====================== */
.visa-apply-section {
    padding: 120px 0 30px 0;
}

.custom-breadcrumb {
    background: none;
    padding: 0;
    font-size: 14px;
    font-family: "Outfit";
}

    .custom-breadcrumb a {
        color: #008080;
        text-decoration: none;
        font-family: "Outfit";
    }

.main-heading {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

    .main-heading .highlight {
        color: #d4a017;
    }

.sub-text {
    color: #313030;
    font-size: 16px;
    margin-top: 15px;
    font-family: 'Outfit';
}

/* Counter Styling */
.counter-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .counter-box button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #008080;
        color: white;
        font-size: 17px;
        /* Flexbox settings */
        display: inline-flex;
        align-items: center;
        justify-content: center;
        /* Extra fixes for perfect centering */
        padding: 0 !important;
        line-height: 0 !important;
        cursor: pointer;
    }

    .counter-box input {
        width: 70px;
        height: 40px;
        border: none;
        background: #e0f2f2;
        text-align: center;
        border-radius: 5px;
        font-weight: 300 !important;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        outline: none;
        cursor: default;
        border-radius: 10px;
    }

        .counter-box input::-webkit-outer-spin-button,
        .counter-box input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

/* Sidebar Card */
.visa-info-card {
    background: #DDF1F4;
    border-radius: 20px;
    padding: 30px;
}

    .visa-info-card h5 {
        font-family: "Outfit";
        font-weight: 500;
    }

.card-logo-apply-now {
    width: 150px;
}

.dotted-divider-2 {
    border-top: 3px dashed #4E4E4E;
    margin: 20px 0;
}

.visa-specs {
    list-style: none;
    padding: 0;
}

    .visa-specs li {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        align-items: center;
        font-family: "Outfit";
    }

        .visa-specs li img {
            width: 35px;
        }

    .visa-specs i {
        font-size: 24px;
        color: #555;
    }

    .visa-specs p {
        margin: 0;
        font-weight: 400;
        color: #5E5C5C;
    }

    .visa-specs small {
        color: #888;
        display: block;
        font-family: "Outfit";
    }

.start-app-btn {
    background: var(--main-background-gradient);
    border: none;
    color: var(--text-color-light);
    padding: 15px;
    border-radius: 12px;
    font-weight: 300;
    font-size: 16px;
    font-family: "Outfit";
}

    .start-app-btn:hover {
        background: var(--main-background-gradient) !important;
        color: var(--text-color-light) !important;
    }

    .start-app-btn:active {
        color: var(--text-color-light) !important;
    }

.tp-container {
    gap: 15px;
}

.tp-gradient-badge {
    background: var(--main-background-gradient);
    padding: 8px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.tp-stars-wrap {
    display: flex;
    gap: 6px;
}

    .tp-stars-wrap i {
        color: #ffffff;
        font-size: 14px;
    }

.tp-brand-name {
    color: #ffffff;
    font-weight: 300;
    font-size: 18px;
    font-family: "Outfit";
}

.tp-reviews-outside {
    color: #555e67;
    font-size: 14px;
    font-family: sans-serif;
    font-weight: 500;
}

/* Flags */
.flag-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .flag-list img {
        width: 40px;
        border-radius: 50%;
    }

/* Responsive */
@media (max-width: 991px) {
    .main-heading {
        font-size: 32px;
    }

    .visa-info-card {
        margin-top: 40px;
    }
}

/* ====================== Apply Now Page Styles ====================== */

/* ====================== Personal Information Page Styles ====================== */

.field-input:focus,
.form-control:focus,
.form-select:focus,
.ts-control:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

.ts-wrapper.focus .ts-control {
    box-shadow: none !important;
    border-color: rgba(49, 48, 48, 0.3) !important;
}

.visa-application-section {
    padding: 110px 0px 40px 0px;
}

.info-status-wrapper {
    width: fit-content;
    position: relative;
    /*    padding-bottom: 5px;*/
}

.visa-yellow {
    color: var(--warning-color);
}

.sub-text {
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.icon-tick {
    color: #00b67a;
    font-size: 18px;
}

.yellow-underline {
    width: 85%;
    height: 2px;
    background-color: #d4a017;
    position: absolute;
    bottom: 0;
}

.passport-heading {
    margin-top: 20px;
    font-family: "Outfit";
}
/* Accordion Styling */
.traveler-accordion-item {
    border: 1px solid rgba(49, 48, 48, 0.3) !important;
    background-color: #ffffff00;
    border-radius: 12px !important;
    margin-bottom: 20px;
}

.accordion-button {
    padding: 25px;
    background-color: transparent !important;
}

    .accordion-button:not(.collapsed) {
        border-bottom: 1px solid rgba(49, 48, 48, 0.1);
    }

.accordion-header-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.traveler-label {
    font-size: 1.25rem;
    font-weight: 500;
    color: #313030;
    font-family: "Outfit";
}

.traveler-sub-label {
    font-size: 14px;
    color: #313030;
    margin-top: 10px;
}

/* Inputs - Transparent + 30% Border */
.field-label {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-bottom: 8px;
}

.field-input {
    border: 1px solid #3130303d !important;
    background-color: transparent !important;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
}

/* Checkbox & Text */
.check-label-small {
    font-size: 14px;
    color: #666;
}

.opt-in-text-small {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
}

    .opt-in-text-small span {
        font-weight: 600;
        text-decoration: underline;
        color: #313030;
    }

/* Right Box (Summary Card) */
.summary-box {
    background-color: #DDF1F4;
    border-radius: 20px;
    padding: 25px;
}

.card-logo-img {
    max-width: 120px;
    margin-bottom: 10px;
}

.card-visa-title {
    display: block;
    font-weight: 500;
    font-size: 17px;
    font-family: "Outfit";
}

.dashed-separator {
    border-top: 2px dashed rgba(49, 48, 48, 0.2);
    margin: 20px 0;
}

.traveler-count-text {
    font-size: 14px;
    color: #666;
    font-family: "Outfit";
}

.fee-row span {
    font-size: 14px;
    color: #5E5C5C;
    font-family: "Outfit";
}

.fee-amount {
    font-weight: 400;
    color: #5E5C5C;
    font-family: "Outfit";
}

.btn-action-primary {
    background-color: #d4a017;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-family: "Outfit";
}

/* Footer Alignment Fix */
.security-footer-row i {
    font-size: 20px;
    color: #777;
    margin-top: 2px;
}

.security-text-box p {
    font-size: 14px;
    margin-bottom: 2px;
    color: #555;
    line-height: 1.4;
}

.small-safety-link {
    margin-top: 7px;
    font-family: 'Outfit';
}

    .small-safety-link span {
        font-weight: 400;
        color: #313030;
    }

.btn-add-traveler {
    background-color: #1b8a9d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Outfit";
}
/* ====================== Personal Information Page Styles ====================== */

/* ====================== Review Order Page Styles ====================== */

/*.review-order-section {
    padding: 120px 0px 0px 0px;
}*/

.review-order-section .container {
    padding: 0 !important;
}

.review-heading {
    font-weight: 700;
    font-size: 2.5rem;
    color: #313030;
}

/* Left Cards */
.review-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: none;
    position: relative;
    overflow: hidden;
}

.border-left-green {
    border-left: 5px solid #00b67a !important; /* The green accent line */
}

.processing-text {
    font-size: 18px;
    color: #313030;
    font-weight: 400;
}

/* Visa Info */
.visa-type-title {
    font-size: 22px;
    font-weight: 500;
    color: #313030;
}

.info-row {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
}

.info-label {
    color: #888;
    min-width: 140px;
    font-family: "Outfit";
}

.info-value {
    color: #313030;
    font-weight: 500;
    font-family: "Outfit";
}

.dashed-line {
    border-top: 3px dashed #ddd;
}

.traveler-label-grey {
    font-size: 13px;
    color: #aaa;
    font-family: "Outfit";
}

.traveler-name {
    font-size: 18px;
    font-weight: 500;
    color: #313030;
    margin-top: 5px;
}

/* Right Sidebar */
.payment-summary-box {
    background-color: #DDF1F4;
    border-radius: 20px;
    padding: 30px;
}

.sidebar-logo {
    width: 130px;
    margin-bottom: 10px;
}

.sidebar-visa-name {
    font-size: 18px;
    font-weight: 500;
    color: #313030;
    font-family: "Outfit";
}

.sidebar-divider {
    border-top: 3px dashed #4e4e4e26;
}

.traveler-count {
    font-size: 15px;
    color: #666;
    font-family: "Outfit";
    font-weight: 500;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    color: #555;
    font-family: "Outfit";
}

.total-label-group small {
    display: block;
    font-size: 12px;
    color: #5E5C5C;
    font-weight: 400;
}

.total-label-group strong {
    font-weight: 600;
}

.total-price {
    font-size: 18px;
    font-weight: 600;
    color: #5E5C5C;
}

/* Button Gradient */
.btn-continue-payment {
    width: 100%;
    background: var(--main-background-gradient);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Outfit";
    transition: all 0.2s;
}

.secure-checkout-footer {
    font-size: 17px;
    color: #040404b0;
    font-weight: 400;
}

    .secure-checkout-footer i {
        margin-right: 5px;
    }

.payment-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    display: none;
}

/* Spinner Dots Animation */
.spinner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

    .dot.blue {
        background-color: #006eb6;
    }

    .dot.green {
        background-color: #00b67a;
        animation-delay: -0.16s;
    }

    .dot.blue:nth-child(3) {
        animation-delay: -0.32s;
    }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1.0);
    }
}

/* Text Styling */
.loading-text {
    font-size: 22px;
    font-weight: 700;
    color: #313030;
    margin-top: 15px;
    font-family: "Outfit";
}

.loading-subtext {
    font-size: 14px;
    color: #888;
}
/* ====================== Review Order Page Styles ====================== */

/* ====================== Complete Payment Page Styles ====================== */
.payment-success-section {
    overflow-x: hidden;
    padding: 70px 0px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*    min-height: 100vh;*/
}

    /*    .payment-success-section .container-fluid {
        max-width: 1600px;
        width: 100%;
        margin: 0 auto;
    }*/

    .payment-success-section .row {
        margin: 0;
        width: 100%;
    }

.bg-light-blue {
    background-color: #e3f2f5;
    padding: 50px 30px;
}

/* Sidebar Styling */
.sidebar-heading {
    font-weight: 600;
    font-size: 2.5rem;
    color: #1B1C57;
    font-family: "Outfit";
}

/* Step Card - Column Layout */
.step-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0px 90.24px 72.19px 0px rgba(155, 192, 243, 0.35), 0px 58.49px 42.28px 0px rgba(0, 0, 0, 0.0152), 0px 34.76px 22.99px 0px rgba(0, 0, 0, 0.0121), 0px 18.05px 11.73px 0px rgba(0, 0, 0, 0.01), 0px 7.35px 5.88px 0px rgba(0, 0, 0, 0.0079), 0px 1.67px 2.84px 0px rgba(0, 0, 0, 0.0048);
    max-width: 400px;
    width: 100%;
}

.step-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.step-content-2 h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1B1C57;
    margin-bottom: 8px;
    font-family: "Outfit";
}

.step-content-2 p {
    font-size: 15px;
    color: #1B1C57;
    line-height: 1.3;
    margin-bottom: 0;
    font-family: 'Outfit';
}

.user-email {
    color: #105ECA;
}

/* Right Content */
.big-tick-img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.success-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    color: #1B1C57;
}

.success-subtitle {
    color: #313030;
    font-size: 18px;
}

.confirmation-email-box {
    background: #fff;
    box-shadow: 0px 90.24px 72.19px 0px rgba(155, 192, 243, 0.35), 0px 58.49px 42.28px 0px rgba(0, 0, 0, 0.0152), 0px 34.76px 22.99px 0px rgba(0, 0, 0, 0.0121), 0px 18.05px 11.73px 0px rgba(0, 0, 0, 0.01), 0px 7.35px 5.88px 0px rgba(0, 0, 0, 0.0079), 0px 1.67px 2.84px 0px rgba(0, 0, 0, 0.0048);
    border-radius: 15px;
    width: 100% !important;
    max-width: 850px !important;
    margin: 0 auto;
    display: block;
}

.conf-text {
    margin-bottom: 0;
}

.border-left-green-bold {
    border-left: 6px solid #00b67a !important;
}

/* Button 1: Gradient Fill */
.btn-gradient-fill {
    background: var(--main-background-gradient);
    border: none;
    color: white;
    padding: 14px 60px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 16px;
    font-family: "Outfit";
}

.btn-gradient-outline {
    background-color: white;
    font-family: "Outfit";
    padding: 14px 60px;
    border-radius: 10px;
    font-size: 16px;
    border-radius: 16px;
    font-weight: 400;
    color: #7D848D;
    cursor: pointer;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--main-bg)), linear-gradient(90deg, #00b67a 0%, #006eb6 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: inline-block;
    transition: all 0.1s;
}

    .btn-gradient-outline:hover {
        background-image: linear-gradient(transparent), linear-gradient(90deg, #00b67a 0%, #006eb6 100%);
        color: var(--text-color-light);
    }
/* Responsive */
@media (max-width: 991px) {
    .min-vh-100 {
        min-height: auto;
    }

    .bg-light-blue {
        padding: 40px 20px !important;
    }

    .step-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .bg-light-blue {
        background-color: transparent;
    }

    .sidebar-heading {
        text-align: center;
        font-size: 30px;
    }
}
/* ====================== Complete Payment Page Styles ====================== */

/* ====================== About Us Page Styles ====================== */
.ae-badge {
    color: #00b67a;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    background: rgba(0, 182, 122, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.ae-main-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #0d2131;
    margin-top: 20px;
}

.ae-sub-title {
    color: #64748b;
    max-width: 600px;
    margin: 15px auto;
}

.ae-premium-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

    .ae-premium-card h4 {
        font-family: 'Outfit';
    }

.ae-premium-card-icon-parent {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-premium-card.active {
    background: var(--main-background-gradient);
    color: white;
    box-shadow: 0 20px 40px rgba(13, 33, 49, 0.2);
    border: none;
}

    .ae-premium-card.active .ae-card-icon {
        background: white;
        color: #1fb970;
    }

.ae-card-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1fb970;
    margin-bottom: 25px;
}

.ae-section-heading {
    font-weight: 800;
    font-size: 35px;
    margin-bottom: 40px;
    color: #0d2131;
    text-align: center;
}

.ae-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.ae-gov-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border-bottom: 4px solid #e2e8f0;
    transition: 0.3s;
}

    .ae-gov-card:hover {
        border-bottom-color: #00b67a;
        transform: translateY(-5px);
    }

.ae-gov-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 700;
}

.ae-partner-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    filter: grayscale(1);
    opacity: 0.6;
}

.ae-partner-logo {
    height: 35px;
    width: auto;
}

.ae-other-acc-premium {
    padding: 100px 0;
}

.ae-modern-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.ae-split-visual {
    position: relative;
    padding-right: 40px;
}

.ae-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.ae-main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ae-visual-accent {
    position: absolute;
    top: -30px;
    right: 0;
    width: 80%;
    height: 110%;
    background: #f8fafc;
    border-radius: 40px;
    z-index: 1;
}

.ae-floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #0d2131;
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(13, 33, 49, 0.3);
    animation: floatVertical 3s infinite ease-in-out;
}

    .ae-floating-badge i {
        color: #00b67a;
        font-size: 24px;
    }

.ae-section-tag {
    color: #00b67a;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    background: rgba(0, 182, 122, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.ae-split-title {
    font-size: 42px;
    font-weight: 900;
    color: #0d2131;
    margin-bottom: 15px;
    margin-top: 15px;
}

.ae-split-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .ae-modern-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ae-split-visual {
        padding-right: 0;
    }

    .ae-main-img {
        height: 400px;
    }
}

.ae-badge-list {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-weight: 600;
    color: #00b67a;
}

.ae-legal-badge {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 800;
    color: #00b67a;
    background: rgba(0, 182, 122, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
}

.legal-card-elite {
    background: #ffffff;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, #e2e8f0 0%, #ffffff 100%);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.legal-card-inner {
    background: #ffffff;
    border-radius: 28px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /*    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.02);*/
}

.legal-icon-box {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0d2131;
    margin-bottom: 25px;
    position: relative;
    transition: 0.3s;
    border: 1px solid #f1f5f9;
}

    .legal-icon-box::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 22px;
        background: #00b67a;
        opacity: 0;
        transform: scale(0.8);
        transition: 0.3s;
        z-index: -1;
    }

.legal-details h5 {
    font-weight: 800;
    font-size: 19px;
    color: #0d2131;
    margin-bottom: 8px;
}

.legal-details p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 15px;
}

.legal-id {
    font-size: 12px;
    font-weight: 700;
    color: #00b67a;
    background: rgba(0, 182, 122, 0.08);
    padding: 5px 15px;
    border-radius: 8px;
}

/* Hover Effects */
.legal-card-elite:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, #00b67a 0%, #006eb6 100%);
}

    .legal-card-elite:hover .legal-icon-box {
        color: #000;
        border-color: transparent;
    }

        .legal-card-elite:hover .legal-icon-box::after {
            opacity: 1;
            transform: scale(1);
        }

    .legal-card-elite:hover .legal-details h5,
    .legal-card-elite:hover .legal-details p {
        color: #0d2131;
    }

@media (max-width: 991px) {
    .legal-card-inner {
        padding: 30px 20px;
    }
}

.ae-badge-mini {
    color: #00b67a;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    background: rgba(0, 182, 122, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.ae-office-card-elite {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ae-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.ae-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ae-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*    background: linear-gradient(to bottom, transparent 40%, rgba(13, 33, 49, 0.8) 100%);*/
}

.ae-flag-floating {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.ae-card-content {
    padding: 24px;
    background: white;
    transition: all 0.4s ease;
}

.ae-location-info h5 {
    font-weight: 600;
    font-size: 20px;
    color: #0d2131;
    margin-bottom: 6px;
}

.ae-location-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .ae-location-info p i {
        color: #00b67a;
    }

.ae-map-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .ae-map-btn span {
        font-weight: 500;
        color: #0d2131;
        font-size: 14px;
    }

.btn-circle {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006eb6;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Hover State */
.ae-office-card-elite:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(13, 33, 49, 0.12);
    border-color: #00b67a;
}

    .ae-office-card-elite:hover .ae-main-img {
        transform: scale(1.15);
    }

    .ae-office-card-elite:hover .ae-map-btn {
        background: var(--main-background-gradient);
    }

        .ae-office-card-elite:hover .ae-map-btn span {
            color: white;
        }

    .ae-office-card-elite:hover .btn-circle {
        background: #00b67a;
        color: white;
        transform: rotate(45deg);
    }
/* ====================== About Us Page Styles ====================== */

/* ====================== Contact Us Page Styles ====================== */

.ae-breadcrumb {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
}

.ae-hero-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #0d2131;
}

.aevisa-contact-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 8px 18px;
    border-radius: 50px;
}

.aevisa-contact-pulse {
    width: 10px;
    height: 10px;
    background: #00b67a;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: aevisa-pulse-animation 2s infinite;
}

    .aevisa-contact-pulse::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #00b67a;
        border-radius: 50%;
        z-index: -1;
        animation: aevisa-pulse-ring 2s infinite;
    }

@keyframes aevisa-pulse-animation {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.95);
    }
}

@keyframes aevisa-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.aevisa-contact-status-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}

.aevisa-contact-heading {
    font-size: 42px;
    font-weight: 500;
    color: #0d2131;
    margin-bottom: 20px;
}

.aevisa-contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    font-weight: 400;
    margin-bottom: 35px;
    max-width: 520px;
}

.aevisa-contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--main-background-gradient);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: "Outfit";
}

    .aevisa-contact-whatsapp-btn:hover {
        background: var(--main-background-gradient);
        transform: translateY(-2px);
        color: #ffffff;
    }

.aevisa-contact-image-wrapper {
    text-align: right;
}

.aevisa-contact-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin-left: auto;
}

@media (max-width: 991px) {
    .aevisa-contact-heading {
        font-size: 32px;
    }

    .aevisa-contact-content {
        text-align: center;
    }

    .aevisa-contact-description {
        margin-left: auto;
        margin-right: auto;
    }

    .aevisa-contact-img {
        margin: 40px auto 0;
    }

    .aevisa-contact-whatsapp-btn {
        width: 50%;
        justify-content: center;
    }
}

.ae-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0d2131 0%, transparent 20%);
}

.ae-sub-heading {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
}

.ae-sub-desc {
    color: #64748b;
    font-weight: 400;
    max-width: 700px;
}

.ae-tools-list {
    margin-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.ae-tool-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #d0d0d0;
    text-decoration: none;
    color: #1a2b3b;
    font-weight: 400;
    font-size: 16px;
    transition: 0.2s;
}

    .ae-tool-link:hover {
        color: #00b67a;
        padding-left: 8px;
    }

.ae-link-icon {
    color: var(--dark-text-color);
    font-size: 20px;
}

.ae-info-card {
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    height: 100%;
}

.ae-info-h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.ae-info-p {
    font-size: 15px;
    color: #1a2b3b;
    font-weight: 400;
    margin-bottom: 15px;
}

.ae-mail-link {
    color: #006eb6;
    text-decoration: none;
    font-weight: 500;
}

.ae-info-note {
    font-size: 13px;
    color: #64748b;
    border-left: 2px solid #e2e8f0;
    padding-left: 15px;
    margin-top: 20px;
}

.ae-phone-display {
    font-size: 18px;
    font-weight: 500;
    color: #0d2131;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .ae-chat-content {
        padding: 30px;
    }

    .ae-img-overlay {
        background: linear-gradient(to top, #0d2131 0%, transparent 20%);
    }

    .ae-contact-main-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* ====================== Contact Us Page Styles ====================== */

/* ====================== Help Center Page Styles ====================== */

.ae-visa-help-center-hero {
    background: var(--main-background-gradient);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease-in;
}

.ae-visa-help-center-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: "Outfit";
}

.ae-visa-help-center-search-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

    .ae-visa-help-center-search-wrapper i {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 20px;
    }

.ae-visa-help-center-input {
    width: 100%;
    padding: 16px 16px 16px 55px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 400;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card Styling */
.ae-visa-help-center-card {
    background: #ffffff;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .ae-visa-help-center-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    }

.ae-visa-help-center-image-top {
    width: 100%;
    height: 180px;
}

    .ae-visa-help-center-image-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ae-visa-help-center-icon-top {
    padding: 30px 30px 10px;
}

    .ae-visa-help-center-icon-top img {
        width: 60px;
        height: auto;
    }

.ae-visa-help-center-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #0d2131;
    margin: 20px 30px 10px;
}

.ae-visa-help-center-card-desc {
    font-size: 15px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 30px 0px;
    flex-grow: 1;
}

/* Card Footer */
.ae-visa-help-center-card-footer {
    padding: 20px 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ae-visa-help-center-authors {
    display: flex;
}

.ae-visa-help-center-avatar {
    width: 28px;
    height: 28px;
    background: #006eb6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

    .ae-visa-help-center-avatar:first-child {
        margin-left: 0;
    }

.ae-visa-help-center-stats {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
}

@media (max-width: 768px) {
    .ae-visa-help-center-title {
        font-size: 26px;
    }

    .ae-visa-help-center-hero {
        padding: 60px 20px;
    }
}

.ae-visa-help-center-grid-section .col-lg-4 {
    transition: all 0.3s ease;
}

#ae-no-results {
    width: 100%;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================== Help Center Page Styles ====================== */

/* ====================== B2B Partnership Page Styles ====================== */

.b2b-hero-section {
    margin-top: 150px;
    font-family: 'Outfit', sans-serif;
    background: transparent;
}

/* Badge Styling */
.b2b-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(63, 63, 63, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    text-align: start;
    font-weight: 600;
    color: #000000;
    margin-bottom: 13px;
}

.b2b-hero-pulse {
    width: 8px;
    height: 8px;
    background: #1FB970;
    border-radius: 50%;
    position: relative;
}

    .b2b-hero-pulse::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #1FB970;
        border-radius: 50%;
        animation: b2b-pulse-ring 2s infinite;
    }

@keyframes b2b-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Typography */
.b2b-hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 12px;
}

.b2b-hero-highlight {
    color: #1FB970;
}

.b2b-hero-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #313030;
    max-width: 475px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Buttons */
.b2b-hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.b2b-btn-primary {
    font-family: 'Outfit', sans-serif;
    background: var(--main-background-gradient);
    color: #ffffff;
    padding: 14px 50px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s;
}

    .b2b-btn-primary:hover {
        transform: scale(1.05);
    }

/* Gradient Border Button */
.b2b-btn-outline {
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding: 14px 50px;
    border-radius: 14px;
    text-decoration: none;
    color: #7D848D;
    font-weight: 400;
    /*    background: #fff;*/
    display: inline-block;
    z-index: 1;
    transition: all 0.2s ease-in;
}

    .b2b-btn-outline::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 2px; /* Border thickness */
        background: var(--main-background-gradient);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
        transition: all 0.2s ease-in;
    }

    .b2b-btn-outline:hover {
        background: var(--main-background-gradient);
        color: var(--text-color-light);
    }

/* Features Info */
.b2b-hero-features {
    display: flex;
    gap: 30px;
}

.b2b-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

    .b2b-feature-item i {
        color: #1FB970;
        font-size: 18px;
    }

/* Image Wrapper */
.b2b-hero-image-container {
    padding-left: 20px;
}

.b2b-hero-img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 991px) {

    .b2b-hero-title {
        font-size: 42px;
    }

    .b2b-hero-image-container {
        margin-top: 50px;
        padding-left: 0;
    }

    .b2b-hero-btns {
        flex-direction: column;
        width: 65%;
    }

    .b2b-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .b2b-hero-content {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}


.b2b-features-cards {
    background: transparent;
    margin-top: 50px;
}

.ae-b2b-stats-wrapper {
    display: flex;
    justify-content: center; /* Centering cards in the middle */
    flex-wrap: wrap;
    gap: 17px; /* Figma horizontal gap */
    width: 100%;
    padding: 60px 0;
}

.ae-b2b-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    /* Exact Figma Dimensions */
    width: 241px;
    height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.2s ease-in-out;
}

    .ae-b2b-stat-card:hover {
        transform: translateY(-5px);
        border-color: rgba(31, 185, 112, 0.2); /* Soft hover border */
    }

.ae-b2b-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.ae-b2b-icon-img {
    width: 28px; /* Size adjusted for 154px height */
    height: 28px;
    object-fit: contain;
}

.ae-b2b-badge {
    background-color: #F0FDF4;
    color: #16A34A;
    font-size: 10px;
    font-weight: 400;
    padding: 3px 10px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
}

.ae-b2b-stat-number {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 28px; /* Reduced for smaller card size */
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
}

.ae-b2b-stat-title {
    font-family: 'Outfit', sans-serif;
    color: #68799F; /* Heading color for title */
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 2px;
}

.ae-b2b-stat-sub {
    font-family: 'Outfit', sans-serif;
    color: #68799F;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 5px;
    opacity: 0.9;
    line-height: 1.3;
}

@media (max-width: 1100px) {
    .ae-b2b-stats-wrapper {
        gap: 20px;
        padding: 40px 0px;
    }

    .ae-b2b-stat-card {
        width: calc(50% - 10px);
        height: auto;
        min-height: 154px;
    }
}

@media (max-width: 540px) {
    .ae-b2b-stat-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 20px;
    }

    .ae-b2b-stat-number {
        font-size: 32px;
    }
}

.b2b-intelligence-section {
    background-color: transparent;
    font-family: 'Outfit', sans-serif;
    margin-top: 50px;
}

.b2b-intelligence-banner {
    background-color: #204476;
    border-radius: 30px;
    padding: 10px 50px;
    overflow: hidden;
    position: relative;
}

.b2b-intelligence-heading {
    color: #ffffff;
    font-size: 31px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.3;
}

.b2b-intelligence-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    margin-bottom: 0;
}

.b2b-intelligence-image-wrapper {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.b2b-intelligence-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .b2b-intelligence-banner {
        padding: 40px;
    }

    .b2b-intelligence-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .b2b-intelligence-banner {
        padding: 40px 25px;
        text-align: center;
    }

    .b2b-intelligence-text {
        margin-bottom: 40px;
    }

    .b2b-intelligence-image-wrapper {
        justify-content: center;
    }

    .b2b-intelligence-desc {
        margin-left: auto;
        margin-right: auto;
    }
}


.b2b-pricing-section {
    background-color: transparent;
    margin-top: 100px;
}

/* Header Styling */
.b2b-pricing-main-heading {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 32px;
    font-weight: 500;
}

.b2b-pricing-main-desc {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 15px;
    max-width: 700px;
    margin: 10px auto 0;
    opacity: 0.8;
}

/* Card Base */
.b2b-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
}


.b2b-pricing-card-lg {
    min-height: 460px;
}

.b2b-pricing-card-sm {
    min-height: 415px;
}

/* Featured Card Border */
.b2b-featured {
    border: 2px solid #1FB970;
}

/* Badge Styling */
.b2b-most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-background-gradient);
    color: white;
    padding: 4px 20px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

/* Card Typography */
.b2b-card-title {
    font-family: 'Outfit', sans-serif;
    color: #1E3A5F;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 3px;
}

.b2b-card-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #6B7280;
    font-size: 12px;
    margin-bottom: 30px;
}

/* List Items */
.b2b-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0px 0;
    flex-grow: 1;
}

    .b2b-pricing-list li {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #000;
        margin-bottom: 13px;
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 300;
    }

    .b2b-pricing-list i {
        color: #16A34A; /* Exact color for check icon */
        font-size: 18px;
    }

/* Button 1: Gradient Background */
.b2b-btn-gradient-pricing {
    background: var(--main-background-gradient);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    transition: 0.3s;
    margin-top: 20px;
}

/* Button 2: Gradient Border */
.b2b-btn-outline-pricing {
    position: relative;
    background: transparent;
    color: #6B7280;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    display: block;
    z-index: 1;
    transition: all 0.3s ease-in;
    margin-top: 20px;
}


    .b2b-btn-outline-pricing::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 12px;
        padding: 2px;
        background: var(--main-background-gradient);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
        transition: all 0.3s ease-in;
    }

    .b2b-btn-outline-pricing:hover {
        background: var(--main-background-gradient);
        color: var(--text-color-light);
    }

@media (max-width: 991px) {
    .b2b-pricing-card {
        margin-bottom: 20px;
        min-height: auto;
    }
}

.b2b-powerful-feature-section {
    background-color: transparent;
    margin-top: 100px;
}

.b2b-bg-alt {
    background-color: rgba(27, 28, 87, 0.04) !important;
    padding: 100px 0;
}

/* Center Top Header */
.b2b-powerful-main-title {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 32px;
    font-weight: 500;
}

.b2b-powerful-main-desc {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 16px;
    max-width: 723px;
    margin: 12px auto 0;
    opacity: 0.8;
}

/* Left Image Styling */
.b2b-feature-main-img {
    width: 100%;
    border-radius: 24px; /* Curved corners as per Figma */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Right Content Styling */
.b2b-feature-side-heading {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.b2b-feature-side-desc {
    font-family: 'Outfit';
    color: #313030;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400;
}

/* List Items */
.b2b-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .b2b-feature-list li {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #000;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .b2b-feature-list i {
        color: #16A34A; /* Same as pricing cards */
        font-size: 20px;
    }

/* Button Styling */
.b2b-btn-gradient-feature {
    display: inline-block;
    background: var(--main-background-gradient);
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .b2b-btn-gradient-feature:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(31, 185, 112, 0.2);
        color: white;
    }

/* Responsive */
@media (max-width: 991px) {
    .b2b-feature-side-heading {
        font-size: 32px;
    }

    .b2b-feature-img-wrapper {
        margin-bottom: 40px;
    }

    .ps-lg-5 {
        padding-left: 0 !important;
    }
}

.b2b-partnership-work-section {
    background-color: rgba(27, 28, 87, 0.04) !important;
    padding: 60px 0;
    margin-top: 100px;
}

/* Main Heading & Desc */
.b2b-work-main-title {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 32px;
    font-weight: 500;
}

.b2b-work-main-desc {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 15px;
    max-width: 675px;
    margin: 10px auto 0;
}

.b2b-work-cards-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin-bottom: 30px;
}

.b2b-work-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 411px;
    height: 233px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.b2b-work-card-content {
    max-width: 85%;
}

.b2b-work-card-title {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 15px;
}

.b2b-work-card-desc {
    font-family: 'Outfit', sans-serif;
    color: #68799F;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
}

.b2b-work-number-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75px;
    height: 75px;
    background: var(--main-background-gradient);
    border-radius: 57px 0 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 15px;
}

    .b2b-work-number-shape span {
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
        position: relative;
        left: -10px;
        top: -5px;
    }

@media (max-width: 1100px) {
    .b2b-work-card {
        width: calc(50% - 15px);
        height: auto;
        min-height: 233px;
    }
}

@media (max-width: 768px) {
    .b2b-work-card {
        width: 100%;
        max-width: 100%;
        padding: 30px;
    }

    .b2b-work-number-shape {
        width: 70px;
        height: 70px;
    }

    .b2b-work-card-content {
        max-width: 100%;
    }

    .b2b-work-card-title {
        font-size: 20px;
    }

    .b2b-work-card-desc {
        font-size: 12px;
    }
}

@media (max-width:370px) {
    .b2b-work-card-desc {
        font-size: 12px;
        max-width: 175px;
    }
}

.b2b-workflow-section {
    width: 100%;
}

.b2b-workflow-content-part {
    padding-top: 60px;
    padding-bottom: 40px;
}

.b2b-workflow-title {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 28px;
    font-weight: 500;
}

/* White Strip for Logos */
.b2b-workflow-logo-strip {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
    margin-top: 15px;
}

.b2b-workflow-logos-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.b2bLogoSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.b2b-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .b2b-logo-item img {
        max-height: 75px;
        width: auto;
        object-fit: contain;
        transition: all 0.3s ease-in-out;
    }

        .b2b-logo-item img:hover {
            transform: scale(1.10);
        }

@media (max-width: 991px) {
    .b2bLogoSwiper {
        cursor: grab;
    }

        .b2bLogoSwiper:active {
            cursor: grabbing;
        }

        .b2bLogoSwiper .swiper-slide {
            width: auto !important;
        }

    .b2b-logo-item img {
        max-height: 55px;
        pointer-events: none;
    }
}

@media (min-width: 992px) {
    .b2bLogoSwiper {
        overflow: visible !important;
        cursor: default;
    }

    .b2b-workflow-logos-wrapper {
        display: flex !important;
        justify-content: space-between !important;
        transform: none !important;
        width: 100% !important;
    }

    .b2b-logo-item {
        width: auto !important;
        flex: 0 0 auto !important;
    }
}


.b2b-resources-section {
    background-color: transparent;
    font-family: 'Outfit', sans-serif;
    padding-top: 70px !important;
}

.b2b-res-main-title {
    color: #1B1C57;
    font-size: 32px;
    font-weight: 500;
}

.b2b-res-main-desc {
    color: #1B1C57;
    font-size: 15px;
    font-weight: 300;
}

/* Card Styling */
.b2b-res-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .b2b-res-card:hover {
        transform: translateY(-8px);
    }

.b2b-res-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

    .b2b-res-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
    }

.b2b-res-body {
    padding: 30px 27px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Badge Styling */
.b2b-res-badge {
    background-color: #F0FDF4;
    color: #16A34A;
    font-size: 11px;
    font-weight: 400;
    padding: 5px 25px;
    border-radius: 100px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 15px;
}

.b2b-res-card-title {
    color: #1B1C57;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 8px;
}

.b2b-res-card-desc {
    color: #1B1C57;
    font-size: 12.5px;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
    font-weight: 300;
}

.b2b-res-link-gradient {
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    background: linear-gradient(to right, #1FB970 0%, #105ECA 30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transition: opacity 0.3s;
}

    .b2b-res-link-gradient:hover {
        opacity: 0.8;
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .b2b-res-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .b2b-res-main-title {
        font-size: 28px;
    }

    .b2b-res-img-box {
        height: 200px;
    }
}

.b2b-developer-section {
    background-color: #204476;
    padding: 100px 0;
    color: #ffffff;
    overflow-x: hidden;
    margin-top: 60px;
}

/* Heading: Default Font */
.b2b-dev-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    /*    letter-spacing: 2px;*/
}

/* Paragraph: Poppins */
.b2b-dev-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 500px;
    font-weight: 200;
}

/* List Items: Poppins */
.b2b-dev-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .b2b-dev-list li {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 200;
    }

    .b2b-dev-list i {
        color: #1FB970; /* Green check icon color */
        font-size: 20px;
    }

/* Right Side Image */
.b2b-dev-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.b2b-dev-img {
    width: 115%;
    max-width: 800px;
    height: auto;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .b2b-dev-heading {
        font-size: 36px;
    }

    .b2b-dev-image-wrapper {
        margin-top: 20px;
    }
}

.b2b-faq-section {
    background-color: transparent;
    /*    padding: 50px 0;*/
    margin-top: 60px;
}

.b2b-faq-main-title {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 32px;
    font-weight: 500;
}

/* Accordion Wrapper */
.b2b-custom-accordion {
    border: none;
}

    .b2b-custom-accordion .accordion-item {
        border: 1px solid #E5E7EB;
        border-radius: 12px !important;
        margin-bottom: 15px;
        overflow: hidden;
        background: #ffffff;
    }

    /* Question Styling */
    .b2b-custom-accordion .accordion-button {
        font-family: 'Outfit', sans-serif;
        color: #1E3A5F;
        font-weight: 600;
        font-size: 16px;
        padding: 22px 25px;
        background-color: #ffffff;
        box-shadow: none;
        border: none;
    }

    .b2b-custom-accordion .accordion-body {
        font-family: 'Outfit', sans-serif;
        color: #4B5563;
        font-size: 14px;
        line-height: 1.6;
        padding: 0 25px 25px 25px;
        margin-top: 10px;
    }

    .b2b-custom-accordion .accordion-button::after {
        content: '+';
        background-image: none;
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        font-weight: 400;
        color: #9CA3AF;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .b2b-custom-accordion .accordion-button:not(.collapsed)::after {
        content: '-';
        color: #1FB970;
        transform: none;
    }

    .b2b-custom-accordion .accordion-button:focus {
        box-shadow: none;
        background-color: #ffffff;
        color: #1E3A5F;
    }

    .b2b-custom-accordion .accordion-button:not(.collapsed) {
        background-color: #ffffff;
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .b2b-faq-main-title {
        font-size: 26px;
    }

    .b2b-custom-accordion .accordion-button {
        font-size: 15px;
        padding: 18px;
    }
}

/* ====================== B2B Partnership Page Styles ====================== */

/* ====================== B2B Partnership Industries Page Styles ====================== */
.B2B-Indus-Core-Section {
    padding: 80px 0;
}

.b2b-hero-indus-title {
    font-size: 43px;
}

.core-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.core-badge {
    background: var(--main-background-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.core-main-title {
    font-size: 42px;
    color: #1a2b6d;
    font-weight: 800;
    margin-bottom: 10px;
}

.core-subtitle {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

.core-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.core-card {
    background: #ffffff;
    width: 350px;
    height: 441px;
    padding: 27px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f3f9;
}

    .core-card:hover {
        transform: translateY(-10px);
    }

.core-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    object-fit: contain;
}

.core-card-title {
    font-size: 24px;
    color: #1a2b6d;
    font-weight: 700;
    margin-bottom: 15px;
}

.core-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.core-features-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
}

    .core-features-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: #374151;
        margin-bottom: 12px;
        font-weight: 500;
    }

        .core-features-list li img {
            width: 18px;
            height: 18px;
        }

@media (max-width: 1200px) {
    .core-grid-container {
        gap: 20px;
    }

    .core-card {
        width: calc(50% - 10px);
        height: auto;
        min-height: 441px;
    }
}

@media (max-width: 850px) {
    .core-grid-container {
        gap: 20px;
    }

    .core-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 441px;
    }

    .core-main-title {
        font-size: 32px;
    }
}


.b2b-indus-solutions {
    padding: 80px 0;
    overflow-x: hidden;
}

.solutions-header,
.solutions-content-wrapper:nth-of-type(2),
.solutions-content-wrapper:nth-of-type(4) {
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 40px;
}

    .solutions-header::before,
    .solutions-content-wrapper:nth-of-type(2)::before,
    .solutions-content-wrapper:nth-of-type(4)::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background-color: rgba(27, 28, 87, 0.04);
        z-index: -1;
    }

.solutions-content-wrapper:nth-of-type(3) {
    background-color: transparent;
    padding: 60px 0;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0;
}

.solutions-badge {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.solutions-main-title {
    font-size: 36px;
    color: #1a2b6d;
    font-weight: 700;
    margin-bottom: 10px;
}

.solutions-subtitle {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.industry-title {
    font-size: 40px;
    color: #1a2b6d;
    font-weight: 800;
    margin-bottom: 15px;
}

.industry-desc {
    font-size: 16px;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.solutions-main-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}

.solution-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.02);
}

.solution-card, .small-card.border-gradient-blue {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: none;
}

    .solution-card::before, .small-card.border-gradient-blue::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #10b981, #3b82f6);
        border-radius: 16px 0 0 16px;
    }

.small-card.border-gradient-orange {
    background: linear-gradient(to right, #FFF7ED, #FFEDD5);
    border-left: 4px solid #FFB53D;
    border-radius: 16px;
}

    .small-card.border-gradient-orange p {
        color: #9a5400bd;
    }

.solutions-bottom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.bottom-card {
    flex: 1;
    min-width: 300px;
    padding: 25px 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-card.border-gradient-blue {
    background: #F1F5F9;
}

.small-card.border-gradient-orange {
    background: linear-gradient(to right, #FFF7ED, #FFEDD5);
    border-left: 4px solid #FFB53D;
}

.bottom-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #4b5563;
}

.orange-text {
    color: #9a3412;
}

.bottom-card-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0px;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .solution-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 15px;
        color: #374151;
        font-weight: 500;
    }

.solutions-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--main-background-gradient);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}

@media (max-width: 992px) {
    .industry-title {
        font-size: 32px;
    }

    .solution-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .solutions-main-title {
        font-size: 28px;
    }

    .bottom-card {
        flex: 1 1 100%;
    }
}

@media (max-width : 442px) {
    .solution-list li {
        font-size: 13px;
    }
}

/* ====================== B2B Partnership Industries Page Styles ====================== */

/* ====================== B2B Partnership Solutions Page Styles ====================== */

.b2b-hero-solutions-desc {
    font-size: 19px;
}

.b2b-hero-solutions-title {
    font-size: 41px;
}

.b2b-solutions-power-section {
    padding: 80px 0;
}

.b2b-solutions-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.b2b-solutions-badge {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.b2b-solutions-title {
    font-size: 38px;
    color: #1a2b6d;
    font-weight: 700;
    margin-bottom: 5px;
}

.b2b-solutions-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.b2b-solutions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.b2b-solutions-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    width: 473px;
    height: 448px;
    display: flex;
    flex-direction: column;
}

.b2b-solutions-main-icon {
    width: 48px;
    margin-bottom: 20px;
}

.b2b-solutions-card-title {
    font-size: 24px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 12px;
}

.b2b-solutions-card-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.b2b-solutions-benefit-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .b2b-solutions-benefit-head span {
        font-weight: 700;
        color: #1e293b;
        font-size: 15px;
    }

.b2b-solutions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .b2b-solutions-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        color: #475569;
        font-weight: 500;
    }

/* Corner Number Fix */
.b2b-solutions-number {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: var(--main-background-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    /* Corner shape */
    border-radius: 57px 0 0 0;
    padding-left: 10px;
    padding-top: 7px;
}

@media (max-width : 1199px) {
    .b2b-solutions-card {
        width: 100%;
    }
}


@media (max-width: 1024px) {
    .b2b-solutions-card {
        width: 100%;
        height: auto;
        min-height: 448px;
    }
}

@media (max-width: 600px) {
    .b2b-solutions-card {
        padding: 30px;
        width: 100%;
        height: auto;
    }

    .b2b-solutions-title {
        font-size: 28px;
    }
}

@media (max-width: 413px) {
    .b2b-hero-solutions-title {
        font-size: 38px;
    }
}

.b2b-solutions-process {
    padding: 70px 0;
    background-color: rgba(27, 28, 87, 0.04);
}

.b2b-solutions-process-no-bg {
    background-color: transparent;
}

.b2b-solutions-process-title {
    font-size: 32px;
    color: var(--main-text-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.b2b-solutions-process-subtitle {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.5;
}

.b2b-solutions-process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.b2b-solutions-process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    width: 316px;
    height: 202px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.b2b-solutions-process-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
}

.b2b-solutions-process-card-title {
    font-size: 19px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
}

.b2b-solutions-process-card-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.b2b-solutions-how-it-works {
    margin-top: 100px;
}

.b2b-solutions-steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.b2b-solutions-step {
    flex: 0 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.b2b-solutions-step-num {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.b2b-solutions-step-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

    .b2b-solutions-step-circle img {
        width: 35px;
    }

.b2b-solutions-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.b2b-solutions-step-desc {
    font-size: 11px;
    color: #64748b;
    max-width: 200px;
    line-height: 1.4;
}

.b2b-solutions-step-line {
    width: 128px;
    height: 2px;
    background: #0000002b;
    margin-top: 70px;
}

/* Responsive */
@media (max-width: 1024px) {
    .b2b-solutions-process-grid {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .b2b-solutions-process-grid {
        flex-direction: column;
        align-items: center;
    }

    .b2b-solutions-steps-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .b2b-solutions-step-line {
        display: none;
    }

    .b2b-solutions-process-card {
        width: 100%;
        /*        max-width: 316px;*/
    }
}

.b2b-solutions-cta {
    padding: 80px 0;
    background-color: #f8fafc;
}

    .b2b-solutions-cta .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

.b2b-solutions-cta-box {
    background: var(--main-background-gradient);
    border-radius: 24px;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.b2b-solutions-cta-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.b2b-solutions-cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.b2b-solutions-cta-btn {
    background-color: #ffffff;
    padding: 14px 57px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .b2b-solutions-cta-btn span {
        font-size: 16px;
        font-weight: 500;
        background-image: linear-gradient(90deg, #1FB970 0%, #105ECA 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        display: inline-block;
    }

    .b2b-solutions-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }

/* Responsive Logic */
@media (max-width: 768px) {
    .b2b-solutions-cta-box {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .b2b-solutions-cta-title {
        font-size: 28px;
    }

    .b2b-solutions-cta-desc {
        font-size: 14px;
    }

    .b2b-solutions-cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ====================== B2B Partnership Solutions Page Styles ====================== */
/* ====================== Partner Onboarding Process Page Styles ====================== */
.b2b-partner-onboarding-process {
    margin-top: 140px;
}

    .b2b-partner-onboarding-process .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

.header-section h1 {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 5px;
}

.header-section p {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 60px 0;
    gap: 10px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.step-num {
    font-family: 'Outfit', sans-serif;
    color: #64748B;
    font-size: 14px;
    margin-bottom: 8px;
}

.step-name {
    font-family: 'Outfit', sans-serif;
    color: #64748B;
    font-size: 14px;
    margin-top: 12px;
    font-weight: 500;
}

.step-item.active .step-name {
    color: #1E293B;
}

.step-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item.active .step-icon-wrapper::before,
.step-item.active .step-icon-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    background: linear-gradient(180deg, #01CD74 0%, #105ECA 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
}

.step-item.active .step-icon-wrapper::before {
    width: 100px;
    height: 100px;
}

.step-item.active .step-icon-wrapper::after {
    width: 85px;
    height: 85px;
}

.inner-circle {
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-item.active .inner-circle {
    border: none;
    background: linear-gradient(180deg, #01CD74 0%, #105ECA 100%);
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.partner-process-step-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    pointer-events: none;
}

.step-item.active .partner-process-step-icon {
    filter: brightness(0) invert(1);
}

.step-line {
    width: 100px;
    height: 2px;
    background: #0000002b;
    margin-bottom: 5px;
}

.wizard-card {
    border: 1px solid rgb(217 217 217 / 50%);
    border-radius: 24px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.wizard-header h2 {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-weight: 500;
    margin-bottom: 5px;
}

.wizard-header p {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
}

.partner-type-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.partner-box {
    width: 313px;
    height: 250px;
    background: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .partner-box.type-selected {
        border: 1px solid #01CD74;
    }

.selection-tick {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    background: #01CD74;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.partner-box.type-selected .selection-tick {
    display: flex;
}

.box-icon-container {
    width: 75px;
    height: 67px;
    background: #F0FDF4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .box-icon-container img {
        width: 40px;
        height: 41px;
        object-fit: contain;
        pointer-events: none;
    }

.partner-box h3 {
    font-family: 'Outfit', sans-serif;
    color: #1B1C57;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.sub-heading {
    font-family: 'Outfit', sans-serif;
    color: #68799F;
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: 3px;
}

.partner-box p {
    font-family: 'Outfit', sans-serif;
    color: #68799F;
    font-size: 10px;
    line-height: 1.9;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
}

.back-link {
    font-family: 'Outfit', sans-serif;
    color: #5E5C5C;
    font-size: 15px;
    border: none;
    background-color: transparent;
}

.continue-btn {
    background: var(--main-background-gradient);
    color: white;
    border: none;
    padding: 14px 80px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    cursor: pointer;
}


/* Step Content & Completed State */
.wizard-step-content {
    display: none;
}

    .wizard-step-content.active {
        display: block;
    }

.step-item.completed .inner-circle img {
    content: url('../icons/step-complete-icon.png') !important;
    filter: none !important;
}

.step-item.completed .inner-circle {
    background: linear-gradient(180deg, #01CD74 0%, #105ECA 100%);
    border: none;
}

.step-item.completed .step-icon-wrapper::before,
.step-item.completed .step-icon-wrapper::after {
    display: none;
}

.organization-heading h1,
.organization-heading p {
    text-align: start !important;
}

.partner-organization-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.partner-org-form-row {
    display: flex;
    gap: 20px;
}

.partner-org-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

    .partner-org-form-group label {
        color: #5E5C5C;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

.partner-org-input {
    background: transparent !important;
    border: 1px solid rgba(49, 48, 48, 0.3) !important; /* 30% Transparency */
    border-radius: 10px;
    padding: 14px 15px;
    font-size: 14px;
    font-family: "Outfit";
    color: #5E5C5C;
    font-weight: 400;
    outline: none;
    transition: border 0.3s ease;
    width: 100%;
    appearance: none; /* For Select Arrow */
}

    .partner-org-input:focus {
        border-color: #01CD74 !important;
    }

/* Custom Dropdown Arrow */
.partner-org-custom-select::after {
    content: "\ea4e";
    font-family: 'remixicon';
    position: absolute;
    right: 15px;
    top: 39px;
    font-size: 20px;
    color: #64748B;
    pointer-events: none;
}

.partner-org-input-hint {
    font-size: 11px;
    color: #64748B;
    margin-top: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .partner-org-form-row {
        flex-direction: column;
        gap: 25px;
    }

    .partner-org-custom-select::after {
        top: 37px;
    }

    .partner-org-input {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .wizard-header h2 {
        font-size: 20px;
    }

    .partner-organization-form {
        gap: 20px;
    }
}

.compliance-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    font-family: 'Outfit', sans-serif;
}

.compliance-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.compliance-check {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

    .compliance-check:checked {
        background-color: #01CD74;
        border-color: #01CD74;
    }

        .compliance-check:checked::after {
            content: "\eb7b"; /* Remix check icon */
            font-family: 'remixicon';
            color: white;
            font-size: 14px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

.compliance-text {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.8;
}

    .compliance-text strong {
        color: #000;
    }

.important-notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(90deg, #FFF7ED 0%, #FFEDD5 100%);
    margin-top: 10px;
    border: 1px solid #FFEDD5;
}

.notice-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #FFEDD5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .notice-icon-wrapper img {
        width: 20px;
        height: 20px;
        pointer-events: none;
    }

.notice-title {
    display: block;
    font-weight: 700;
    color: #9A5400;
    font-size: 14px;
    margin-bottom: 4px;
}

.notice-content p {
    font-size: 12px;
    color: #9A3412;
    margin: 0;
    line-height: 1.8;
    text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
    .compliance-row {
        padding: 15px;
    }

    .important-notice-box {
        flex-direction: row;
        align-items: flex-start;
    }
}


@media (max-width: 1024px) {
    .partner-type-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .partner-box {
        width: calc(50% - 20px);
        height: auto;
        min-height: 250px;
    }
}


@media (max-width: 991px) {
    .b2b-partner-onboarding-process {
        margin-top: 120px;
        padding: 0 15px;
    }

    .steps-container {
        gap: 5px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 20px 10px 40px 10px;
    }

    .step-item {
        min-width: 100px;
    }

    .step-line {
        min-width: 50px;
        width: 50px;
    }

    .wizard-card {
        padding: 25px 15px;
    }
}

@media (max-width: 767px) {
    .header-section h1 {
        font-size: 24px;
    }

    .partner-type-grid {
        flex-direction: column;
        align-items: center;
    }

    .partner-box {
        width: 100%;
        max-width: 1000px;
    }

    .wizard-footer {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .continue-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .inner-circle {
        width: 55px;
        height: 55px;
    }

    .step-item.active .step-icon-wrapper::before {
        width: 80px;
        height: 80px;
    }

    .step-item.active .step-icon-wrapper::after {
        width: 68px;
        height: 68px;
    }

    .partner-process-step-icon {
        width: 22px;
        height: 22px;
    }
}
/* ====================== Partner Onboarding Process Page Styles ====================== */

/* ====================== Seperate Testimonials Page Styles ====================== */
.seperate-testimonials-section {
    padding-top: 120px;
    overflow: hidden;
}

.seperate-testimonials-header {
    margin-bottom: 50px;
    text-align: left;
}

.seperate-testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.seperate-testimonials-subtitle {
    font-size: 18px;
    color: #64748b;
}

.seperate-testimonials-slider-wrapper {
    display: flex;
    overflow: hidden;
}

.seperate-testimonials-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.seperate-testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px 30px 30px;
    width: 349px;
    height: 314px;
    min-width: 349px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 35px;
}

.seperate-testimonial-card-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 0px;
    border: 4px solid #f1f4f9;
    object-fit: cover;
}

.seperate-testimonial-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 20px;
}

.seperate-testimonial-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.seperate-testimonial-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0px;
}

.seperate-testimonial-card-location {
    font-size: 12px;
    color: #94a3b8;
}

.seperate-testimonial-card-stars {
    color: #ffb400;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.seperate-testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.seperate-testimonials-control-btn {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .seperate-testimonials-control-btn:hover {
        background-color: var(--warning-color);
        color: #ffffff;
    }

@media (max-width: 768px) {
    .seperate-testimonial-card {
        width: 100%;
        min-width: 100%;
        height: auto;
    }

    .seperate-testimonials-grid {
        gap: 15px;
    }
}
/* ====================== Seperate Testimonials Page Styles ====================== */

/* ====================== Evisa Page Styles ====================== */
.e-visa-section {
    padding-bottom: 0px;
}

.e-visa-sub-nav {
    position: sticky;
    top: 70px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 998;
    padding: 12px 0;
}

.e-visa-nav-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.e-visa-nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

    .e-visa-nav-links a {
        text-decoration: none;
        color: #6b7280;
        font-size: 14px;
        font-weight: 600;
        padding: 15px 0;
        transition: color 0.2s ease;
        position: relative;
        display: inline-block;
    }

        .e-visa-nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -12.5px;
            width: 0;
            height: 5px;
            background-color: #00c08b;
            transition: width 0.3s ease;
        }

        .e-visa-nav-links a.active,
        .e-visa-nav-links a:hover {
            color: #111827;
        }

            .e-visa-nav-links a.active::after,
            .e-visa-nav-links a:hover::after {
                width: 100%;
            }

.e-visa-nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.e-visa-nav-info-col {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
}

.e-visa-nav-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.e-visa-nav-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
    justify-content: flex-end;
    margin-top: 2px;
}

    .e-visa-nav-stars i {
        color: #00c08b;
        font-size: 14px;
    }

.e-visa-nav-apply-btn {
    background: var(--main-background-gradient);
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .e-visa-nav-apply-btn:hover {
        opacity: 0.9;
    }

.e-visa-main-flex-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 100px;
    align-items: flex-start;
}

.e-visa-content-body {
    flex: 1;
}

.e-visa-main-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    margin-top: 40px;
    color: #00234a;
    line-height: 1.2;
    text-align: center;
}

.e-visa-intro-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid #e1efec;
}

    .e-visa-intro-card p {
        font-weight: 500;
        font-size: 26px;
        margin-bottom: 15px;
        color: #00234a;
    }

    .e-visa-intro-card ul {
        padding-left: 1.4rem;
    }

    .e-visa-intro-card li {
        margin-bottom: 12px;
        font-size: 15px;
        color: #4b5563;
        line-height: 1.5;
        list-style: circle;
    }

.e-visa-section-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #00234a;
}

.e-visa-section-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.e-visa-section-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.e-visa-section-content li {
    margin-bottom: 10px;
    color: #4b5563;
    list-style: circle;
}

.e-visa-update-text {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.e-visa-featured-image img {
    width: 85%;
    border-radius: 16px;
    margin: 10px 0 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

@media (max-width: 767px) {
    .e-visa-featured-image img {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .e-visa-sub-nav {
        padding: 0;
    }

    .e-visa-nav-flex-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 15px;
        gap: 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        align-items: center;
    }

        .e-visa-nav-flex-container::-webkit-scrollbar {
            display: none;
        }

    .e-visa-nav-links {
        display: flex;
        gap: 25px;
        flex-shrink: 0;
    }

        .e-visa-nav-links a {
            white-space: nowrap;
        }

    .e-visa-nav-right-group {
        display: flex;
        flex-shrink: 0;
        gap: 15px;
        align-items: center;
    }

    .e-visa-nav-info-col {
        display: flex;
        min-width: max-content;
    }
}

@media (max-width: 1024px) {
    .e-visa-main-flex-wrapper {
        flex-direction: column;
    }

    .e-visa-sticky-sidebar {
        width: 100%;
        position: static;
    }

    .e-visa-main-title {
        font-size: 28px;
    }
}


.e-visa-ask-ae-visa {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.e-visa-ask-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.e-visa-ask-left {
    flex: 0 0 350px;
}

    .e-visa-ask-left h2 {
        font-size: 42px;
        font-weight: 800;
        color: #00234a;
        margin-bottom: 15px;
    }

    .e-visa-ask-left p {
        font-size: 18px;
        color: #4b5563;
        margin-bottom: 30px;
    }

.e-visa-ask-submit-btn {
    background: var(--main-background-gradient);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .e-visa-ask-submit-btn:hover {
        transform: translateY(-2px);
        opacity: 0.9;
        color: #ffffff;
    }

.e-visa-ask-right {
    flex: 1;
}

.e-visa-question-card {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
}

    .e-visa-question-card:last-child {
        border-bottom: none;
    }

.e-visa-user-info {
    margin-bottom: 10px;
}

    .e-visa-user-info strong {
        font-size: 16px;
        color: #00234a;
        display: block;
    }

    .e-visa-user-info span {
        font-size: 13px;
        color: #9ca3af;
    }

.e-visa-user-query {
    font-size: 16px;
    color: #111827;
    line-height: 1.6;
    margin-bottom: 20px;
}

.e-visa-admin-reply {
    padding-left: 20px;
    border-left: 3px solid #00c08b;
}

.e-visa-admin-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

    .e-visa-admin-header img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .e-visa-admin-header strong {
        font-size: 14px;
        color: #00234a;
    }

    .e-visa-admin-header span {
        font-size: 13px;
        color: #9ca3af;
    }

.e-visa-admin-reply p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .e-visa-ask-flex {
        flex-direction: column;
        gap: 40px;
    }

    .e-visa-ask-left {
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

        .e-visa-ask-left h2 {
            font-size: 32px;
        }

    .e-visa-ask-right {
        width: 100%;
    }
}

.e-visa-review-ae-visa {
    padding: 20px 0;
}

.e-visa-review-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.e-visa-rating-summary-card, .e-visa-review-form-card, .e-visa-feedback-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
}

.e-visa-review-ae-visa h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 25px;
    font-weight: 700;
}

.e-visa-big-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

    .e-visa-big-rating span {
        font-size: 42px;
        font-weight: 800;
        color: #111827;
    }

.e-visa-stars i {
    color: #facc15;
    font-size: 20px;
}

.e-visa-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
}

.e-visa-bar-bg {
    flex: 1;
    height: 8px;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
}

.e-visa-bar-fill {
    height: 100%;
    background: var(--main-background-gradient);
    border-radius: 10px;
}

/* Form Styling */
.e-visa-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.e-visa-form-group {
    margin-bottom: 20px;
}

    .e-visa-form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 8px;
    }

.e-visa-input-stars i {
    color: #ffc107;
    font-size: 22px;
    cursor: pointer;
}

.e-visa-form-group input, .e-visa-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.e-visa-form-group textarea {
    height: 100px;
    resize: none;
}

.e-visa-submit-review-btn {
    background: var(--main-background-gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
}

/* Feedback Cards */
.e-visa-feedbacks-section h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 26px;
}

.e-visa-feedback-card {
    margin-bottom: 20px;
    border: 1px solid #f3f4f6;
}

.e-visa-feedback-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .e-visa-feedback-header strong {
        color: #111827;
        font-size: 16px;
    }

    .e-visa-feedback-header span {
        color: #9ca3af;
        font-size: 13px;
    }

.e-visa-stars-small {
    margin-bottom: 15px;
}

    .e-visa-stars-small i {
        color: #facc15;
        font-size: 14px;
    }

.e-visa-feedback-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .e-visa-review-top-grid, .e-visa-form-row {
        grid-template-columns: 1fr;
    }
}


.e-visa-how-to-apply-ae-visa {
    padding: 40px 0;
    font-family: inherit;
}

.e-visa-sub-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #00234a;
    margin-bottom: 50px;
}

/* Steps Styling */
.e-visa-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.e-visa-step-card {
    background: var(--main-background-gradient);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .e-visa-step-card:hover {
        transform: translateY(-5px);
    }

.e-visa-step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color-light);
    display: block;
    margin-bottom: 20px;
}

.e-visa-step-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color-light);
}

.e-visa-step-card p {
    font-size: 14px;
    color: var(--text-color-light);
    line-height: 1.6;
}

.e-visa-center-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.e-visa-main-apply-btn {
    background: var(--main-background-gradient);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
}

/* Destinations Styling */
.e-visa-destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

.e-visa-dest-card {
    border: 1px solid #e2e8f0;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .e-visa-dest-card:hover {
        border-color: #00c08b;
        background: #f0fdf9;
    }

.e-visa-dest-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .e-visa-dest-info img {
        width: 28px;
        height: 20px;
        border-radius: 2px;
        object-fit: cover;
    }

/* Articles Styling */
.e-visa-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.e-visa-article-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
}

    .e-visa-article-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.e-visa-article-content {
    padding: 20px;
}

.e-visa-tag {
    background: #00b67a30;
    color: #00b67a;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}

.e-visa-article-content h4 {
    font-size: 16px;
    color: #00234a;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .e-visa-steps-grid, .e-visa-destinations-grid, .e-visa-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .e-visa-steps-grid, .e-visa-destinations-grid, .e-visa-articles-grid {
        grid-template-columns: 1fr;
    }
}

.e-visa-faq-ae-visa {
    max-width: 1100px;
    margin: 20px auto;
    /*    padding: 0 15px;*/
    width: 100%;
}

.e-visa-faq-header h2 {
    color: #00234a;
}

    .e-visa-faq-header h2 .text-green {
        color: #00c08b;
    }

.e-visa-faq-item {
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
}

.e-visa-faq-accordion .accordion-button {
    padding: 8px 30px;
    font-weight: 700;
    color: #111827;
    background-color: #ffffff;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
}

    .e-visa-faq-accordion .accordion-button::after {
        margin-left: auto;
        width: 35px;
        height: 35px;
        background-color: #f3f4f6;
        background-size: 14px;
        background-position: center;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
        flex-shrink: 0;
    }

    /* Open state styles */
    .e-visa-faq-accordion .accordion-button:not(.collapsed) {
        color: #00c08b;
        background-color: #ffffff;
    }

        .e-visa-faq-accordion .accordion-button:not(.collapsed)::after {
            background-color: #00c08b;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(-180deg);
        }

.e-visa-faq-accordion .accordion-body {
    padding: 20px 30px 20px 30px;
    color: #6b7280;
    line-height: 1.8;
    font-size: 16px;
    background-color: #ffffff;
}
/* ====================== Evisa Page Styles ====================== */

/* ====================== Visas Page Styles ====================== */
.ae-jp-hero-section {
    padding: 150px 0 180px 0;
    width: 100%;
    overflow: hidden;
}

.ae-jp-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ae-jp-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ae-jp-hero-focus {
    color: #00c08b;
    background: rgba(0, 192, 139, 0.1);
    padding: 2px 15px;
    border-radius: 12px;
    display: inline-block;
}

.ae-jp-hero-subtitle {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ae-jp-hero-form-wrapper {
    width: 100%;
    /*    min-height: 10px;*/
    margin-bottom: 30px;
}

.ae-jp-trust-badge-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ae-jp-trust-pill {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 50px; /* Capsule shape */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    gap: 12px;
}

.ae-jp-trust-stars-group {
    display: flex;
    gap: 3px;
}

/* Trustpilot Style Green Star Boxes */
.ae-jp-star-box {
    background: #00b67a;
    color: #ffffff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 2px;
}

.ae-jp-trust-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.ae-jp-trust-brand {
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.3px;
}

.ae-jp-trust-rating {
    color: #4b5563;
    font-weight: 500;
}

.ae-jp-trust-divider {
    width: 1px;
    height: 14px;
    background: #e5e7eb;
}

.ae-jp-trust-status {
    color: #00b67a;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Hover Effect */
.ae-jp-trust-pill:hover {
    border-color: #00c08b;
    box-shadow: 0 4px 20px rgba(0, 192, 139, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

@media (max-width: 576px) {
    .ae-jp-trust-pill {
        padding: 10px 12px;
        gap: 8px;
        width: fit-content;
        margin: 0 auto;
    }

    .ae-jp-star-box {
        font-size: 12px;
    }

    .ae-jp-trust-content {
        font-size: 11px;
        gap: 4px;
    }

    .ae-jp-trust-divider {
        height: 10px;
        margin: 0 2px;
    }

    .ae-jp-trust-brand {
        font-weight: 700;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ae-jp-hero-section {
        padding: 120px 0 40px 0;
    }

    .ae-jp-hero-title {
        font-size: 34px;
    }

    .ae-jp-hero-subtitle {
        font-size: 16px;
    }
}

.ae-jp-process-section {
    padding: 80px 0;
}

.ae-jp-process-title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.ae-jp-process-subtitle {
    color: #6b7280;
    font-size: 16px;
}

/* Neumorphic Card Style */
.ae-jp-soft-card {
    background: #f3f7f6;
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    /* Soft UI Shadows */
    box-shadow: 20px 20px 60px #cfd3d2, -20px -20px 60px #ffffff;
    /*    border: 1px solid rgba(255, 255, 255, 0.5);*/
    transition: all 0.4s ease;
}

    .ae-jp-soft-card:hover {
        transform: translateY(-5px);
        box-shadow: inset 10px 10px 20px #cfd3d2, inset -10px -10px 20px #ffffff;
        cursor: default;
    }

.ae-jp-card-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00c08b;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ae-jp-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d233e;
    margin-bottom: 15px;
}

.ae-jp-card-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Bottom Rail Styling */
.ae-jp-timeline-rail {
    position: relative;
    width: 80%;
    margin: 0 auto;
    height: 40px;
}

.ae-jp-rail-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e5e4;
    border-radius: 10px;
}

.ae-jp-rail-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 12px;
}

    .ae-jp-rail-dots span {
        width: 16px;
        height: 16px;
        background: #00c08b;
        border-radius: 50%;
        border: 3px solid #f3f7f6;
        box-shadow: 4px 4px 10px #cfd3d2;
    }

        .ae-jp-rail-dots span.active {
            background: #00c08b;
            box-shadow: 0 0 15px rgba(0, 192, 139, 0.4);
        }

/* Button */
.ae-jp-apply-btn {
    background: var(--main-background-gradient);
    color: white;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 10px 10px 20px #cfd3d2, -10px -10px 20px #ffffff;
    border: none;
    transition: all 0.3s;
}

    .ae-jp-apply-btn:hover {
        background: var(--main-background-gradient) !important;
        color: white;
        transform: scale(1.05);
    }

@media (max-width: 991px) {
    .ae-jp-soft-card {
        margin-bottom: 20px;
    }
}


/* --- Japan Visa Type Section Styles --- */
.ae-jp-visa-type-section {
    padding: 80px 0;
}

.ae-jp-main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0d233e;
    letter-spacing: -0.5px;
}

/* Sidebar Navigation */
.ae-jp-side-tabs {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #f3f4f6;
    position: sticky;
    top: 100px;
}

.ae-jp-tab-btn {
    background: none;
    border: none;
    text-align: left;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin-left: -2px; /* To overlap the parent border */
    outline: none;
}

    .ae-jp-tab-btn i {
        font-size: 18px;
        opacity: 0.5;
        transition: transform 0.3s ease;
    }

    .ae-jp-tab-btn.active {
        color: #00c08b;
        border-left: 3px solid #00c08b;
        background-color: #f0fdf4;
        font-weight: 500;
    }

        .ae-jp-tab-btn.active i {
            opacity: 1;
            transform: translateX(3px);
        }

    .ae-jp-tab-btn:hover:not(.active) {
        background-color: #f9fafb;
        color: #111827;
    }

/* Content Area Styling */
.ae-jp-visa-content {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ae-jp-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.ae-jp-info-box p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Documents Grid: Heading over Paragraph */
.ae-jp-docs-section {
    margin-top: 30px;
}

.ae-jp-docs-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.ae-jp-docs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.ae-jp-doc-item {
    padding-left: 30px;
    position: relative;
}

    /* Custom Bullet Point */
    .ae-jp-doc-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 12px;
        height: 12px;
        background-color: #00c08b;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 192, 139, 0.3);
    }

    .ae-jp-doc-item strong {
        display: block;
        font-size: 17px;
        color: #111827;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .ae-jp-doc-item p {
        font-size: 15px;
        color: #6b7280;
        margin: 0;
        line-height: 1.6;
    }

/* Global Apply Button for Section */
.ae-jp-apply-btn-main {
    background: var(--main-background-gradient);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 192, 139, 0.15);
}

    .ae-jp-apply-btn-main:hover {
        background-color: #00a87a;
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(0, 192, 139, 0.25);
        color: #ffffff;
    }

/* Responsive Handling */
@media (max-width: 991px) {
    .ae-jp-side-tabs {
        flex-direction: row;
        overflow-x: auto;
        border-left: none;
        border-bottom: 2px solid #f3f4f6;
        margin-bottom: 35px;
        position: static;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

        .ae-jp-side-tabs::-webkit-scrollbar {
            display: none; /* Hide scrollbar for clean look */
        }

    .ae-jp-tab-btn {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 15px 25px;
        margin-left: 0;
    }

        .ae-jp-tab-btn.active {
            border-left: none;
            border-bottom: 3px solid #00c08b;
        }

        .ae-jp-tab-btn i {
            display: none; /* Icons hide on mobile tabs */
        }
}

@media (max-width: 768px) {
    .ae-jp-main-heading {
        font-size: 28px;
    }

    .ae-jp-content-title {
        font-size: 24px;
    }
}


/* --- Japan Visa Policy Section --- */
.ae-jp-visa-policy-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Image Container & Effects */
.ae-jp-policy-image-container {
    position: relative;
    /*    padding: 20px;*/
}

.ae-jp-policy-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Decorative Green Wave Shape behind image */
.ae-jp-policy-shape {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-1.12,65.62 C181.71,189.96 331.26,-71.53 502.82,103.12 L500.00,150.00 L0.00,150.00 Z' style='stroke: none; fill: %2300c08b22;'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    transform: translateY(-50%);
}

/* Content Styling */
.ae-jp-policy-heading {
    font-size: 38px;
    font-weight: 700;
    color: #0d233e;
    text-align: left;
}

.ae-jp-policy-text-wrapper p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Specific styling for mobile */
@media (max-width: 991px) {
    .ae-jp-visa-policy-section {
        padding: 50px 0;
    }

    .ae-jp-policy-heading {
        font-size: 30px;
        text-align: center;
    }

    .ae-jp-policy-text-wrapper p {
        font-size: 15px;
        text-align: left;
    }

    .ae-jp-policy-image-container {
        margin-top: 0px;
    }

    .ae-jp-policy-img {
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .ae-jp-policy-shape {
        display: none;
    }
}


/* --- Japan Visa Prices Section --- */
.ae-jp-prices-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.ae-jp-prices-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #0d233e;
    margin-bottom: 10px;
}

.ae-jp-prices-sub-text {
    color: #64748b;
    font-size: 18px;
}

/* Card Container */
.ae-jp-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

    .ae-jp-price-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
        border-color: #00c08b;
    }

    /* Featured (Popular) Card Styling */
    .ae-jp-price-card.featured {
        border: 2px solid #00c08b;
        background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    }

.ae-jp-price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-background-gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ae-jp-price-header {
    display: flex;
    text-align: start;
    flex-direction: column;
    align-items: start;
}

    /* Header Area */
    .ae-jp-price-header h3 {
        font-size: 28px;
        font-weight: 700;
        color: #0d233e;
        margin-bottom: 20px;
    }

.ae-jp-amount {
    margin-bottom: 30px;
    display: flex;
    align-items: start;
    flex-direction: column;
    /*    gap: 5px;*/
}

    .ae-jp-amount .currency {
        font-size: 16px;
        color: #64748b;
        margin-right: 5px;
    }

    .ae-jp-amount .price {
        font-size: 45px;
        font-weight: 800;
        color: #00c08b;
        display: inline-block;
    }

/* List Features */
.ae-jp-price-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    flex-grow: 1;
}

    .ae-jp-price-list li {
        font-size: 15px;
        color: #475569;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .ae-jp-price-list li i {
            color: #00c08b;
            font-size: 20px;
        }

/* Button Styling */
.ae-jp-price-btn {
    width: 100%;
    background: var(--main-background-gradient);
    color: white;
    padding: 15px;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .ae-jp-price-btn:hover {
        background-color: #00a87a;
        color: white;
        box-shadow: 0 10px 15px -3px rgba(0, 192, 139, 0.3);
    }

/* Mobile Responsive */
@media (max-width: 991px) {
    .ae-jp-prices-section {
        padding: 60px 0;
    }

    .ae-jp-prices-main-title {
        font-size: 32px;
    }
}


.ae-jp-why-choose-section {
    background-color: #ffffff;
    padding: 120px 0;
}

.ae-jp-tag {
    color: #00c08b;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ae-jp-why-title {
    font-size: 44px;
    font-weight: 800;
    color: #0d233e;
    line-height: 1.2;
}

.ae-jp-why-desc {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
}

/* Stats Section on Left */
.ae-jp-why-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.ae-jp-stat-item h4 {
    font-size: 28px;
    font-weight: 800;
    color: #00c08b;
    margin: 0;
}

.ae-jp-stat-item span {
    font-size: 14px;
    color: #64748b;
}

/* Comparison Card Design */
.ae-jp-compare-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(13, 35, 62, 0.08);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.ae-jp-compare-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: #f8fafc;
    padding: 25px 30px;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.ae-jp-compare-label {
    font-weight: 700;
    color: #0d233e;
    text-transform: uppercase;
    font-size: 12px;
}

.ae-jp-compare-self {
    font-size: 13px;
    color: #454647;
    text-align: center;
    font-weight: 600;
}

.ae-jp-compare-logo {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 4px;
}

.ae-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Rows Styling */
.ae-jp-compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px 30px;
    align-items: center;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.3s;
}

    .ae-jp-compare-row:hover {
        background: #fcfdfd;
    }

.ae-jp-feature {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
}

.ae-jp-val {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .ae-jp-val i {
        font-size: 22px;
    }

    .ae-jp-val.self i {
        color: #454647; /* Neutral grey for X */
    }

    .ae-jp-val.brand {
        background: #f0fdf4;
        height: 100%;
        margin: -20px 0; /* To fill row height */
        padding: 20px 0;
        border-left: 2px solid #00c08b33;
        border-right: 2px solid #00c08b33;
    }

        .ae-jp-val.brand i {
            color: #00c08b;
            background: white;
            border-radius: 50%;
            padding: 2px 7px;
            box-shadow: 0 4px 10px rgba(0, 192, 139, 0.2);
        }

/* Responsive */
@media (max-width: 991px) {
    .ae-jp-why-choose-section {
        padding: 60px 0;
    }

    .ae-jp-why-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }

    .ae-jp-why-title {
        font-size: 32px;
    }

    .ae-jp-compare-header, .ae-jp-compare-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 15px;
    }

    .ae-jp-feature {
        font-size: 13px;
    }
}



.ae-jp-stats-counter-section {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 60px 0;
}

.ae-jp-stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.ae-jp-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 180px;
    transition: transform 0.3s ease;
}

    .ae-jp-stat-card:hover {
        transform: translateY(-5px);
    }

.ae-jp-stat-icon {
    width: 45px;
    height: 45px;
    background-color: #f0fdf4;
    color: #00c08b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.ae-jp-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #0d233e;
    margin: 0;
    line-height: 1.1;
}

.ae-jp-stat-label {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    white-space: nowrap;
}

/* Trustpilot Highlight */
.ae-jp-trust-special {
    background: #f8fafc;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    justify-content: center;
}

.ae-jp-trust-stars {
    color: #00b67a; /* Official Trustpilot Green */
    font-size: 18px;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .ae-jp-stats-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ae-jp-stats-counter-section {
        padding: 40px 0;
    }

    .ae-jp-stat-card {
        min-width: 140px;
        flex-direction: column;
        text-align: center;
    }

    .ae-jp-stat-number {
        font-size: 24px;
    }
}

/* ====================== Visas Page Styles ====================== */

/* ====================== My Account Page Styles ====================== */

.ae-visa-my-account-wrapper {
    padding: 120px 0px 50px 0px;
}

.ae-visa-my-account-card {
    display: block;
    text-decoration: none !important;
    background: #ffffff;
    border: 1px solid #f1f4f8;
    border-radius: 20px;
    padding: 35px 28px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

    /* Unique Hover Effect: Left Accent Line */
    .ae-visa-my-account-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 150px;
        background: #00c08b;
        transition: all 0.3s ease;
        border-radius: 0 4px 4px 0;
    }

.coming-soon-acc-account::before{
    background: gray;
}

.ae-visa-my-account-card:hover {
    box-shadow: 0 20px 40px rgba(0, 192, 139, 0.08);
    transform: translateY(-6px);
    border-color: #e2e8f0;
}

/*        .ae-visa-my-account-card:hover::before {
            height: 150px;
        }*/

.ae-visa-my-account-icon {
    font-size: 26px;
    color: #475569;
    margin-bottom: 24px;
    background: #f8fafc;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s ease;
}

/* Icon unique jump effect */
.ae-visa-my-account-card:hover .ae-visa-my-account-icon {
    background: #00c08b;
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

.ae-visa-my-account-info h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.ae-visa-my-account-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}


.ae-visa-my-account-card::after {
    content: '\ea6e';
    font-family: 'remixicon';
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 18px;
    color: #00c08b;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.ae-visa-my-account-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .ae-visa-my-account-card {
        padding: 20px;
    }
}

/* ====================== My Account Page Styles ====================== */

/* ====================== My Account Personal Details Page Styles ====================== */

.ae-visa-my-acc-personal-details-wrapper {
    padding: 120px 0px 50px 0px;
    /*    background-color: #f8fafc;*/
    min-height: 80vh;
}

.ae-visa-my-acc-personal-details-greeting {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    text-align: left;
}

.ae-visa-my-acc-personal-details-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.ae-visa-my-acc-personal-details-header {
    margin-bottom: 35px;
}

.ae-visa-my-acc-personal-details-back {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    color: #00c08b;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.ae-visa-my-acc-personal-details-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.ae-visa-my-acc-personal-details-group {
    margin-bottom: 25px;
}

    .ae-visa-my-acc-personal-details-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: #475569;
        margin-bottom: 8px;
    }

.ae-visa-my-acc-personal-details-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

    .ae-visa-my-acc-personal-details-input-wrapper i:not(.dropdown-arrow) {
        position: absolute;
        left: 16px;
        color: #94a3b8;
        font-size: 18px;
    }

/* Dropdown Arrow Style */
.dropdown-arrow {
    position: absolute;
    right: 16px;
    color: #94a3b8;
    pointer-events: none;
}

.ae-visa-my-acc-personal-details-input-wrapper input,
.ae-visa-my-acc-personal-details-input-wrapper select {
    width: 100%;
    padding: 14px 40px 14px 45px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    background-color: #fcfdfe;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
}

    .ae-visa-my-acc-personal-details-input-wrapper input:focus,
    .ae-visa-my-acc-personal-details-input-wrapper select:focus {
        border-color: #00c08b;
        background-color: #ffffff;
        box-shadow: 0 0 0 4px rgba(0, 192, 139, 0.1);
    }

.ae-visa-my-acc-personal-details-btn {
    background: #00c08b;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

    .ae-visa-my-acc-personal-details-btn:hover {
        background: #00a87a;
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 192, 139, 0.2);
    }

@media (max-width: 576px) {
    .ae-visa-my-acc-personal-details-card {
        padding: 25px 20px;
    }
}

.password-toggle {
    position: absolute;
    right: 16px;
    left: auto !important;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s ease;
}

    .password-toggle:hover {
        color: #00c08b;
    }


.ae-visa-my-acc-personal-details-input-wrapper input[type="password"] {
    padding-right: 45px;
}

/* ====================== My Account Personal Details Page Styles ====================== */

/* ====================== My Application Page Styles ====================== */

.ae-visa-my-applications-wrapper {
    padding-top: 120px;
    padding-bottom: 30px;
}

.ae-visa-my-applications-filter-card,
.ae-visa-my-applications-main-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ae-visa-my-applications-filter-card {
    padding: 25px;
}

.ae-visa-my-applications-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
}

.ae-visa-my-applications-input {
    height: 45px;
    width: 100%;
    padding: 0 15px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

/* Custom Dropdown Styling */
.ae-visa-my-applications-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 70px;
}

.ae-visa-my-applications-select {
    width: 100%;
    height: 38px;
    padding: 0 30px 0 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    appearance: none;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.ae-visa-my-applications-select-wrapper i {
    position: absolute;
    right: 10px;
    pointer-events: none;
    color: #94a3b8;
    font-size: 16px;
}

.ae-visa-my-applications-btn-apply {
    height: 45px;
    background: #00c08b;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 25px;
    font-weight: 700;
    transition: 0.3s;
}

.ae-visa-my-applications-btn-reset {
    height: 45px;
    width: 45px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ae-visa-my-applications-table-wrapper {
    overflow-x: auto;
}

.ae-visa-my-applications-table {
    width: 100%;
    border-collapse: collapse;
}

    .ae-visa-my-applications-table thead th {
        background: #f8fafc;
        padding: 15px;
        font-size: 13px;
        color: #64748b;
        border-bottom: 2px solid #edf2f7;
        text-align: left;
    }

    .ae-visa-my-applications-table tbody td {
        padding: 20px 15px;
        border-bottom: 1px solid #f1f5f9;
    }


.ae-visa-my-applications-sort-icon {
    font-size: 11px;
    opacity: 0.4;
    margin-left: 4px;
}

.ae-visa-my-applications-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

    .ae-visa-my-applications-badge.badge-docs {
        background: #e0f2fe;
        color: #0369a1;
    }

    .ae-visa-my-applications-badge.badge-paid {
        background: #00c08b;
        color: #fff;
    }

.ae-visa-my-applications-traveller {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    background: #00c08b;
    color: #fff;
    font-weight: 700;
}

.ae-visa-my-applications-client-name {
    font-weight: 700;
    color: #1e293b;
}

.ae-visa-my-applications-client-email {
    font-size: 12px;
    color: #94a3b8;
}

/* ====================== My Application Page Styles ====================== */

/* ====================== Application Management Page Styles ====================== */

.ae-visa-app-management-section {
    background-color: #f8fafc;
    padding-top: 120px;
    min-height: 100vh;
}

.ae-visa-app-management-btn-back {
    background: #e2e8f0;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
}

.ae-visa-app-management-header-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
}

.ae-visa-app-management-app-id {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 800;
    color: #1e293b;
}

/* Badges with gap handled by d-flex gap-3 */
.ae-visa-app-management-badge-docs {
    background: #00c08b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.ae-visa-app-management-badge-paid {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.ae-visa-app-management-header-meta {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
}

.ae-visa-app-management-total-price {
    font-size: 26px;
    font-weight: 800;
    color: #00c08b;
    margin: 0;
}

.ae-visa-app-management-price-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

/* Responsive Tabs with Horizontal Scroll */
.ae-visa-app-management-tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 2px solid #eef2f6;
    -webkit-overflow-scrolling: touch;
}

    .ae-visa-app-management-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }
/* Hide scrollbar for clean look */

.ae-visa-app-management-tabs-list {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.ae-tab-item {
    padding: 12px 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .ae-tab-item.active {
        color: #00c08b;
    }

        .ae-tab-item.active::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #00c08b;
        }

/* Cards & Content */
.ae-visa-app-management-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.ae-visa-app-management-card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 700;
    color: #334155;
    font-size: 15px;
}

.ae-data-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid #f8fafc;
    font-size: 13px;
    gap: 10px;
}


.border-md-start {
    border-left: none;
}

.ae-payment-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.ae-payment-value {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}


    .ae-payment-value.text-success {
        color: #00c08b !important;
    }

    .ae-payment-value.text-danger {
        color: #ef4444 !important;
        font-size: 13px;
    }


.text-break {
    word-break: break-all;
    overflow-wrap: break-word;
}


@media (max-width: 767px) {
    .ae-payment-label {
        font-size: 12px;
    }

    .ae-payment-value {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .border-md-start {
        border-left: 1px solid #eef2f6;
        padding-left: 20px;
    }
}

.text-success {
    color: #00c08b !important;
}

.text-danger {
    color: #ef4444 !important;
}

/* Traveller Card with Blue Left Border */
.ae-visa-app-management-traveller-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    border-left: 4px solid #3b82f6; /* Exact blue color from image */
}

.ae-traveller-header {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Flex layout for Label and Value to match image alignment */
.ae-traveller-info-item {
    display: flex;
    align-items: flex-start;
    gap: 40px; /* Space between label and value */
}

    .ae-traveller-info-item .ae-label {
        font-size: 13px;
        color: #64748b;
        font-weight: 600;
        min-width: 100px; /* Keeps labels aligned */
    }

    .ae-traveller-info-item .ae-value {
        font-size: 13px;
        color: #1e293b;
        font-weight: 500;
    }

/* Responsive adjustment for mobile */
@media (max-width: 767px) {
    .ae-traveller-info-item {
        gap: 15px;
        flex-direction: column; /* Stacks on mobile for better fit */
    }

        .ae-traveller-info-item .ae-label {
            min-width: auto;
            margin-bottom: 2px;
        }
}

/* Main Container Card */
.ae-visa-app-management-fields-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
}

.ae-fields-main-title {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
}

.ae-fields-count-badge {
    background: #eef2ff;
    color: #6366f1;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Individual Field Box */
.ae-field-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

/* Icon Styles */
.ae-field-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.icon-purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.icon-red {
    background: #fff1f2;
    color: #f43f5e;
}

/* Text Styles */
.ae-field-content label {
    display: block;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
}

.ae-field-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .ae-field-box {
        padding: 15px;
    }
}


/* Container and Card */
.ae-visa-app-management-doc-container {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
}

.ae-visa-app-management-doc-card {
    background: #f0fdfa; /* Light mint green background from image */
    border-left: 4px solid #00c08b; /* Thick green left accent */
    border-radius: 8px;
    padding: 24px;
}

/* Header styling */
.ae-doc-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ae-doc-subtext {
    font-size: 12px;
    color: #94a3b8;
}

/* Download Button */
.ae-visa-app-management-download-btn {
    background: #fff;
    border: 1px solid #00c08b;
    color: #00c08b;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

    .ae-visa-app-management-download-btn:hover {
        background: #00c08b;
        color: #fff;
    }

/* Detail Labels and Values */
.ae-detail-label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.ae-detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

/* OCR Badge */
.ae-ocr-badge {
    background: #0ea5e9; /* Sky blue background for OCR */
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Utility for red file names */
.text-danger {
    color: #ef4444 !important;
}

/* Container for Refund Tab */
.ae-visa-app-management-refund-container {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    min-height: 350px; /* Adjusting height to match image's empty space */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty State Styling */
.ae-refund-empty-state {
    text-align: center;
}

.ae-refund-icon-wrapper {
    font-size: 54px;
    color: #cbd5e1; /* Soft grey color for icon */
    line-height: 1;
}

.ae-refund-text {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8; /* Matching the muted text color from image */
}

/* Hover effect just in case */
.ae-refund-icon-wrapper i {
    opacity: 0.8;
}

.ae-tab-pane {
    display: none !important;
}

    .ae-tab-pane.active {
        display: block !important; 
        animation: fadeIn 0.3s ease-in;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================== Application Management Page Styles ====================== */
