* {
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}


.container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
}

/* Who We Are */
.Who-we-are {
    width: 100%;
    display: flex;
    justify-content: center;
}

.Who-section-wrap {
    width: 90%;
    display: flex;
}

.wsr-box {
    width: 48%;
    margin: 1%;
    padding: 1%;
}

.wsr-box h1 {
    margin-top: 17%;
    font-size: 4.8rem;
    font-size: 700;
    color: #002b56;
}

.wsr-box h2 {
    font-size: 2rem;
    line-height: 60px;
} 

.wsr-box p {
    margin: 12% 0 5% 0;
    font-size: 900;
}

/* Vision Statement */ 

.vision-stat {
    width: 100;
    display: flex;
    justify-content: center;
    background-color: #E8F1FF;
}

.vs-wrap {
    width: 90%;
}

.vs-wrap h2 {
    font-size: 2rem;
    padding: 1%;
    margin-top: 5%;
    margin-bottom: 1%;
}

.vs-box-wrap {
    display: flex;
    width: 100%;
}

.vs-box {
    width: 48%;
    margin: 1%;
    padding: 1%;
}

.vs-box h4 {
    margin: 5% 0;
    font-size: 1.1rem;
}

.vs-box-con h3 {
    margin: 5% 0;
    font-size: 1.5rem;
}

.vs-box-con p {
    font-size: 1.1rem;
}

.vs-box ul {
    padding: 1%;
}

.vs-box li  {
    margin-bottom: 4%;
}


/* Achievements Sectin */
.achievement {
    width: 100%;
    background-color: #002b56;
    color: white;
    display: flex;
    justify-content: center;
}

.achievement-wrap {
    width: 90%;
    padding: 2%;
}

.achievement-wrap h2 {
    margin-top: 4%;
    margin-bottom: 5%;
    font-size: 1.8rem;
}

.aw-box {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px
}

.aw-box div {
    padding: 3%;
    font-size: 1rem;
    text-align: center;
}

/* FAQ Section */

.faq {
    width: 100%;
    display: flex;
    justify-content: center;
}
.faqWrap {
    width: 90%;
    display: flex;
}

.faq h2 {
    font-size: 40px;
    margin-top: 5%;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-box {
    width: 50%;
}

.faq-item {
    width: 90%;
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 8px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.faq-item:hover {
    background: #f0f6ff;
}

.faq-item .question {
    font-size: 20px;
    width: 90%;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item .plus {
    font-size: 28px;
    color: #002b56;
    font-weight: bold;
    transition: 0.3s;
}

.faq-item.active .plus {
    transform: rotate(45deg);
}

.answer {
    width: 90%;
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.5;
    display: none;
    color: #333;
}

/* Video Section */
.video-section {
width: 50%;
}

.video-section iframe {
    width: 100%;
    height: 315px;
    border: none;
    margin-top: 15px;
    border-radius: 6px;
}
    
/* About Co-FOunder */
.founder-sect {
    width: 100%;
    background-color: #E8F1FF;
    display: flex;
    justify-content: center;
}

.fs-wrap {
    width: 90%;
    display: flex;
}

.fs-box {
    padding: 1%;
    width: 50%;
    font-weight: 500;
}

.fs-box h2 {
    margin-top: 10%;
    font-size: 2rem;
}

.fs-box h3 {
    margin-top: 10%;
    font-size: 1.4rem;
}

.fs-box img {
    width: 98%;
    margin: 5% 0;
}

#fs-box1 {
    width: 58%;
    background-color: #002b56;
    color: white;
    padding: 4%;
}

#fs-box2 {
    width: 38%;
    padding: 4%;
}

.sec6 {
    width: 100%;
    background-color: #3B6BB2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec6Wrap {
    width: 80%;
    display: flex;
}

.sec6box1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 1%;
}

.sec6box1 h3 {
    font-size: 2.5rem;
    color: white;
    margin-top: 11%;
}

.sec6box1 p {
    font-size: 1.3rem;
    color: white;
    margin-top: 12%;
    margin-bottom: 11%;
}

.sec6box2 {
    width: 50%;
    padding: 3%;
}

.sec6Form input {
    width: 47%;
    height: 45px;
    margin: 1%;
}

.sec6Form button {
    width: 35%;
    padding: 2%;
    border-radius: 10%;
    color: white;
    background-color: #FF5A00;
}