main section {
    padding-block: 2em;
    margin-bottom: 3em;
}

.banner-section {
    background-image: url('../Images/main-banner.jpg');
    width: 100%;
    height: 110vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.banner-section .quote {
    font-size: 4rem;
    font-weight: bold;
    white-space: nowrap;
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
}

.banner-section .buttons {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    column-gap: 2em;
    align-items: center;
}

.banner-section .banner-btn {
    color: white;
    font-size: 1rem;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 5px;
    padding: .8em 1.5em;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
}

.banner-section .banner-btn:hover {
    background-color: #3CB371;
    color: black;
    border-color: transparent;
}

.about-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 2em;
    width: 80%;
    margin-inline: auto;
}

.about-us-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.about-us .about-us-details {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
    width: 100%;
    cursor: default;
}

.about-us .section-name,
.about-us .heading,
.about-us .content {
    text-align: center;
}

.about-us .section-name,
.about-us .heading {
    font-size: 2rem;
}

.about-us .heading {
    color: #3CB371;
    font-weight: bold;
}

.about-us .content {
    line-height: 1.4em;
    font-size: 1.3rem;
}

.about-us .know-more-btn {
    border: 1px solid #3CB371;
    background-color: #fff;
    padding: .8em 1.5em;
    font-size: 1.1rem;
    margin-inline: auto;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all ease 0.15s;
}

.about-us .know-more-btn:hover {
    background-color: #3CB371;
    color: white;
}

.language-section {
    background-color: #d5d5d7;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    padding-block: 1em;
}

.language-section .heading {
    margin-bottom: 1em;
}

.language-container {
    display: grid;
    grid-template-columns: repeat(5, 100px);
    justify-content: space-evenly;
}

.language-container img {
    width: 100px;
    object-fit: cover;
}

.why-choose-us-section {
    width: 80%;
    margin-inline: auto;
}

.why-choose-us-section .title {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 2em;
}

.reasons-container {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    justify-content: space-evenly;
    gap: 2em;
    color: white;
}

.reason-div {
    position: relative;
    background-color: #37b371;
    letter-spacing: .5px;
    padding: 1.5em 2em 2em 1.5em;
    border-radius: 8px;
    height: 160px;
}

.reason-div:nth-of-type(2) {
    margin-top: 2em;
    padding-right: 1em;
}

.reason-div .heading {
    font-weight: bold;
    text-align: center;
    margin-bottom: .5em;
    font-size: 1.5rem;
    margin-left: 1em;
    white-space: nowrap;
}

.reason-div:nth-of-type(2) .heading {
    text-align: right;
}

.reason-div .image-div {
    width: 60px;
    background-color: #fff;
    padding: 0 0 2px 0;
    position: absolute;
    top: -20px;
    left: -5px;
    border-radius: 8px;
}

.reason-div img {
    width: 90%;
    object-fit: cover;
}

.reason-div .reason {
    font-size: 1.2rem;
    line-height: 1.2em;
    width: 92%;
}

.welfare-section {
    background-image: linear-gradient(to right, #3d3d3d, #1b1b1b);
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2em;
    padding: 2em 4em;
    color: white;
    align-items: center;
    height: 80vh;
}

.welfare-section .information {
    display: flex;
    flex-direction: column;
    gap: 2em;
    font-weight: bold;
}

.welfare-section .information .title {
    font-size: 3rem;
    letter-spacing: .5px;
}

.welfare-section .title>span {
    color: #3CB371;
}

.welfare-section .info {
    line-height: 1.2em;
    font-size: 2.5rem;
}

.welfare-section .info>span {
    color: #3cb371;
}

.welfare-section .description {
    font-size: 1.5rem;
    line-height: 1.2em;
    font-weight: normal;
}

.welfare-section .image-div {
    width: 500px;
    justify-self: center;
}

.welfare-section .image-div>img {
    margin-bottom: 1em;
}

.welfare-section .image-div>div {
    width: 100%;
    display: grid;
    grid-template-columns: 45% 54%;
    gap: .8em;
}

.welfare-section .image-div img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.completed-counts-section {
    background-color: black;
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 250px);
    justify-content: space-around;
    padding: 3em 2em;
    margin-bottom: 5em;
}

.completed-counts-section>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5em;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    line-height: 1.2em;
}

.completed-counts-section .count {
    font-size: 2.5rem;
}

.what-you-get-section {
    width: 80%;
    margin-inline: auto;
}

.what-you-get-section .heading {
    font-size: 2rem;
    text-align: center;
    line-height: 1.2em;
    font-weight: bold;
    margin-bottom: 1em;
}

.complimentaries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 2.5em;
    font-size: 1.5rem;
}

.complimentaries-grid>div {
    border-left: 6px solid #3CB371;
    border-bottom: 6px solid #3CB371;
    border-radius: 4px;
    padding: .5em 2em;
    line-height: 1.2em;
}

.uiux-banner-section {
    width: 80%;
    margin-inline: auto;
}

.uiux-banner-section>div {
    position: relative;
}

.uiux-banner-section .banner {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
    border-radius: 20px;
    margin-bottom: 0.5em;
}

