﻿@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

.section {
    margin: 80px 100px;
}

.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 50px;
    color: white;
    backdrop-filter: blur(5px);
}

    .top-bar .left a {
        display: flex;
        align-items: center;
        gap: 30px;
        color: #fff;
    }

    .top-bar .left span {
        font-size: 20px;
        font-weight: 600;
        line-height: 32px;
    }

.ahcImg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.top-bar .left .ahcImg img {
    height: 90px;
/*    border: 1px solid #fff;*/
    border-radius: 50%;
}

.sbiLogo {
    height: 45px !important;
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
}

.top-bar nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
}

    .top-bar nav a:last-child {
        margin: 0 0 0 10px;
    }


.login-btn {
    background-color: #ff7a00;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.slider-wrapper {
    position: relative;
    overflow-x: hidden;
}

.background-slider .slide {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    z-index: 2;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    color: white;
    flex-direction: column;
    z-index: 1;
    padding: 0 100px;
}

    .overlay-content p {
        margin-top: 20px;
        margin-bottom: 10px;
        color: #fff;
        font-weight: 600;
        font-size: 26px;
    }

    .overlay-content h2 {
        font-size: 60px;
        line-height: 72px;
        margin-bottom: 40px;
        margin-top: 0;
    }

.search-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.slick-prev:before,
.slick-next:before {
    color: white;
    font-size: 30px;
}

.notice-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .notice-table thead {
        background-color: #06265f;
        color: white;
    }

    .notice-table th,
    .notice-table td {
        padding: 15px;
        text-align: left;
        border: 1px solid #e0e0e0;
        font-size: 15px;
    }

    .notice-table td {
        color: #333;
    }

    .notice-table tr td:first-child {
        white-space: nowrap;
    }

    .notice-table tbody tr:hover {
        background-color: #f1f6ff;
    }

.btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    white-space: nowrap !important;
}

.btn-view {
    background-color: #d4f4e2;
    color: #006644;
}

.btn-raise {
    background-color: #ffe1e1;
    color: #cc0000;
}

.btn-apply {
    background-color: #12e262;
    color: #fff;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.faq-image {
    flex: 1 1 40%;
    max-width: 500px;
}

    .faq-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

.faq-content {
    flex: 1 1 50%;
    max-width: 600px;
}

.faq-Quote {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #ff7a00;
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.faq-answer {
    margin-top: 15px;
    font-size: 14px;
    line-height: 22px;
    color: #555;
    display: none;
}


    .faq-answer .heading {
        font-weight: 600;
        color: #333;
        font-size: 15px;
    }

.allotmentPoint {
    margin-top: 30px;
    font-size: 16px;
    line-height: 22px;
    color: #444;
}

    .allotmentPoint .heading {
        font-weight: 600;
        color: #333;
        font-size: 20px;
    }

.faq-item.open .faq-answer {
    display: block;
}

.arrow img {
    width: 20px;
    transition: transform 0.3s ease;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}


.cta-container {
    background-color: #23406d;
    color: white;
    text-align: center;
    padding: 60px 20px 50px;
    border-radius: 120px 120px 40px 40px;
    margin: 100px 100px -140px;
    z-index: 99;
    position: relative;
}

    .cta-container h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 30px;
        line-height: 1.4;
    }

.cta-button {
    font-family: "Inter", sans-serif;
    background-color: #ff7a00;
    color: white;
    font-size: 18px;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .cta-button:hover {
        background-color: #e86f00;
    }

.footer {
    position: relative;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    height: 240px;
}

    .footer .copyright {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 95%;
        text-align: center;
        padding-bottom: 25px;
        transform: translate(-50%, 0);
    }

    .footer p {
        line-height: 24px;
    }

    .footer b {
        font-weight: bold;
    }

.disclaimer {
    position: relative;
    padding-left: 7px;
}

    .disclaimer a {
        padding-left: 10px;
        color: #fff;
    }

    .disclaimer::before {
        position: absolute;
        content: '';
        width: 1px;
        height: 100%;
        background-color: #fff;
        top: 1px;
    }

.aboutUs {
    position: relative;
    padding-right: 7px;
}


    .aboutUs a {
        padding-right: 10px;
        color: #fff;
    }

    .aboutUs::after {
        position: absolute;
        content: '';
        width: 1px;
        height: 100%;
        background-color: #fff;
        top: 1px;
    }

.mobile {
    display: none;
}

#aboutUs {
    padding-top: 80px;
}

    #aboutUs p {
        line-height: 24px;
        font-size: 15px;
    }

    #aboutUs .footer {
        height: auto !important;
    }

        #aboutUs .footer .copyright {
            position: relative;
            bottom: 0;
            left: unset;
            width: auto;
            text-align: center;
            padding-bottom: 0;
            transform: unset;
        }

@media (max-width: 1024px) {
    .overlay-content h2 {
        font-size: 44px;
        line-height: 56px;
        margin-bottom: 30px;
    }

    .cta-button {
        font-size: 16px;
    }

    .overlay-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        margin: 40px 20px;
    }

    .top-bar {
        position: fixed;
        padding: 10px 20px;
    }

        .top-bar .left a {
            gap: 12px;
        }

        .top-bar .left .ahcImg img {
            height: 55px;
        }

        .top-bar .left span {
            display: none;
        }

        .top-bar nav a {
            font-size: 16px;
        }

    .sbiLogo {
        height: 25px !important;
    }

    .background-slider .slide {
        height: 450px;
        background-size: cover;
        background-position: center;
        z-index: 2;
    }

    .overlay-content {
        padding: 0px;
        text-align: center;
        align-items: center;
    }

        .overlay-content h2 {
            font-size: 28px;
            line-height: 36px;
        }

        .overlay-content p {
            padding: 0 20px;
        }

    .noticeTable {
        overflow-x: scroll;
    }

    .faq-container {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .faq-content {
        text-align: left;
        margin-top: 30px;
    }

    .faq-Quote {
        font-size: 24px;
        line-height: 36px;
    }

    .faq-title {
        font-size: 20px;
    }

    .cta-container {
        padding: 30px 40px 30px;
        border-radius: 90px 90px 40px 40px;
        margin: 40px 20px -80px;
    }

        .cta-container h2 {
            font-size: 20px;
        }

            .cta-container h2 br {
                display: none;
            }

    .footer {
        height: 250px;
    }

        .footer .copyright {
            padding-bottom: 0px;
        }

    .desk {
        display: none;
    }

    .mobile {
        display: inline;
    }

    .deskAbt::before {
        display: none;
    }

    #aboutUs {
        padding-top: 60px;
    }
}

@media (max-width: 350px) {
    .sbiLogo {
        height: 25px !important;
    }

    .top-bar .left .ahcImg img {
        height: 45px;
    }

    .top-bar nav a {
        margin: 0 5px;
    }
}
