@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

html {
    max-width: 1900px;
    margin: 0 auto;
}

:root {
    --primary: #00ae62;
    --secondary: #007844;
}

.section {
    padding-top: 70px;
    padding-inline: 32px;
    scroll-margin-top: 70px;
}

button {
    font-weight: 600 !important;
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: black;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:active {
    background-color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.1rem var(--primary);
    border: 2px solid var(--primary);
}

.btn-bg-linear-gradient {
    background: linear-gradient(var(--primary), var(--secondary));
    border: none;

    &:active {
        background: linear-gradient(var(--primary), var(--secondary)) !important;
    }
}

#form-error {
    text-align: center;
    color: #ff3b30;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button,
input,
select {
    border-radius: 32px !important;
}

#back-btn {
    display: none;
}

.navbar {
    padding: 32px;
    gap: 32px;
    max-width: 1900px;
    margin: 0 auto;
    box-shadow: 0 4px 60px -24px #00000040;
    background: #fff;

    & > div:nth-child(1) {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .navbar-brand img {
        width: 122px;
        height: 35px;
    }

    .navbar-toggler {
        border: none;

        &:focus {
            outline: none;
        }
    }

    .navbar-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;

        & #lang-dropdown {
            background: var(--primary);
            border: none;
        }

        & .lang-dropdown-item {
            &.active {
                background-color: var(--secondary);
                color: white;
                &:hover {
                    background-color: var(--secondary);
                }
            }
            &:hover {
                background-color: var(--primary);
                color: white;
            }
        }
    }

    .navbar-nav {
        gap: 22px;

        li {
            a {
                color: black !important;
            }
        }
    }

    .nav-item {
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-item.active {
        transition: 100ms all;
        border-bottom: 3px solid var(--primary);
    }

    .tg-icon-img {
        width: 31px;
        height: 31px;
    }
}

#cta {
    position: relative;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    margin-top: 160px;
    padding: 0 32px;
    color: white;

    h1 {
        font-weight: 600;
        font-size: 40px;
    }

    p {
        font-weight: 500;
    }

    & > div {
        padding: 50px 65% 50px 50px;
        width: 100%;
        height: 100%;
        display: flex;
        border-radius: 32px;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 16px;
        background: linear-gradient(
            268.92deg,
            rgba(0, 0, 0, 0) 3.49%,
            #000000 158.11%
        );
    }
    & > div > div {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }
    & > div > div > a > button,
    & > div > div > button {
        color: white;
        min-width: 200px;
        min-height: 50px;
        border-color: white;
    }

    & img {
        position: absolute;
        left: 32px;
        right: 32px;
        top: 0;
        width: calc(100% - 64px);
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: -1;
    }
}

#whyWe {
    padding-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;

    & > h1 {
        font-size: 32px;
        font-weight: 600;

        & > span {
            color: var(--primary);
        }
    }

    & > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        & > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 25px;
        }

        & > a {
            width: 50%;
            height: 485px;
            & > img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 28px;
            }
        }

        & > div:nth-child(1) > div:nth-child(1),
        & > div:nth-child(3) > div:nth-child(2) {
            border: 1px solid black;
            background: transparent;
            border-radius: 28px;

            & > h2 {
                color: var(--primary);
            }

            & > p {
                color: black;
            }
        }

        & > div:nth-child(1) > div:nth-child(2),
        & > div:nth-child(3) > div:nth-child(1) {
            background: linear-gradient(253.23deg, #00924c 7.34%, #005d2b 98.37%);
            border-radius: 28px;

            & > h2,
            & > p {
                color: white;
            }
        }

        & > div > div {
            background-repeat: no-repeat !important;
            background-position: center !important;
            background-size: 100% 100% !important;
            height: 230px;
            padding: 60px 20px 20px 20px;

            & > h2 {
                font-size: 16px;
                font-weight: 700;
            }

            & > p {
                font-weight: 500;
            }
        }
    }
}