.uiux-banner-section .banner:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .3);
}

.uiux-banner-section .arrow-icon-black {
    width: 200px;
    height: 180px;
    object-fit: contain;
    position: absolute;
    bottom: -120px;
    left: 58%;
    z-index: -1;
}

.uiux-banner-section .know-more-btn {
    background-image: linear-gradient(to right, #4a9c67, #3d5940);
    color: white;
    padding: .8em 1.5em;
    font-size: 1.2rem;
    margin-inline: auto;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin-top: 1em;
    border: none;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.uiux-banner-section .know-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .3);
}

.rewards-section{
    position: relative;
    overflow: hidden;
    padding-block: 4em;
    background-color: black;
}

.rewards-container{
    width: 80%;
    margin-inline: auto;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}

.rewards-container > div{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.rewards-container .heading{
    line-height: 1.3em;
    font-size: 3rem;
    width: 18ch;
}

.rewards-container span{
    color: #37b371;
}

.rewards-container p{
    font-size: 1.35rem;
    line-height: 1.1em;
}

.rewards-container .download-btn-div{
    display: flex;
    gap: .5em;
    align-items: center;
}

.rewards-container button{
    border: none;
    border-radius: 10px;
    background-color: #37b371;
    color: white;
    padding: .5em 1em;
    font-size: 1.3rem;
    font-weight: bold;
}

.rewards-container .download-btn-div img{
    width: 25px;
    object-fit: contain;
}

.rewards-container > div > img{
    width: 200px;
    object-fit: cover;
}

.rewards-container > img{
    width: 400px;
    object-fit: cover;
    justify-self: center;
}

.rewards-section .gift-box{
    position: absolute;
    bottom: 100px;
    left: -80px;
    width: 200px;
}

.rewards-section .card-img{
    position: absolute;
    right: -100px;
    bottom: 150px;
    width: 300px;
}

.courses-section {
    width: 90%;
    height: auto;
    margin-inline: auto;
}

.courses-section .heading {
    text-align: center;
    font-size: 2rem;
    color: #3CB371;
    font-weight: bold;
    white-space: nowrap;
    margin-bottom: 1em;
}

.courses-section .courses-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1em;
    margin-bottom: 1em;
}

.courses-section .view-all-btn {
    border: 1px solid #3CB371;
    background-color: #fff;
    padding: .8em 1.5em;
    font-size: 1.3rem;
    margin-inline: auto;
    display: block;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all ease 0.15s;
}

.courses-section .view-all-btn:hover {
    background-color: #3CB371;
    color: white;
}

.courses-container .course {
    height: 450px;
    width: 90%;
    cursor: default;
    margin-bottom: 1em;
    margin-inline: auto;
}

.course .details-container {
    height: 85%;
    width: 90%;
    perspective: 1000px;
    margin-bottom: 1em;
    margin-inline: auto;
}

.course .course-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    position: relative;
    border-radius: 10px;
}

.details-container:hover .course-inner {
    transform: rotateY(-180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    border: 2px solid #d9d9d9;
}

.card-back {
    transform: rotateY(-180deg);
    background-color: #3CB371;
    color: white;
    font-size: 1.1rem;
    line-height: 1.2em;
}

.courses-container .course .details {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1em;
    padding-inline: 1em;
}

.course .details>div {
    display: flex;
    flex-direction: column;
    gap: .5em;
    letter-spacing: .2px;
    font-size: .8rem;
}

.course .mode {
    margin-bottom: 1em;
    padding-left: 1em;
}

.popular-programs-container .course .image {
    height: 50%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.kickstarter-programs-container .course .image {
    height: 50%;
    width: 55%;
    display: block;
    margin-inline: auto;
    object-position: center;
    object-fit: contain;
}

.courses-container .course .details .title {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.1em;
    text-align: center;
}

.courses-container .reviews-faq {
    display: flex;
    justify-content: space-between;
}

.courses-container .course .description {
    padding: 1em;
}

.courses-container .course .explore-btn {
    font-size: 1.2rem;
    color: white;
    background-color: #37b371;
    border: 1px solid transparent;
    font-weight: bold;
    height: 10%;
    width: 90%;
    padding: 0.5em 1em;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
    border-radius: 12px;
    margin-inline: auto;
    display: block;
}

.courses-container .course .explore-btn:hover {
    background-color: white;
    border: 1px solid #37b371;
    color: #37b371;
    transform: scale(1.05);
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .3);
}

.workshop-count-section {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 2em;
    justify-content: space-around;
    align-items: center;
    padding: 2em;
    background-color: #37b371;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0;
    height: 250px;
}

.workshop-count-section>div,
.workshop-count-section>p {
    justify-self: center;
    line-height: 1.3em;
}

.workshop-count-section>div {
    display: flex;
    gap: 1em;
    font-size: 2rem;
    font-weight: bold;
    align-items: center;
}

.workshop-count-section>div>p:last-child {
    font-size: 5rem;
}

.workshops-section {
    background-color: rgb(0, 0, 0);
    display: grid;
    height: 45vh;
}

.workshops-section .workshop-container {
    align-self: center;
    color: white;
    width: 100%;
}

.workshop-container .heading {
    color: #3CB371;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.workshop-container .details {
    display: flex;
    justify-content: space-evenly;
    margin-top: 2em;
    font-size: 1.5rem;
}

.workshop-container .info p {
    margin-bottom: 0.7em;
}

.workshop-container .info .duration-price {
    color: gray;
}

.workshop-container .details .book-btn {
    font-size: 1.3rem;
    padding: .8em 1.5em;
    background-color: #3CB371;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform .3s ease-in-out;
    border-radius: 10px;
}

.workshop-container .details .book-btn:hover {
    transform: scale(1.05);
}

.review-section {
    width: 80%;
    margin-inline: auto;
}

.review-section .review-intro {
    background-color: #f4f4f4;
    padding: 1em 2.5em 2em 2.5em;
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
    margin-bottom: 2em;
    line-height: 1.3em;
    border-radius: 10px;
}

.review-intro .title {
    font-weight: bold;
    font-size: 2rem;
    display: inline-block;
    white-space: nowrap;
}

.review-intro .description {
    width: 70%;
    font-size: 1.3rem;
    line-height: 1.3em;
}

.review-intro .sketch {
    display: inline-block;
    color: white;
    background-image: url('../Images/sketch-art.png');
    background-size: cover;
    background-position: center;
    padding: 2em 1.6em 2em 2em;
    margin-left: -.7em;
}

.leave-review-btn {
    width: fit-content;
    height: fit-content;
    justify-self: flex-end;
    border: none;
    color: white;
    background-color: #37b371;
    border-radius: 8px;
    padding: 1em;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.leave-review-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .3);
}

