* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

nav {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 55;
    height: 10vh;
    background-color: white;
    display: flex;
    justify-content: space-between;
    padding: 0px 60px;
    align-items: center;
    box-shadow: 8px 8px 24px -19px rgba(66, 68, 90, 1);
}

nav section h3 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    letter-spacing: 3px;
    font-optical-sizing: auto;
    font-style: normal;
}

nav section h6 {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
}

nav .right-side ul {
    display: flex;
    list-style: none;
}

nav .right-side ul li {
    margin: 0px 12px;
    font-size: 18px;
    cursor: pointer;
}

nav .right-side ul li:last-child {
    margin-right: 24px;
}

nav .right-side .contact-link {
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

/* --------------------------------------- */
@media screen and (max-width: 786px) {

    nav {
        height: 11vh;
        padding: 0px 20px;
    }

    nav section h3 {
        font-size: 16px;
        letter-spacing: 2px;

    }

    nav .right-side ul {
        display: none;
    }

    nav .right-side .contact-link {
        background-color: black;
        padding: 8px;
        border-radius: 5px;
        color: white;
        font-size: 18px;
        text-decoration: none;
    }

}

/* -------------------------------------------------------- */

main {
    display: flex;
    flex-direction: row;
    align-items: center;

}

main .left-side {
    width: 60%;
}

main .right-side {
    width: 40%;
    font-family: "Playfair Display", serif;
    margin: 0px 50px;
}

main .right-side h1 {
    font-size: 48px;
}

main .right-side h3 {
    margin-top: 25px;
}

main .right-side p {
    margin-top: 25px;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 50px;
}

main .left-side img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

main .right-side .contact-link {
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

/* ----------------------------------------------- */
@media screen and (max-width: 786px) {
    main {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;

    }

    main .left-side {
        width: 100%;
    }

    main .right-side {
        width: 100%;
        font-family: "Playfair Display", serif;
        margin: 30px 0px;
        text-align: center;
    }

    main .right-side h1 {
        font-size: 34px;
        padding: 0px 15px;
    }

    main .right-side h3 {
        margin-top: 10px;
        font-size: 14px;
    }

    main .right-side p {
        margin-top: 15px;
        font-weight: 500;
        font-size: 16px;
        padding: 0px 15px;
        margin-bottom: 30px;
    }

    main .left-side img {
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }



}


/*------------------------------------------------------------------------------------------------------------*/
.review-box{
    display: flex;
    justify-content: center;
}  

.review-box-text{
    text-align: center;
    font-size: 48px;
    margin-top: 10vh;
    font-family: "Playfair Display", serif;
}
  /* Carousel Container */
  .carousel-container {
    width: 80%;
    /* max-width: 1000px; */
    background: white;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  }
  
  /* Swiper Wrapper */
  .swiper {
    width: 100%;
    overflow: hidden;
  }
  
  /* Review Cards */
  .review-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #ddd;
    min-height: 150px;
  }
  
  /* Review Text */
  .review-card p {
    font-size: 16px;
    color: #333;
  }
  
  .review-card h4 {
    font-weight: bold;
    color: #007bff;
    margin-top: 10px;
  }
  
  /* Swiper Navigation Buttons */
  .swiper-button-prev,
  .swiper-button-next {
    color: #007bff;
  }
  
  /* Swiper Pagination Dots */
  .swiper-pagination-bullet {
    background: #007bff;
  }
  


/*------------------------------------------------------------------------------------------------------------*/


/* ---------------------------------------------------------------------------------------------------------------- */
.courses h1 {
    text-align: center;
    font-size: 58px;
    margin-top: 24px;
    font-family: "Playfair Display", serif;
}

.courses .wrapper {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.courses .wrapper .box {
    width: 30%;
    height: 300px;
    margin-top: 10vh;
    position: relative;
    border-radius: 20px;
    box-shadow: 8px 8px 24px -19px rgba(66, 68, 90, 1);
}

.courses .wrapper .box-bg {
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    opacity: 0.2;
    border-radius: 20px;
}

.courses .wrapper .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.courses .wrapper .box p {
    position: absolute;
    bottom: 0px;
    left: 0px;
    color: white;
    font-size: 24px;
    background-color: black;
    padding: 10px;
    text-align: center;
    width: 100%;
}

/* ------------------------------ */

@media screen and (max-width: 786px) {

    .review-box-text{
        text-align: center;
        font-size: 28px;
        margin-top: 5vh;
        font-family: "Playfair Display", serif;
    }
    .courses .wrapper {
        width: 100%;
    }

    .courses .wrapper .box {
        width: 45%;
        height: 300px;
        margin-top: 10vh;
        position: relative;
        border-radius: 20px;
        box-shadow: 8px 8px 24px -19px rgba(66, 68, 90, 1);
    }

    .courses .wrapper .box p {
        position: absolute;
        bottom: 0px;
        left: 0px;
        color: white;
        font-size: 18px;
        background-color: black;
        padding: 5px 1px;
        text-align: center;
        width: 100%;
    }

}

/* ---------------------------------------------------------------- */

.contact-us h1 {
    text-align: center;
    font-size: 58px;
    margin: 10vh 0px;
    font-family: "Playfair Display", serif;
}

.contact-us .wrapper .contact-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 44px;
    padding: 0px 15px;
    letter-spacing: 2px;
    font-optical-sizing: auto;
    font-style: normal;
}

.contact-us .wrapper .contact-info h6 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-top: 20px;
    padding: 0px 15px;
    font-optical-sizing: auto;
    font-style: normal;
    margin-bottom: 25px;
}

.contact-us .wrapper {
    display: flex;
    width: 80%;
    flex-direction: row;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

.contact-us .wrapper .map-location {
    width: 50%;
}

.contact-us .wrapper .contact-info {
    width: 50%;
    text-align: center;
}

.contact-us .wrapper .contact-info .contact-link {
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

/* ------------------------------------------ */

@media screen and (max-width: 786px) {
    .contact-us h1 {
        text-align: center;
        font-size: 48px;
        margin: 5vh 0px;
        font-family: "Playfair Display", serif;
    }

    .contact-us .wrapper .map-location {
        width: 100%;
    }
    
    .contact-us .wrapper .contact-info {
        width: 100%;
    }

    .contact-us .wrapper .contact-info h3 {
        font-size: 32px;
        margin-top: 50px;
    }

    .contact-us .wrapper {
        display: flex;
        width: 80%;
        flex-direction: column;
        margin: auto;
        justify-content: space-between;
        align-items: center;
    }

}