#ourAdvantages {
    display: flex;
    flex-direction: column;
    gap: 48px;

    & > div:nth-child(1) {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 48px;

        & > h1 {
            font-weight: 600;
            font-size: 32px;

            & > span {
                color: var(--primary);
            }
        }

        & > img {
            width: 365px;
            height: 550px;
        }

        & > div {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;

            & > div {
                display: flex;
                flex-direction: column;
                align-items: start;
                gap: 16px;

                & > div {
                    display: flex;
                    align-items: center;
                    justify-content: start;
                    gap: 16px;
                    height: 170px;
                    background-image: url("../images/our-advantages-card-bg.png");
                    background-repeat: no-repeat;
                    /*background-size: cover;*/
                    background-size: 100% 100%;
                    width: 100%;
                    border-radius: 22px;
                    padding: 55px 24px;
                    background-color: #f7f7f7;

                    & > div {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: linear-gradient(
                            226.3deg,
                            #00ae62 5.74%,
                            #007844 97.46%
                        );

                        padding: 11px;
                        border-radius: 8px;
                    }

                    & > p {
                        font-size: 18px;
                        font-weight: 500;
                    }
                }
            }
        }
    }

    & > div:nth-child(2) {
        position: relative;

        & > a > button {
            position: absolute;
            left: 0;
            right: 0;
            margin-inline: auto;
            width: fit-content;
            cursor: pointer;
            bottom: -5px;
            background: linear-gradient(224.05deg, #00924c 5.72%, #005d2b 98.99%);
            padding: 10px 50px;
            color: white;
            border-radius: 20px;
            outline: 16px solid white;
            font-weight: 700;
            font-size: 20px;
            border: none;
        }

        & > hr {
            background: #000;
        }
    }
}

#aboutSchool {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 37px;
    padding-inline: 200px;

    & > div {
        display: flex;
        flex-direction: column;
        gap: 31px;
        width: 50%;

        & > div:nth-child(1) {
            & > h1 {
                font-size: 40px;
                font-weight: 600;
            }

            & > p {
                font-weight: 500;
            }
        }

        & > div:nth-child(3) {
            display: flex;
            flex-direction: column;
            gap: 10px;

            & > h1 {
                font-size: 24px;
                font-weight: 600;
            }

            & > div {
                display: flex;
                gap: 16px;

                & > div {
                    border: 1px solid var(--primary);
                    padding: 10px 20px;
                    color: black;
                    font-weight: 600;
                    border-radius: 32px;
                    width: fit-content;
                }

                & > div[data-is-active="true"] {
                    background: linear-gradient(180deg, #00ae62 0%, #007844 100%);
                    color: white;
                    border: none;
                }
            }
        }
    }

    & > img {
        width: 400px;
        height: 470px;
    }
}

#extracurricularActivities {
    display: flex;
    flex-direction: column;
    gap: 48px;

    & > h1 {
        text-align: center;
        font-size: 32px;
        font-weight: 600;

        & > span {
            color: var(--primary);
        }
    }

    .extracurricular-slider-container {
        position: relative;
        padding: 0 50px;
        
        .extracurricular-card {
            border: 1px solid var(--primary);
            background-image: url("../images/our-advantages-card-bg.png");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            background-color: #f7f7f7;
            border-radius: 24px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            height: 100%;
            
            & > img {
                width: 100%;
                height: auto;
                border-radius: 16px;
                object-fit: cover;
            }

            .card-content {
                display: flex;
                flex-direction: column;
                gap: 8px;

                & > h3 {
                    font-weight: 600;
                    font-size: 18px;
                    color: var(--primary);
                    margin: 0;
                }

                & > p {
                    font-weight: 500;
                    font-size: 14px;
                    margin: 0;
                    line-height: 1.6;
                }
            }
        }
        
        /* Navigation Buttons */
        .extracurricular-prev,
        .extracurricular-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            
            &:after {
                font-size: 18px;
                font-weight: bold;
                color: white;
            }
            
            &:hover {
                background: var(--secondary);
                transform: translateY(-50%) scale(1.1);
            }
        }
        
        .extracurricular-prev {
            left: 0;
        }
        
        .extracurricular-next {
            right: 0;
        }
    }
    
    .swiper-slide {
        height: auto;
        display: flex;
    }
}
#acceptanceProcess {
    & > div {
        display: flex;
        flex-direction: column;
        gap: 48px;
        width: 100%;
        & > div {
            & > h4 {
                font-size: 32px;
                font-weight: 600;
            }
        }

        & > div:nth-child(2) {
            ul.timeline-list {
                position: relative;
                margin: 0;
                padding: 0;
                overflow: hidden;
            }

            ul.timeline-list:before {
                position: absolute;
                content: "";
                width: 3px;
                height: 100%;

                background-image: none;
                background: none;

                border-left: 3px dashed #cbd3e1;

                left: 50%;
                top: 50%;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                z-index: 10;
            }

            ul.timeline-list li {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                min-height: 120px;
                margin-bottom: 40px;
                width: 100%;
                padding: 0 20px;
            }

            .timeline_content {
                color: white;
                padding: 20px;
                border-radius: 25px;
                display: flex;
                flex-direction: column;
                gap: 16px;
                background: linear-gradient(
                    258.95deg,
                    var(--primary) 4.76%,
                    var(--secondary) 97.18%
                );
                max-width: calc(50% - 120px);
                flex: 0 0 auto;
            }
            ul.timeline-list li .timeline_content {
                margin-right: auto;
            }
            ul.timeline-list li:nth-child(2n) {
                flex-direction: row-reverse;
            }

            ul.timeline-list li:nth-child(2n) .timeline_content {
                margin-left: auto;
                margin-right: 0;
            }

            .timeline_content h1 {
                font-size: 20px;
                font-weight: 600;
            }

            .timeline_content p {
                font-weight: 500;
            }

            ul.timeline-list li:before {
                position: absolute;
                content: "";
                width: 200px;
                height: 30px;
                background-image: url("../images/acceptance-process-stepper-step.png");
                background-repeat: no-repeat;
                background-position: center left;
                background-size: 60% 100%;
                left: 50%;
                top: 50%;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(calc(-50%), -50%);
                z-index: 10;
            }

            ul.timeline-list li:nth-child(2n):before {
                -webkit-transform: translate(-50%, -50%) scaleX(-1);
                transform: translate(-50%, -50%) scaleX(-1);
            }
        }
    }
}

