.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(30%);
}

.hero-content {
    color: #f8fafc;
}

#tagline {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.btn-info {
    border-radius: 20px;
    padding: 5px 20px;
    background-color: rgb(231, 231, 231);
    border-color: 0px;
    border : none;

}

.btn-info:hover{
    background-color: rgb(134, 134, 134) ;
}



.vision-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.subheading {
    color: #1e3a8a;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}

.heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #f9f9f9;
    border-radius: 8px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.card h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #222;
}

.card p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}


.mission-section {
    padding: 60px 20px;
    background-color: #f8f9fc;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
}

.mission-image {
    flex: 1 1 40%;
    min-width: 300px;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.mission-text {
    flex: 1 1 55%;
    min-width: 300px;
}

.subheading {
    color: #1e3a8a;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.mission-point {
    margin-bottom: 25px;
}

.mission-point h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
    font-weight: 600;
}

.mission-point p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


.award-section {
    padding: 60px 20px;
    background-color: #f0f4f8;
}

.section-label {
    color: #1e3a8a;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.award-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

.award-box {
    flex: 1 1 45%;
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    color: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-image {
    width: 100px;
    margin-bottom: 20px;
}

.award-content h2 {
    margin-top: 0;
    font-size: 22px;
}

.award-content p {
    font-size: 15px;
    line-height: 1.6;
}

.partner-box {
    flex: 1 1 50%;
}

.partner-box h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 20px;
}

.partner-box p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}



.faq-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 45px;
}

.faq-content {
    flex: 1 1 50%;
    padding-right: 30px;
}

.faq-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-section {
    margin-top: 30px;
}

.faq-question {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 25px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1rem;
}

.faq-answer {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    display: none;
}

.faq-question.active::after {
    content: "▲";
}

.faq-question.active+.faq-answer {
    display: block;
}

.faq-image {
    flex: 1 1 50%;
    text-align: center;
}

.faq-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-content,
    .faq-image {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .faq-title {
        font-size: 2rem;
    }
}