/* @import url('https://fonts.googleapis.com/css2?family=Margarine&display=swap'); */

@font-face {
    font-family: baloo;
    /* heading */
    src: url(/assets/fonts/Baloo_2/Baloo2-VariableFont_wght.ttf);
}

@font-face {
    font-family: lex;
    /* subheading */
    src: url(/assets/fonts/Lexend_Deca/LexendDeca-VariableFont_wght.ttf);
}

@font-face {
    font-family: urban;
    /* para */
    src: url(/assets/fonts/Urbanist/Urbanist-VariableFont_wght.ttf);
}

:root {
    --primary-background: #FAF3E0;
    /* Soft neutral base to keep things light.*/
    --header-footer-bg: #B2DFDB;
    /* Gentle contrast that’s still kid-friendly.*/
    --primary-cta-accent: #FFEB3B;
    /* Bright and energetic for buttons & CTAs.*/
    --secondary-accent: #81D4FA;
    /* Used for icons, links, highlights.*/
    --highlight-section-bg: #C8E6C9;
    /* Background for feature boxes/testimonials */
    --heading: #EF5350;
    /* Fun, attention-grabbing, readable*/
    --para: #5F6368;
    /* Easy to read, blends well with bright tones.*/
    --cards: #FADADD;
    /* Light, warm background for content boxes.*/
    --Illustrations-icons: #BA68C8;
    /* Adds variety and whimsy to child graphics.*/
    --hover: #FF7043;
    /* Used for button hovers, link hovers.*/
    --heading-font: baloo;
    --subheading-font: lex;
    --para-font: urban;
}

/* Fullscreen preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Logo styling */
.loader-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: rotateLogo 3s ease-in-out infinite;
}