#prices {
    & > div {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        background: linear-gradient(
            258.95deg,
            var(--primary) 4.76%,
            var(--secondary) 97.18%
        );
        color: white;
        padding: 24px 24px 34px 24px;
        border-radius: 32px;
        height: 250px;

        & > div {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
        }

        & > div:nth-child(1) {
            gap: 15px;

            & > div {
                & > h1 {
                    font-size: 40px;
                    font-weight: 600;
                }

                & > p {
                    font-weight: 600;
                    font-size: 24px;
                }
            }

            h2 {
                font-size: 40px;
                font-weight: 600;
                text-align: end;

                & > span {
                    color: #b5f6d0;
                }
            }
        }

        & > div:nth-child(2) {
            & > div {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;

                & > div {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    font-size: 16px;
                }
            }

            & > a > button {
                padding-block: 12px;
                padding-inline: 37px;
            }
        }
    }
}

#scholarships {
    display: flex;
    flex-direction: column;
    gap: 48px;

    & > h1 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;

        & > span {
            color: var(--primary);
        }
    }

    & > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        & > div {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 50%;

            & > h1 {
                font-size: 40px;
                font-weight: 600;
            }

            & > p {
                font-weight: 500;
                font-size: 18px;
            }

            & > a > button {
                width: fit-content;
                padding: 14px 20px;
                background: linear-gradient(
                    258.95deg,
                    var(--primary) 4.76%,
                    var(--secondary) 97.18%
                );
                color: white;
            }
        }

        & > img {
            width: 50%;
            height: 400px;
            object-fit: cover;
            border-radius: 16px;
        }
    }
}

#testimonials {
    & > h1 {
        font-size: 40px;
        font-weight: 600;
    }

    .swiper-pagination-bullet {
        width: 13px;
        height: 13px;
        background: linear-gradient(
            180deg,
            var(--primary) 0%,
            var(--secondary) 100%
        );
    }
    .swiper-slide.card {
        border-radius: 32px;
        width: 100%;
        background: #f7f7f7;
        border: none;
        padding-bottom: 50px;

        & > div {
            & > h1 {
                font-size: 20px;
                color: var(--primary);
                font-weight: 700;
            }

            & > p {
                font-weight: 500;
                color: #a5a5a5;
            }
        }

        & > img {
            object-fit: cover;
        }
    }
}

#faq {
    display: flex;
    flex-direction: column;
    gap: 48px;

    & > h1 {
        font-size: 32px;
        font-weight: 600;
        text-align: center;

        & > span {
            color: var(--primary);
        }
    }

    & > div {
        & .card {
            color: #111;
            cursor: pointer;
            & > .card-header {
                border-bottom: 1px solid #000;

                & > svg {
                    min-height: 20px;
                    min-width: 20px;
                    width: 20px;
                    height: 20px;
                }
            }
        }
    }
}

