@font-face {
    font-family: myFont1;
    src: url(../fonts/Outfit.ttf);
}

@font-face {
    font-family: futurehead;
    src: url(../fonts/bakerlinecleandemo-g3ebm.ttf);
}

@font-face {
    font-family: myFont2;
    src: url(../fonts/Corben-Regular.ttf);
}

@font-face {
    font-family: myFontPara;
    src: url(../fonts/Besley-VariableFont_wght.ttf);
}

@font-face {
    font-family: myFontHead;
    src: url(../fonts/AlegreyaSans-ExtraBold.ttf);
}


@font-face {
    font-family: myFontnav;
    src: url(../fonts/AbrilFatface-Regular.ttf);
}


@font-face {
    font-family: myFontnav2;
    src: url(../fonts/A\ Note.ttf);
}

@font-face {
    font-family: flexh1span;
    src: url(../fonts/Physical-Realities-Demo-BF6758057020d99.otf);
}

@font-face {
    font-family: flexh1;
    src: url(../fonts/Learning-Through-Demo-BF67765f067ed2b.ttf);
}

@font-face {
    font-family: flexh3;
    src: url(../fonts/CF-Chronicles-Secret-Blur-Demo-BF6777aacf1427c.otf);
}

@font-face {
    font-family: flexh3span;
    src: url(../fonts/Jagrof-Regular-Trial-BF67736f4aa7730.otf);
}

@font-face {
    font-family: codeverse;
    src: url(../fonts/PCMerchisDEMO-Expanded-BF67a48db3781cc.otf);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #e63946;
}

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {} */

/* --------------smooth scroll whole page-------------------- */

/* Initial hidden state */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    /* Slightly below its original position */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state when the element is in view */
[data-scroll].show {
    opacity: 1;
    transform: translateY(0);
    /* Reset position */
}

/* --------------smooth scroll whole page end-------------------- */


body {
    background-color: #000000;
}

.main-header-section {
    background-color: #fede00;
    /* background-image: linear-gradient(45deg,
            hsl(240deg 100% 20%) 13%,
            hsl(281deg 100% 21%) 40%,
            hsl(304deg 100% 23%) 47%,
            hsl(319deg 100% 30%) 49%,
            hsl(329deg 100% 36%) 50%,
            hsl(336deg 100% 41%) 50%,
            hsl(346deg 83% 51%) 50%,
            hsl(3deg 95% 61%) 50%,
            hsl(17deg 100% 59%) 50%,
            hsl(30deg 100% 55%) 51%,
            hsl(40deg 100% 50%) 54%,
            hsl(48deg 100% 50%) 61%,
            hsl(55deg 100% 50%) 94%); */
}

.main-banner-section {
    height: 600px;
}

/* -----------------------ham-menu-------------------- */

.hamburger {
    background-color: white;
    border-radius: 50px;
    -webkit-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
    -moz-box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
    box-shadow: 2px 4px 14px -1px rgba(110, 94, 99, 1);
}

.ham-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0.5rem;
    cursor: pointer;
    transition: width 0.3s ease;
    /* Smooth transition */
    width: 65px;
    /* Default width */
    height: 65px;

}

.ham-menu:hover {
    width: 160px;
    /* Expanded width on hover */

}

/* .ham-menu:hover{
    transform: ;
  } */
/* 
.ham-icon-img {

    margin-left: 0.3rem;

} */

.ham-icon-img img {
    width: 50px;
    height: 50px;

}

.ham-icon i {
    color: #e63946;
    font-size: 48px;
    margin-left: 0;
    text-align: center;

}

.hamburger:hover {
    background: #000000;
}

.ham-icon {
    display: none;
    transition: opacity 0.3s ease;
    background: #ffffff;
    border-radius: 50px;
    padding: 0 .3rem;

}

.ham-menu:hover .ham-icon {
    display: block;

}

.ham-menu:hover .ham-icon-img {
    /* margin-left: -3rem; */
    display: none;
    position: relative;


}