.review-wrapper {
    position: relative;
}

.reviews-container {
    width: 100%;
}

.swiper-navBtn-r {
    color: white;
    background-color: #3CB371;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
}

.swiper-navBtn-r::after {
    font-size: 1.1rem;
    font-weight: bold;
}

.review-div {
    border-radius: 10px;
    background-color: #fffdfd;
    border: 1px solid #d9d9d9;
    padding: 1em;
    height: 350px;
}

.review-div.short {
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
    padding: 0;
}

.review-div.short .review-div {
    width: 100%;
}

.review-div .reviewer-info {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
}

.reviewer-info .info>div {
    margin-bottom: .3em;
    font-size: 1rem;
    color: gray;
}

.reviewer-info .info .name {
    font-weight: bold;
    font-size: 1.2rem;
    color: black;
}

.review-div .review {
    font-size: 1.1rem;
    line-height: 1.2em;
}

.review-div img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-form-container {
    width: 450px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1000;
    border: 3px solid #545454;
    border-radius: 10px;
    display: none;
}

.review-form-container .head-div {
    position: relative;
}

.review-form-container .heading {
    color: white;
    font-weight: bold;
    background-image: linear-gradient(to right, #4a9c67, #3d5940);
    text-align: center;
    padding: 1em;
    font-size: 1.5rem;
    border-radius: 6px;
    border-bottom: 3px solid #545454;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: content-box;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 1em 2em;
}

.review-form>div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.review-form input,
.review-form select,
.review-form textarea {
    border: 2px solid black;
    border-radius: 4px;
    padding: .5em .8em;
    font-size: 1.1rem;
}

.review-form textarea {
    resize: none;
}

.review-form .buttons-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.review-form .buttons-div>button {
    width: fit-content;
    padding: 0.6em 1.4em;
    border: none;
    border-radius: 8px;
    margin-inline: auto;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}

.review-form .buttons-div .cancel-btn {
    color: black;
    border: 1px solid #37b371;
}

.review-form .buttons-div .submit-btn {
    background-image: linear-gradient(to right, #4a9c67, #3d5940);
    color: white;
}

.review-form-container.active {
    animation: zoomin .5s ease;
}

.review-form-container.close {
    animation: zoomout .5s ease;
}

.review-form-wrapper.active {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 1s ease;
}

.projects-section {
    width: 80%;
    margin-inline: auto;
}

.projects-section .heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1em;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    justify-content: space-between;
    align-items: center;
}

.project {
    display: grid;
    grid-template-rows: 10% 30% 60%;
    gap: 2em;
    height: 550px;
}

.project .project-title {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.1em;
}

.project img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.project .description {
    font-size: 1.2rem;
    line-height: 1.2em;
}

.certificates-section {
    background-color: #dddedf;
    display: grid;
    align-items: center;
    grid-template-columns: 40% 60%;
    justify-content: space-evenly;
    height: 300px;
    padding: 2em;
}

.certificates-section .details>div {
    margin-bottom: 1em;
    line-height: 1.2em;
    margin-left: 2em;
}

.certificates-section .details .title {
    font-size: 2rem;
    font-weight: bold;
}

.certificates-section .details .info {
    font-size: 1.5rem;
}

.certificates-container.swiper {
    width: 500px;
    padding: 2em;
}

.swiper-slide.certificate {
    background-position: center;
    background-size: cover;
    width: 400px !important;
    height: 250px !important;
}

.swiper-slide.certificate img {
    width: 100% !important;
    height: 100% !important;
}

.swiper-btns {
    color: white;
    background-color: #3CB371;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
}

.swiper-btns::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Insta Feeds */
.instagram-feed-section {
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 90vh;
    row-gap: 1em;
    margin-bottom: 3em;
}

.instagram-feed-section .heading {
    color: #3CB371;
    font-size: 2rem;
    font-weight: bold;
}

.slide-content {
    height: 100%;
    width: 80%;
    padding-top: 1em;
}

.insta-feed-container img {
    height: 350px!important;
    width: 90%;
    object-fit: cover;
    min-height: 350px!important;
    border-radius: 20px;
    cursor: pointer;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}

.insta-feed-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .3);
}