#leadership-management,
#teachers {
    padding-inline: 128px;
    margin-top: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 48px;

    h1 {
        font-size: 32px;
        font-weight: 600;
        span {
            color: var(--primary);
        }
    }

    .card-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
        justify-items: center;
        margin-top: 40px;
    }

    .card {
        border: none;
        & > .card-body {
            & > h5 {
                font-size: 20px;
                font-weight: 700;
            }
            & > p {
                font-size: 14px;
                font-weight: 500;
            }
        }
        & > img {
            object-fit: cover;
            border-radius: 16px;
        }
    }
}

#about-school-page-section {
    position: relative;
    margin-top: 100px;
    height: 550px;
    width: 100%;
    overflow: hidden;

    & > img {
        object-fit: cover;
        position: absolute;
        z-index: -1;
        border-radius: 32px;
        width: calc(100% - 64px);
        height: calc(100% - 70px);
        top: 70px;
        left: 32px;
        right: 32px;
    }

    & > div {
        width: 100%;
        border-radius: 32px;
        height: 100%;
        padding: 20px 50px;
        display: flex;
        align-items: start;
        justify-content: space-between;
        color: white;
        gap: 40px;
        background: linear-gradient(
            268.92deg,
            rgba(0, 0, 0, 0) 3.49%,
            #000000 158.11%
        );

        & > h1 {
            font-size: 40px;
            font-weight: 600;
            padding-top: 30px;
            width: 45%;
        }

        & > img {
            width: 25%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px;
        }
    }
}

#about-environment {
    & > div {
        background: linear-gradient(266.07deg, #00ae62 0.94%, #004829 99.21%);
        color: white;
        padding: 50px;
        border-radius: 32px;
        display: flex;
        flex-direction: column;
        gap: 24px;

        & > h1 {
            font-size: 40px;
            font-weight: 600;
        }

        & > p {
            font-size: 18px;
            font-weight: 500;
        }
    }
}

#school-time-and-kitchen-service {
    display: flex;
    flex-direction: column;
    gap: 36px;

    & > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
        gap: 50px;

        & > div {
            display: flex;
            flex-direction: column;
            gap: 24px;
            width: 50%;

            & > h1 {
                font-size: 40px;
                font-weight: 600;

                & > span {
                    color: var(--primary);
                }
            }

            & > ul {
                display: flex;
                flex-direction: column;
                gap: 12px;
                padding: 0;

                & > li {
                    background: #b5f6d0;
                    padding: 10px 20px;
                    list-style: none;
                    border-radius: 32px;
                    width: fit-content;
                    color: black;
                    font-size: 18px;
                    font-weight: 600;
                }

                & > .green {
                    background: linear-gradient(
                        224.05deg,
                        var(--primary) 5.72%,
                        var(--secondary) 98.99%
                    );
                    color: white;
                }
            }
        }

        & > img {
            width: 50%;
            height: 300px;
            object-fit: cover;
            border-radius: 32px;
        }
    }
}

#scholarship-info {
    & > h1 {
        font-size: 40px;
        font-weight: 600;
    }

    & > h5 {
        font-size: 18px;
        font-weight: 600;
    }

    & > div {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-inline: 100px;

        & > div {
            & > table {
                & > thead > tr > th {
                    border: 1px solid var(--primary);
                    background: #b5f6d0;
                    font-size: 18px;
                    font-weight: 600;
                    text-align: center;
                }

                & > tbody > tr > td {
                    font-size: 18px;
                    font-weight: 600;
                    text-align: center;
                    border: 1px solid black;
                }
            }
        }

        & > h3 {
            font-size: 18px;
            font-weight: 600;
        }
    }
}

#infrastructure {
    & > div {
        width: 100%;
        padding: 20px;
        background: #f7f7f7;
        border-radius: 32px;
        display: flex;

        & > img {
            width: 50%;
            border-radius: 16px;
        }

        & > div {
            display: flex;
            flex-direction: column;
            gap: 22px;
            padding: 30px;

            & > h1 {
                font-size: 40px;
                font-weight: 600;

                & > span {
                    color: var(--primary);
                }
            }

            & > div {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;

                & > div {
                    padding: 10px 20px;
                    background: linear-gradient(224.05deg, #00924c 5.72%, #005d2b 98.99%);
                    width: fit-content;
                    border-radius: 22px;
                    color: white;
                    font-size: 18px;
                    font-weight: 600;
                }
            }
        }
    }
}

