@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



.mainlogo {
    display: flex;
    width: 100px;
    height: 100px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
}

.navlist {
    color: #000;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.navbar .navlist {
    font-family: "Open Sans", sans-serif !important;
    font-size: 16px !important;
}


/* SECTION 2 COVER IMAGE */
.img-fluid {
    height: 1000px;
    flex-shrink: 0;
    align-self: stretch;
}

/* SECTION 3 */

.welcome-section {
    padding: 2rem 1rem;
}

.welcome-image img {
    border-radius: 10px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}



.welcome-text h2 {
    display: flex;
    text-align: center;


    flex-direction: column;
    justify-content: center;

    color: var(--secondary, #0C101A);
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
}

.welcome-text p {
    color: #373A3D;
    font-family: "Open Sans";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 176.667% */
    letter-spacing: 0.5px;
    justify-content: center;
    text-align: center;
}

/* SECTION 4 */
.carousel-item {
    height: 80vh;
    background-color: transparent;
}

#achievementCarousel .carousel-item {
    background-color: transparent;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    padding: 10px;
}

/* SECTION 5 */
.faq-container {
    padding: 2rem;

}

.accordion-item h2 {
    background: #0193DC;
    border-radius: 18px;
}

.faq-image {
    border-radius: 50% 50% 50% 50%;
    overflow: hidden;
    position: relative;
}

.faq-image img {
    width: 100%;
    height: auto;
}

.faq-image::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    /* border: 3px solid #00aaff; */
    border-radius: 50%;
}

/* SECTION 6 */

/* Darkened background image */
.carousel-container {
    position: relative;
    background: url('images/section\ 6\ image.jpg') center center/cover no-repeat;
    height: 110vh;
     color: white; 
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

#achievementCarousel {
    padding-bottom: 20px;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Adjust for blackout effect */
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.section-6-img, .section-6-img-2 {
    width: 45%;
    height: 350px;
    border-radius: 10px;
    object-fit: scale-down;
    background-color: transparent;
    margin-bottom: 20px;
    transform: scale(0.75);
}

.carousel-caption {
    position: static;
}

/* SECTION 7 */

.activity-image {
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.view-gallery-btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
}

/* SECTION 8 */
.session-banner {
    position: relative;
    background: url('images/banner\ home.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.session-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 147, 220, 0.48);
    /* Blue overlay */
    z-index: 1;
}

.session-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.session-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.session-content p {
    margin: 1rem 0;
}

.btn-view-more {
    background-color: #0193DC;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    border-radius: 42px;
}

.btn-view-more:hover {
    background-color: #0193DC7A;
}

@media (max-width: 768px) {
    .session-content h1 {
        font-size: 2rem;
    }

    .session-content p {
        font-size: 0.9rem;
    }
}

/* FOOTER */

.footer {
    background-color: #f8f9fa;
    padding-top: 2rem;

}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 60px;
    height: auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #212529;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #212529;
    margin: 0 0.5rem;
    font-size: 1.25rem;
}

.footer-bottom {
    background-color: #0193DC;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.footer-btn {
    background-color: #0193DC;
    border-radius: .25rem;
    color: #fff;
    padding: .50rem;
    border: #0193DC solid;
}