.shape {
    width: 400px;
    height: 400px;
    border: 1px solid blue, 1px solid blue, 1px solid blue 1px solid blue 1px solid blue;
    background-position: center;
    background: url(../images/n2.jpg) no-repeat;
    background-size: contain;

    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.nav-social-con {
    display: flex;
    justify-content: space-between;
}

.main-contact {
    display: flex;
    gap: 1rem;
    margin-left: 3rem;

}

.nav-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5rem;
}


.nav-socials li {
    list-style: none;
}

.nav-socials li a i {
    padding: 0.5rem;
}


.nav-socials li a {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #D46FCF;
    /* border: 1px solid rgb(106, 106, 235); */
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease-out;
}

.nav-socials li a:hover {
    background-color: #7B47C5;
    color: #ffffff;
    border: none;
}

.nav-socials li a i {
    color: #ffffff;
}





.nav-logo1 img {
    width: 100px;
    height: 100px;

}

.nav-logo img {
    width: 250px;
    height: 200px;
    margin-left: 1rem;

}

nav {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 3rem;
    align-items: center;
    /* background-color: #040053; */

}

.navigation-menu {
    display: flex;
    justify-content: space-between;
    margin: 3rem;
    gap: 3rem;
    align-items: center;
}

.navitems {
    display: flex;
    flex-direction: column;

    /* gap: 1rem; */
}



.navitems li {
    list-style: none;
    display: inline-block;
    height: 80px;
    position: relative;

}