#additional-advantage {
    display: flex;
    flex-direction: column;
    gap: 48px;

    & > h1 {
        font-size: 40px;
        font-weight: 600;
        text-align: center;

        & > span {
            color: var(--primary);
        }
    }

    & > div {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        gap: 20px;

        & > div {
            width: calc((100% - (2 * 20px)) / 3);
            text-align: center;
            background: var(--primary);
            padding: 10px 20px;
            border-radius: 64px;
            color: white;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}

#contact {
    margin-top: 70px;
    background-size: 65% 200%, cover;
    background-repeat: no-repeat;
    background-position: right;
    color: white;
    padding-top: 36px;
    padding-bottom: 48px;

    & > div {
        width: 23%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 16px;

        & > h1 {
            font-size: 32px;
            font-weight: 600;
        }

        & > p {
            font-weight: 500;
            font-size: 14px;
            color: #b5f6d0;
        }

        & > form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-top: 36px;

            & > input,
            & > div {
                width: 100%;
                padding: 12px 20px;
                border-radius: 32px;
                border: none;

                &:focus {
                    outline: none;
                }
            }

            & > div {
                display: flex;
                background: #fff;
                gap: 16px;

                & > input {
                    border: none;

                    &:focus {
                        outline: none;
                    }
                }
            }

            & > button {
                padding: 12px;
            }
        }
    }
}

footer {
    display: flex;
    flex-direction: column;
    background-size: 65% 100%, cover;
    background-repeat: no-repeat;
    background-position: right;

    & > div {
        display: flex;
        align-items: start;
        justify-content: space-between;
        color: white;
        padding-block: 48px;

        & a {
            color: white;

            &:hover {
                color: inherit;
                text-decoration: none;
            }
        }

        & li {
            list-style: none;
        }

        & > div {
            display: flex;
            flex-direction: column;
        }

        & > div:nth-child(1) {
            gap: 16px;
        }

        & > div:nth-child(2) {
            gap: 24px;

            & > h1 {
                font-size: 28px;
                font-weight: 600;

                & > a {
                    font-size: 18px;
                    font-weight: 500;
                }
            }

            & > ul {
                padding: 0;
                display: flex;
                flex-direction: column;
                gap: 8px;

                & > li > a {
                    font-size: 18px;
                    font-weight: 500;
                }
            }
        }

        & > div:nth-child(3) {
            & > h1 {
                font-size: 28px;
                font-weight: 600;
            }

            & > ul {
                padding: 0;

                & > li > a {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    font-size: 18px;
                }
            }
        }
    }
}

#submit-application-page {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 0;
    & > div:nth-child(1) {
        display: flex;
        gap: 16px;
        align-items: center;
        -webkit-box-shadow: 0 9px 32px -18px rgba(34, 60, 80, 0.42);
        -moz-box-shadow: 0 9px 32px -18px rgba(34, 60, 80, 0.42);
        box-shadow: 0 9px 32px -18px rgba(34, 60, 80, 0.42);
        padding: 10px 30px;
        & > img {
            width: 200px;
        }
    }

    & > div:nth-child(2) {
        width: 100%;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 21px;
        text-align: center;

        & > h1 {
            width: 30%;
            font-size: 32px;
            font-weight: 600;
        }
    }
}

#submit-application-modal {
    &.fade.show {
        backdrop-filter: blur(16px);
    }

    .modal-header,
    .modal-footer {
        border: none;
    }

    .modal-header {
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        & > button > span {
            padding: 4px 12px;
            border-radius: 50%;
            background: #f7f7f7;
        }
        & > .modal-title {
            font-size: 32px;
            font-weight: 600;
        }
    }

    .modal-content {
        border-radius: 32px;
        border: none;

        & > .modal-body {
            & > form {
                display: flex;
                flex-direction: column;
                gap: 16px;
                width: 100%;

                & > input,
                & > div,
                & > select {
                    background: #f7f7f7;
                }

                & > input,
                & > div,
                & > button {
                    width: 100%;
                    padding: 12px 20px;
                    border-radius: 32px;
                    border: none;
                    font-weight: 500;
                }
                & > div:nth-child(4) {
                    display: flex;
                    gap: 16px;
                    & > svg {
                        width: 30px;
                    }

                    & > input {
                        border: none;
                        background: none;

                        &:focus {
                            outline: none;
                        }
                    }
                }

                & > div:nth-child(2),
                & > div:nth-child(3) {
                    padding: 0;
                    margin: 0;

                    & > .choices__list {
                        border-radius: 10px;
                    }

                    & > .choices__inner {
                        border: none;

                        & .choices__item--selectable {
                            border: none;
                        }
                    }

                    & .choices__item {
                        text-align: start;
                        padding-inline: 10px;
                        font-size: 16px;
                        font-weight: 500;
                        border-bottom: 1px solid var(--primary);

                        &::after {
                            display: none;
                        }
                    }

                    & .choices__item--selectable.is-highlighted {
                        background: var(--primary);
                        color: white;
                    }
                }
            }
        }
    }
}

