body{
    padding-top: 77px;
}
/*=============About_Intro Section Styling=============*/
.about-intro {
    text-align: center;
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* keeps image fixed on scroll (cool effect)*/
    color: white;
    padding: 150px 0;
}
.about-intro .wrapper {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}
.about-intro h1 {
    font-size: 48px;
}
.about-intro .wrapper button{
    margin: 5px 0;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #14252c;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.5s ease, background-color 0.5s ease;
}
.about-intro .wrapper button:hover{
    background-color:#14252ce0;
    transform: scale(1.1);
}
/*=============History Styling=============*/
.history {
    background: linear-gradient(135deg, #e9eafc 0%, #f7f8fa 100%);
} 
.history .history-wrapper {
    padding: 40px 30px;
    margin: auto;
    background: #fff;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(88, 111, 225, 0.12);
    gap: 32px;
    align-items: center;
    position: relative;
    top: -100px;
}
.history .history-wrapper .img {
    width: 40%;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.history-wrapper .img img {
    width: 100%;
    max-width: 320px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(88, 111, 225, 0.08);
}
.history-wrapper .history-text {
    width: 55%;
    min-width: 260px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.history-wrapper .history-text h2 {
    color: #212432;
    font-size: 2rem;
    margin-bottom: 8px;
}
.history-wrapper .history-text p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.history-wrapper .history-text ul {
    padding-left: 20px;
    margin: 0;
}
.history-wrapper .history-text li {
    color: #212432;
    font-size: 1rem;
    margin-bottom: 6px;
    list-style-type: disc;
}
@media (max-width: 900px) {
    .history .history-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 30px 10px;
    }
    .history .history-wrapper .img,
    .history-wrapper .history-text {
        width: 100%;
        min-width: unset;
        padding-left: 0;
        padding-right: 0;
    }
}
/*=============Mission Section Styling=============*/
/* .mission-wrapper {
    background: linear-gradient(120deg, #e9eafc 0%, #f7f8fa 100%);
    padding: 110px 0 90px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
} */

.mission {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255,255,255,0.7);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(88,111,225,0.13);
    backdrop-filter: blur(8px);
    border: 4px solid;
    border-image: linear-gradient(90deg, #191b25 0%, #e9eafc 100%) 1;
    animation: borderMove 4s linear infinite;
    margin-top: 15px;
}

@keyframes borderMove {
    0% { border-image-slice: 1; }
    50% { border-image-slice: 2; }
    100% { border-image-slice: 1; }
}

.mission .mission-text {
    flex: 1 1 420px;
    max-width: 540px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}

.mission .mission-text h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: #191b25;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 0 2px 8px #e9eafc;
}

.mission .mission-text h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #191b25 0%, #e9eafc 100%);
    margin-top: 12px;
    border-radius: 3px;
    box-shadow: 0 2px 8px #586fe144;
    animation: underlineGlow 2s infinite alternate;
}

@keyframes underlineGlow {
    0% { box-shadow: 0 2px 8px #586fe144; }
    100% { box-shadow: 0 2px 16px #191b25; }
}

.mission .mission-text p {
    font-size: 1.18rem;
    line-height: 1.8;
    color: #212432;
    background: rgba(233,234,252,0.2);
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px #e9eafc44;
}

.mission .mission-img {
    flex: 1 1 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mission .mission-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 22px;
    box-shadow: 0 16px 48px rgba(88,111,225,0.18), 0 2px 16px #586fe122;
    transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.3s;
    background: linear-gradient(120deg, #e9eafc 0%, #191b25 100%);
    border: 3px solid #e9eafc;
    animation: floatImg 3s ease-in-out infinite alternate;
}

@keyframes floatImg {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-18px) scale(1.04); }
}

.mission .mission-img img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 24px 64px #191b25, 0 2px 16px #586fe122;
}

@media (max-width: 900px) {
    .mission {
        flex-direction: column;
        gap: 32px;
        padding: 20px 8px;
    }
    .mission .mission-text,
    .mission .mission-img {
        max-width: 100%;
        padding: 0;
    }
}
/*=============FAQ Section Styling=============*/
.faqs-wrapper {
    background: linear-gradient(135deg, #000000 0%, #424242a9 100%);
    padding: 20px;
    border-radius: 18px;
    max-width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.faq-title {
    font-size: 2.5rem;
    color: white;
    margin-top: 40px;
}
.faqs {
    width: 60%;
    color: white;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
}
.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.question:hover {
    background: #404040;
    color: #fff;
    border-radius: 10px;
}
.question h3 {
    font-size: 1.3rem;
}
.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faqs.active .answer {
    max-height: 300px; /* adjust as needed */
    margin-top: 10px;
    margin-bottom: 15px;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    animation: fade 1s ease;
}
.answer p {
    padding: 0 20px 15px 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}
.faq .active svg {
    transform: rotate(45deg);
}
svg {
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    fill: white;
}
@keyframes fade {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .faqs {
        width: 90%;
    }
    .faq-title {
        font-size: 2rem;
    }
    .question h3 {
        font-size: 1.1rem;
    }
    .answer p {
        font-size: 1rem;
    }
}