.slide-content .alt-msg {
    display: none;
    margin: 0 auto;
    font-size: 1.5rem;
}

.insta-feed-wrapper.active {
    display: none;
}

.swiper-navBtn {
    color: white;
    background-color: #3CB371;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);

}

.swiper-navBtn::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 30px;
}

/* FAQ Section */
.faq-section {
    display: grid;
    grid-template-rows: auto;
    row-gap: 2em;
    height: auto;
    width: 80%;
    margin-inline: auto;
}

.faq-section .heading-div {
    text-align: center;
    margin-bottom: 1em;
}

.faq-section .heading {
    color: #3CB371;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1em;
}

.faq-section p {
    font-size: 1.3rem;
}

.faq-container,
.faq-item {
    width: 80%;
    margin-inline: auto;
    font-size: 1.6rem;
}

.faq-item {
    margin-bottom: 1em;
}

.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
    cursor: pointer;
}

.faq-item hr {
    margin-top: 1em;
}

.faq-item .faq-question:hover {
    color: #3CB371;
}

.faq-item .faq-answer {
    display: none;
    font-size: 1.5rem;
    line-height: 1.3em;
}

.faq-section .know-more-btn {
    border: 1px solid #3CB371;
    background-color: #fff;
    padding: .8em 1.5em;
    font-size: 1.2rem;
    margin-inline: auto;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all ease 0.15s;
}

.faq-section .know-more-btn:hover {
    background-color: #3CB371;
    color: white;
}

.contact-us-section {
    display: grid;
    grid-template-rows: 15% 1fr;
    justify-items: center;
    height: 70vh;
    width: 80%;
    margin-inline: auto;
}

.contact-us-section .heading {
    color: #3CB371;
    font-size: 2rem;
    font-weight: bold;
}

.contact-us-section .details {
    align-self: flex-start;
    text-align: center;
    width: 70%;
}

.contact-us-section .details .text-1 {
    font-size: 1.7rem;
    margin-bottom: 1em;
    line-height: 1.2em;
}

.contact-us-section .details .text-2,
.contact-us-section .details .text-3 {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.contact-us-section .whatsapp-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
}

.contact-us-section .whatsapp-btn {
    display: flex;
    align-items: center;
    column-gap: 1em;
    background-color: rgb(69, 90, 100);
    color: white;
    border: none;
    padding: 0.5em 1em;
    font-size: 1.3rem;
    border-radius: 5px;
    margin-top: 1.5em;
    margin-bottom: 2em;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-inline: auto;
}

.contact-us-section .whatsapp-btn:hover {
    background-color: rgba(69, 90, 100, 0.96);
    transform: scale(1.05);
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .3);
}


.contact-us-section .details .text-4 {
    font-size: 2rem;
    margin-bottom: 1em;
}

.contact-us-section .details .address {
    font-size: 1.6rem;
    line-height: 1.2em;
}

.inquiry-form-section {
    margin-inline: auto;
}

.inquiry-form-section p {
    margin-bottom: 1em;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.inquiry-form-section p>span {
    color: #3CB371;
}

.inquiry-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    gap: 1em;
    border-radius: 15px;
    padding: 1.5em;
    margin-inline: auto;
}

.inquiry-form>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.inquiry-form input {
    border: 1px solid gray;
    padding: .4em .8em;
    font-size: 1.1rem;
    min-width: 100px;
    border-radius: 8px;
}

.inquiry-form .contact-number-div {
    display: flex;
    border: 1px solid gray;
    border-radius: 10px;
}

.inquiry-form #contact-number,
.inquiry-form #country-code {
    border: none;
    outline: none;
    font-size: 1.1rem;
}

.inquiry-form #country-code {
    width: 50px;
    cursor: pointer;
    margin-right: 8px;
    min-width: 40px;
    margin-left: 8px;
}

.inquiry-form #contact-number {
    border-left: 1px solid gray;
    border-radius: 0;
    padding: .4em .8em;
}

.inquiry-form #inquiry {
    resize: none;
    padding: .4em .8em;
    font-size: 1.1rem;
    border: 1px solid gray;
    border-radius: 10px;
}

.inquiry-form .submit-btn {
    width: fit-content;
    padding: 1em 2em;
    border: none;
    background-color: #3CB371;
    color: white;
    border-radius: 8px;
    margin-left: auto;
    font-weight: bold;
    letter-spacing: .5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
}