#submit-application-success-modal {
    &.fade.show {
        backdrop-filter: blur(16px);
    }
    .modal-content {
        border-radius: 32px;
        padding: 24px;
    }
    .modal-header {
        border-bottom: 0px;
        & > .close {
            padding: 2px 8px;
            border-radius: 50%;
            background: #f7f7f7;
        }
    }
    .modal-body {
        gap: 24px;
        & > div {
            display: flex;
            flex-direction: column;
            gap: 16px;
            h1 {
                font-size: 32px;
                font-weight: 600;
            }
            p {
                font-size: 14px;
                font-weight: 500;
            }
        }
    }
}
@media screen and (max-width: 1610px) {
    #ourAdvantages {
        & > div:nth-child(1) {
            & > div {
                flex-direction: row;
                gap: 16px;
                width: 100%;

                & > img {
                    order: -1;
                }

                & > div {
                    flex-direction: row;
                    flex-wrap: wrap;
                }
            }
        }
    }

    #acceptanceProcess {
        & > div {
            padding: 20px 150px;
        }
    }
}

@media screen and (max-width: 1325px) {
    .section {
        padding-inline: 20px;
    }

    #cta {
        & > div {
            padding: 50px 30% 50px 50px;
        }
    }

    #whyWe {
        & > div {
            flex-direction: column;

            & > div {
                flex-direction: row;
            }

            & > a {
                width: 100%;
            }
        }
    }

    #ourAdvantages {
        & > div:nth-child(1) {
            & > div {
                flex-direction: column;

                & > div {
                    flex-direction: row;
                    flex-wrap: nowrap;
                }
            }
        }
    }

    #aboutSchool {
        flex-direction: column;
        align-items: center;
        justify-content: center;

        & > img {
            display: none;
        }

        & > div {
            & > img {
                display: block !important;
            }

            & > div > h1 {
                font-size: 20px;
            }
        }
    }

    #extracurricularActivities {
        .extracurricular-slider-container {
            padding: 0 40px;
            
            .extracurricular-prev,
            .extracurricular-next {
                width: 35px;
                height: 35px;
                
                &:after {
                    font-size: 16px;
                }
            }
        }
    }

    #about-school-page-section {
        & > img {
            left: 20px;
            right: 20px;
        }
        & > div {
            & > img {
                width: 50%;
            }
        }
    }
}

@media screen and (max-width: 1200px) {
    .navbar-collapse {
        .navbar-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            & > .nav-item {
                width: fit-content;
            }
        }
        & > .navbar-right {
            height: 80vh;
            flex-direction: column;
            justify-content: start;
            & > a:nth-child(2),
            & > a:nth-child(3) {
                order: -1;
            }
        }
    }
    #acceptanceProcess {
        & > div {
            padding-left: 0px;

            & > div {
                & > h4 {
                    font-size: 32px;
                    font-weight: 600;
                }
            }

            & > div:nth-child(2) {
                ul.timeline-list {
                    position: relative;
                    margin: 0;
                    padding: 0;
                    padding-left: 60px;
                    overflow: hidden;
                }

                ul.timeline-list:before {
                    left: 40px;
                    bottom: 0;
                }

                ul.timeline-list li {
                    position: relative;
                    display: block;
                    min-height: 120px;
                    margin-bottom: 40px;
                    width: 100%;
                    padding-left: 80px;
                }

                .timeline_content {
                    color: white;
                    padding: 20px;
                    border-radius: 25px;
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    background: linear-gradient(
                        258.95deg,
                        var(--primary) 4.76%,
                        var(--secondary) 97.18%
                    );
                    width: 100%;
                    max-width: 500px;
                    text-align: left;
                    margin-left: 0px !important;
                }

                .timeline_content h1 {
                    font-size: 20px;
                    font-weight: 600;
                }

                .timeline_content p {
                    font-weight: 500;
                }

                ul.timeline-list li:before {
                    position: absolute;
                    content: "";
                    width: 200px;
                    height: 30px;
                    background-image: url("../images/acceptance-process-stepper-step.png");
                    background-repeat: no-repeat;
                    background-position: center left;
                    background-size: 60% 100%;
                    left: -20px;
                    z-index: 10;
                    -webkit-transform: translate(-50%, -50%) scaleX(-1);
                    transform: translate(-50%, -50%) scaleX(-1);
                }
            }
        }
    }
    #contact {
        & > div {
            width: 50%;
        }
    }
}

