body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.visa-banner {
    position: relative;
    height: 420px;
    background: url('../../images/main-bg.png') center center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.visa-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 100px 0 100px; /* Reduced from 240px to 80px for desktop */
}

.visa-logo {
    display: flex;
    align-items: center;
}

.visa-logo-img {
    width: 208px;
    height: auto;
    flex-shrink: 0;
}

.visa-login-link {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -0.24px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.visa-login-link svg {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    width: 25px;
    height: 24px;
    margin-right: 4px;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.visa-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content:center;
    text-align: left;
    color: #fff;
    padding: 0 100px; /* Reduced from 240px to 80px for desktop */
}

.visa-hero-title {
    color: #0E51A0;
    font-family: "Plus Jakarta Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
    letter-spacing: -1.2px;
    margin-bottom: 8px;
    text-align: left;
}

.visa-hero-desc {
    color: #36A872;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.6px;
    margin-bottom: 24px;
    text-align: left;
}

.visa-offer-card {
    position: absolute;
    top: 80px;
    right: 100px;
    width: 360px;
    min-height: 280px;
    max-height: 320px;
    background: linear-gradient(to bottom, #0369a1, #3b82f6);
    border-radius: 16px;
    overflow: hidden;
    z-index: 5;
    display: flex;
    flex-direction: column;
}

.visa-offer-content {
    position: relative;
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
    flex: 1;
}





.visa-offer-image {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 1;
}

.tab {
    padding-right: 100px;
    padding-left: 100px;
    position: absolute;
    bottom: -40px; /* Push half the tab outside the background */
    left: 0;
    right: 0;
    z-index: 10;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .visa-navbar {
        padding: 20px 60px 0 60px;
    }

    .visa-hero {
        padding: 0 60px;
        padding-top: 40px;
    }

    .visa-offer-card {
        right: 60px;
        width: 340px;
        min-height: 260px;
        max-height: 300px;
    }

    .visa-offer-content {
        padding: 14px 16px 18px;
        /* gap: 10px; */
    }

    .visa-offer-image {
        width: 110px;
        height: 110px;
    }

    .tab {
        padding-right: 60px;
        padding-left: 60px;
    }
}

@media (max-width: 1024px) {
    .visa-navbar {
        padding: 20px 32px 0 32px;
    }

    .visa-hero {
        padding: 0 32px;
        padding-top: 40px;
    }

    .visa-hero-title {
        font-size: 32px;
    }

    .visa-hero-desc {
        font-size: 18px;
    }

    .visa-offer-card {
        right: 32px;
        width: 320px;
        min-height: 240px;
        max-height: 280px;
    }

    .visa-offer-content {
        padding: 12px 14px 16px;
        gap: 8px;
    }

    .visa-offer-content .text-xl {
        font-size: 16px;
        line-height: 1.3;
    }

    .visa-offer-content .text-base {
        font-size: 13px;
        line-height: 1.4;
    }

    .visa-offer-content .text-xs {
        font-size: 10px;
    }

    .visa-offer-image {
        width: 100px;
        height: 100px;
        bottom: 4px;
        right: 4px;
    }

    .tab {
        padding-right: 32px;
        padding-left: 32px;
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .visa-banner {
        height: auto;
        min-height: auto;
        padding-bottom: 0px;
    }

    .visa-navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px 0 16px;
    }

    .visa-logo-img {
        width: 160px;
    }

    .visa-login-link {
        font-size: 14px;
        line-height: 20px;
    }

    .visa-hero {
        padding: 24px 16px 16px 16px;
    }

    .visa-hero-title {
        font-size: 22px;
        line-height: 140%;
        letter-spacing: -0.44px;
    }

    .visa-hero-desc {
        font-size: 15px;
        line-height: 140%;
        letter-spacing: -0.45px;
        margin-bottom: 14px;
    }

    /* Mobile: Card appears below hero */
    .visa-offer-card {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 32px);
        max-width: 100%;
        min-height: 230px;
        max-height: 230px;
        margin: 0 16px 16px;
        left: auto;
        transform: none;
    }

    .visa-offer-content {
        padding: 14px;
        padding-bottom: 16px;
        gap: 8px;
    }

    .visa-offer-content .self-stretch {
        gap: 6px !important;
    }

    .visa-offer-content .px-2\.5 {
        padding: 4px 6px !important;
    }

    .visa-offer-content .text-xl {
        font-size: 14px;
        line-height: 1.3;
    }

    .visa-offer-content .text-base {
        font-size: 11px;
        line-height: 1.3;
    }

    .visa-offer-content .text-xs {
        font-size: 10px;
    }

    .visa-offer-content .text-sm {
        font-size: 11px;
    }

    /* SVG icon sizing for mobile */
    .visa-offer-content .w-6 {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        min-height: 20px !important;
    }

    .visa-offer-content .w-6 svg {
        width: 20px !important;
        height: 20px !important;
        display: block !important;
    }

    .visa-offer-content .w-5 {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
    }

    .visa-offer-content .w-5 svg {
        width: 16px !important;
        height: 16px !important;
        display: block !important;
    }

    .visa-offer-content a {
        padding: 6px 12px !important;
        font-size: 11px;
    }

    .visa-offer-image {
        width: 100%;
        max-width: 140px;
        height: auto;
        max-height: 100px;
        bottom: 4px;
        right: 4px;
    }

    .tab {
        padding-right: 16px;
        padding-left: 16px;
        position: relative;
        bottom: auto;
        margin-top: -4px;
        top: 30px;
    }
} 