.inquiry-form .submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 10px 0px rgba(0, 0, 0, .3);
}

.popup-form-container {
    width: 350px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 2000;
    border: 3px solid #545454;
    border-radius: 10px;
    display: none;
}

.popup-form-container .head-div {
    position: relative;
}

.popup-form-container .heading {
    color: white;
    font-weight: bold;
    background-image: linear-gradient(to right, #4a9c67, #3d5940);
    text-align: center;
    padding: 16px;
    font-size: 1.5rem;
    border-radius: 6px;
    border-bottom: 3px solid #545454;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: content-box;
}

.popup-form-container .close-popup {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
    background-color: rgb(188, 77, 77);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-form-container .close-popup>img {
    object-fit: cover;
    width: 80%;
    height: 80%;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
}

.popup-form>div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.popup-form input {
    border: 2px solid black;
    border-radius: 4px;
    padding: .5em .8em;
    font-size: 1.2rem;
}

.popup-form .contact-number-div {
    display: flex;
    border: 2px solid black;
    border-radius: 4px;
}

.popup-form #contact-number,
.popup-form #country-code {
    border: none;
    border-radius: 0;
    outline: none;
}

.popup-form #contact-number {
    border-left: 2px solid black;
    width: 200px;
}

.popup-form #country-code {
    width: 60px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: .2em;
    margin-left: .2em;
    margin-right: .5em;
}

.popup-form .form-message {
    font-size: 1rem;
    letter-spacing: .3px;
}

