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 160px 0 160px; /* Reduced from 240px to 80px for desktop */
}

.visa-logo {
    display: flex;
    align-items: center;
}

.visa-logo-img {
    width: 150px;
    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 160px; /* 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;
}

.tab {
    padding-right: 160px;
    padding-left: 160px;
    position: absolute;
    bottom: -40px; /* Push half the tab outside the background */
    left: 0;
    right: 0;
    z-index: 10;
}

/* Responsive Styles */
@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;
    }

    

    .tab {
        padding-right: 32px;
        padding-left: 32px;
        bottom: -40px;
    }
}

@media (max-width: 600px) {
    .visa-banner {
        height: auto;
        min-height: 360px;
    }

    .visa-navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 16px 12px 0 12px;
    }

   

    .visa-login-link {
        font-size: 14px;
        line-height: 20px;
    }

    .visa-hero {
        padding: 0 12px;
        padding-top: 30px;
    }

    .visa-hero-title {
        font-size: 24px;
        line-height: 150%;
        letter-spacing: -0.48px;
    }

    .visa-hero-desc {
        font-size: 16px;
        line-height: 150%;
        letter-spacing: -0.48px;
        margin-bottom: 16px;
    }

    .tab {
        padding-right: 16px;
        padding-left: 16px;
    }
} 