.banner {
    background-color: #012970;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 60vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page1 {
    width: 100%;
    height: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding: 0 6vw;
}

.container-inner {
    color: #fff;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.container-inner h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.container-inner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.kisem-heading{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.kisem-logo {
    width: 70px;
    height: auto;
    margin-bottom: 1.5rem;
}

.kotak-logo {
    width: 200px;
    margin-bottom: 1.5rem;
}

.kisem{
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Section Styles */
.heading-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.mission-details {
    padding: 6vh 6vw;
}
.msme-note{
    padding: 0vh 6vw;
    margin-bottom: 30px;
}

.mission-details h1{
    font-size: 1.8rem;
    color: #012970;
    
    display: inline-block;
    padding-bottom: 10px;
}

.intro-text, .project-offer {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

/* Button Styles */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    margin-top: 10px;
}

/* Primary Button */
.btn-primary {
    background-color: #004d99;
    color: white;
}

.btn-primary:hover {
    background-color: #003366;
}

/* Secondary Button */
.btn-secondary {
    background-color: #004d99;
    color: white;
}

.btn-secondary:hover {
    background-color: #003366;
}

/* Note Text */
.note-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #555;
}
.note-text strong{
    color: #000;
    font-weight: 800;
}

@media(max-width: 724px){
    .container-inner{
        flex-direction: column;
        width: fit-content;
        gap: 30px;
    }
    .kisem-logo{
        width: 200px;
    }
}
@media(max-width: 500px){
    .container-inner h1{
       font-size: 2.5rem;
       margin-bottom: 1rem;
    }
    .mission-details h1{
        font-size: 1.6rem;
    }
    .intro-text, .project-offer{
        font-size: 1rem;
        line-height: 1.4;
    }
    .container-inner h2{
        font-size: 1.2rem;
        margin-top: 0;
    }
    .kisem-logo{
        width: 150px;
    }
}