@media screen and (max-width: 1000px) {
    #prices {
        & > div {
            height: auto;

            & > div {
                flex-direction: column;
                text-align: start;
            }

            & > div:nth-child(1) {
                & > h2 {
                    display: flex;
                    justify-content: start;
                    align-items: center;
                    gap: 10px;
                }
            }

            & > div:nth-child(2) {
                flex-direction: column;
                gap: 24px;

                & > div {
                    align-items: start;
                }
            }
        }
    }

    #scholarships {
        & > div {
            flex-direction: column-reverse;
            width: 100%;

            & > div,
            & > img {
                width: 100%;
            }
        }
    }

    #contact {
        & > div {
            width: 40%;
        }
    }

    #footer {
        flex-wrap: wrap;
        gap: 16px;

        & > div:first-child {
            flex-direction: row;
            justify-content: space-between;
            flex: 1 1 100%;

            & > img {
                object-fit: contain;
            }
        }
    }

    #aboutSchool {
        padding: 70px 20px 20px 20px;

        & > div {
            width: 100%;
        }
    }

    #ourAdvantages {
        & > div:nth-child(1) {
            & > div {
                flex-direction: column;

                & > div {
                    flex-direction: row;
                    flex-wrap: wrap;
                }
            }
        }
    }
    #back-btn {
        display: flex;
        cursor: pointer;
    }
    #about-school-page-section {
        height: auto;
        & > div {
            flex-direction: column-reverse;
            align-items: center;
            text-align: center;
            & > h1 {
                width: 100%;
            }
            & > img {
                width: 100%;
                max-height: 400px;
                object-fit: contain;
            }
        }
    }
    #about-environment {
        & > div {
            h1 {
                font-size: 24px;
            }
            p {
                font-size: 18px;
            }
        }
    }
    #school-time-and-kitchen-service {
        & > div {
            flex-direction: column-reverse;
            & > img {
                width: 100%;
            }
            & > div {
                width: 100%;
            }
        }
    }
    #scholarship-info {
        & > div {
            padding: 0;
            & > div {
                overflow-y: scroll;
            }
        }
    }
    #infrastructure {
        & > div {
            flex-direction: column;
            width: 100%;
            & > img {
                width: 100%;
                object-fit: cover;
            }
        }
    }
    #additional-advantage {
        & > div {
            flex-direction: column;
            align-items: center;
            & > div {
                width: fit-content;
            }
        }
    }
}

@media screen and (max-width: 760px) {
    .navbar {
        padding: 32px 16px;
    }

    #cta {
        height: 600px;
        & > div {
            width: 100%;
            text-align: center;
            padding: 20px;
            & > div {
                flex-direction: column;
                width: 100%;
                & > a > button {
                    width: 100%;
                }
            }
        }

        & > img {
            object-fit: cover;
            border-radius: 32px;
        }
    }

    #whyWe {
        & > div {
            flex-direction: column;

            & > div {
                flex-direction: column;
                & > div {
                    height: auto;
                    width: 100%;
                    padding-block: 100px;
                }
            }
        }
    }

    #ourAdvantages {
        & > div {
            & > div {
                & > img {
                    width: 100%;
                }
            }
        }
    }

    #extracurricularActivities {
        .extracurricular-slider-container {
            padding: 0 30px;
            
            .extracurricular-prev,
            .extracurricular-next {
                width: 30px;
                height: 30px;
                
                &:after {
                    font-size: 14px;
                }
            }
            
            .extracurricular-card {
                padding: 15px;
                gap: 16px;
                
                .card-content {
                    & > h3 {
                        font-size: 16px;
                    }
                    
                    & > p {
                        font-size: 13px;
                    }
                }
            }
        }
    }

    #contact {
        background-size: 120% 120%, cover;

        & > div {
            width: 100%;

            & > form {
                width: 100%;
            }
        }
    }

    #footer {
        background-size: 120% 30%, cover;
    }

    #submit-application-page {
        & > div:nth-child(2) {
            width: 100%;
            & > h1 {
                width: 100%;
            }
        }
    }
    #acceptanceProcess {
        & > div {
            padding: 0px !important;
            width: 100% !important;
            max-width: 100% !important;
            margin: 0;
            & > div:nth-child(2) {
                width: 100%;
                padding: 0px;
                margin-inline: 0px;
                & > div {
                    width: 100%;
                    padding: 0px;
                }
                ul.timeline-list:before {
                    display: none;
                }
                ul.timeline-list {
                    padding-left: 0px;
                    margin-left: 0px;
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                }
                ul.timeline-list li {
                    margin-inline: 0 !important;
                    padding-left: 20px;
                    width: 100% !important;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding-inline: 20px;
                }
                ul.timeline-list li .timeline_content {
                    width: 100% !important;
                    margin-inline: 0px;
                    max-width: 100%;
                }
                ul.timeline-list li:before {
                    display: none;
                }
            }
        }
    }
}