.popup-form .submit-btn {
    width: fit-content;
    padding: 10px 24px;
    border: none;
    background-image: linear-gradient(to right, #4a9c67, #3d5940);
    color: white;
    border-radius: 8px;
    margin-inline: auto;
    font-weight: bold;
    font-size: 1.2rem;
}

.popup-form-container.active {
    animation: zoomin .5s ease;
}

.popup-form-container.close {
    animation: zoomout .5s ease;
}

.popup-form-wrapper.active {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 1s ease;
}

main.active {
    filter: blur(4px);
    transition: filter 1s ease;
}

header.active {
    opacity: 0.5;
    transition: opacity 1s ease;
}

.review-form-container {
    width: 450px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1000;
    border: 3px solid #545454;
    border-radius: 10px;
    display: none;
}

.review-form-container .head-div {
    position: relative;
}

.review-form-container .heading {
    color: white;
    font-weight: bold;
    background-image: linear-gradient(to right, #4a9c67, #3d5940);
    text-align: center;
    padding: 1em;
    font-size: 1.5rem;
    border-radius: 6px;
    border-bottom: 3px solid #545454;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: content-box;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 1em 2em;
}

.review-form>div {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.review-form input,
.review-form select,
.review-form textarea {
    border: 2px solid black;
    border-radius: 4px;
    padding: .5em .8em;
    font-size: 1.1rem;
}

.review-form textarea {
    resize: none;
}

.review-form .buttons-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.review-form .buttons-div>button {
    width: fit-content;
    padding: 0.6em 1.4em;
    border: none;
    border-radius: 8px;
    margin-inline: auto;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}

.review-form .buttons-div .cancel-btn {
    color: black;
    border: 1px solid #37b371;
    background-color: transparent;
}

.review-form .buttons-div .submit-btn {
    background-image: linear-gradient(to right, #4a9c67, #3d5940);
    color: white;
}

.review-form-container.active {
    animation: zoomin .5s ease;
}

.review-form-container.close {
    animation: zoomout .5s ease;
}

.review-form-wrapper.active {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 1s ease;
}

@keyframes zoomin {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes zoomout {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
}

@media (max-width:1300px) {

    .uiux-banner-section .arrow-icon-black {
        bottom: -90px;
        left: 60%;
    }

    .courses-container .course .details .title {
        font-size: 1.1rem;
    }
}

@media (max-width:1250px) {
    .courses-section .courses-container {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }

    .courses-container .course .details .title {
        font-size: 1.3rem;
    }

    .card-back {
        font-size: 1.2rem;
    }
}

@media (max-width:1200px) {

    .reasons-container {
        grid-template-columns: 350px 350px;
        row-gap: 5em;
    }

    .reason-div:nth-of-type(2) {
        margin-top: 0;
        padding-left: 2em;
    }

    .rewards-section .card-img{
        width: 250px;
    }

    .review-section .review-intro {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .review-intro .description {
        width: 90%;
        font-size: 1.5rem;
    }

    .leave-review-btn {
        justify-self: center;
    }

    .projects-container {
        grid-template-columns: repeat(2, 350px);
    }
}

@media screen and (max-width : 1130px) {


    .about-us .section-name,
    .about-us .heading {
        font-size: 1.8rem;
    }

    .about-us .content {
        font-size: 1.2rem;
    }

    .about-us .know-more-btn {
        font-size: 1rem;
    }

    .welfare-section .information .title {
        font-size: 2.5rem;
    }

    .welfare-section .info {
        font-size: 2rem;
    }

    .welfare-section .image-div {
        width: 400px;
    }

    .welfare-section .image-div img {
        height: 200px;
    }

    .complimentaries-grid>div {
        font-size: 1.2rem;
    }

    .rewards-container .heading{
        font-size: 2.5rem;
    }

    .courses-container .course .details .title {
        font-size: 1.2rem;
    }

    .card-back {
        font-size: 1.1rem;
    }

    .contact-us-section .details .text-1 {
        font-size: 1.5rem;
    }

    .contact-us-section .details .text-2,
    .contact-us-section .details .text-3 {
        font-size: 1.3em;
    }

    .contact-us-section .whatsapp-btn img {
        width: 25px;
        height: 25px;
    }

    .contact-us-section .whatsapp-btn {
        padding: 0.5em 1em;
        font-size: 1.2rem;
    }

    .contact-us-section .details .text-4 {
        font-size: 1.7rem;
    }

    .contact-us-section .details .address {
        font-size: 1.4rem;
    }

}

@media screen and (max-width : 1000px) {

    .about-us .section-name,
    .about-us .heading {
        font-size: 1.5rem;
    }

    .about-us .content {
        font-size: 1rem;
    }

    .uiux-banner-section .banner {
        height: auto;
    }

    .uiux-banner-section .arrow-icon-black {
        width: 150px;
        bottom: -120px;
        left: 63%;
    }

    .rewards-container{
        grid-template-columns: 1fr;
    }

    .rewards-container .heading{
        width: 100%;
    }

    .certificates-section {
        grid-template-columns: 1fr;
        text-align: center;
        height: 500px;
    }

    .faq-section p {
        font-size: 1.3rem;
    }

    .faq-container,
    .faq-item {
        font-size: 1.4rem;
        line-height: 1.1em;
    }

    .inquiry-form {
        width: 70%;
    }
}

@media (max-width:950px) {

    .complimentaries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .complimentaries-grid>div {
        font-size: 1.3rem;
    }

    .courses-section .courses-container {
        grid-template-columns: repeat(2, 350px);
    }

    .courses-container .course .details>div {
        font-size: 1rem;
    }

    .card-back {
        font-size: 1.2rem;
    }

    .review-intro .title {
        white-space: wrap;
        text-align: center;
        font-size: 1.5rem;
    }

    .review-intro .description {
        width: 100%;
        font-size: 1.3rem;
    }

}

@media (max-width:900px) {
    .language-container img {
        width: 70px;
    }

    .welfare-section {
        grid-template-columns: 1fr;
        text-align: center;
        height: 110vh;
        gap: 1em;
    }

    .welfare-section .information {
        width: 90%;
        margin-inline: auto;
        gap: 2em;
    }

    .welfare-section .information .description {
        font-size: 1.3rem;
    }

    .welfare-section .image-div {
        width: 400px;
    }

    .welfare-section .image-div img {
        height: 200px;
    }

    .projects-container {
        grid-template-columns: 300px 300px;
        justify-content: center;
    }
}

@media screen and (max-width : 880px) {

    .about-us {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .about-us .content {
        font-size: 1.5rem;
    }

    .about-us .section-name,
    .about-us .heading {
        font-size: 2rem;
    }

    .about-us .know-more-btn {
        font-size: 1.2rem;
    }

    .workshop-count-section {
        grid-template-columns: 1fr;
        font-size: 1.5rem;
        height: 350px;
    }

    .workshop-count-section>div {
        font-size: 2rem;
    }

    .workshop-count-section>div>p:last-child {
        font-size: 4rem;
    }

}

@media (max-width:850px) {

    .reasons-container {
        grid-template-columns: 400px;
    }

    .reason-div .heading:nth-of-type(2) {
        text-align: center;
    }
}

@media (max-width:800px) {

    .completed-counts-section {
        grid-template-columns: repeat(3, 200px);
        justify-content: center;
    }

    .completed-counts-section>div {
        font-size: 1.5rem;
    }

    .completed-counts-section .count {
        font-size: 2rem;
    }

    .uiux-banner-section .arrow-icon-black {
        width: 120px;
        bottom: -110px;
        left: 63%;
    }

    .uiux-banner-section .know-more-btn {
        padding: .8em 1em;
        font-size: 1rem;
    }

    .workshops-section {
        height: 50vh;
    }

    .workshop-container .heading {
        font-size: 2.5rem;
    }

    .workshop-container .details {
        flex-direction: column;
        align-items: center;
        row-gap: 2em;
        font-size: 1.3rem;
    }
}

@media screen and (max-width : 750px) {

    .banner-section .quote {
        font-size: 3rem;
    }

    .faq-section .heading {
        font-size: 2rem;
    }

    .faq-section p {
        font-size: 1.1rem;
    }

    .faq-container {
        width: 90%;
    }

    .faq-container,
    .faq-item {
        font-size: 1.2rem;
    }
}

@media screen and (max-width : 700px) {

    .complimentaries-grid {
        grid-template-columns: 80%;
    }

    .rewards-container > div > img{
        width: 150px;
    }

    .rewards-container > img{
        width: 300px;
    }

    .rewards-section .card-img{
        width: 200px;
        right: -70px;
    }

    .courses-section .courses-container {
        grid-template-columns: 350px;
    }

    .courses-section .view-all-btn {
        padding: .7em 1.5em;
        font-size: 1.1rem;
    }

    .review-div {
        height: 300px;
    }

    .review-div .review {
        font-size: 1.3rem;
    }

    .projects-section .heading {
        line-height: 1.1em;
    }

    .projects-container {
        grid-template-columns: 350px;
        justify-content: center;
    }

    .certificates-container.swiper {
        width: 400px;
    }

    .swiper-slide.certificate {
        width: 300px !important;
        height: 200px !important;
    }

    .instagram-feed-section .heading {
        font-size: 1.5rem;
    }

    .contact-us-section .details .text-1 {
        font-size: 1.3rem;
    }

    .contact-us-section .whatsapp-btn img {
        width: 22px;
        height: 22px;
    }

    .contact-us-section .details .text-2,
    .contact-us-section .details .text-3 {
        font-size: 1.1rem;
    }

    .contact-us-section .whatsapp-btn {
        font-size: 1.1rem;
    }

    .contact-us-section .details .text-4,
    .contact-us-section .details .address {
        font-size: 1.3rem;
    }

}

@media (max-width:600px) {

    .language-section .heading {
        font-size: 1.5rem;
    }

    .language-container {
        grid-template-columns: repeat(5, 80px);
    }

    .language-container img {
        width: 50px;
    }

    .welfare-section {
        height: 100vh;
    }

    .welfare-section .information .title {
        font-size: 2rem;
    }

    .welfare-section .information .info {
        font-size: 1.5rem;
    }

    .welfare-section .information .description {
        font-size: 1rem;
        line-height: 1.4em;
    }

    .welfare-section .image-div {
        width: 350px;
    }

    .welfare-section .image-div img {
        height: 180px;
    }

    .completed-counts-section {
        grid-template-columns: repeat(3, 150px);
    }

    .completed-counts-section>div {
        font-size: 1.1rem;
    }

    .completed-counts-section .count {
        font-size: 1.5rem;
    }

    .workshop-container .details {
        row-gap: 1em;
        font-size: 1.3rem;
        text-align: center;
    }

    .workshop-container .info .description {
        width: 30ch;
        line-height: 1.2em;
    }

    .workshop-container .details .book-btn {
        width: 100px;
        height: 50px;
        font-size: 1.2rem;
        padding: 0.5em 1.5em;
    }

    .certificates-section .details>div {
        margin-left: 0em;
    }

    .certificates-section .details .title {
        font-size: 1.5rem;
    }

    .certificates-section .details .info {
        font-size: 1.3rem;
    }

    .review-div .review {
        font-size: 1.1rem;
    }

    .faq-section .heading {
        font-size: 1.7rem;
        line-height: 1.2em;
    }

    .faq-section p {
        font-size: 1rem;
        width: 90%;
        margin-inline: auto;
        line-height: 1.2em;
    }

    .faq-container,
    .faq-item {
        font-size: 1.2rem;
        width: 25ch;
    }

    .faq-section .know-more-btn {
        font-size: 1rem;
    }

    .review-form-container {
        width: 360px;
    }

    .review-form>div {
        font-size: 1rem;
    }

    .review-form input,
    .review-form select,
    .review-form textarea {
        font-size: 1rem;
    }

    .review-form .buttons-div>button {
        font-size: 1rem;
    }
}


@media screen and (max-width:550px) {
    .banner-section {
        height: 100vh;
    }

    .banner-section .quote {
        font-size: 2.5rem;
    }

    .banner-section .banner-btn {
        font-size: 0.8rem;
        padding: 1em 2em;
        letter-spacing: 1px;
    }

    .about-us .section-name,
    .about-us .heading {
        font-size: 1.5rem;
    }

    .about-us .content {
        font-size: 1.1rem;
    }

    .reasons-container {
        grid-template-columns: 280px;
        gap: 3em;
    }

    .reason-div .heading {
        font-size: 1.2rem;
    }

    .reason-div .reason {
        font-size: 1rem;
    }

    .reason-div .image-div {
        width: 40px;
    }

    .uiux-banner-section .arrow-icon-black {
        width: 80px;
        bottom: -100px;
        left: 60%;
    }

    .uiux-banner-section .know-more-btn {
        margin-top: .8em;
        font-size: .6rem;
    }

    .rewards-container .heading{
        font-size: 2rem;
    }

    .rewards-container p{
        font-size: 1.2rem;
    }

    .rewards-container .catalog{
        font-size: 1.1rem;
    }

    .rewards-container .download-btn-div > img{
        width: 20px;
    }

    .rewards-container > img{
        width: 250px;
    }

    .rewards-section .gift-box{
        width: 160px;
        left: -70px;
    }

    .rewards-section .card-img{
        width: 160px;
    }

    .workshop-count-section {
        font-size: 1.3rem;
    }

    .workshop-count-section>div {
        font-size: 1.8rem;
    }

    .workshop-count-section>div>p:last-child {
        font-size: 3rem;
    }

    .review-section .review-intro {
        padding: 2em 2.5em 2em 2.5em;
    }

    .review-intro .title {
        font-size: 1.3rem;
    }

    .review-intro .sketch {
        padding: 2em 1.6em 2em 2em;
        margin-left: -.7em;
    }

    .review-intro .description {
        font-size: 1rem;
    }

    .leave-review-btn {
        padding: .8em;
        font-size: 1rem;
    }

    .contact-us-section .details .text-1 {
        font-size: 1.1rem;
    }

    .contact-us-section .whatsapp-btn img {
        width: 22px;
        height: 22px;
    }

    .contact-us-section .details .text-2,
    .contact-us-section .details .text-3,
    .contact-us-section .whatsapp-btn {
        font-size: 1rem;
    }

    .contact-us-section .details .text-4,
    .contact-us-section .details .address {
        font-size: 1.2rem;
    }

    .inquiry-form {
        width: 90%;
    }

    .inquiry-form #contact-number {
        width: 160px;
    }

}

@media screen and (max-width:470px) {

    .banner-section .quote {
        font-size: 2rem;
    }

    .welfare-section {
        padding: 1.5em 1em;
        gap: 2em;
        height: fit-content;
        justify-content: center;
    }

    .welfare-section .information {
        gap: 1.4em;
    }

    .welfare-section .information .title {
        font-size: 1.7rem;
    }

    .welfare-section .information .info {
        font-size: 1.4rem;
    }

    .welfare-section .information .description {
        line-height: 1.3em;
    }

    .welfare-section .image-div {
        width: 280px;
    }

    .welfare-section .image-div img {
        height: 130px;
    }

    .completed-counts-section {
        grid-template-columns: repeat(3, 120px);
        gap: .5em;
    }

    .completed-counts-section>div {
        font-size: 1rem;
    }

    .completed-counts-section .count {
        font-size: 1.1rem;
    }

    .what-you-get-section .heading {
        font-size: 1.5rem;
    }

    .complimentaries-grid>div {
        font-size: 1rem;
    }

    .review-div {
        height: 320px;
    }

    .projects-section .heading {
        font-size: 1.5rem;
    }

    .projects-container {
        grid-template-columns: 300px;
    }

    .certificates-section {
        height: 380px;
    }

    .certificates-container.swiper {
        width: 300px;
    }

    .swiper-slide.certificate {
        width: 250px !important;
        height: 150px !important;
    }

    .swiper-btns {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .swiper-btns::after {
        font-size: .8rem;
    }
}

@media (max-width:420px) {

    .about-us .heading,
    .about-us .section-name {
        font-size: 1.2rem;
    }

    .about-us .content {
        font-size: 1rem;
    }

    .language-section .heading {
        font-size: 1.2rem;
    }

    .language-container {
        grid-template-columns: repeat(5, 40px);
    }

    .language-container img {
        width: 40px;
        object-fit: cover;
    }

    .completed-counts-section {
        grid-template-columns: repeat(3, 100px);
        gap: .5em;
    }

    .completed-counts-section>div {
        font-size: .8rem;
    }

    .completed-counts-section .count {
        font-size: 1rem;
    }

    .uiux-banner-section .arrow-icon-black {
        width: 60px;
        height: auto;
        bottom: -30px;
        left: 63%;
    }

    .courses-section .heading {
        font-size: 1.5rem;
        white-space: wrap;
        line-height: 1.2em;
    }

    .courses-section .courses-container {
        grid-template-columns: 300px;
    }

    .courses-section .course {
        height: 400px;
    }

    .courses-container .course .details>div {
        font-size: .8rem;
    }

    .card-back {
        font-size: 1rem;
    }

    .workshop-count-section {
        font-size: 1rem;
        height: 250px;
    }

    .workshop-count-section>div {
        font-size: 1.4rem;
    }

    .workshop-count-section>div>p:last-child {
        font-size: 2rem;
    }

    .workshop-container .heading {
        font-size: 1.5rem;
    }

    .workshop-container .details {
        font-size: 1.1rem;
    }

    .workshop-container .details .book-btn {
        width: 100px;
        height: 40px;
        font-size: 1.1rem;
        padding: 0.5em 1em;
    }

    .review-intro .title {
        font-size: 1.1rem;
    }

    .popup-form-container {
        width: 330px;
    }

    .popup-form-container input,
    .popup-form>div {
        font-size: 1rem;
    }

    .popup-form #contact-number {
        width: 140px;
    }

    .popup-form #country-code {
        font-size: 1rem;
    }

    .review-form-container {
        width: 300px;
    }

    .review-form>div {
        font-size: .8rem;
    }

    .review-form input,
    .review-form select,
    .review-form textarea {
        font-size: .8rem;
    }

    .review-form .buttons-div>button {
        font-size: .8rem;
    }
}

@media screen and (max-width:380px) {
    .banner-section .quote {
        font-size: 1.5rem;
    }

    .banner-section .buttons {
        flex-direction: column;
        row-gap: 1em;
        bottom: 5%;
    }

    .banner-section .banner-btn {
        font-size: .8rem;
        padding: 0.8em 2em;
        width: 150px;
    }
}