.navitems li a {
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 55px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    /* font-family: myFontnav; */
    font-family: "Archivo Black", sans-serif;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.navitems li a:hover {
    animation: smoothHover 0.5s forwards;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: none;
}


/* 
.navitems li a:hover {
   
    background-image: url(images/text-bg.jpg);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-weight: 800;
    letter-spacing: 10px;
    font-size: 80px;
    font-style: italic;
       
} */

@keyframes smoothHover {
    0% {
        background-image: none;
        -webkit-text-fill-color: white;
        font-weight: 400;
        letter-spacing: 3px;
        font-size: 55px;
        font-style: normal;
    }

    100% {
        background-image: url(../images/text-bg.jpg);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        font-weight: 800;
        letter-spacing: 10px;
        font-size: 70px;
        font-style: italic;
    }
}

.navigation-main-modal {
    display: flex;
    display: none;
    justify-content: center;

    /* width: 1300px; */
    /* display: none; */
}

.navigation-main-modal.show {
    display: block;
    /* animation: fadeIn 0.5s ease-out; */

}



.navigation-modal {
    /* display: none; */
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1001;
    /* Sit on top */
    left: 0;
    top: -5%;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 800px;


}

.nav-modal-content {
    background-color: #fff;
    margin: 4rem 1rem;
    padding: 20px;

    width: 100%;
    /* height: 100%;
    width: 1200px; */
    /* Could be more or less, depending on screen size */
    /* max-width: 2500px; */
    /* Limit the max width */
    border-radius: 8px;
    /* Rounded corners */
}

.nav-close-button {
    color: #aaa;
    float: right;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
}

.nav-close-button:hover,
.nav-close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.contact-btn {
    display: flex;
    justify-content: center;
}

/* .contact-btn button {
    padding: 0.78rem 1.5rem;
    background: linear-gradient(109.6deg, rgb(255, 219, 47) 11.2%, rgb(244, 253, 0) 100.2%);
    border: none;
    outline: none;
    font-family: myFont1;
    font-size: 18px;
    cursor: pointer;

   
} */

.button {
    pointer-events: auto;
    cursor: pointer;
    padding: 0.78rem 2rem;
    background: radial-gradient(circle at 3% 7.4%, rgb(0, 144, 243) 0%, rgb(0, 86, 240) 90%);
    border: none;
    outline: none;
    font-family: myFont1;
    font-size: 18px;
    position: relative;
    /* display: inline-block; */
}

.button::before,
.button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.button--telesto {
    overflow: hidden;
    font-weight: 800;
    font-family: myFont1;

    font-style: italic;
    font-size: 1.15rem;
    color: #fff7f7;
}

.button--telesto span {
    display: block;
    position: relative;
    z-index: 1;

}

.button--telesto>.contact-btn span {
    overflow: hidden;
    mix-blend-mode: difference;
}

.button--telesto:hover>.contact-btn span>.contact-btn span {
    animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}

@keyframes MoveRightInitial {
    to {
        transform: translate3d(105%, 0, 0);
    }
}

@keyframes MoveRightEnd {
    from {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.button--telesto::before,
.button--telesto::after {
    content: '';
    background: #010203;
}

.button--telesto::before {
    width: 135%;
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    transform: translate3d(-100%, 0, 0);
}

.button--telesto:hover::before {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);

}

.button--telesto::after {
    width: 105%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--telesto:hover::after {
    transform: translate3d(0, 0, 0);
    transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);

}


/* --------------------modal-whatsapp-expert-button----------------------- */

.expert-modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", serif;
}

/* Expert Modal Content */
.expert-modal-content {
    background: #25D366;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.expert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Expert WhatsApp Links */
.expert-whatsapp-links {
    display: block;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;

}

.expert-whatsapp-links a {
    color: #707070;
    text-decoration: none;
    background: #2dff7a;
    padding: 1px 9px;
    border-radius: 15px;
}

.expert-whatsapp-link:hover {
    background: #1eb656;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------modal-whatsapp-expert-button-end---------------------- */



/* ----------------------------banner-section----------------------------- */

.c-banner-main {
    font-family: "Poppins", serif;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.c-banner-sub {
    max-width: 1300px;
}

.c-banner-sub h1 {
    text-align: center;
    font-size: 75px;
    font-weight: 900;
}

.c-banner-sub h1 .cap {
    position: relative;
    display: inline-block;
    color: #fff;
    -webkit-text-stroke: 2px #000000;
}

.c-banner-sub h1 .cap::before {
    content: "";
    position: absolute;
    bottom: 58px;
    /* Adjust the position as needed */
    left: .5rem;
    transform: translateX(-50%) rotate(-10deg);
    width: 90%;
    height: 75%;
    background: url(../images/graduation-hat.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

.c-banner-sub h1 .on {
    position: relative;
    display: inline-block;
    color: #fff;
    -webkit-text-stroke: 2px #000000;
}

.c-banner-sub h1 .on::before {
    content: "";
    position: absolute;
    bottom: 38px;
    /* Adjust the position as needed */
    left: 1.5rem;
    transform: translateX(-50%) rotate(-10deg);
    width: 100px;
    height: 80px;
    background: url(../images/online-head.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}


.c-banner-sub h1 .off {
    position: relative;
    display: inline-block;
    color: #fff;
    -webkit-text-stroke: 2px #000000;
}

.c-banner-sub h1 .off::before {
    content: "";
    position: absolute;
    bottom: 78px;
    /* Adjust the position as needed */
    left: 5.5rem;
    transform: translateX(-50%) rotate(10deg);
    width: 100px;
    height: 80px;
    background: url(../images/offline-pen.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

.c-banner-sub h1 .codef {
    position: relative;
    display: inline-block;
    color: #e63946;
    -webkit-text-stroke: 2px #000000;
}

.c-banner-sub h1 .ino {
    position: relative;
    display: inline-block;
    color: #fff;
    -webkit-text-stroke: 2px #000000;
}


.c-banner-sub h1 .ino::before {
    content: "";
    position: absolute;
    bottom: 58px;
    /* Adjust the position as needed */
    left: 1.5rem;
    transform: translateX(-50%) rotate(10deg);
    width: 100px;
    height: 90px;
    background: url(../images/hang-lamp.png) no-repeat center;
    background-size: contain;
    z-index: 1;
}

.c-banner-sub p {
    text-align: center;
    font-size: 19px;
    font-weight: 300;
    padding: 1rem 5rem;

}

/* ----------------------------banner-section-end---------------------------- */

/* ---------------------------e-sub-sec--------------------------------- */

.e-sub-section {
    background-color: #000000;
    padding: 40px 0;
    font-family: "Poppins", serif;
}

.e-sub-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.e-sub-box {
    background-color: #282828;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.e-sub-box:hover {
    transform: translateY(-5px);
}

.e-sub-icon {
    font-size: 40px;
    color: #000000;
    background-color: #fede00;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
}

.e-sub-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.e-sub-text {
    font-size: 16px;
    color: #cfd8e3;
}

/* ---------------------------e-sub-sec-end-------------------------------- */



/* ----------------------------online-feature--------------------------------- */

.on-feature-wrapper {
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
    padding: 60px 20px;
    font-family: "Poppins", serif;
}

.on-feature-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
}

.on-feature-left {
    flex: 1;
    text-align: center;
}

.on-feature-img {
    max-width: 100%;
    height: auto;
}

.on-feature-right {
    flex: 2;
}

.on-feature-heading {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fede00;
}

.on-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.on-feature-card {
    background: #f9f9f9;
    padding: 20px;
    box-shadow: 8px 8px 0 #e63946;
    transition: 0.3s ease-in-out;
}

.on-feature-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
}

.on-feature-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.on-feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.on-feature-text {
    font-size: 15px;
    color: #555;
}


/* ----------------------------online-feature-end-------------------------------- */



/* ------------------------------access----------------------------------- */

.access-section {
    padding: 60px 20px;
    background: #fff;
    font-family: 'Poppins', serif;
}

.access-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.access-left {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.access-image {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
}

.access-class-info {
    position: absolute;
    bottom: -10px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: calc(100% - 40px);
}

.access-class-text h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.access-class-text p {
    margin: 2px 0 0;
    font-size: 14px;
    color: #555;
}

.access-join-btn {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.access-right {
    flex: 1;
    min-width: 280px;
}

.access-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.access-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.access-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    font-size: 15px;
    color: #333;
}

.access-start-btn {
    background: #fede00;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}


/* ------------------------------access-end---------------------------------- */



/* --------------------------online-access------------------------------------ */
.on-acc-section {
    padding: 60px 20px;
    background: #f8f9fb;
    font-family: "Poppins", serif;
}

.on-acc-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.on-acc-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.on-acc-heading {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 20px;
}

.on-acc-text {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.6;
}

.on-acc-list {
    list-style: none;
    padding: 0;
}

.on-acc-list li {
    font-size: 15px;
    color: #111827;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.on-acc-list li i {
    color: #f59e0b;
    margin-right: 10px;
    font-size: 18px;
}

.on-acc-image {
    flex: 1;
    max-width: 580px;
    padding: 20px;
    text-align: center;
}

.on-acc-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}


/* --------------------------online-access-end----------------------------------- */



/* --------------------online-learning-path-------------------------------------  */


.on-path-section {
    background: #fede00;
    padding: 60px 20px;
    font-family: "Poppins", serif;
}

.on-path-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.on-path-heading {
    font-size: 55px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
}

.on-path-subtext {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
}

.on-path-sub {
    display: flex;
    justify-content: center;
}

.on-path-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.on-path-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    position: relative;
}

.on-path-circle {
    width: 40px;
    height: 40px;
    background: #e63946;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.on-path-content {
    flex: 1;
}

.on-path-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.on-path-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.on-path-step::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    height: calc(100% - 40px);
    width: 2px;
    background: #000;
}





/* --------------------online-learning-path-end------------------------------------  */


/* -------------------comparison-online-offline--------------------------- - */
.off-ser-section {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Poppins', serif;
}

.off-ser-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.off-ser-heading {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #fede00;
}

.off-ser-subheading {
    font-size: 22px;
    margin-bottom: 3rem;
    color: #ccc;
}

.off-ser-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.off-ser-tab-btn {
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    padding: 10px 25px;
    border: 2px solid #fede00;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.off-ser-tab-btn.active,
.off-ser-tab-btn:hover {
    background-color: #fede00;
    color: #000;
}

.off-ser-tab-contents {
    display: flex;
    justify-content: center;
}

.off-ser-tab-content {
    display: none;
    text-align: left;
    max-width: 700px;
}

.off-ser-tab-content.active {
    display: block;
    animation: fadeUp 0.5s ease-out;
}

.off-ser-list {
    list-style: none;
    padding: 0;
}

.off-ser-list li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px dashed #e63946;
    display: flex;
    align-items: center;
    gap: 12px;
}

.off-ser-list li span {
    font-size: 1.4rem;
    color: #fede00;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* -------------------comparison-online-offline-end-------------------------- - */


/* --------------------------------off-exp----------------------------- */


.off-exp-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.off-exp-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.off-exp-left {
    flex: 1 1 55%;
}

.off-exp-heading {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 1rem;
}

.off-exp-subtext {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.off-exp-list {
    list-style: none;
    padding-left: 0;
}

.off-exp-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #222;
    position: relative;
    padding-left: 28px;
}

.off-exp-list li i {
    color: #e63946;
    position: absolute;
    left: 0;
    top: 2px;
}

.off-exp-right {
    flex: 1 1 40%;
    position: relative;
}

.off-exp-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.off-exp-img {
    width: 100%;
    height: auto;
    display: block;
}

.off-exp-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fede00;
    color: #000;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
}


/* --------------------------------off-exp-end---------------------------- */




/* ==========================off-path============================= */


.off-path-section {
    padding: 60px 20px;
    background-color: #000000;
    color: #fede00;
    font-family: "Poppins", serif;
}

.off-path-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.off-path-heading {
    font-size: 58px;
    color: #fede00;
    margin-bottom: 10px;
}

.off-path-subtext {
    font-size: 1.1rem;
    color: #aeacac;
    margin-bottom: 40px;
}

.off-path-journey {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.off-path-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fede00;
    padding: 20px;
    border-left: 5px solid #e63946;
    border-radius: 8px;
    transition: 0.3s ease;
}

.off-path-icon {
    font-size: 2.5rem;
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    min-width: 70px;
    text-align: center;
}

.off-path-content {
    text-align: left;
}

.off-path-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #000;
}

.off-path-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}


/* ==========================end-off-path============================= */


/* =========================course-levels==================== */

.lvl-sec-main {
    font-family: "Poppins", serif;
    padding-top: 2rem;
}

.lvl-header h1 {
    font-size: 70px;
    font-weight: 900;
    text-align: center;
}


.level-section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.level-card {
    display: flex;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 20px;
    gap: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-img img {
    width: 250px;
    height: 200px;
}

.level-info {
    flex: 1;
}

.level-info h3 {
    font-size: 1.2rem;
    color: #000;
    margin: 0 0 8px;
}

.level-info p {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.tags {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

.tags span {
    background-color: #eee;
    padding: 5px 10px;
    margin-right: 10px;
    font-size: 0.8rem;
    border-radius: 6px;
    display: inline-block;
}

.view-btn {
    background-color: #fede00;
    color: #000000;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background-color: #000000;
    color: #fede00;
}

.beginner {
    background-color: #fff8dc;
}

.intermediate {
    background-color: #f5f0ff;
}

.advanced {
    background-color: #ffe6e6;
}



/* =========================end-course-levels==================== */









/* ----------------------------faq section-------------------------- */

.faq-container {

    display: flex;
    justify-content: space-between;
    margin: 0 5rem;
}

.faq-main-section {
    padding: 2rem 0 1rem 0;
    background-color: #000;
    /* opacity: 0.8; */

    background-color: #e63946;
    background-image: url("https://www.transparenttextures.com/patterns/fabric-of-squares.png");

}

.faq-main-section h1 {
    text-align: center;
    font-family: "Poppins", serif;
    color: #000000;
    font-size: 60px;
    padding: 1rem 10rem 3rem 10rem;
    font-weight: 900;
}

.faq-sub-section {

    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.faq-column1 {
    width: 48%;

}

.faq-column2 {
    width: 48%;
}

.faq-column1 .faq {
    border-bottom: 1px solid #fff;
    padding: 15px 0;
    margin-right: 1rem;
}



.faq-column2 .faq {
    border-bottom: 1px solid #fff;
    padding: 15px 0;
    margin-left: 1rem;

}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question p {
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 400;
}

.faq-question span {
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    font-size: 30px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.3s ease-in-out;

}

.faq-answer p {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 16px;

}


.faq.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    /* padding: 10px 15px; */
}

.faq.active .faq-question span {
    transform: rotate(180deg);
}

/* ----------------------------end faq section-------------------------- */


/* ================================contact-us-section================================== */


.con-main-section {
    display: flex;
    justify-content: center;
    padding: 5rem 0 5rem 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle farthest-side at 0% 50%,
            #282828 23.5%,
            rgba(255, 170, 0, 0) 0) 21px 30px,
        radial-gradient(circle farthest-side at 0% 50%,
            #2c3539 24%,
            rgba(240, 166, 17, 0) 0) 19px 30px,
        linear-gradient(#282828 14%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 85%,
            #282828 0) 0 0,
        linear-gradient(150deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(30deg,
            #282828 24%,
            #2c3539 0,
            #2c3539 26%,
            rgba(240, 166, 17, 0) 0,
            rgba(240, 166, 17, 0) 74%,
            #2c3539 0,
            #2c3539 76%,
            #282828 0) 0 0,
        linear-gradient(90deg, #2c3539 2%, #282828 0, #282828 98%, #2c3539 0%) 0 0 #282828;
    background-size: 40px 60px;
}

.contact-container {
    display: flex;
    width: 90%;
    max-width: 1100px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    font-family: "Poppins", serif;
}

/* Left Side - Contact Info */
.contact-info {
    background: #fff387;
    padding: 40px;
    flex: 1;
}

.contact-info h2 {
    color: #e63946;
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 22px;
    background: #e63946;
    color: #fefefe;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-detail h3 {
    font-size: 16px;
    color: #e63946;
    margin-bottom: 5px;
}

.contact-detail p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* Social Links */
.con-social-links h3 {
    font-size: 16px;
    color: #e63946;
    margin-bottom: 10px;
}

.con-social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #e63946;
    font-size: 20px;
    transition: 0.3s;
}

.con-social-links a:hover {
    color: #000;
}

/* Right Side - Contact Form */
.contact-form {
    padding: 40px;
    flex: 1;
}

.contact-form h2 {
    color: #333;
    font-size: 27px;
    margin-bottom: 20px;
    text-align: center;
}

.con-form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.con-form-group input {
    width: 100%;
    border: none;
    background: #fedc003c;
    padding: 1rem;
    border-radius: 40px;
    outline: none;
    font-family: "Poppins", serif;
}



.con-form-foot textarea {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: "Poppins", serif;
}

.con-form-foot textarea {
    resize: none;
}

.con-form-foot button {
    background: #fede00;
    color: #000;
    border: none;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.con-form-foot button:hover {
    background: #e63946;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 30px;
    }
}

/* ================================end-contact-us-section================================== */


/* --------------------------------whatsapp-chat-end----------------------------------------- */

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    background: #25D366;
    color: white;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 180px;
}

.whatsapp-popup p {
    margin: 0;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.whatsapp-popup a {
    text-decoration: none;
    color: #25D366;
    font-weight: bold;
    padding: 8px;
    display: block;
    text-align: center;
    transition: background 0.3s ease;
}

.whatsapp-popup a:hover {
    background: #f0f0f0;
}


/* --------------------------------whatsapp-chat-end----------------------------------------- */

/* -----------------back-to-top and back-to-bottom------------------------------------ */


/* Back to Top Button (Right Side) */
.back-top-btn {
    position: fixed;
    bottom: 90px;
    /* Above WhatsApp */
    right: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1001;
}

/* Back to Bottom Button (Left Side) */
.back-bottom-btn {
    position: fixed;
    top: 90px;
    /* Appears on the left side */
    left: 30px;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(-20px);
    z-index: 1001;
}

/* Show buttons when scrolled */
.back-top-show {
    opacity: 1;
    transform: translateY(0);
}

.back-bottom-show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.back-top-btn:hover,
.back-bottom-btn:hover {
    background: #555;
}


/* -----------------back-to-top and back-to-bottom-end----------------------------------- */










/* -------------footer-starts-------------- */

.footer {
    background: #000000;
    color: #fede00;
    text-align: center;
    /* padding: 30px 0; */
    font-family: "Poppins", serif;
    border: 2px solid #fede00;
}

/* Top Section */
.top-section {
    display: flex;
    justify-content: center;
}

.box {
    flex: 1;
    padding: 4rem 2rem;
    font-size: 45px;
    font-weight: bold;
    border: 1px solid #fede00;
    text-align: center;
}

/* Hover Effect for Top Section Boxes */
.box a {
    text-decoration: none;
    color: #fede00;
    transition: all 0.3s ease-in-out;
}

.box:hover {
    background: #fede00;
}

.box:hover a {
    color: #000;
}


/* Middle Section */
.middle-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    flex-wrap: wrap;
}

/* Newsletter Styling */
.newsletter {
    width: 40%;
    text-align: left;
    position: relative;
}

.newsletter form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.newsletter input {
    border: none;
    background: transparent;
    border-bottom: 1px solid #fede00;
    padding: 10px;
    width: 60%;
    font-size: 16px;
    outline: none;
    /* Removes outline */
    transition: all 0.3s ease-in-out;
}

.newsletter input::placeholder {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    transition: 0.3s;
    color: #666;
}

.newsletter input:focus::placeholder {
    top: 10px;
    font-size: 12px;
    color: #fede00;
}

.newsletter .sub {
    position: absolute;
    /* right: 0; */
    left: 41%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 7px 15px;
    /* border: 1px solid #fede00;
    border-radius: 20px ; */
}

.newsletter .sub:hover {
    color: #e63946;
}

.small-text {
    font-size: 15px;
    margin-top: 7px;
    font-weight: 200;
}

/* Links */
.links {
    display: flex;
    justify-content: space-between;
    width: 55%;
    margin-right: 2rem;
    margin-left: 2rem;
    gap: 1rem;
}


.links div {
    text-align: left;
}

.links h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.links ul {
    list-style: none;
}

.links ul li {
    margin-bottom: 5px;
}

.links ul li a {
    text-decoration: none;
    color: #fede00;
    font-size: 16px;
}

.links ul li a:hover {
    color: #e63946;
}





/* Bottom Section */
.bottom-section {
    text-align: center;
    padding: 30px 0;
}

.bottom-section h1 {
    font-size: 220px;
    font-weight: 900;
    font-family: codeverse;
    text-transform: capitalize;
}

.bottom-section h1:hover {
    text-shadow:
        2px 0 #fede00,
        0 -2px #fede00,
        -2px 0 #fede00,
        0 2px #fede00;
    color: #000;
    transition: text-shadow 1s, color .10s;

}

.social-icons img {
    width: 35px;
    height: 35px;
}


.bottom-section p {
    font-size: 14px;
    margin-top: 10px;
    font-weight: 200;
}

.icons {
    margin-top: 10px;
    font-size: 18px;
}

.sub {
    color: #fede00;
}


/* ========== RESPONSIVE DESIGN ========== */

/* Tablets and smaller screens */
@media (max-width: 1024px) {

    .top-section {
        flex-direction: column;
    }

    .box {

        font-size: 28px;
        padding: 1.5rem;
    }

    .middle-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .newsletter {
        width: 100%;
        text-align: center;
    }

    .newsletter form {
        justify-content: center;
    }

    .newsletter input {
        width: 70%;
    }

    .newsletter .sub {
        left: auto;
        right: 1rem;
    }

    .links {
        width: 100%;
        margin: auto;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .links div {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
        padding-top: 1rem;
    }


}

/* Mobile screens */
@media (max-width: 768px) {
    .box {

        font-size: 24px;
        padding: 1rem;
    }

    .newsletter input {
        width: 80%;
    }

    .newsletter .sub {
        font-size: 15px;
    }

    .bottom-section h1 {
        font-size: 40px;
        letter-spacing: 5px;
        margin-left: -1rem;
    }

    .bottom-section p {
        font-size: 15px;
        padding: 0 1rem;

    }

    .links {
        width: 100%;
        margin: auto;
        padding-top: 1rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .support {
        text-align: center;
    }

}


/* =======================footer-ends========================= */