@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arapey:ital@0;1&display=swap');
* {
    font-family: 'Poppins';
}
.landingSection {
    margin: 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.welcome {
    background-color: #ffffff25;
    box-shadow: 5px 5px 50px #00000001;
}
.ourHistory {
    background-color: #ffffff50;
}
.mainText {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.heading {
    font-family: 'Arapey';
    font-size: 120px;
}
.subHeading {
    font-family: 'Poppins';
    margin-left: 10px;
    font-size: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.socials img {
    padding: 10px;
}
.dates {
    height: fit-content;
    font-size: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.monthYear {
    font-size: 16px;
}
.landingSection .img {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 450px;
    margin: 0px 0 20px 0;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 5px 5px 50px #00000020;
}
.landingSection .img img {
    height: 100%;
    scale: 1.2;
}
.landingSection .mainText .text .subHeading {
    font-size: 17.5px;
}
#dlBrochureBtn {
    color: #ffffff;
    background-color: #000000;
    height: min-content;
    padding: 8px 20px;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 200;
    font-size: 16px;
    transition: 0.1s ease-in-out;
    margin-bottom: 30px;
}
/* .carousel-container {
    height: 450px;
    position: relative;
    width: 90%;
    margin: 0px 0 20px 0;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 5px 5px 50px #00000020;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    scroll-snap-align: center;
}

.carousel-slide img {
    height: 100%;
    display: block;
}

.indicator-container {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.indicator {
    width: 12px;
    height: 12px;
    background-color: #ffffff5d;
    border-radius: 50%;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 5px 5px 5px #00000020;
}
.indicator.active {
    background-color: #ffffff;
    transform: scale(1.2);
} */
.isVisible {
    animation: appear 1s;
    opacity: 1;
}
.animate {
    opacity: 0;
    animation-fill-mode: forwards;
}
.section {
    margin: 0 200px 0 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.section .heading {
    font-family: 'Arapey';
    font-size: 70px;
    margin: 0;
}
.section p {
    font-size: 20px;
    margin: 30px 0;
    text-align: center;
}
.section .img {
    overflow: hidden;
    height: 370px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px #00000020;
}
.section .img img {
    border-radius: 10px;
}
.stats-img-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.stats {
    height: min-content;
    display: flex;
    flex-direction: column;
    align-items: right;
}
.stats p {
    margin: 0;
}
.stats .num {
    font-size: 90px;
    font-family: 'Arapey';
}
.stats .text {
    font-size: 14px;
    margin-bottom: 20px;
}
@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .section {
        margin: 20px;
    }
    .hero-section {
        height: min-content;
        padding: 0;
    }
    .stats-img-wrapper {
        flex-direction: column;
    }
    .stats-img-wrapper .img {
        width: 90%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .landingSection .img {
        display: none;
    }
    .landingSection {
        margin: 20px;
        height: 65vh;
        padding: 10px 0;
    }
    .landingSection .heading {
        font-size: 60px;
    }
    .landingSection .subHeading {
        font-size: 20px;
        flex-direction: column-reverse;
        align-items: start;
        margin: 0 5px;
    }
    .landingSection .subHeading .socials img {
        padding: 0;
        padding-right: 10px;
        margin-left: 2.5px;
    }
    .landingSection .mainText {
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: start;
        height: 100%;
    }
    .landingSection .text {
        height: min-content;
    }
    .landingSection .socials img {
        height: 20px;
    }
    .date-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: end;
        width: 100%;
    }
    .dates {
        align-items: end;
        font-size: 40px;
    }
    .section .heading {
        font-size: 50px;
    }
    .section p {
        font-size: 15px;
    }
}