@media screen and (max-width: 505px) {
    #leadership-management,
    #teachers {
        padding-inline: 20px;
    }
}

@media screen and (max-width: 455px) {
    #prices {
        & > div {
            & > div:nth-child(1) {
                h2 {
                    font-size: 32px;
                }
            }

            & > div:nth-child(2) {
                & > div {
                    flex-wrap: wrap;
                }
            }
        }
    }

    #footer {
        & > div:nth-child(1) {
            & > img {
                object-fit: contain;
            }
            flex-direction: column;
        }
    }
}

@media screen and (max-width: 400px) {
    #cta {
        padding-inline: 10px;
        & > img {
            left: 10px;
            right: 10px;
            width: calc(100% - 20px);
        }
        & > div {
            & > h1 {
                font-size: 32px;
            }
        }
    }
    #acceptanceProcess {
        & > div {
            gap: 24px;
        }
    }
}

/* ============================================
   Extracurricular Activities Carousel Styles
   ============================================ */

/* Hide default Swiper navigation arrows */
.activity-image-carousel-container .swiper-button-prev::after,
.activity-image-carousel-container .swiper-button-next::after {
    display: none !important;
    content: '' !important;
}

/* Custom navigation styling */
.activity-image-carousel-container .swiper-button-prev,
.activity-image-carousel-container .swiper-button-next {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Add custom arrow icons */
.activity-image-carousel-container .swiper-button-prev::before {
    content: '‹';
    font-size: 20px;
    line-height: 1;
    color: #666;
    font-weight: normal;
}

.activity-image-carousel-container .swiper-button-next::before {
    content: '›';
    font-size: 20px;
    line-height: 1;
    color: #666;
    font-weight: normal;
}

/* Default state - subtle and transparent */
.activity-image-carousel-container .swiper-button-prev,
.activity-image-carousel-container .swiper-button-next {
    opacity: 0.3;
    transition: all 0.3s ease;
}

/* Hover effect - become visible */
.activity-image-carousel-container .swiper-button-prev:hover,
.activity-image-carousel-container .swiper-button-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.95) !important;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
}

/* Pagination styling - subtle */
.activity-image-carousel-container .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5) !important;
    opacity: 0.5;
    width: 6px !important;
    height: 6px !important;
}

.activity-image-carousel-container .swiper-pagination-bullet-active {
    background: rgba(255,255,255,0.9) !important;
    opacity: 0.9;
    width: 8px !important;
    height: 8px !important;
}

.activity-image-carousel-container .swiper-pagination {
    opacity: 0.7;
}

/* Fix card overflow issue */
.extracurricular-card {
    overflow: hidden !important;
    position: relative;
}

.activity-image-carousel-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.activity-image-carousel-container .swiper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.activity-image-carousel-container .swiper-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

.activity-image-carousel-container .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
}

.activity-image-carousel-container .swiper-slide img {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
}

/* Main slider navigation - smaller and subtle */
.extracurricular-slider-container .extracurricular-prev,
.extracurricular-slider-container .extracurricular-next {
    width: 35px !important;
    height: 35px !important;
    background: rgba(255,255,255,0.95) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.extracurricular-slider-container .extracurricular-prev::after,
.extracurricular-slider-container .extracurricular-next::after {
    font-size: 16px !important;
    font-weight: bold;
    color: #333 !important;
}

.extracurricular-slider-container .extracurricular-prev:hover,
.extracurricular-slider-container .extracurricular-next:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.25) !important;
}

.extracurricular-slider-container .extracurricular-prev {
    left: 0 !important;
}

.extracurricular-slider-container .extracurricular-next {
    right: 0 !important;
}