/* Logo subtle rotation for life */
@keyframes rotateLogo {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(5deg) scale(1.05);
    }

    50% {
        transform: rotate(-5deg) scale(1);
    }

    75% {
        transform: rotate(5deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* Loader text animation */
.loader-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ff6b6b;
    display: inline-block;
}

.loader-text span {
    display: inline-block;
    animation: bounceLetters 1.2s infinite ease-in-out;
}

/* Bounce each letter slightly delayed */
.loader-text span:nth-child(1) {
    animation-delay: 0s;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.loader-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.loader-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.loader-text span:nth-child(6) {
    animation-delay: 0.5s;
}

.loader-text span:nth-child(7) {
    animation-delay: 0.6s;
}

.loader-text span:nth-child(8) {
    animation-delay: 0.7s;
}

.loader-text span:nth-child(9) {
    animation-delay: 0.8s;
}

.loader-text span:nth-child(10) {
    animation-delay: 0.9s;
}

.loader-text span:nth-child(11) {
    animation-delay: 1s;
}

.loader-text span:nth-child(12) {
    animation-delay: 1.1s;
}

.loader-text span:nth-child(13) {
    animation-delay: 1.2s;
}

/* Bouncy playful animation */
@keyframes bounceLetters {

    0%,
    100% {
        transform: translateY(0);
        color: #ff6b6b;
    }

    50% {
        transform: translateY(-10px);
        color: #42a5f5;
    }
}

/* Hide main content initially */
.hidden {
    opacity: 0;
}

/* Smooth fade-in of main content */
#content.show {
    opacity: 1;
    transition: opacity 0.8s ease;
}

/*************************************************** header-section-start ***************************************************/
/* Main header */
.header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;
    background-color: #0f6533;
    /* box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px; */
    width: 100%;
    position: relative;
    z-index: 100;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.about-page-header-color {
    background-color: #7660A0;
    box-shadow: none;
}

.classes-page-header-color {
    background-color: #2A86A0;
    box-shadow: none;
}

.gallery-page-header-color {
    background-color: #1E956A;
    box-shadow: none;
}

.contact-page-header-color {
    background-color: #FACC16;
    box-shadow: none;
}

.header-logo {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    width: 10%;
}

.header-logo img {
    width: 100%;
}

/* Nav links (desktop default) */
.header-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.header-nav-link a {
    padding: 7px 30px;
    text-decoration: none;
    font-family: var(--para-font);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-page-header-nav-link a {
    color: #fff;
}

.classes-page-header-nav-link a {
    color: #ffffff;
}

.gallery-page-header-nav-link a {
    color: #ffffff;
}


.contact-page-header-nav-link a {
    color: #fff;
}

.header-nav-link a:hover {
    background-color: rgb(255, 255, 255);
    color: #000000;
}

.about-page-header-nav-link a:hover {
    background-color: #fff;
    color: #000;
}

.classes-page-header-nav-link a:hover {
    background-color: #fff;
    color: #000000;
}

.gallery-page-header-nav-link a:hover {
    background-color: #ffffff;
    color: #000000;
}


.contact-page-header-nav-link a:hover {
    background-color: #ffffff;
    color: #000000;
}




.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact button */
.nav-btn a {
    text-decoration: none;
    background-color: #49a56f;
    padding: 10px 30px;
    color: #fff;
    font-family: var(--para-font);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-page-nav-btn a {
    background-color: #fff;
    color: #000000;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.classes-page-nav-btn a {
    background-color: #fff;
    color: #000000;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.gallery-page-nav-btn a {
    background-color: #ffffff;
    color: #000000;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-page-nav-btn a {
    background-color: #ffffff;
    color: #000000;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.nav-btn a:hover {
    background-color: #fff;
    color: #000;
    box-shadow: rgba(127, 196, 204, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.about-page-nav-btn a:hover {
    background-color: #B39DDB;
    color: #ffffff;
}

.classes-page-nav-btn a:hover {
    background-color: #41b9db;
    color: #ffffff;
}

.gallery-page-nav-btn a:hover {
    background-color: #1fcd8d;
    color: #fff;
}


/* 🔹 Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 110;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.classes-hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.gallery-hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}


@media(max-width: 1400px) {
    .header-nav-link {
        padding: 5px;
        gap: 10px;
    }

    .header-nav-link a {
        padding: 5px 30px;
        font-size: 16px;
    }

    .nav-btn a {
        padding: 10px 30px;
        font-size: 15px;
    }
}

/* 🔹 Mobile styles */
@media (max-width: 768px) {
    .header-section {
        padding: 5px 20px;
    }

    .hamburger {
        display: flex;
    }

    .header-nav-link {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        text-align: center;
        max-height: 0;
        /* hidden by default */
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        opacity: 0;
        padding: 0;
        /* box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 16px; */
    }

    .header-nav-link a:hover {
        width: 100%;
    }

    .header-nav-link.show {
        max-height: 500px;
        /* enough to show links */
        opacity: 1;
        padding: 20px 0;
        background-color: #0f6533;
        /* align-items: flex-start; */
        width: 100%;
    }

    .about-page-header-nav-link.show {
        background-color: #7660A0;
    }

    .classes-page-header-nav-link.show {
        background-color: #2b86a0;
    }

    .classes-page-header-nav-link a {
        color: #fff;
    }

    .gallery-page-header-nav-link.show {
        background-color: #1e956a;
    }

    .gallery-page-header-nav-link a {
        color: #fff;
    }

    .contact-page-header-nav-link.show {
        background-color: #facc16;
    }


    .desktop-only {
        display: none;
        /* hide button on mobile */
    }

    .header-logo {
        width: 35%;
    }

    .header-logo img {
        width: 80%;
    }

    .header-nav-link {
        gap: 15px;
    }

    .header-nav-link a {
        /* width: 80%; */
        border-radius: 0px;
        padding: 10px 30px;
    }
}


@media(max-width: 380px) {
    .header-nav-link {
        top: 60px;
    }
}




/*************************************************** header-section-end ***************************************************/


/************************************************* home-hero-section-start *************************************************/

.main-hero-section {
    padding: 0px 80px;
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/images/home-hero-bg_lqpzhw.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #198746;
    position: relative;
    top: -10px;
}

.wave-3 {
    position: absolute;
    z-index: -10;
    bottom: -340px;
}

.main-hero-mobile-section {
    display: none;
}

.main-split-div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.split-div-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.split-div-cont-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testing-span {
    font-family: var(--subheading-font);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
}

.hero-main-heading {
    font-family: var(--heading-font);
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 0px;
    margin-top: -17px;
    color: #fff;
}

.hero-office-main-heading {
    display: none;
}

.text-container {
    display: flex;
    font-family: var(--heading-font);
    font-size: 68px;
    font-weight: 700;
    /* margin-bottom: 0px; */
    line-height: 1.2;
    /* margin-bottom: 20px; */
    position: relative;
    color: #fff;
}

.animated-word {
    display: inline-block;
    position: relative;
    margin-right: 10px;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #000000;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
    position: absolute;
    top: 0;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.word-inspiring {
    color: #ff8585;
}

.word-development {
    color: #FFD54F;
}

.word-creating {
    color: #ace1ed;
}

.subtitle {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
    margin-top: 20px;
}

.main-screen-p {
    font-family: var(--para-font);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #fff;
}

.office-laptop {
    display: none;
}


.split-div-1-btn {
    display: flex;
    gap: 30px;
}


.enroll-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 50px;
    width: 35%;
    transition: all 0.4s ease;
    background-color: #fff;
}

.enroll-btn a {
    text-decoration: none;
    color: #000000;
    font-family: var(--subheading-font);
    transition: all 0.4s ease;
    font-size: 17px;
}

.enroll-btn i {
    background-color: transparent;
    border-radius: 50px;
    border: 2px solid #000;
    padding: 3px 6px;
    font-size: 15px;
    transition: all 0.4s ease;
}


.enroll-btn:hover {
    background-color: #FFD54F;
    border: 2px solid #FFD54F;
}

.enroll-btn:hover>a {
    color: #000000;
}

.enroll-btn:hover>i {
    transform: rotate(-45deg);
    background-color: #fff;
    border: 2px solid #ffffff;
    font-weight: 500;
}


.know-more {
    width: 35%;
    border: 3px solid #2a7649;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2a7649;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--subheading-font);
    font-size: 17px;
    transition: all 0.4s ease;
}

.know-more:hover {
    border: 3px solid #2a7649;
    background-color: transparent;
}

.know-more i {
    margin-left: 10px;
    font-size: 20px;
}


.split-div-2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bee-lottie {
    position: absolute;
    top: 0;
    right: 0;
    transform: rotateY(180deg);
    z-index: 100;
}

.rect-top {
    display: flex;
    align-items: end;
    gap: 10px;
    justify-content: center;
    position: relative;
}

.rect-top img {
    position: absolute;
    left: 5px;
}

.rect-1 {
    width: 200px;
    height: 220px;
    border-radius: 220px 0px 0px 0px;
    background: #FFD54F;
}

.rect-2 {
    width: 122px;
    height: 122px;
    border-radius: 67px 67px 67px 0px;
    background: #A8E6CF;
}

.rect-bottom {
    display: flex;
    gap: 60px;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    left: -15px;
}

.child-1 {
    position: absolute;
    top: -30px;
    right: -40px;
}

.child-ani-1 {
    animation: float-wave-1 3s ease-in-out infinite;
}

.child-ani-2 {
    animation: float-wave-2 3.5s ease-in-out infinite;
}

@keyframes float-wave-2 {

    0%,
    100% {
        transform: translateY(-6px) rotate(0deg);
    }

    25% {
        transform: translateY(-2px) rotate(-0.5deg);
    }

    50% {
        transform: translateY(-10px) rotate(0deg);
    }

    75% {
        transform: translateY(-4px) rotate(0.5deg);
    }
}

@keyframes float-wave-1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-4px) rotate(0deg);
    }

    75% {
        transform: translateY(-12px) rotate(-0.5deg);
    }
}

.l-line {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
}

.l-line-1 {
    width: 45px;
    height: 234px;
    border-radius: 67px 0px;
    background: #4DA6FF;
}

.l-line-2 {
    width: 45px;
    height: 234px;
    border-radius: 67px 0px;
    background: #8ac3fd;
}

.l-line-3 {
    width: 45px;
    height: 234px;
    border-radius: 67px 0px;
    background: #a9d4ff;
}

.rect-3 {
    width: 316px;
    height: 332px;
    transform: rotate(90deg);
    border-radius: 220px 0px 0px 0px;
    background: #B39DDB;
}


@media(max-width: 1920px) {
    .rect-top img {
        width: 50%;
        left: 20;
    }

    .child-1 {
        width: 35%;
        right: 50;
        top: -50;
    }
}


@media(max-width: 1600px) {
    .text-container {
        font-size: 60px;
    }

    .hero-main-heading {
        display: none;
    }

    .hero-office-main-heading {
        display: flex;
        font-family: var(--heading-font);
        font-size: 60px;
        font-weight: 700;
        margin-bottom: 0px;
        margin-top: -17px;
        color: #fff;
    }

    .rect-bottom {
        top: 10;
        display: flex;
        gap: 60px;
        width: 100%;
        justify-content: flex-end;
        position: relative;
        left: -21px;
    }

    .rect-1 {
        width: 185px;
        height: 200px;
    }

    .rect-top img {
        width: 55%;
        left: 20;
    }

    .rect-2 {
        width: 110px;
        height: 110px;
    }

    .rect-3 {
        width: 270px;
        height: 280px;
    }


    .child-1 {
        width: 29%;
        right: 44px;
        top: -27px;
    }

    .l-line-1 {
        width: 40px;
        height: 220px;
    }

    .l-line-2 {
        width: 40px;
        height: 220px;
    }

    .l-line-3 {
        width: 40px;
        height: 220px;
    }
}

@media(max-width: 1550px) {
    .main-hero-section {
        height: 90%;
        padding: 0px 200px;
    }

    .text-container {
        font-size: 50px;
        color: #fff;
    }

    .hero-main-heading {
        display: none;
    }

    .hero-office-main-heading {
        display: flex;
        font-family: var(--heading-font);
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 0px;
        margin-top: -17px;
        color: #fff;
    }

    .main-screen-p {
        display: none;
    }

    .office-laptop {
        display: block;
        font-family: var(--para-font);
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 0px;
        color: #fff;
    }

    .know-more {
        width: 32%;
        font-size: 15px;
    }

    .enroll-btn {
        padding: 10px 10px 10px 15px;
        width: 32%;
    }

    .enroll-btn i {
        padding: 2px 5px;
    }

    .rect-1 {
        width: 200px;
        height: 215px;
    }

    .rect-top img {
        width: 50%;
        left: 23px;
    }

    .rect-2 {
        width: 110px;
        height: 110px;
    }

    .bee-lottie {
        z-index: 10;
    }

    .rect-3 {
        width: 265px;
        height: 285px;
    }

    .child-1 {
        width: 35%;
        top: -35px;
        right: 33px;
    }

    .l-line-1 {
        width: 40px;
        height: 200px;
    }

    .l-line-2 {
        width: 40px;
        height: 200px;
    }

    .l-line-3 {
        width: 40px;
        height: 200px;
    }

    /* .rect-bottom {
        gap: 40px;
    } */
}

@media(max-width: 1400px) {
    .main-hero-section {
        height: 90%;
        padding: 100px 150px;
    }

    .split-div-cont-1 {
        gap: 15px;
    }

    .split-div-cont-1 .line {
        display: block;
        overflow: hidden;
    }

    .text-container {
        font-size: 40px;
    }

    .hero-main-heading {
        display: none;
    }

    .hero-office-main-heading {
        display: flex;
        font-family: var(--heading-font);
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 0px;
        margin-top: -17px;
    }

    .main-screen-p {
        display: none;
    }

    .office-laptop {
        display: block;
        font-family: var(--para-font);
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 0px;
    }

    .know-more {
        width: 32%;
        font-size: 15px;
    }

    .enroll-btn {
        padding: 8px 10px 8px 15px;
        width: 32%;
    }

    .enroll-btn i {
        padding: 0px 4px;
    }

    .rect-1 {
        width: 175px;
        height: 185px;
    }

    .rect-top img {
        width: 50%;
        left: 30px;
    }

    .rect-2 {
        width: 95px;
        height: 95px;
    }

    .bee-lottie {
        z-index: 10;
    }

    .rect-3 {
        width: 250px;
        height: 265px;
    }

    .child-1 {
        width: 55%;
        top: 6px;
        right: 0px;
    }

    .l-line-1 {
        width: 35px;
        height: 185px;
    }

    .l-line-2 {
        width: 35px;
        height: 185px;
    }

    .l-line-3 {
        width: 35px;
        height: 185px;
    }

    .rect-bottom {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .text-container {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .text-container {
        font-size: 24px;
    }
}

@media(max-width: 500px) {
    .main-hero-section {
        display: none;
    }

    .main-hero-mobile-section {
        display: block;
        background-image: url(/assets/images/mobile-hero-bg.jpg);
        background-size: cover;
        background-position: center;
        height: 90%;
        position: relative;
        z-index: 60;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 50px;
    }

    .hero-mobile-overlay {
        position: absolute;
        z-index: -9;
        width: 100%;
        height: 100%;
        background-color: #00000080;
    }

    .hero-mobile-cont {
        padding: 0px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-mobile-cont span {
        font-family: var(--subheading-font);
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0px;
        color: #fff;
    }

    .hero-mobile-cont h1 {
        font-family: var(--heading-font);
        color: #fff;
        font-size: 40px;
        font-weight: 700;
    }

    .hero-mobile-cont p {
        font-family: var(--para-font);
        color: #fff;
        font-size: 16px;
        font-weight: 500;
    }

    .split-div-1-btn {
        width: 100%;
        padding: 0px 20px;
        gap: 15px;
    }

    .enroll-btn {
        width: 50%;
        background-color: #fff;
        border: 2px solid #fff;
    }

    .enroll-btn a {
        color: #000;
    }

    .know-more {
        width: 50%;
    }

    .know-more {
        border: 2px solid #2a7649;
    }

    .know-more:hover {
        color: #fff;
    }
}

@media(max-width: 400px) {
    .main-hero-section {
        display: none;
    }

    .main-hero-mobile-section {
        display: block;
        background-image: url(/assets/images/mobile-hero-bg.jpg);
        background-size: cover;
        background-position: center;
        height: 100%;
        position: relative;
        z-index: 60;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 50px;
    }

    .hero-mobile-overlay {
        position: absolute;
        z-index: -9;
        width: 100%;
        height: 100%;
        background-color: #00000080;
    }

    .hero-mobile-cont {
        padding: 0px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-mobile-cont span {
        font-family: var(--subheading-font);
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0px;
        color: #fff;
    }

    .hero-mobile-cont h1 {
        font-family: var(--heading-font);
        color: #fff;
        font-size: 35px;
        font-weight: 700;
    }

    .hero-mobile-cont p {
        font-family: var(--para-font);
        color: #fff;
        font-size: 16px;
        font-weight: 500;
    }

    .split-div-1-btn {
        width: 100%;
        padding: 0px 20px;
        gap: 15px;
    }

    .enroll-btn {
        width: 50%;
        background-color: #fff;
        border: 2px solid #fff;
    }

    .enroll-btn a {
        color: #000;
    }

    .know-more {
        width: 50%;
    }

    .know-more {
        border: 2px solid #2a7649;
    }

    .know-more:hover {
        color: #fff;
    }
}

/************************************************* home-hero-section-end *************************************************/

/************************************************ home-about-section-start ************************************************/
.about-section {
    padding: 300px 0px 100px 0px;
    width: 100%;
    background-color: #f7f7f7;
    position: relative;
    z-index: 120;
    /* height: 100%; */
    /* background-color: rgb(251, 247, 244); */
    overflow: hidden;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.my-butter {
    position: absolute;
    top: -50;
    right: 0;
    z-index: 100;
    width: 320;
    height: 320;
}

.main-about-divs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.about-div-1 {
    width: 50%;
    /* background-color: #000; */
    display: flex;
    /* align-items: center; */
    /* justify-content: flex-end; */
}

.about-div-img-1 {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    object-position: top;
}

.about-div-2 {
    width: 50%;
}

.about-div-2-cont {
    /* background-color: #fff; */
    /* box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px; */
    padding: 50px;
    border-radius: 16px;
    /* position: relative; */
    left: -180px;
    top: -30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-div-2-cont span {
    font-family: var(--subheading-font);
    font-size: 25px;
    font-weight: 500;
}

.about-div-2-cont h1 {
    font-family: var(--heading-font);
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 0px;
}

.about-div-2-cont p {
    font-family: var(--para-font);
    font-size: 17px;
    margin-bottom: 0px;
    font-weight: 400;
}

.about-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border: 2px solid black;
    border-radius: 50px;
    width: 40%;
    transition: all 0.4s ease;
    margin-top: 30px;
}

.about-btn a {
    text-decoration: none;
    color: #686868;
    font-family: var(--subheading-font);
    transition: all 0.4s ease;
    font-size: 17px;
}

.about-btn i {
    background-color: transparent;
    border-radius: 50px;
    border: 2px solid #000;
    padding: 3px 6px;
    font-size: 15px;
    transition: all 0.4s ease;
}

.about-btn:hover {
    background-color: #FACC16;
    border: 2px solid #FACC16;
}

.about-btn:hover>a {
    color: #000000;
}

.about-btn:hover>i {
    transform: rotate(-45deg);
    background-color: #fff;
    border: 2px solid #ffffff;
    font-weight: 500;
}

.about-points {
    width: 100%;
    display: flex;
    gap: 30px;
}

.point-1 {
    background-color: #ffec9e;
    padding: 20px;
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    border-radius: 12px;
}

.point-img-1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.point-img-1 img {
    width: 28%;
}

.point-1 h1 {
    font-size: 25px;
    font-family: var(--heading-font);
    font-weight: 500;
}

.point-1 p {
    font-size: 17px;
    font-family: var(--para-font);
    font-weight: 600;
    margin-bottom: 0px;
}

.point-2 {
    background-color: #d3fffb;
    padding: 20px;
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    border-radius: 12px;
}

.point-img-2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.point-img-2 img {
    width: 30%;
}

.point-2 h1 {
    font-size: 25px;
    font-family: var(--heading-font);
    font-weight: 500;
}

.point-2 p {
    font-size: 17px;
    font-family: var(--para-font);
    font-weight: 600;
    margin-bottom: 0px;
}

.point-3 {
    background-color: #b8e8ff;
    padding: 20px;
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    border-radius: 12px;
}

.point-img-3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.point-img-3 img {
    width: 30%;
}

.point-3 h1 {
    font-size: 25px;
    font-family: var(--heading-font);
    font-weight: 500;
}

.point-3 p {
    font-size: 17px;
    font-family: var(--para-font);
    font-weight: 600;
    margin-bottom: 0px;
}

.about-svg-1 {
    width: 120;
    height: 120;
}


@media(max-width: 1600px) {
    .about-div-img-1 {
        height: 500px;
    }
}

@media(max-width: 1550px) {
    .about-div-img-1 {
        height: 500px;
    }

    .about-svg-1 {
        height: 100;
        width: 100;
    }
}

@media(max-width: 1400px) {
    .about-div-2-cont h1 {
        font-size: 50px;
    }

    .about-div-2-cont p {
        font-size: 16px;
    }

    .about-btn {
        width: 50%;
        padding: 5px 20px;
    }

    .about-btn i {
        padding: 1px 4px;
    }

    .about-div-img-1 {
        height: 400px;
    }

    .about-svg-1 {
        height: 100;
        width: 100;
    }

    .point-1 h1,
    .point-2 h1,
    .point-3 h1 {
        font-size: 22px;
        text-align: center;
    }

    .point-1 p,
    .point-2 p,
    .point-3 p {
        font-size: 16px;
    }
}

@media(max-width: 500px) {
    .about-section {
        padding: 150px 0px 150px 0px;
    }

    .main-about-divs {
        flex-direction: column;
    }

    .about-div-1 {
        width: 100%;
    }

    .about-div-2 {
        width: 100%;
    }

    .about-div-2-cont {
        padding: 0px;
    }

    .my-butter {
        width: 220;
        height: 220;
        top: 400px;
        right: -70px;
    }

    .about-btn {
        padding: 10px 20px;
    }

    .about-points {
        flex-direction: column;
    }

    .about-div-2-cont h1 {
        font-size: 40px;
    }
}

@media(max-width: 400px) {
    .about-section {
        padding: 150px 0px 150px 0px;
    }

    .main-about-divs {
        flex-direction: column;
    }

    .about-div-1 {
        width: 100%;
    }

    .about-div-2 {
        width: 100%;
    }

    .about-div-2-cont {
        padding: 0px;
    }

    .my-butter {
        width: 220;
        height: 220;
        top: 390px;
        right: -70px;
    }

    .about-btn {
        padding: 10px 20px;
    }

    .about-points {
        flex-direction: column;
    }

}

/************************************************ home-about-section-end ************************************************/

/***************************************************** home-counter-section-start *****************************************************/
.new-counter-section {
    /* min-height: 50%; */
    /* half screen height */
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 20px;
    position: relative;
    z-index: -3;
    gap: 50px;
    background-image: url(/assets/images/counter-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 100px;
}

.new-counter-heading {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 40%;
}

.new-counter-heading h1 {
    font-size: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    color: #004099;
}

.new-counter-heading p {
    font-family: var(--para-font);
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: left;
}

.new-counter-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* max-width: 1300px; */
    width: 50%;
}

.new-counter-item {
    background-color: #fff;
    padding: 20px 0px 70px 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    border-radius: 12px;
    position: relative;
    width: 100%;
    z-index: -2;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.new-counter-item img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    z-index: -1;
    opacity: 0.8;
    border-bottom-right-radius: 12px;
}

.new-counter-number {
    font-size: 60px;
    font-weight: bold;
    color: #004099;
    margin-bottom: 10px;
    font-family: "Cabin Sketch", sans-serif;
}

.new-counter-label {
    font-size: 20px;
    color: #000;
    font-family: var(--para-font);
    font-weight: 700;
}

@media(max-width: 1400px) {
    .new-counter-container {
        width: 56%;
    }

    .new-counter-heading h1 {
        font-size: 45px;
    }

    .new-counter-heading p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .new-counter-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .new-counter-section {
        flex-direction: column;
        padding: 0px 20px 80px 20px;

    }

    .new-counter-heading {
        width: 100%;
    }

    .new-counter-container {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .new-counter-heading h1 {
        font-size: 32px;
    }

    .new-counter-heading p {
        font-size: 16px;
        text-align: justify;
        line-height: 20px;
    }
}

/***************************************************** home-counter-section-end *****************************************************/


/*********************************************** home-feature-section-start ***********************************************/
.section-2 {
    padding: 100px 80px;
    width: 100%;
    background-image: url(/assets/images/feature-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 11;
}

.section-2-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-2-heading span {
    font-family: var(--subheading-font);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}

.section-2-heading h1 {
    font-family: var(--heading-font);
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 0px;
}

.section-2-heading p {
    text-align: center;
}

.section-2-heading p {
    font-family: var(--para-font);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0px;
    text-align: center;
}

.section-2-card-1 {
    width: 100%;
    /* height: 400px; */
    background-color: transparent;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
    transition: all 0.4s ease;
    position: relative;
}

.card-1-overlay {
    width: 15%;
    height: 45px;
    background-color: #fff6a3;
    position: absolute;
    border-radius: 16px 0px 16px 16px;
    top: 0;
    right: 0;
    z-index: -10;
    transition: all 0.4s ease;
}

.section-2-card-1:hover {
    transform: translateY(-10px);
}

.section-2-card-1:hover>.card-1-overlay {
    background-color: #fff6a3;
    box-shadow: none;
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

.card-1-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-1-top img {
    width: 50%;
    background-color: #fff6a3;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.section-2-card-1:hover>.card-1-top img {
    background-color: #FACC16;
}

.card-1-middle h1 {
    font-size: 30px;
    font-family: var(--heading-font);
    font-weight: 600;
    margin-bottom: 0px;
}

.card-1-bottom p {
    font-size: 16px;
    font-family: var(--para-font);
    font-weight: 700;
    margin-bottom: 0px;
}

.section-2-card-2 {
    width: 100%;
    /* height: 400px; */
    background-color: transparent;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.card-2-overlay {
    width: 15%;
    height: 45px;
    background-color: #bbe9fe;
    position: absolute;
    border-radius: 16px 0px 16px 16px;
    top: 0;
    right: 0;
    z-index: -10;
    transition: all 0.4s ease;
}

.section-2-card-2:hover {
    transform: translateY(-10px);
}

.section-2-card-2:hover>.card-2-overlay {
    background-color: #bbe9fe;
    box-shadow: none;
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

.card-2-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-2-top img {
    width: 50%;
    background-color: #bbe9fe;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.section-2-card-2:hover>.card-2-top img {
    background-color: var(--secondary-accent);
}

.section-2-card-3 {
    width: 100%;
    /* height: 400px; */
    background-color: transparent;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.card-3-overlay {
    width: 15%;
    height: 45px;
    background-color: #bae3e0;
    position: absolute;
    border-radius: 16px 0px 16px 16px;
    top: 0;
    right: 0;
    z-index: -10;
    transition: all 0.4s ease;
}

.section-2-card-3:hover {
    transform: translateY(-10px);
}

.section-2-card-3:hover>.card-3-overlay {
    background-color: #bae3e0;
    box-shadow: none;
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

.card-3-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-3-top img {
    width: 50%;
    background-color: #bae3e0;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.section-2-card-3:hover>.card-3-top img {
    background-color: #70b4b0;
}

.section-2-card-4 {
    width: 100%;
    height: 400px;
    background-color: transparent;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.card-4-overlay {
    width: 15%;
    height: 45px;
    background-color: #e0cbff;
    position: absolute;
    border-radius: 16px 0px 16px 16px;
    top: 0;
    right: 0;
    z-index: -10;
    transition: all 0.4s ease;
}

.section-2-card-4:hover {
    transform: translateY(-10px);
}

.section-2-card-4:hover>.card-4-overlay {
    background-color: #e0cbff;
    box-shadow: none;
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

.card-4-top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-4-top img {
    width: 50%;
    background-color: #e0cbff;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.section-2-card-4:hover>.card-4-top img {
    background-color: #b984ff;
}

@media(max-width: 1400px) {
    .section-2-heading h1 span {
        font-size: 40px;
    }

    .section-2-heading p span {
        font-size: 16px;
    }

    .card-1-top img {
        width: 40%;
    }

    .card-1-overlay {
        height: 40px;
    }

    .card-2-top img {
        width: 40%;
    }

    .card-2-overlay {
        height: 40px;
    }

    .card-3-top img {
        width: 40%;
    }

    .card-3-overlay {
        height: 40px;
    }

    .card-4-top img {
        width: 40%;
    }

    .card-4-overlay {
        height: 40px;
    }

    .section-2-card-1 {
        height: 100%;
    }

    .section-2-card-2 {
        height: 100%;
    }

    .section-2-card-3 {
        height: 100%;
    }

    .section-2-card-4 {
        height: 100%;
    }

    .testing-card-middle {
        display: flex;
    }

    .card-1-middle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-1-middle h1 span {
        font-size: 20px;
    }

    .section-2-card-1:hover>.card-1-overlay {
        height: 360px;
    }

    .section-2-card-2:hover>.card-2-overlay {
        height: 360px;
    }

    .section-2-card-3:hover>.card-3-overlay {
        height: 360px;
    }

    .section-2-card-4:hover>.card-4-overlay {
        height: 360px;
    }
}

@media(max-width: 500px) {
    .section-2 {
        padding: 20px;
    }

    .my-section-2-adj {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    /* .section-2-card-1,
    .section-2-card-2,
    .section-2-card-3 {
        margin-bottom: 50px;
    } */

    .card-1-overlay,
    .card-2-overlay,
    .card-3-overlay,
    .card-4-overlay {
        height: 50px;
    }

    .section-2-heading h1 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 10px;
    }

    .section-2-heading p {
        font-size: 16px;
        text-align: justify;
    }
}

@media(max-width: 400px) {
    .section-2 {
        padding: 20px;
    }

    .section-2-card-1,
    .section-2-card-2,
    .section-2-card-3 {
        margin-bottom: 0px;
    }

    .card-1-overlay,
    .card-2-overlay,
    .card-3-overlay,
    .card-4-overlay {
        height: 50px;
    }

    .section-2-heading h1 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 10px;
    }

    .section-2-heading p {
        font-size: 16px;
        text-align: justify;
        line-height: 20px;
    }
}


/*********************************************** home-feature-section-end  ***********************************************/



/************************************************* home-classes-section-start *************************************************/
/* .pin-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.videos {
    position: relative;
    width: 100%;
    height: 100%;
} */

/* Each slide contains video + overlay + content */
/* .video-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%; */
/* default for non-first slides: start off-screen right */
/* transform: translateX(100%) scale(1);
    will-change: transform; */
/* border-radius: 50px; */
/* overflow: hidden;
} */

/* first slide should be in-place horizontally but start scaled down */
/* .video-slide:first-child {
    transform: translateX(0) scale(0.6); */
/* initial small size - will scale up on scroll in */
/* z-index: 1;
} */

/* later slides stack above earlier ones naturally (DOM order matters) */
/* .video-slide:nth-child(n+2) {
    z-index: 2;
}

#art-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#color-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#dance-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#language-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#religion-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#knowledge-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.video-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.content {
    position: relative;
    z-index: 4;
    max-width: 720px;
    padding: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.content h1 {
    font-size: 60px;
    margin: 0 0 0.75rem;
    font-family: var(--heading-font);
    font-weight: 600;
}

.content p {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    font-family: var(--para-font);
} */

/* small outro so there's scrolling after the pinned section finishes */
/* .after {
    height: 100vh;
    background: linear-gradient(#111, #202020);
} */

/* small helper for debugging / UI info */
/* .info {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.45);
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
} */

/* @media(max-width: 400px) {
    .content h1 {
        font-size: 35px;
    }

    .content p {
        font-size: 17px;
    }

    .videos {
        height: 100%;
    }

    .video-slide {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #art-video {
        width: 100%;
        height: 100%;
    }
} */

/************************************************* home-classes-section-end   *************************************************/




.carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(/assets/images/class-carousel-bg.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.video-carousel {
    width: 100%;
    max-width: 1400px;
}

.video-slide {
    padding: 0 20px;
    /* gap between slides */
    border-radius: 50px;
}

.video-frame {
    width: 100%;
    border-radius: 50px;
}


#art-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#color-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#dance-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#language-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#religion-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

#knowledge-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Text inside the video */
.video-content {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    /* above overlay */
    color: #fff;
    max-width: 48%;
    text-wrap: pretty;
}

.video-content h2 {
    font-size: 50px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.video-content p {
    font-size: 30px;
    font-family: var(--para-font);
}

.video-content * {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}


@media (max-width: 768px) {

    .carousel-section {
        padding: 50px 0;
        height: 100%;
        margin-bottom: 100px;
        margin-top: 100px;
    }


    .video-slide {
        padding: 0 10px;
    }

    .video-frame {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    /* Make video fill screen width */
    .video-frame video {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    /* Bring text below video with dark overlay */
    .video-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        height: 550px;
        /* text-align: center; */
        background: rgba(0, 0, 0, 0.3);
        color: #fff;
        padding: 20px 15px;
        /* margin-top: -60px; */
        /* overlaps slightly on video */
        border-radius: 12px;
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
    }

    .video-content h2 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .video-content p {
        font-size: 18px;
        line-height: 1.4;
    }

    .video-content * {
        text-shadow: none;
    }

}

:root {
    --carousel-height: 100vw;
    /* ~16:9 ratio */
}

/* Hide by default */
/* .mobile-carousel-and-wrapper {
    display: none;
} */

/* Show only on mobile */
/* @media (max-width: 768px) {
    .mobile-carousel-and-wrapper {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 12px;
        box-sizing: border-box;
    }
} */



/* .mobile-carousel-and-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-carousel-and-video-wrapper {
    width: 100%;
    height: var(--carousel-height);
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.mobile-carousel-and-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-carousel-and-content {
    margin-top: 12px;
}

.mobile-carousel-and-heading {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
    font-family: var(--heading-font);
}

.mobile-carousel-and-text {
    font-size: 20px;
    color: #555;
    line-height: 1.4;
    font-family: var(--para-font);
    font-weight: 500;
}

.slick-dots,
.slick-arrow {
    display: none !important;
} */

/* mobile-carousel-section-end */




/************************************************** home-cta-section-start **************************************************/
.new-cta-card-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-image: url(/assets/images/banner-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Big intro text behind expanding div */
.new-cta-card-intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: bold;
    letter-spacing: 5px;
    text-align: center;
    z-index: 0;
    opacity: 1;
    user-select: none;
    pointer-events: none;
    width: 100%;
}

/* Expanding div container (full width) */
.new-cta-card-div {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 500px;
    background: #dde6ff;
    transform-origin: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    border-radius: 24px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cta-icon-1 {
    width: 100px;
    position: absolute;
    left: 100;
    top: 50;
    opacity: 0;
    transform: rotate(-20deg);
}

.cta-icon-2 {
    width: 100px;
    position: absolute;
    right: 100;
    opacity: 0;
    transform: rotate(-70deg);
}

.cta-icon-3 {
    width: 100px;
    position: absolute;
    bottom: 100;
    left: 300;
    opacity: 0;
    transform: rotate(20deg);
}

.cta-icon-4 {
    width: 100px;
    position: absolute;
    bottom: 10;
    right: 400;
    opacity: 0;
    transform: rotate(20deg);
}

/* Adding new gradient animations for additional cards */
.cta-ani-1 {
    animation: float-wave-4 3.2s ease-in-out infinite;
}

.cta-ani-2 {
    animation: float-wave-5 3.8s ease-in-out infinite;
}

.cta-ani-3 {
    animation: float-wave-6 4.2s ease-in-out infinite;
}

.cta-ani-4 {
    animation: float-wave-7 3.6s ease-in-out infinite;
}

/* New floating animations for additional cards */
@keyframes float-wave-4 {

    0%,
    100% {
        transform: translateY(-5px) rotate(0deg);
    }

    25% {
        transform: translateY(-1px) rotate(0.3deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    75% {
        transform: translateY(-3px) rotate(-0.3deg);
    }
}

@keyframes float-wave-5 {

    0%,
    100% {
        transform: translateY(-2px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(-0.4deg);
    }

    50% {
        transform: translateY(-6px) rotate(0deg);
    }

    75% {
        transform: translateY(-8px) rotate(0.4deg);
    }
}

@keyframes float-wave-6 {

    0%,
    100% {
        transform: translateY(-7px) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(0.6deg);
    }

    50% {
        transform: translateY(-11px) rotate(0deg);
    }

    75% {
        transform: translateY(-5px) rotate(-0.6deg);
    }
}

@keyframes float-wave-7 {

    0%,
    100% {
        transform: translateY(-4px) rotate(0deg);
    }

    25% {
        transform: translateY(-12px) rotate(-0.2deg);
    }

    50% {
        transform: translateY(-8px) rotate(0deg);
    }

    75% {
        transform: translateY(-2px) rotate(0.2deg);
    }
}

.new-cta-card-h1 {
    font-size: 50px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    color: #000;
    font-family: lex;
    font-weight: 700;
}

.new-cta-card-p {
    font-size: 20px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.6;
    margin-bottom: 25px;
    color: #000;
    font-family: urban;
}

.cta-btn {
    background-color: #a995af;
    padding: 10px 40px;
    border: 2px solid #a995af;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-family: var(--para-font);
    transition: all 0.4s ease;
    font-weight: 500;
    opacity: 0;
}

.cta-btn:hover {
    background-color: #fff;
    border: 2px solid #fff;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
    color: #000;
}


.mobile-cta-section {
    display: none;
}

@media(max-width: 1400px) {
    .new-cta-card-div {
        height: 440px;
    }

    .cta-icon-1 {
        width: 80px;
    }

    .cta-icon-2 {
        width: 80px;
    }

    .cta-icon-3 {
        width: 80px;
        opacity: 0.5 !important;
    }

    .cta-icon-4 {
        width: 80px;
        opacity: 0.5 !important;
        right: 330;
    }

    .new-cta-card-h1 {
        font-size: 40px;
    }

    .new-cta-card-p {
        font-size: 18px;
    }
}

@media(max-width: 480px) {
    .new-cta-card-section {
        display: none;
    }

    .mobile-cta-section {
        display: flex;
        padding: 10px;
        width: 100%;
        height: 100%;
        background-image: url(/assets/images/banner-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        align-items: center;
        justify-content: center;
    }

    .mobile-cta-card {
        background-color: #dde6ff;
        height: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 24px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        position: relative;
    }

    .mobile-cta-cont {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .mobile-cta-cont h1 {
        font-size: 40px;
        color: #000;
        font-family: lex;
        font-weight: 700;
        text-align: center;
    }

    .mobile-cta-cont p {
        font-size: 18px;
        max-width: 600px;
        line-height: 1.6;
        color: #000;
        font-family: urban;
        text-align: center;
    }

    .mobile-cta-cont a {
        background-color: #a995af;
        padding: 10px 40px;
        border: 2px solid #a995af;
        border-radius: 5px;
        text-decoration: none;
        color: #fff;
        font-family: var(--para-font);
        transition: all 0.4s ease;
        font-weight: 500;
    }

    .mobile-cta-cont a:hover {
        background-color: #fff;
        border: 2px solid #fff;
        box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
        color: #000;
    }

    .mobile-cta-icon-1 {
        width: 60px;
        position: absolute;
        left: 34px;
        top: 30px;
        pointer-events: none;
        opacity: 0.5;
    }

    .mobile-cta-icon-2 {
        width: 60px;
        position: absolute;
        right: 20px;
        top: 100px;
        pointer-events: none;
        opacity: 0.5;
    }

    .mobile-cta-icon-3 {
        width: 60px;
        position: absolute;
        bottom: 18px;
        left: 292px;
        pointer-events: none;
        opacity: 0.5;
    }

    .mobile-cta-icon-4 {
        width: 60px;
        position: absolute;
        bottom: 60px;
        right: 330px;
        pointer-events: none;
        opacity: 0.5;
    }
}

@media(max-width: 380px) {
    .mobile-cta-cont h1 {
        font-size: 30px;
    }

    .mobile-cta-cont p {
        font-size: 16px;
    }


    .mobile-cta-icon-1,
    .mobile-cta-icon-2,
    .mobile-cta-icon-3 {
        width: 40px;
    }

    .mobile-cta-icon-4 {
        width: 40px;
        right: 270px;
    }
}


/************************************************** home-cta-section-end   **************************************************/




/************************************************ footer-section-start ************************************************/
.main-footer {
    padding: 100px 100px 40px 100px;
    position: relative;
}

/* .footer-asset-1 {
    position: absolute;
    right: 0;
    top: 60;
    width: 100px;
    z-index: -11;
    opacity: 1;
}

.footer-asset-2 {
    position: absolute;
    left: 0;
    top: 60;
    width: 100px;
    z-index: -11;
    opacity: 1;
} */

.all-footer-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-logo-img {
    width: 20%;
}

.all-footer-link-1 {
    width: 20%;
}

.all-footer-link-2 {
    width: 15%;
}

.footer-logo-img img {
    width: 60%;
    display: flex;
    align-items: start;
}

.footer-logo-img p {
    font-family: var(--para-font);
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
}

.footer-quick-links span {
    font-size: 20px;
    font-family: var(--subheading-font);
    font-weight: 500;
    margin-bottom: 30px;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* font-family: 'Cabin Sketch', sans-serif; */
    font-family: var(--para-font);
}

.footer-quick-links ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 18px;
}

.footer-quick-links ul li a:hover {
    color: #ff9d47;
}

.footer-highlight {
    display: flex;
    flex-direction: column;
}

.footer-highlight span {
    font-size: 20px;
    font-family: var(--subheading-font);
    font-weight: 500;
    margin-bottom: 30px;
}

.footer-highlight ul {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* font-family: 'Cabin Sketch', sans-serif; */
    font-family: var(--para-font);
}

.footer-highlight ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 18px;
}


.footer-highlight ul li a:hover {
    color: #ff9d47;
}

.footer-icon-placement {
    position: relative;
}

.footer-icon-1 {
    width: 10%;
    transform: rotateY(180deg);
}

.footer-icon-2 {
    position: absolute;
    right: 0;
    width: 10%;
    top: -100;
}

.footer-ani {
    animation: float-wave-100 3.6s ease-in-out infinite;
}

/* New floating animations for additional cards */
@keyframes float-wave-100 {

    0%,
    100% {
        transform: translateY(-5px) rotate(0deg);
    }

    25% {
        transform: translateY(-1px) rotate(0.3deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    75% {
        transform: translateY(-3px) rotate(-0.3deg);
    }
}

.footer-hr {
    opacity: 0.2;
    margin-top: 50px;
    border-top: 3px dotted #000;
    opacity: 1;
    /* border-radius: 50px; */
    position: relative;
    z-index: -12;
    margin-top: 0px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.footer-copyright p {
    font-family: var(--subheading-font);
    font-size: 15px;
    font-weight: 400;
    color: #000;
}


@media(max-width: 1400px) {
    .main-footer {
        padding: 100px 50px 40px 50px;
    }

    .all-footer-links {
        gap: 30px;
    }
}

@media(max-width: 500px) {
    .footer-logo-img img {
        width: 40%;
    }

    .main-footer {
        padding: 100px 20px 40px 20px;
    }

    .all-footer-links {
        flex-direction: column;
        padding-left: 0px;
        gap: 45px;
    }

    .footer-logo-img {
        width: 100%;
    }

    .all-footer-link-1 {
        width: 100%;
    }

    .all-footer-link-2 {
        width: 100%;
    }

    .footer-quick-links span {
        font-size: 20px;
    }

    .footer-highlight span {
        font-size: 20px;
    }

    .footer-highlight ul li a {
        font-size: 18px;
    }

    .footer-quick-links ul li a {
        font-size: 18px;
    }

    .footer-icon-1 {
        width: 20%;
    }

    .footer-icon-2 {
        width: 20%;
    }
}

@media(max-width: 400px) {
    .footer-logo-img img {
        width: 40%;
    }

    .main-footer {
        padding: 100px 20px 40px 20px;
    }

    .all-footer-links {
        flex-direction: column;
        padding-left: 0px;
        gap: 45px;
    }

    .footer-logo-img {
        width: 100%;
    }

    .all-footer-link-1 {
        width: 100%;
    }

    .all-footer-link-2 {
        width: 100%;
    }

    .footer-quick-links span {
        font-size: 20px;
    }

    .footer-highlight span {
        font-size: 20px;
    }

    .footer-highlight ul li a {
        font-size: 18px;
    }

    .footer-quick-links ul li a {
        font-size: 18px;
    }

    .footer-icon-1 {
        width: 20%;
    }

    .footer-icon-2 {
        width: 20%;
    }
}

/************************************************ footer-section-end   ************************************************/




/************************************************ about-hero-section-start ************************************************/
.about-hero-section {
    height: 100vh;
    /* background-image: url(/assets/images/about-hero-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    background-color: #B39DDB;
    /* width: 100vw; */
    position: relative;
    top: -10;
    display: flex;
    justify-content: center;
    padding: 0px 100px;
    border: none;
    position: relative;
}

.wave-2 {
    position: absolute;
    z-index: -100;
    bottom: -340px;
}

.about-hero-asset {
    position: absolute;
    bottom: 80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-asset img {
    width: 100%;
}

.about-hero-cont {
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-hero-cont h1 {
    font-size: 65px;
    font-family: var(--heading-font);
    font-weight: 700;
    width: 40%;
    color: #fff;
}

.about-hero-cont-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
}

.about-hero-cont-right p {
    font-family: var(--para-font);
    font-weight: 600;
    color: #fff;
    font-size: 18px;
}

.about-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-btn a {
    text-decoration: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    background-color: #7660A0;
    font-family: var(--subheading-font);
    transition: all 0.4s ease;
}

.about-hero-btn i {
    background-color: #7660A0;
    color: #fff;
    padding: 13px 18px;
    border-radius: 50px;
    font-size: 20px;
    transition: all 0.4s ease;
}

.about-hero-btn:hover>a {
    background-color: #fff;
    color: #000;
}

.about-hero-btn:hover>i {
    background-color: #fff;
    color: #000;
    transform: rotate(-45deg);
}


@media(max-width: 1920px) {
    .about-hero-section {
        height: 90vh;
    }

    .about-hero-asset img {
        width: 95%;
    }

    .about-hero-cont h1 {
        font-size: 75px;
    }

    .about-hero-cont-right p {
        font-size: 25px;
    }

    .about-hero-asset {
        bottom: 110px;
    }
}

@media(max-width: 1600px) {
    .about-hero-cont h1 {
        font-size: 55px;
    }

    .about-hero-cont-right p {
        font-size: 21px;
    }

    .about-hero-asset {
        bottom: 90px;
    }

    .about-hero-asset img {
        width: 90%;
    }
}


@media(max-width: 1400px) {
    .about-hero-section {
        height: 100vh;
    }

    .about-hero-cont h1 {
        font-size: 50px;
    }

    .about-hero-cont-right p {
        font-size: 18px;
    }

    .about-hero-asset img {
        width: 90%;
    }
}


@media(max-width: 500px) {
    .about-hero-section {
        padding: 100px 20px;
        height: 75vh;
    }

    .about-hero-cont {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .about-hero-cont h1 {
        width: 100%;
        font-size: 40px;
    }

    .about-hero-cont-right p {
        font-size: 17px;
    }

    .about-hero-cont-right {
        width: 100%;
    }

    .about-hero-asset {
        display: none;
    }

    .wave-2 {
        bottom: -100px !important;
    }
}

@media(max-width: 400px) {
    .about-hero-section {
        padding: 100px 20px;
        height: 65vh;
    }

    .about-hero-cont h1 {
        font-size: 35px;
    }

    .about-hero-cont-right p {
        font-size: 16px;
    }

    /* .about-hero-btn a {
        padding: 10px 40px;
    }

    .about-hero-btn i {
        padding: 10px 15px;
    } */

    .wave-2 {
        bottom: -100px !important;
    }
}

@media(max-width: 380px) {
    .wave-2 {
        bottom: -95px !important;
    }
}

/************************************************ about-hero-section-end  *************************************************/




/********************************************* mission and vision section start *********************************************/
.m-s-section {
    padding: 350px 100px 100px 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.my-butter-2 {
    width: 740px;
    height: 780px;
    position: absolute;
    right: -220;
    top: -200;
}

.top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
}

.top-box-1 {
    width: 60%;
    height: 350px;
    border-radius: 34px;
    background-color: #dcfaf8;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-box-1-cont {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-box-1-cont h1 {
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 0px;
}

.top-box-1-cont p {
    font-family: var(--para-font);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 0px;
}


.top-box-1-img {
    width: 50%;
}

.top-box-1-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.top-box-2 {
    width: 40%;
    height: 350px;
    border-radius: 34px;
    background-color: #eadcff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.top-box-2 h1 {
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 0px;
}

.top-box-2 p {
    font-family: var(--para-font);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 0px;
}


.bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
    position: relative;
}

.bottom-row-icon-1 {
    position: absolute;
    left: -50;
    top: -80;
    transform: rotate(-12deg);
    width: 7%;
}

.bottom-row-icon-2 {
    position: absolute;
    right: -10;
    bottom: -20;
    transform: rotate(-12deg);
    width: 7%;
}

.bottom-box-1 {
    width: 40%;
    height: 350px;
    border-radius: 34px;
    background-color: #a9e2ff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 20px;
}

.bottom-box-1 h1 {
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 0px;
}

.bottom-box-1 p {
    font-family: var(--para-font);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 0px;
}

.bottom-box-2 {
    width: 60%;
    height: 350px;
    border-radius: 34px;
    background-color: #fff9c8;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-box-2-cont {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bottom-box-2-cont h1 {
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 0px;
    color: #000000;
}

.bottom-box-2-cont p {
    font-family: var(--para-font);
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 0px;
}


.bottom-box-2-img {
    width: 50%;
    padding: 20px;
}

.bottom-box-2-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


@media(max-width: 1920px) {
    .top-box-1 {
        height: 400px;
    }

    .top-box-1-cont h1 {
        font-size: 40px;
    }

    .top-box-1-cont p {
        font-size: 20px;
    }

    .top-box-2 {
        height: 400px;
    }

    .top-box-2 h1 {
        font-size: 40px;
    }

    .top-box-2 p {
        font-size: 22px;
    }

    .bottom-box-1 {
        height: 400px;
    }

    .bottom-box-1 h1 {
        font-size: 40px;
    }

    .bottom-box-1 p {
        font-size: 22px;
    }

    .bottom-box-2 {
        height: 400px;
    }

    .bottom-box-2-cont h1 {
        font-size: 40px;
    }

    .bottom-box-2-cont p {
        font-size: 20px;
    }
}


@media(max-width: 1600px) {
    .top-box-1 {
        height: 360px;
    }

    .top-box-1-cont h1 {
        font-size: 35px;
    }

    .top-box-1-cont p {
        font-size: 17px;
    }

    .bottom-box-2 {
        height: 360px;
    }

    .bottom-box-2-cont h1 {
        font-size: 35px;
    }

    .bottom-box-2-cont p {
        font-size: 17px;
    }

    .top-box-2 {
        height: 360px;
    }

    .top-box-2 h1 {
        font-size: 30px;
    }

    .top-box-2 p {
        font-size: 17px;
    }

    .bottom-box-1 {
        height: 360px;
    }

    .bottom-box-1 h1 {
        font-size: 30px;
    }

    .bottom-box-1 p {
        font-size: 17px;
    }

}


@media(max-width: 1400px) {
    .top-box-1 {
        height: 320px;
    }

    .top-box-1-cont h1 {
        font-size: 30px;
    }

    .top-box-1-cont p {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .bottom-box-2 {
        height: 320px;
    }

    .bottom-box-2-cont h1 {
        font-size: 30px;
    }

    .bottom-box-2-cont p {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .top-box-2 {
        height: 320px;
    }

    .top-box-2 h1 {
        font-size: 30px;
    }

    .top-box-2 p {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .bottom-box-1 {
        height: 320px;
    }

    .bottom-box-1 h1 {
        font-size: 30px;
    }

    .bottom-box-1 p {
        font-size: 15px;
        margin-bottom: 0px;
    }
}

@media(max-width: 500px) {
    .m-s-section {
        padding: 250px 10px 100px 10px;
    }

    .top-row {
        flex-direction: column;
    }

    .top-box-1 {
        width: 100%;
        flex-direction: column;
        height: fit-content;
    }

    .top-box-1-cont {
        width: 100%;
    }

    .top-box-1-img {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-box-1-img img {
        width: 80%;
    }

    .top-box-2 {
        width: 100%;
        height: fit-content;
    }

    .bottom-row {
        flex-direction: column-reverse;
    }

    .bottom-box-1 {
        width: 100%;
        height: fit-content;
    }

    .bottom-box-2 {
        width: 100%;
        flex-direction: column;
        height: fit-content;
    }

    .bottom-box-2-cont {
        width: 100%;
    }

    .bottom-box-2-img {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-box-2-img img {
        width: 80%;
    }

    .bottom-row-icon-1 {
        left: -20;
        width: 20%;
    }

    .bottom-row-icon-2 {
        right: 9px;
        bottom: 3px;
        width: 16%;
    }

    .my-butter-2 {
        width: 500px;
        height: 500px;
        right: -170px;
        top: -100px;
    }
}

@media(max-width: 400px) {
    .m-s-section {
        padding: 250px 10px 100px 10px;
    }

    .top-row {
        flex-direction: column;
    }

    .top-box-1 {
        width: 100%;
        flex-direction: column;
        height: fit-content;
    }

    .top-box-1-cont {
        width: 100%;
    }

    .top-box-1-img {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .top-box-1-img img {
        width: 80%;
    }

    .top-box-2 {
        width: 100%;
        height: fit-content;
        padding: 30px;
    }

    .bottom-row {
        flex-direction: column-reverse;
    }

    .bottom-box-1 {
        width: 100%;
        height: fit-content;
        padding: 30px;
    }

    .bottom-box-2 {
        width: 100%;
        flex-direction: column;
        height: fit-content;
    }

    .bottom-box-2-cont {
        width: 100%;
    }

    .bottom-box-2-img {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-box-2-img img {
        width: 80%;
    }

    .bottom-row-icon-1 {
        left: -20;
        width: 20%;
    }

    .bottom-row-icon-2 {
        right: 9px;
        bottom: 3px;
        width: 16%;
    }

    .my-butter-2 {
        width: 500px;
        height: 500px;
        right: -170px;
        top: -100px;
    }
}



/********************************************* mission and vision section end   *********************************************/



/************************************************* our story section start *************************************************/
.our-story-section {
    padding: 50px 0px 0px 50px;
    /* background-color: #B39DDB; */
    background-image: url(/assets/images/about-hero-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100vh; */
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    position: relative;
}

.our-story-asset-1 {
    position: absolute;
    width: 4%;
    top: 100;
    left: 80;
    opacity: 0.2;
}

.our-story-asset-2 {
    position: absolute;
    width: 5%;
    bottom: 40;
    right: 150;
    opacity: 0.2;
}

.our-story-asset-3 {
    position: absolute;
    width: 5%;
    right: 300;
    top: 200;
    opacity: 0.2;
}

/* Adding new gradient animations for additional cards */
.our-story-ani-1 {
    animation: float-wave-4 3.2s ease-in-out infinite;
}

.our-story-ani-2 {
    animation: float-wave-5 3.8s ease-in-out infinite;
}

.our-story-ani-3 {
    animation: float-wave-6 4.2s ease-in-out infinite;
}


/* New floating animations for additional cards */
@keyframes float-wave-4 {

    0%,
    100% {
        transform: translateY(-5px) rotate(0deg);
    }

    25% {
        transform: translateY(-1px) rotate(0.3deg);
    }

    50% {
        transform: translateY(-9px) rotate(0deg);
    }

    75% {
        transform: translateY(-3px) rotate(-0.3deg);
    }
}

@keyframes float-wave-5 {

    0%,
    100% {
        transform: translateY(-2px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(-0.4deg);
    }

    50% {
        transform: translateY(-6px) rotate(0deg);
    }

    75% {
        transform: translateY(-8px) rotate(0.4deg);
    }
}

@keyframes float-wave-6 {

    0%,
    100% {
        transform: translateY(-7px) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(0.6deg);
    }

    50% {
        transform: translateY(-11px) rotate(0deg);
    }

    75% {
        transform: translateY(-5px) rotate(-0.6deg);
    }
}

.our-story-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60%;
}

.our-story-heading h1 {
    font-size: 60px;
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: 700;
    color: #fff;
}

.our-story-heading p {
    font-size: 20px;
    font-family: var(--para-font);
    font-weight: 500;
    color: #fff;
    text-align: center;
}

.our-story-main-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.our-story-main-left {
    width: 50%;
}

.our-story-img {
    width: 100%;
    border-radius: 24px;
    height: 500px;
    object-fit: cover;
}

.our-story-main-right {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.our-story-point-1 h1 {
    font-family: var(--subheading-font);
    font-weight: 500;
    font-size: 30px;
    color: #fff;
}

.our-story-point-1 p {
    font-family: var(--para-font);
    font-weight: 500;
    font-size: 17px;
    color: #fff;
}

.our-story-point-2 h1 {
    font-family: var(--subheading-font);
    font-weight: 500;
    font-size: 30px;
    color: #fff;
}

.our-story-point-2 p {
    font-family: var(--para-font);
    font-weight: 500;
    font-size: 17px;
    color: #fff;
}

.our-story-point-3 h1 {
    font-family: var(--subheading-font);
    font-weight: 500;
    font-size: 30px;
    color: #fff;
}

.our-story-point-3 p {
    font-family: var(--para-font);
    font-weight: 500;
    font-size: 17px;
    color: #fff;
}


@media(max-width: 1920px) {
    /* .our-story-section {
        height: 100vh;
    } */

    .our-story-heading h1 {
        font-size: 75px;
    }

    .our-story-heading p {
        font-size: 25px;
    }

    .our-story-img {
        height: 600px;
    }

    .our-story-point-1 h1 {
        font-size: 40px;
    }

    .our-story-point-1 p {
        font-size: 20px;
    }

    .our-story-point-2 h1 {
        font-size: 40px;
    }

    .our-story-point-2 p {
        font-size: 20px;
    }

    .our-story-point-3 h1 {
        font-size: 40px;
    }

    .our-story-point-3 p {
        font-size: 20px;
    }
}

@media(max-width: 1600px) {
    .our-story-heading h1 {
        font-size: 60px;
    }

    .our-story-heading {
        width: 80%;
    }

    .our-story-img {
        height: 450px;
    }

    .our-story-point-1 h1 {
        font-size: 27px;
    }

    .our-story-point-1 p {
        font-size: 17px;
    }

    .our-story-point-2 h1 {
        font-size: 27px;
    }

    .our-story-point-2 p {
        font-size: 17px;
    }

    .our-story-point-3 h1 {
        font-size: 27px;
    }

    .our-story-point-3 p {
        font-size: 17px;
    }
}


@media(max-width: 1600px) {
    .our-story-heading p {
        font-size: 20px;
    }

    .our-story-point-1 h1 {
        font-size: 25px;
    }

    .our-story-point-1 p {
        font-size: 17px;
    }

    .our-story-point-2 h1 {
        font-size: 25px;
    }

    .our-story-point-2 p {
        font-size: 17px;
    }

    .our-story-point-3 h1 {
        font-size: 25px;
    }

    .our-story-point-3 p {
        font-size: 17px;
    }
}

@media(max-width: 1400px) {
    /* .our-story-section {
        height: 100%;
    } */

    .our-story-heading {
        width: 80%;
    }

    .our-story-heading h1 {
        font-size: 50px;
    }

    .our-story-heading p {
        font-size: 20px;
    }

    .our-story-img {
        height: 420px;
    }

    .our-story-point-1 h1 {
        font-size: 25px;
    }

    .our-story-point-1 p {
        font-size: 16px;
    }

    .our-story-point-2 h1 {
        font-size: 25px;
    }

    .our-story-point-2 p {
        font-size: 16px;
    }

    .our-story-point-3 h1 {
        font-size: 25px;
    }

    .our-story-point-3 p {
        font-size: 16px;
    }
}


@media(max-width: 500px) {
    .our-story-section {
        padding: 50px 10px;
        margin-bottom: 150px;
        width: 100%;
        height: fit-content;
        background-color: #B39DDB;
        gap: 50px;
    }

    .our-story-heading {
        width: 100%;
    }

    .our-story-main-cont {
        flex-direction: column;
        padding: 0px 10px;
        gap: 50px;
    }

    .our-story-main-left {
        width: 100%;
    }

    .our-story-main-right {
        width: 100%;
        padding: 20px 10px;
    }

    .our-story-point-1 h1,
    .our-story-point-2 h1,
    .our-story-point-3 h1 {
        font-size: 23px;
    }

    .our-story-point-1 p,
    .our-story-point-2 p,
    .our-story-point-3 p {
        font-size: 16px;
    }

    .our-story-asset-1 {
        width: 12%;
        top: 20px;
        left: 33px;
        opacity: 0.4;
    }

    .our-story-asset-2 {
        position: absolute;
        width: 16%;
        bottom: 2px;
        right: 110px;
    }

    .our-story-asset-3 {
        width: 15%;
        right: 40px;
        top: 770px;
        opacity: 0.4;
    }

    .our-story-img {
        height: 350px;
    }

    .our-story-heading p {
        font-size: 18px;
    }
}

/************************************************* our story section end   *************************************************/




/************************************************* classes hero section start *************************************************/
.classes-hero-section {
    height: 100vh;
    /* background-image: url(/assets/images/classes-hero-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    background-color: #D6F4FC;
    /* width: 100vw; */
    position: relative;
    top: -10;
    display: flex;
    justify-content: center;
    padding: 0px 100px;
    border: none;
}

.classes-hero-asset {
    position: absolute;
    bottom: 80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.classes-hero-asset img {
    width: 95%;
}

.classes-hero-cont {
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.classes-hero-cont h1 {
    font-size: 65px;
    font-family: var(--heading-font);
    font-weight: 700;
    width: 40%;
    color: #2b86a0;
}

.classes-hero-cont-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: start;
}

.classes-hero-cont-right p {
    font-family: var(--para-font);
    font-weight: 600;
    color: #2b86a0;
    font-size: 18px;
}

.classes-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.classes-hero-btn a {
    text-decoration: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    background-color: #2b86a0;
    font-family: var(--subheading-font);
    transition: all 0.4s ease;
}

.classes-hero-btn i {
    background-color: #2b86a0;
    color: #fff;
    padding: 13px 18px;
    border-radius: 50px;
    font-size: 20px;
    transition: all 0.4s ease;
}

.classes-hero-btn:hover>a {
    background-color: #fff;
    color: #000;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.classes-hero-btn:hover>i {
    background-color: #fff;
    color: #000;
    transform: rotate(-45deg);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


@media(max-width: 1920px) {
    .classes-hero-section {
        height: 90vh;
    }

    .classes-hero-asset img {
        width: 95%;
    }

    .classes-hero-cont h1 {
        font-size: 75px;
    }

    .classes-hero-cont-right p {
        font-size: 25px;
    }

    .classes-hero-asset {
        bottom: 110px;
    }
}

@media(max-width: 1600px) {
    .classes-hero-cont h1 {
        font-size: 60px;
    }

    .classes-hero-cont-right p {
        font-size: 21px;
    }

    .classes-hero-asset {
        bottom: 90px;
    }

    .classes-hero-asset img {
        width: 85%;
    }
}

@media(max-width: 1400px) {
    .classes-hero-section {
        height: 100vh;
    }

    .classes-hero-cont h1 {
        font-size: 50px;
    }

    .classes-hero-cont-right p {
        font-size: 18px;
    }

    .classes-hero-asset img {
        width: 90%;
    }
}

@media(max-width: 500px) {
    .classes-hero-section {
        height: 55vh;
        padding: 100px 20px;
    }

    .classes-hero-cont {
        flex-direction: column;
        /* height: 100%; */
        justify-content: center;
        gap: 30px;
        height: fit-content;
    }

    .classes-hero-cont h1 {
        width: 100%;
        font-size: 40px;
    }

    .classes-hero-cont-right {
        width: 100%;
        gap: 30px;
    }

    .classes-hero-cont-right p {
        font-size: 17px;
    }


    .classes-hero-asset {
        display: none;
    }
}

/************************************************* classes hero section end   *************************************************/


/* our-class-room-section--start */
.our-classroom-section {
    padding: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    position: relative;
    background-color:#D6F4FC ;
    margin-bottom: 200px;
}

.our-classroom-heading {
    font-size: 55px;
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: bolder;
    color: #2b86a0;
}

.our-classroom-video{
    width: 80%;
    border-radius: 50px;
}


@media(max-width: 768px){

    .our-classroom-section{
        padding: 40px 10px;
        margin-bottom: 100px;
    }

    .our-classroom-heading{
        font-size: 40px;
    }
    .our-classroom-video{
        width: 100%;
    }
}

/* our-class-room-section--end  */


/************************************************ all classes section start ************************************************/
.all-classes-section {
    padding: 350px 0px 100px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.all-classes-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60%;
}

.all-classes-heading h1 {
    font-size: 55px;
    font-family: 'Cabin Sketch', sans-serif;
    font-weight: bolder;
    color: #2b86a0;
}

.all-classes-heading p {
    font-family: var(--para-font);
    font-size: 20px;
    text-align: center;
    font-weight: 500;
}


.all-classes-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 100px 0px 100px;
}

.all-classes-card-1 {
    width: 100%;
    height: 400px;
    background-color: #8cc5d4;
    border-radius: 60px;
    padding: 50px 30px 50px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.all-classes-asset-1 {
    position: absolute;
    width: 50%;
    right: -80;
    top: 0;
}

.all-classes-card-main-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.all-classes-card-main-1 img {
    width: 40%;
}

.all-classes-card-main-1 h1 {
    font-family: var(--subheading-font);
    font-size: 35px;
    font-weight: 600;
}

.all-classes-card-overlay-1 {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    transform: translateY(400px);
    transition: all 0.4s ease;
    border-radius: 0px;
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-classes-card-overlay-1 h1 {
    font-family: var(--subheading-font);
    font-weight: 700;
    font-size: 35px;
    color: #7dc8dc;
    z-index: 10;
}

.all-classes-card-overlay-1 p {
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 20px;
    z-index: 10;
}

.all-classes-card-overlay-1 img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.all-classes-card-1:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.all-classes-card-1:hover>.all-classes-card-overlay-1 {
    transform: translateY(0px);
}

.all-classes-card-2 {
    width: 100%;
    height: 400px;
    background-color: #2b86a0;
    border-radius: 60px;
    padding: 50px 30px 50px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}


.all-classes-asset-2 {
    position: absolute;
    width: 40%;
    right: -10;
    top: -20;
}

.all-classes-card-main-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.all-classes-card-main-2 img {
    width: 40%;
}

.all-classes-card-main-2 h1 {
    font-family: var(--subheading-font);
    font-size: 35px;
    font-weight: 600;
}

.all-classes-card-overlay-2 {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    transform: translateY(400px);
    transition: all 0.4s ease;
    border-radius: 0px;
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-classes-card-overlay-2 h1 {
    font-family: var(--subheading-font);
    font-weight: 700;
    font-size: 35px;
    color: #2b86a0;
    z-index: 10;
}

.all-classes-card-overlay-2 p {
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 20px;
    z-index: 10;
}

.all-classes-card-overlay-2 img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.all-classes-card-2:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.all-classes-card-2:hover>.all-classes-card-overlay-2 {
    transform: translateY(0px);
}


.all-classes-card-3 {
    width: 100%;
    height: 400px;
    background-color: #FACC16;
    border-radius: 60px;
    padding: 50px 30px 50px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}


.all-classes-asset-3 {
    position: absolute;
    width: 30%;
    right: -10;
    top: 30;
    transform: rotate(-10deg);
}


.all-classes-card-main-3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.all-classes-card-main-3 img {
    width: 40%;
}

.all-classes-card-main-3 h1 {
    font-family: var(--subheading-font);
    font-size: 35px;
    font-weight: 600;
}


.all-classes-card-overlay-3 {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    transform: translateY(400px);
    transition: all 0.4s ease;
    border-radius: 0px;
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-classes-card-overlay-3 h1 {
    font-family: var(--subheading-font);
    font-weight: 700;
    font-size: 35px;
    color: #FACC16;
    z-index: 10;
}

.all-classes-card-overlay-3 p {
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 20px;
    z-index: 10;
}

.all-classes-card-overlay-3 img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.all-classes-card-3:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.all-classes-card-3:hover>.all-classes-card-overlay-3 {
    transform: translateY(0px);
}


.all-classes-card-4 {
    width: 100%;
    height: 400px;
    background-color: #D569DA;
    border-radius: 60px;
    padding: 50px 30px 50px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.all-classes-asset-4 {
    position: absolute;
    width: 40%;
    right: -50;
    top: 0;
    transform: rotate(30deg);
}

.all-classes-card-main-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.all-classes-card-main-4 img {
    width: 40%;
}

.all-classes-card-main-4 h1 {
    font-family: var(--subheading-font);
    font-size: 35px;
    font-weight: 600;
}

.all-classes-card-overlay-4 {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    transform: translateY(400px);
    transition: all 0.4s ease;
    border-radius: 0px;
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-classes-card-overlay-4 h1 {
    font-family: var(--subheading-font);
    font-weight: 700;
    font-size: 35px;
    color: #D569DA;
    z-index: 10;
}

.all-classes-card-overlay-4 p {
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 20px;
    z-index: 10;
}

.all-classes-card-overlay-4 img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.all-classes-card-4:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.all-classes-card-4:hover>.all-classes-card-overlay-4 {
    transform: translateY(0px);
}

.all-classes-card-5 {
    width: 100%;
    height: 400px;
    background-color: #63BF9D;
    border-radius: 60px;
    padding: 50px 30px 50px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}


.all-classes-asset-5 {
    position: absolute;
    width: 40%;
    right: -10;
    top: 20;
    transform: rotate(-20deg);
}

.all-classes-card-main-5 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.all-classes-card-main-5 img {
    width: 40%;
}

.all-classes-card-main-5 h1 {
    font-family: var(--subheading-font);
    font-size: 35px;
    font-weight: 600;
}

.all-classes-card-overlay-5 {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    transform: translateY(400px);
    transition: all 0.4s ease;
    border-radius: 0px;
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-classes-card-overlay-5 h1 {
    font-family: var(--subheading-font);
    font-weight: 700;
    font-size: 35px;
    color: #63BF9D;
    z-index: 10;
}

.all-classes-card-overlay-5 p {
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 20px;
    z-index: 10;
}

.all-classes-card-overlay-5 img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.all-classes-card-5:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.all-classes-card-5:hover>.all-classes-card-overlay-5 {
    transform: translateY(0px);
}


.all-classes-card-6 {
    width: 100%;
    height: 400px;
    background-color: #57DB78;
    border-radius: 60px;
    padding: 50px 30px 50px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}


.all-classes-asset-6 {
    position: absolute;
    width: 35%;
    right: -10;
    top: 0;
    transform: rotate(-10deg);
}


.all-classes-card-main-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.all-classes-card-main-6 img {
    width: 40%;
}

.all-classes-card-main-6 h1 {
    font-family: var(--subheading-font);
    font-size: 35px;
    font-weight: 600;
}


.all-classes-card-overlay-6 {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    transform: translateY(400px);
    transition: all 0.4s ease;
    border-radius: 0px;
    padding: 30px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.all-classes-card-overlay-6 h1 {
    font-family: var(--subheading-font);
    font-weight: 700;
    font-size: 35px;
    color: #57DB78;
    z-index: 10;
}

.all-classes-card-overlay-6 p {
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 20px;
    z-index: 10;
}

.all-classes-card-overlay-6 img {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.3;
}

.all-classes-card-6:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.all-classes-card-6:hover>.all-classes-card-overlay-6 {
    transform: translateY(0px);
}




@media(max-width: 1920px) {
    .all-classes-card-1 {
        height: 500px;
    }

    .all-classes-card-main-1 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-1 {
        height: 500px;
        transform: translateY(500px)
    }

    .all-classes-card-overlay-1 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-1 p {
        font-size: 25px;
    }

    .all-classes-card-2 {
        height: 500px;
    }

    .all-classes-card-main-2 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-2 {
        height: 500px;
        transform: translateY(500px)
    }

    .all-classes-card-overlay-2 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-2 p {
        font-size: 25px;
    }

    .all-classes-card-3 {
        height: 500px;
    }

    .all-classes-card-main-3 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-3 {
        height: 500px;
        transform: translateY(500px)
    }

    .all-classes-card-overlay-3 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-3 p {
        font-size: 25px;
    }

    .all-classes-card-4 {
        height: 500px;
    }

    .all-classes-card-main-4 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-4 {
        height: 500px;
        transform: translateY(500px)
    }

    .all-classes-card-overlay-4 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-4 p {
        font-size: 25px;
    }

    .all-classes-card-5 {
        height: 500px;
    }

    .all-classes-card-main-5 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-5 {
        height: 500px;
        transform: translateY(500px)
    }

    .all-classes-card-overlay-5 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-5 p {
        font-size: 25px;
    }

    .all-classes-card-6 {
        height: 500px;
    }

    .all-classes-card-main-6 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-6 {
        height: 500px;
        transform: translateY(500px)
    }

    .all-classes-card-overlay-6 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-6 p {
        font-size: 25px;
    }
}

@media(max-width: 1600px) {
    .all-classes-card-1 {
        height: 400px;
    }

    .all-classes-card-main-1 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-1 {
        height: 400px;
        transform: translateY(400px)
    }

    .all-classes-card-overlay-1 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-1 p {
        font-size: 19px;
    }

    .all-classes-card-2 {
        height: 400px;
    }

    .all-classes-card-main-2 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-2 {
        height: 400px;
        transform: translateY(400px)
    }

    .all-classes-card-overlay-2 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-2 p {
        font-size: 19px;
    }

    .all-classes-card-3 {
        height: 400px;
    }

    .all-classes-card-main-3 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-3 {
        height: 400px;
        transform: translateY(400px)
    }

    .all-classes-card-overlay-3 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-3 p {
        font-size: 19px;
    }

    .all-classes-card-4 {
        height: 400px;
    }

    .all-classes-card-main-4 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-4 {
        height: 400px;
        transform: translateY(400px)
    }

    .all-classes-card-overlay-4 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-4 p {
        font-size: 19px;
    }

    .all-classes-card-5 {
        height: 400px;
    }

    .all-classes-card-main-5 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-5 {
        height: 400px;
        transform: translateY(400px)
    }

    .all-classes-card-overlay-5 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-5 p {
        font-size: 19px;
    }

    .all-classes-card-6 {
        height: 400px;
    }

    .all-classes-card-main-6 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-6 {
        height: 400px;
        transform: translateY(400px)
    }

    .all-classes-card-overlay-6 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-6 p {
        font-size: 19px;
    }
}

@media(max-width: 1400px) {
    .all-classes-card-1 {
        height: 370px;
    }

    .all-classes-card-overlay-1 {
        height: 370px;
        transform: translateY(370px);
    }

    .all-classes-card-main-1 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-1 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-1 p {
        font-size: 18px;
    }

    .all-classes-card-2 {
        height: 370px;
    }

    .all-classes-card-overlay-2 {
        height: 370px;
        transform: translateY(370px);
    }

    .all-classes-card-main-2 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-2 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-2 p {
        font-size: 18px;
    }

    .all-classes-card-3 {
        height: 370px;
    }

    .all-classes-card-overlay-3 {
        height: 370px;
        transform: translateY(370px);
    }

    .all-classes-card-main-3 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-3 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-3 p {
        font-size: 18px;
    }

    .all-classes-card-4 {
        height: 370px;
    }

    .all-classes-card-overlay-4 {
        height: 370px;
        transform: translateY(370px);
    }

    .all-classes-card-main-4 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-4 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-4 p {
        font-size: 18px;
    }

    .all-classes-card-5 {
        height: 370px;
    }

    .all-classes-card-overlay-5 {
        height: 370px;
        transform: translateY(370px);
    }

    .all-classes-card-main-5 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-5 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-5 p {
        font-size: 18px;
    }

    .all-classes-card-6 {
        height: 370px;
    }

    .all-classes-card-overlay-6 {
        height: 370px;
        transform: translateY(370px);
    }

    .all-classes-card-main-6 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-6 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-6 p {
        font-size: 18px;
    }
}

@media(max-width: 500px) {
    .all-classes-section {
        padding: 150px 10px 150px 10px;
    }

    .all-classes-heading {
        width: 100%;
        margin-bottom: 30px;
    }

    .all-classes-heading h1 {
        font-size: 40px;
    }

    .all-classes-heading p {
        font-size: 17px;
    }

    .all-classes-cards {
        grid-template-columns: repeat(1, 1fr);
        padding: 0px 10px;
        margin-bottom: 20px;
    }

    .all-classes-card-1 {
        height: 340px;
    }

    .all-classes-card-overlay-1 {
        height: 340px;
        transform: translateY(340px);
    }

    .all-classes-card-overlay-1 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-1 p {
        font-size: 16px;
        margin-bottom: 0px;
    }


    .all-classes-card-2 {
        height: 340px;
    }

    .all-classes-card-overlay-2 {
        height: 340px;
        transform: translateY(340px);
    }

    .all-classes-card-overlay-2 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-2 p {
        font-size: 16px;
        margin-bottom: 0px;
    }


    .all-classes-card-3 {
        height: 340px;
    }

    .all-classes-card-overlay-3 {
        height: 340px;
        transform: translateY(340px);
    }

    .all-classes-card-overlay-3 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-3 p {
        font-size: 16px;
        margin-bottom: 0px;
    }


    .all-classes-card-4 {
        height: 340px;
    }

    .all-classes-card-overlay-4 {
        height: 340px;
        transform: translateY(340px);
    }

    .all-classes-card-overlay-4 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-4 p {
        font-size: 16px;
        margin-bottom: 0px;
    }


    .all-classes-card-5 {
        height: 340px;
    }

    .all-classes-card-overlay-5 {
        height: 340px;
        transform: translateY(340px);
    }

    .all-classes-card-overlay-5 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-5 p {
        font-size: 15px;
        margin-bottom: 0px;
    }


    .all-classes-card-6 {
        height: 340px;
    }

    .all-classes-card-overlay-6 {
        height: 340px;
        transform: translateY(340px);
    }

    .all-classes-card-overlay-6 h1 {
        font-size: 40px;
    }

    .all-classes-card-overlay-6 p {
        font-size: 16px;
        margin-bottom: 0px;
    }
}

@media(max-width: 380px) {
    .all-classes-card-overlay-1 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-2 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-3 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-4 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-5 h1 {
        font-size: 30px;
    }

    .all-classes-card-overlay-6 h1 {
        font-size: 30px;
    }

    .all-classes-section {
        padding: 120px 10px 80px 10px;
    }

    .all-classes-heading p {
        font-size: 16px;
    }

    .classes-hero-section {
        height: 70vh;
    }

}

/************************************************ all classes section end   ************************************************/






/************************************************* gallery hero section start *************************************************/
.gallery-hero-section {
    height: 100vh;
    /* background-image: url(/assets/images/gallery-hero-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    background-color: #A8E6CF;
    /* width: 100vw; */
    position: relative;
    top: -10;
    display: flex;
    justify-content: center;
    padding: 0px 100px;
    border: none;
}

.wave-1 {
    position: absolute;
    bottom: -345;
    z-index: -100;
}

.gallery-hero-asset {
    position: absolute;
    bottom: 80;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-asset img {
    width: 95%;
}

.gallery-hero-cont {
    width: 100%;
    height: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-hero-cont h1 {
    font-size: 65px;
    font-family: var(--heading-font);
    font-weight: 700;
    width: 40%;
    color: #1e956a;
}

.gallery-hero-cont-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: start;
}

.gallery-hero-cont-right p {
    font-family: var(--para-font);
    font-weight: 600;
    color: #1e956a;
    font-size: 18px;
}

.gallery-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-btn a {
    text-decoration: none;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    background-color: #1e956a;
    font-family: var(--subheading-font);
    transition: all 0.4s ease;
}

.gallery-hero-btn i {
    background-color: #1e956a;
    color: #fff;
    padding: 13px 18px;
    border-radius: 50px;
    font-size: 20px;
    transition: all 0.4s ease;
}

.gallery-hero-btn:hover>a {
    background-color: #fff;
    color: #000;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.gallery-hero-btn:hover>i {
    background-color: #fff;
    color: #000;
    transform: rotate(-45deg);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}


@media(max-width: 1920px) {
    .gallery-hero-section {
        height: 90vh;
    }

    .gallery-hero-asset img {
        width: 95%;
    }

    .gallery-hero-cont h1 {
        font-size: 75px;
    }

    .gallery-hero-cont-right p {
        font-size: 25px;
    }

    .gallery-hero-asset {
        bottom: 110px;
    }
}

@media(max-width: 1600px) {
    .gallery-hero-cont h1 {
        font-size: 60px;
    }

    .gallery-hero-cont-right p {
        font-size: 21px;
    }

    .gallery-hero-asset {
        bottom: 90px;
    }

    .gallery-hero-asset img {
        width: 90%;
    }
}


@media(max-width: 1400px) {
    .gallery-hero-section {
        height: 100vh;
    }

    .gallery-hero-cont h1 {
        font-size: 50px;
    }

    .gallery-hero-cont-right p {
        font-size: 18px;
    }

    .gallery-hero-asset img {
        width: 90%;
    }
}



@media(max-width: 500px) {
    .gallery-hero-section {
        height: 55vh;
        padding: 100px 20px;
    }

    .gallery-hero-cont {
        flex-direction: column;
        gap: 30px;
    }

    .gallery-hero-cont h1 {
        width: 100%;
        font-size: 40px;
    }

    .gallery-hero-cont-right {
        width: 100%;
        gap: 30px;
    }

    .gallery-hero-asset {
        display: none;
    }

    .wave-1 {
        bottom: -100px;
    }
}


@media(max-width: 380px) {
    .gallery-hero-section {
        height: 70vh;
    }

    .wave-1 {
        bottom: -95px;
    }

    .gallery-bento-heading h1 {
        font-size: 30px !important;
    }

    .gallery-bento-heading p {
        font-size: 16px !important;
    }
}

/************************************************* gallery hero section end   *************************************************/



/**************************************************** gallery bento section start ****************************************************/
.gallery-bento-section {
    padding: 200px 0px 100px 0px;
    width: 100%;
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
}

.gallery-bento-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.gallery-bento-heading h1 {
    font-size: 65px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-align: center;
    width: 60%;
}

.gallery-bento-heading p {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--para-font);
    text-align: center;
    width: 50%;
}

/* Gallery wrapper */
.gallery-bento-and-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 100px;
}

.gallery-bento-and-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.4s;
}

.gallery-bento-and-image:hover {
    transform: scale(1.05);
}

/* Lightbox overlay */
.gallery-bento-and-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-bento-and-lightbox.active {
    visibility: visible;
    opacity: 1;
}

/* Lightbox image */
.gallery-bento-and-lightbox-image {
    height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

/* Close button */
.gallery-bento-and-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}


@media(max-width: 500px) {
    .gallery-bento-section {
        padding: 150px 10px 100px 10px;
    }

    .gallery-bento-heading h1 {
        width: 100%;
        font-size: 40px;
    }

    .gallery-bento-heading p {
        width: 100%;
    }

    .gallery-bento-and-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 10px;
    }

    .gallery-bento-and-image {
        height: 200px;
    }

    .gallery-bento-and-lightbox-image {
        height: 30%;
    }

    .gallery-bento-and-lightbox-close {
        position: absolute;
        top: 238px;
        right: 40px;
        color: #000;
    }
}


/**************************************************** gallery bento section end   ****************************************************/



/************************************************* video gallery section start *************************************************/
.video-gallery-section {
    width: 100%;
    /* height: 100%; */
    /* background-image: url(/assets/images/video-gallery-bg.svg);
    background-repeat: no-repeat;
    background-size: cover; */
    background-color: #A8E6CF;
    padding: 100px 100px 0px 100px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 200px;
}

.wave-6 {
    position: absolute;
    z-index: -100;
    bottom: -350;
}

.video-gallery-heading {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* padding: 100px; */
}

.video-gallery-heading h1 {
    font-size: 60px;
    font-weight: bolder;
    font-family: 'Cabin Sketch', sans-serif;
    width: 100%;
    text-align: center;
    color: #1e956a;
}

.video-gallery-heading p {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--para-font);
    width: 70%;
    text-align: center;
    color: #1e956a;
}

.video-gallery {
    width: 100%;
    /* background-color: #000; */
    padding: 100px;
    background-color: transparent;
}

.video-gallery video {
    width: 100%;
    height: auto;
    border-radius: 50px;
    background-color: transparent;
}


@media(max-width: 500px) {
    .video-gallery-section {
        padding: 100px 10px;
        gap: 50px;
        margin-bottom: 100px;
    }

    .wave-6 {
        bottom: -100px;
    }

    .video-gallery-heading {
        gap: 20px;
    }

    .video-gallery-heading h1 {
        font-size: 40px;
    }

    .video-gallery-heading p {
        width: 100%;
    }

    .video-gallery {
        width: 100%;
        padding: 0px;
    }
}


@media(max-width: 380px) {
    .video-gallery-heading h1 {
        font-size: 35px;
    }

    .video-gallery-heading p {
        font-size: 16px;
    }

    .wave-6 {
        bottom: -95px;
    }
}

/************************************************* video gallery section end   *************************************************/



/****************************************************** contact hero section start ******************************************************/
/* .contact-hero-section{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90%;
    background-color: #A8E6CF;
}

.contact-hero-heading{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-heading h1{
    font-size: 100px;
    font-family: urban;
    font-weight: 700;
    color: #1e956a;
    letter-spacing: 5px;
} */
/****************************************************** contact hero section end   ******************************************************/




.get-in-touch-section {
    padding: 80px 0;
    position: relative;
}

.get-in-touch-heading h1 {
    font-family: baloo;
    font-weight: 700;
    font-size: 60px;
}

.get-in-touch-left-side {
    padding: 50px 20px 20px 20px;
}

.get-in-touch-left-side h3 {
    font-family: var(--heading-font);
}


.get-in-touch-left-side p {
    font-family: var(--para-font);
}


.get-in-touch-inputs {
    display: flex;
    gap: 20px;
}

/* .coolinput {
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: static;
    width: 50%;
  }
  
  .coolinput label.text {
    font-size: 0.75rem;
    color: #51AEFF;
    font-weight: 700;
    position: relative;
    top: 0.5rem;
    margin: 0 0 0 7px;
    padding: 0 3px;
    width: fit-content;
    background-color: #fff;
  }
  
  .coolinput .my-input-2[type=text].my-input-2 {
    padding: 11px 10px;
    font-size: 0.75rem;
    border: 2px #51AEFF solid;
    border-radius: 5px;
  }
  
  .coolinput .my-input-2[type=text].my-input-2:focus {
    outline: none;
  } */

.inputGroup {
    font-family: 'Segoe UI', sans-serif;
    margin: 1em 0 1em 0;
    width: 50%;
    position: relative;
}

.my-input-2 {
    font-size: 100%;
    padding: 0.8em;
    outline: none;
    border: 2px solid rgb(200, 200, 200);
    background-color: transparent;
    border-radius: 8px;
    width: 100%;
    font-family: urban;
}

.my-input-2::placeholder {
    color: transparent;
}

.my-label {
    font-size: 100%;
    position: absolute;
    left: 0;
    padding: 0.8em;
    margin-left: 0.5em;
    pointer-events: none;
    transition: all 0.3s ease;
    color: rgb(100, 100, 100);
    font-family: urban;
}

.inputGroup :is(.my-input-2:focus, .my-input-2:valid)~.my-label {
    transform: translateY(-50%) scale(.9);
    margin: 0em;
    margin-left: 1.3em;
    padding: 0.2em;
    background-color: #FACC16;
    color: #000000;
    border-radius: 10%;
}

.inputGroup :is(.my-input-2:focus, .my-input-2:valid) {
    border-color: #FACC16;
}

.get-in-touch-message {
    border: 1px solid rgb(200, 200, 200);
    border-radius: 4px;
}

.form-control {
    height: 110px;
    padding: 20px;
    border: none;
    font-family: urban;
}

.submit-button {
    padding: 7px 30px;
    margin-top: 20px;
    border: none;
    color: #fff;
    background-color: #000;
    border-radius: 5px;
    transition: all 0.4s ease;
    font-family: urban;
}

.submit-button:hover {
    background-color: #FACC16;
}


.get-in-touch-right-side {
    padding: 50px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.call-us-now {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.call-us-now h4 {
    font-family: urban;
    font-size: 25px;
}

.call-us-now ul {
    font-family: urban;
    font-weight: 400;
    color: #717171;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    gap: 10px;

}


@media(max-width: 480px) {
    .contact-number {
        display: flex;
        flex-direction: column;
    }
}

.call-us-now ul li {
    font-size: 15px;
}

.call-us-now a {
    text-decoration: none;
}

.call-us-now-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-us-now-icon i {
    background-color: #FACC16;
    color: #000000;
    font-size: 16px;
    padding: 2px 5px;
    border-radius: 10%;
}

.call-us-now-icon h6 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 1px;
    font-weight: 600;
    font-family: var(--para-font);
}




.visit-us-now h4 {
    font-family: lex;
    font-size: 25px;
}

.visit-us-now p {
    font-family: urban;
    font-weight: 400;
    color: #717171;
}

.visit-us-now a {
    text-decoration: none;
}

.visit-us-now-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.visit-us-now-icon i {
    background-color: #FACC16;
    color: #000000;
    font-size: 20px;
    padding: 1px 5px;
    border-radius: 10%;
}

.visit-us-now-icon h6 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 1px;
    font-weight: 600;
    font-family: var(--para-font);
}


@media(max-width: 480px) {
    .call-us-now ul {
        flex-direction: column;
    }

    .visit-us-now-icon h6 {
        font-size: 17px;
    }

    .get-in-touch-heading h1 {
        font-size: 35px;
    }

    .get-in-touch-left-side {
        padding: 10px 0px 0px 0px;
    }

    .get-in-touch-right-side {
        padding: 50px 0px 0px 0px;
    }

    .call-us-now h4 {
        font-size: 35px;
    }

    .visit-us-now h4 {
        font-size: 35px;
    }
}




.contact-map {
    position: relative;
    padding: 80px 0;
}



.google-map iframe {
    width: 100%;
    height: 510px;
    border-radius: 12px;
}