@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: 200px;
    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--------------- */

.sub-banner-section {
    margin: 3rem 0;
}

.main-head {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.main-head h1 {
    font-size: 52px;
    /* margin-top: 2rem; */
    font-family: myFont1;
    color: #000000;
}

.sub-head {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.sub-head h2 {
    font-size: 32px;
    font-family: "Alice", serif;
    color: #343a40;
}

.sub-head h2 span {
    color: #e63946;
}

.para1 {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0 0 0;
}

.para2 {
    display: flex;
    justify-content: center;
}

.para1 p,
.para2 p {
    font-family: myFont2;
    font-size: 19px;
    color: #495057;
}

.banner-btn {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    gap: 2rem;
}

.sub-btn1 {
    display: flex;
    justify-content: center;
}

.sub-btn1 button {
    padding: 1rem 2rem;
    border: none;
    outline: none;
    font-family: "Poppins", serif;
    font-size: 18px;
    cursor: pointer;
    background-color: #e63946;
}

.sub-btn1 button a {
    text-decoration: none;
    color: #faf4f4;

}

.sub-btn1 button:hover {
    background-color: #f6c524;
    outline: 2px solid #000000;
    color: #000000;
}

.sub-btn1 button:hover a {
    color: #000000;
}

.sub-btn2 button {
    padding: 1rem 2rem;
    border: none;
    outline: none;
    font-family: "Poppins", serif;
    font-size: 18px;
    cursor: pointer;
    background-color: #000000;
    color: #faf4f4;
}

.sub-btn2 button:hover {
    background-color: #f6c524;
    outline: 2px solid #000000;
    color: #000000;
}

.sub-btn2 {
    display: flex;
    justify-content: center;
}


/* ---------------------signup and login modal-section--------------- */

.main-modal {
    display: flex;
    justify-content: center;
    display: none;
}

.login-h1 {
    display: flex;
    justify-content: center;

}

.login-h1 h1 {
    color: white;
    text-align: center;
    font-size: 28px;
    letter-spacing: 2px;
    font-family: myFontHead;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1002;
    /* Sit on top */
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    /* overflow: auto; Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5);
    /* Black w/ opacity */
}

.modal-content {
    background-color: #010415;
    margin: 1.5rem auto 2rem auto;
    padding: 20px;
    border: 1px solid #888;
    height: 95%;
    width: 90%;
    /* Could be more or less, depending on screen size */
    max-width: 500px;
    /* Limit the max width */
    border-radius: 8px;
    /* Rounded corners */
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* .container{
    display: flex;
    justify-content: center;
 } */


/* .container{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #4070f4; 
    column-gap: 30px;
} */

.form {
    position: absolute;
    max-width: 430px;
    width: 100%;
    padding: 30px 0 30px 30px;
    border-radius: 6px;
    /* background: #FFF; */
}

.form.signup {
    opacity: 0;
    pointer-events: none;
}

.forms.show-signup .form.signup {
    opacity: 1;
    pointer-events: auto;
}

.forms.show-signup .form.login {
    opacity: 0;
    pointer-events: none;
}

header {
    font-size: 28px;
    font-weight: 600;
    color: #232836;
    text-align: center;
}

form {
    margin-top: 30px;
}

.form .field {
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}

.field input,
.field button {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}

.field input {
    outline: none;
    padding: 0 15px;
    border: 1px solid#CACACA;
}

.field input:focus {
    border-bottom-width: 2px;
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}

.field button {
    color: #fff;
    background-color: #0171d3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.field button:hover {
    background-color: #016dcb;
}

.form-link {
    text-align: center;
    margin-top: 10px;
}

.form-link span,
.form-link a {
    font-size: 14px;
    font-weight: 400;
    color: white;
    font-family: myFont1;
}

.form a {
    color: #ffff90;
    text-decoration: none;
    font-family: myFont1;

}

.form-content a:hover {
    text-decoration: underline;
}

.line {
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}

.line::before {
    content: 'Or';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #010415;
    color: #ece5e5;
    padding: 0 15px;
    font-family: myFont1;

}

.media-options a {
    display: flex;
    align-items: center;
    justify-content: center;
}

a.facebook {
    color: #fff;
    background-color: #4267b2;
    font-family: myFont1;

}

a.facebook .facebook-icon {
    height: 28px;
    width: 28px;
    color: #0171d3;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.facebook-icon,
img.google-img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

img.google-img {
    height: 20px;
    width: 20px;
    object-fit: cover;
}

a.google {
    background-color: #ffffff;
    border: 1px solid #CACACA;
}

a.google span {
    font-weight: 500;
    opacity: 0.6;
    color: #000000;
}

@media screen and (max-width: 400px) {
    .form {
        padding: 20px 10px;
    }
}


/* -----------------------------bookingclass modal------------------------ */

.booking-main-form {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9;
    /* Sit on top */
    left: 50%;
    /* Center horizontally */
    top: 50%;
    /* Center vertically */
    transform: translate(-50%, -50%);
    /* Shift to center */
    padding: 20px;

    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    /* overflow: auto; Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5);

}

.live-class-container {
    background-color: white;
    padding: 1rem 2rem 0 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 450px;
    height: 450px;
    text-align: center;


}

.live-class-container h2 {
    margin-bottom: 15px;
    color: #333;
}

.highlight {
    color: red;
}

.live-class-container .form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.class-booking {
    display: flex;
    justify-content: center;
}

.live-class-container .text-input input,
.live-class-container .email-input input {
    margin-right: 1rem;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.live-class-container .phone-input {
    display: flex;
    gap: 10px;
}

.live-class-container .phone-input select {
    width: 30%;
}

.live-class-container .phone-input input {
    width: 70%;
    /* margin-right: 1rem; */
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.live-class-container .submit-btn {
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    width: 400px;
}

.live-class-head {
    display: flex;
    justify-content: center;
    margin: 1rem 0 -3rem 1.5rem;
}

.live-class-container .submit-btn:hover {
    background-color: #e63946;
}

.note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: red;
}

.icon {
    margin-right: 5px;
}

.login-link {
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: #007bff;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.terms {
    font-size: 12px;
    margin-top: 10px;
    color: #777;
}

.terms a {
    color: #007bff;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

.live-class-container .phone-input {
    display: flex;
    gap: 10px;
}

.select2-container {
    width: 100% !important;
}

.select2-selection {
    height: 40px;
    display: flex;
    align-items: center;
}

.form-popup {

    display: flex;
    justify-content: center;
}

.class-booking-closebtn {
    display: flex;
    justify-content: center;
}

.close-btn {
    cursor: pointer;
    font-size: 40px;
    text-align: center;
    color: #CACACA;
    padding: 2px 10px;
    font-weight: 900;
}

.close-btn:hover {
    background-color: #e63946;
    border-radius: 30px;
    padding: 2px 10px;
}

/* ---------------------------flexible---------------------- */

.main-flex-container {
    margin: 0.75rem 0 4rem 0;
}

.flex-main-head h1 {
    font-size: 200px;
    font-family: flexh1;
    letter-spacing: 1px;
    margin-left: 2rem;
    /* color:rgb(60, 0, 226); */
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(89, 50, 205); */
    /* background-image: url(images/vecteezy_seamless-batik-pattern-seamless-tribal-batik-pattern-and_.jpg); */
    background-image: url(../images/vecteezy_seamless-batik-pattern-seamless-tribal-batik-pattern-and_.jpg);

    background-position: center;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.flex-main-head h2 {
    font-family: flexh1span;
    font-size: 100px;
    letter-spacing: .5rem;
    font-weight: 900;
    margin-right: 3rem;
    text-align: right;
    background-image: url(../images/gungi.jpg);
    /* color: #faf4f4; */
    /* -webkit-text-stroke-width: 1px; */
    /* -webkit-text-stroke-color: rgb(12, 29, 38); */
    /* background-image: url(images/gungi.jpg); */
    background-position: center;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

/* .flex-main-head h3{
    font-size: 48px;
    font-family: flexh3;
    letter-spacing: 5px;
} */

.flex-sub-head {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 1rem 0 0 3rem;
}

.flex-sub-head h3 {
    font-family: flexh3;
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #037ef3;

}

#text {
    background: #0C26FC;
    background: linear-gradient(to right, #0C26FC 0%, #84E3FF 50%, #6763FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    z-index: 1;
    position: relative;
    /* margin: 0 0 0 2rem; */
    font-family: flexh3span;
}

.oval {
    position: absolute;
    top: 50%;
    left: 47%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 250px;
    height: 100px;
}


/* ------------------------service-section---------------- */

.main-service {
    background-color: #e63946;
    margin: 0 8rem 3rem 8rem;
    padding: 0 5rem 3rem 5rem;
    border-radius: 20px;
    box-shadow: 1px 4px 6px 3px rgba(19, 23, 29, 0.72);
    transform: translate(0, -30%);
    /* --mask: 
    linear-gradient(#000 0 0) 50%/calc(100% - 18.5px) calc(100% - 18.5px) no-repeat,
    radial-gradient(farthest-side,#000 98%,#0000) 0 0/20px 20px round;
  -webkit-mask: var(--mask);
          mask: var(--mask); */
    clip-path: polygon(0 50.72px, 40px 40px, 50.72px 0, calc(100% - 50.72px) 0, calc(100% - 40px) 40px, 100% 50.72px, 100% calc(100% - 50.72px), calc(100% - 40px) calc(100% - 40px), calc(100% - 50.72px) 100%, 50.72px 100%, 40px calc(100% - 40px), 0 calc(100% - 50.72px));
}



.head-service {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.head-service h1 {
    font-size: 40px;
    color: #faf4f4;
    margin-top: 2rem;
    font-family: myFontHead;
}

.ser-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.ser-cards {
    background-color: #000000;
    padding: 1rem 3rem;
    /* border-radius: 0px 23px 0px 23px;
    -webkit-border-radius: 0px 23px 0px 23px;
    -moz-border-radius: 0px 23px 0px 23px; */
    /* border: 1px solid #ffffff; */
    --mask:
        radial-gradient(10px at 75% 100%, #0000 98%, #000) 50% calc(100% - 10px)/40px 100% repeat-x,
        radial-gradient(10px at 25% 50%, #000 99%, #0000 101%) bottom/40px 20px repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
}

.s-card-img {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.s-card-img img {
    width: 60px;
    height: 60px;
}

.s-card-header {
    display: flex;
    justify-content: center;
}

.ser-cards .s-card-header h5 {
    text-align: center;
    padding: .5rem;
    font-family: roboto;
    font-weight: 300;
    font-size: 16px;
    color: #ffffff;
}

/* ------------------------service-responsive-slider----------------------------- */


.res-ser-center {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    display: none;
    justify-content: center;
    /* background: #000; */
    font-family: "Poppins", serif;

    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/concrete-wall-2.png");
    /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */


}

.res-ser-center h1 {
    color: #fede00;
    text-align: center;
    padding: 2rem;

}



.res-ser-slider {
    width: 100%;
    height: fit-content;
    padding: 20px 0 70px 0;
    overflow: auto;
}

.res-ser-slider::-webkit-scrollbar {
    width: 80px;
    height: 5px;
}

.res-ser-slider::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255);
    border-radius: 10px;
}

.res-ser-slider::-webkit-scrollbar-track {
    background: rgba(224, 224, 224, 0.2);
}

.res-ser-cards {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-ser-card {
    mask: conic-gradient(from -40deg at bottom, #0000, #000 1deg 79deg, #0000 80deg) 50%/25.17px 100%;

    width: 250px;
    height: 290px;
    background: #e63946;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: Poppins, sans-serif;
    position: relative;
    margin: 0 20px;
    padding: 1rem;
    border-radius: 10px;
}




.res-ser-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    padding: 1rem;
    border-radius: 10px;
}

.res-ser-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.res-ser-title h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 2rem;
}


/* ====================end-service-responsive-slider========================== */



/* - -----------------------------request Advisor banner------------------------- */

.request-main-container {
    background-color: #e5d171;
    color: #000000;
    margin-bottom: 4rem;
    margin-top: -7rem;
    box-shadow: 15px 15px 200px 80px #FFD60A inset;
    --mask:
        linear-gradient(0deg, #0000 10px, #000 0) 0 5px,
        radial-gradient(5px, #000 98%, #0000) 50%/9.25px 10px repeat space;
    -webkit-mask: var(--mask);
    mask: var(--mask);

}

.semi-sub-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.req-card-img img {
    width: 570px;
    height: 350px;
    margin-left: 5rem;
    margin-top: 3rem;
}

.req-content {
    margin: 5rem 7rem 3rem 5rem;
}

.req-title h1 {
    margin-bottom: 1rem;
    font-family: "Poppins", serif;
    font-size: 40px;

}




.req-para p {
    font-size: 18px;
    margin: 1rem 0;
    font-weight: 400;
    font-family: "Poppins", serif;

}

.req-button button {
    padding: 1rem 2rem;
    margin: 1rem 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: #e63946;
    color: #ece5e5;
}

/*------------------- ADVISOR SECTION  START -------------------- */
.main-container {
    display: flex;
    margin: 2rem 7rem 5rem 10rem;
    justify-content: center;
    background: #495057;
    width: 80%;
}


.container-right {
    /* background-image: url('/images/adv-image.png'); */
    /* Use the correct image path */
    /* background-position: center;
    background-size: cover;
    background-color: gray; */

    color: rgb(255, 16, 16);
    margin: 2rem 0 0 0;
    height: 400px;
    border-radius: 0 10px 10px 0;
}

.heading h1 {
    margin: 30px 0 0 40px;
    font-size: 40px;
    /* Slightly reduce the font size */
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.get p {
    font-size: 18px;
    margin: 20px 0 0 55px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.access1,
.access2,
.access3 {
    display: flex;
    align-items: center;
    margin: 30px 0 0 40px;
}



/* Left form field */
.container-left {

    border-radius: 10px 0px 0px 10px;
    margin: 2rem 7rem 1rem -7rem;
    font-family: "Roboto", sans-serif;
    border-right: 1px solid rgb(128, 125, 125);
}

.input-item {
    align-content: center;
}

.input-name {
    height: 40px;
    width: 90%;
    margin-left: 20px;
    margin-top: 35px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 10px;
    font-size: 16px;
    outline: none;
}

.input-email {
    height: 40px;
    width: 90%;
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 10px;
    font-size: 16px;
    outline: none;
}

.text-field {
    height: 100px;
    width: 97%;
    margin-left: 5px;

    outline: none;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 15px;

}


.call-btn {
    display: flex;
    justify-content: center;
}

.call-btn button {
    width: 150px;
    height: 45px;
    margin: 20px auto 0;
    margin-top: 25px;
    margin-left: 20px;
    display: block;
    background-color: #fc357b;
    color: #fcfcfc;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.call-btn button:hover {
    background-color: #0846b7;
}

.check {
    font-size: 10px;
    padding-left: 20px;
    padding-top: 20px;
    font-weight: 50;
}

.span {
    color: #007bff;
    padding-left: 5px;
}



/* ADVISOR SECTION  END -------------------- */

/* ----------------------------courses section----------------------------------------- */

.all-course-section {
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/lined-paper-2.png");
}

.sub-filter-section {
    background: #000000;
    margin: 3rem 0 3rem 0;
    /* height: 700px; */
    position: relative;
    display: flex;
    flex-direction: column;

}


.sidebar {
    width: 250px;
    background-color: #e63946;
    /* border-right: 1px solid #000; */
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    padding-top: 20px;
}

.sidebar p {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-family: "Poppins", serif;
    transition: background-color 0.3s;
}

.sidebar p:hover {
    background-color: #FFD60A;
}

.sidebar p.active {
    background-color: #000000;
    color: white;
}


.main {
    margin-left: 15.5rem;
    margin-top: -2rem;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.c-course-btn {
    margin-top: 1rem;
}

.c-course-btn .enroll {
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    font-family: "Poppins", serif;
    font-size: 15px;
    cursor: pointer;
    background-color: #e63946;
    color: #faf4f4;
}

.c-course-btn .enroll:hover {
    background-color: #f6c524;
    outline: 2px solid #e63946;
    color: #000000;
}

.c-course-btn .details {
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    font-family: "Poppins", serif;
    font-size: 15px;
    cursor: pointer;
    background-color: #000000;
    color: #faf4f4;
}

.c-course-btn .details a{ 
    text-decoration: none;
    color: #fff;
}

.c-course-btn .details:hover {
    background-color: #f6c524;
    outline: 2px solid #000000;
    color: #000000;
}


.course-card {
    display: none;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    padding: 20px;
    margin: 10px 0;
    /* top: 0; */
    background-color: #fede00;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.course-card h3 {
    font-family: "Poppins", serif;
    font-size: 28px;
    font-weight: 700;
}

.course-card p {
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
}

.course-card.active {
    display: block;
}


.course-heading {
    text-align: left;
}

.all-course-section .course-heading h1 {
    color: #f6c524;
    padding: 0 0 0 2rem;
    font-family: "Poppins", serif;
    font-weight: 800;
    font-size: 7rem;
    /* letter-spacing: 5px; */
    /* line-height: 7rem; */
}

.all-course-section .course-heading h3 {
    color: #f6c524;
    padding-left: 2rem;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-size: 3rem;
    letter-spacing: 2px;
}

.all-course-section .course-para {
    text-align: left;


}

.course-para p {
    padding: 1rem 22rem 1rem 2rem;
    font-size: 20px;
    color: #f6c524;
    font-family: "Poppins", serif;
    font-weight: 300;

}

/* ----------------------------res-courses section------------------------------- */


.res-all-course {
    background-color: #000000;
    font-family: "Poppins", serif;
    padding: 3rem 0;
    display: none;
    background-color: #000000;
    background-image: url("https://www.transparenttextures.com/patterns/inspiration-geometry.png");

}

.enroll {
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    font-family: "Poppins", serif;
    font-size: 15px;
    cursor: pointer;
    background-color: #e63946;
    color: #faf4f4;
}

.enroll:hover {
    background-color: #f6c524;
    outline: 2px solid #e63946;
    color: #000000;
}

.details {
    padding: 0.5rem 0.6rem;
    border: none;
    outline: none;
    font-family: "Poppins", serif;
    font-size: 15px;
    cursor: pointer;
    background-color: #000000;
    color: #faf4f4;
}

.details:hover {
    background-color: #f6c524;
    outline: 2px solid #000000;
    color: #000000;
}


.course-sec-head h1 {
    color: #fede00;
    font-size: 40px;
    font-weight: 900;
    padding: 0 2rem;
}

.course-sec-head h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    padding: 0.5rem 2rem;

}

.course-sec-head p {
    color: #fede00;
    font-size: 18px;
    padding: 0 2rem;

}

.res-course-tabs {
    display: flex;
    list-style: none;
    padding: 1rem;
    color: #e63946;
    font-size: 18px;
}

.res-course-tab {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
}

.res-course-tab.active {
    border-bottom: 2px solid rgb(255, 255, 255);
    font-weight: bold;
}

.res-sub-content {
    display: flex;
    justify-content: center;
}

.res-course-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.res-course-card {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    /* flex: 1 1 calc(33.333% - 2rem); */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    color: #fede00;
}

.res-course-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 22px;
}

.res-course-card p {
    margin: 0 0 1rem 0;
    color: #999;
    font-size: 17px;

}




/* ----------------------------res-courses section-end------------------------------ */



/* --------------------career-service------------------------- */


.services-section {
    padding: 60px 20px;
    text-align: center;
    font-family: "Poppins", serif;


}

.section-header h2 {
    color: #ffffff;
    font-size: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h1 {
    font-size: 5rem;
    font-weight: 700;
    margin: 10px 0;
    font-weight: bold;
    color: #f6c524;
}

.underline {
    width: 400px;
    height: 6px;
    background-color: #ffffff;
    margin: 1rem auto 3rem auto;
    transition: all 0.4s ease-in-out;
}

.underline:hover {
    background: #f39c12;
    cursor: pointer;
    width: 600px;
    height: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 0 6rem;
}

.service-card {
    background: #1c1c1c;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    text-align: left;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #f39c12;
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 2em;
    color: #f39c12;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 10px;
}

.service-card p {
    color: #ccc;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.explore-link {
    color: #f39c12;
    font-weight: bold;
    text-decoration: none;
    font-size: 1em;
}

.explore-link:hover {
    text-decoration: underline;
    color: #fede00;

}



/* -------------------end-career-service------------------------- */


/*==================== 2. VARIABLES CSS ====================*/
:root {
    --primary: #ece802;
    --secondary: #e63946;
    --color: #e0e0e0;
    --black: #002f56;
    --blue: #007bff;
    --box-shadow: 0 .2rem 1rem #ece802;
    --border-radius: 30px 0 30px 0;
}




/* Set core body defaults */
/* body {

    color:#e0e0e0;


} */

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media(prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}



/*==================== 5. REUSABLE CLASSES ====================*/
.icon {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    color: var(--primary);
    font-size: 1.5rem;
}



.row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}


@keyframes slide_anim {

    0%,
    10%,
    20% {
        left: 0%;
    }

    30%,
    40%,
    50% {
        left: 100%;
    }

    60%,
    70%,
    80% {
        left: 0%;
    }

    90%,
    100% {
        left: 100%;
    }
}



/*==================== roadmap ====================*/

.roadmap-main-section {
    background: #ffd500;
    padding-bottom: 5rem;
    background-color: #ffe600;
    background-image: url("https://www.transparenttextures.com/patterns/robots.png");

}

.roadmap-head h1 {
    text-align: center;
    margin: 1rem 0 2rem 0;
    padding: 0 12rem;
    font-size: 4rem;
    font-family: "Poppins", serif;
    font-weight: 800;
    color: #ffffff;
}

.roadmap-head h2 {
    text-align: center;
    padding: 3rem 0 0 0;
    font-size: 2rem;
    font-family: "Poppins", serif;
    font-weight: 600;

}

.roadmap-steps label {
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 400;
    border: 1px solid #fede00;
    padding: 5px 10px;
    border-radius: 40px;
}

.roadmap-steps:hover label {
    border: 1px solid #000;
}


.roadmap-steps h3 {
    font-family: "Poppins", serif;
    font-size: 27px;
    font-weight: 800;
    margin: 2rem 0 1rem 0;
}

.roadmap-steps p {
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 300;
}

.roadmap-steps:hover {
    background: #fede00;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}



.timeline ul li {
    list-style-type: none;
    position: relative;
    width: 6px;
    margin: 0 auto;
    padding-top: 50px;
    background: #e63946;
}

.timeline ul li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: inherit;
    z-index: 1;
}

.timeline ul li div {
    position: relative;
    bottom: 0;
    width: 400px;
    padding: 15px;
    background: #000000;
    color: #fede00;
}

.timeline ul li div::before {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline .roadmap-steps {
    padding: 2rem;
    transition: all 0.3s ease-in-out;
}


.timeline ul li:nth-child(odd) div {
    left: 45px;
    text-align: right;

}

.timeline ul li:nth-child(odd) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #000 transparent transparent;
}

.timeline ul li:nth-child(even) div {
    left: -439px;
}

.timeline ul li:nth-child(even) div::before {
    right: -15px;
    border-width: 8px 0 8px 16px;
    border-color: transparent transparent transparent #000;
}



/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul li::after {
    transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
    background: #000;
}

.timeline ul li div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
    transform: translate3d(200px, 0, 0);
}

.timeline ul li:nth-child(even) div {
    transform: translate3d(-200px, 0, 0);
}

.timeline ul li.in-view div {
    transform: none;
    visibility: visible;
    opacity: 1;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 900px) {
    .timeline ul li div {
        width: 250px;
    }

    .timeline ul li:nth-child(even) div {
        left: -289px;
        /*250+45-6*/
    }
}

@media screen and (max-width: 600px) {
    .timeline ul li {
        margin-left: 20px;
    }

    .timeline ul li div {
        width: calc(100vw - 91px);
    }

    .timeline ul li:nth-child(even) div {
        left: 45px;
    }

    .timeline ul li:nth-child(even) div::before {
        left: -15px;
        border-width: 8px 16px 8px 0;
        border-color: transparent #000 transparent transparent;
    }
}


/* EXTRA/CLIP PATH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline-clippy ul li::after {
    width: 40px;
    height: 40px;
    border-radius: 0;
}

.timeline-rhombus ul li::after {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
    bottom: 12px;
}

.timeline-star ul li::after {
    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%);
}

.timeline-heptagon ul li::after {
    clip-path: polygon(50% 0%,
            90% 20%,
            100% 60%,
            75% 100%,
            25% 100%,
            0% 60%,
            10% 20%);
}

.timeline-infinite ul li::after {
    animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.25);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}


/* - -------==============================show-casing-section========================------- */

.awareness-section {
    padding: 5rem 10rem 10rem 10rem;
    /* max-width: 1200px; */
    margin: 0 auto;
    font-family: "Poppins", serif;
    background: #000000;
}

.awareness-header {
    text-align: left;
    /* margin-bottom: 40px; */
}

.awareness-header h1 {
    font-size: 40px;
    font-weight: 900;
    margin-top: 3rem;
    color: #ffffff;
}

.awareness-header h1 span {
    display: block;
    font-style: italic;
    color: #fede00;
}

.awareness-header p {
    font-size: 1.1em;
    color: #666;
}

.awareness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Responsive grid */
    grid-auto-rows: auto;
    gap: 20px;
}

.grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-content {
    position: absolute;
    top: 0;
    /* Changed to top for full card overlay */
    left: 0;
    width: 100%;
    height: 100%;
    /* Full height for background */
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent dark overlay */
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .grid-content {
    opacity: 1;
    /* Show content on hover */
}

.grid-content h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Poppins", serif;
}

.grid-content p {
    font-size: 0.9em;
    line-height: 1.4;
}

/* -----==============================end-show-casing-section========================-------- */



/* =====================futurix-banner=================================== */


.future-container {
    text-align: center;
    font-family: "Poppins", serif;
    background: #fede00;
    padding: 70px 40px;
    color: #000;

}



.futuhead2 span {
    position: relative;
    display: inline-block;
    z-index: 1;
    /* Ensure text is above the image */
}

/* .futuhead2 span::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 350px;
    background: url(images/paint.png) no-repeat center;
    background-size: contain;
    z-index: -1;
   
} */


.future-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.futuhead1 {
    font-size: 75px;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.code-span {
    background-color: #000;
    color: #fff;
    font-style: italic;
    padding: 0 2rem;
    border-radius: 15px;
    display: inline-block;
    position: relative;
    margin-right: 15px;
    transform: rotate(5deg);

    /* Fixes spacing */
}

.bright {
    display: inline-block;
    position: relative;
    color: #fff;
    -webkit-text-stroke: 3px #000000;
}

.bright::after {
    content: "";
    position: absolute;
    background-image: url(../images/star.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: -10px;
    bottom: 30px;
    transform: rotate(-10deg);
    /* font-size: 45px; */
    width: 50px;
    height: 80px;
    z-index: 1;
}

/* .code-span::before {
    content: "";
    position: absolute;
    left: 85px;
    top: 1px;
    font-size: 55px;
    z-index: 1;
    animation: float 3s infinite alternate ease-in-out;
} */

.paint-span {

    display: inline-block;
    margin-left: 15px;
    /* Fixes spacing */
    position: relative;
    z-index: 1;
}

.paint-span::before {
    content: "";
    position: absolute;
    top: -1rem;
    /* bottom: 50px; */
    /* Adjust the position as needed */
    left: 8%;
    transform: translateX(-50%) rotate(-30deg);
    width: 210px;
    height: 150px;
    background: url(../images/splash.png) no-repeat center;
    background-size: contain;
    z-index: -1;
    /* animation: rotate 4s infinite linear; */
}

.paint-span::after {
    content: "";
    position: absolute;
    top: 3.5rem;
    /* bottom: 50px; */
    /* Adjust the position as needed */
    left: 65%;
    transform: translateX(-50%) rotate(-30deg);
    width: 110px;
    height: 120px;
    background: url(../images/curved-arrow.png) no-repeat center;
    background-size: contain;
    z-index: 1;
    /* animation: rotate 4s infinite linear; */
}

.tomorrow {
    position: relative;
    display: inline-block;
}

.tomorrow::after {
    content: "";
    position: absolute;
    background-image: url(../images/skill-development.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: -170px;
    top: -40px;
    transform: rotate(25deg);
    width: 200px;
    height: 150px;
    z-index: 1;
    /* animation: rotate 4s infinite linear; */
}

/* 🌀 Floating Animation */
@keyframes float {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(10px);
    }
}

/* 🔄 Rotating Animation */
/* @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */


.futu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background-color: #fff;
    color: white;
    gap: 8px;
    outline: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

/* Fix spacing issues */
.futuhead1 span {
    display: inline-block;
    white-space: nowrap;
    /* Prevents unnecessary line breaks */
}

.futu-text img {
    width: 50px;
    height: 50px;
}


.futu-svg {
    padding-top: 5px;
    height: 100%;
    width: fit-content;
}

.futu-svg svg {
    width: 70px;
    height: 30px;
}


.futu-button:hover .futu-svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}







/* =====================end-futurix-banner=================================== */


/* =================================our-services-sectioon============================= */

.code-ser-container {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap: 1rem;
    font-family: "Poppins", serif;
}


/* Services Section */
.code-ser-section {
    padding: 6rem 1.2rem;
    display: flex;
    justify-content: center;
}

.ser-sub-sec {
    max-width: 1200px;

}

/* Header Styling */
.code-ser-header {
    text-align: left;
    margin-bottom: 30px;
    margin-right: 2rem;
}


.code-ser-header h1 {
    font-size: 40px;
    font-weight: 800;
    color: #fede00;
    margin-bottom: 10px;
}

.code-ser-header p {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
}

/* Button Styling */
.code-ser-btn {
    background: #fede00;
    color: #000;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}
.code-ser-btn a{
    color: #000;
    text-decoration: none;
}

.code-ser-btn:hover {
    background: #fede00;
}

/* Grid Layout */
.code-ser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.78rem;
}

/* Service Cards */
.code-ser-card {
    /* background: #6b21a83d; */
    background-color: #756213;
    background-image: linear-gradient(315deg, #756213 0%, #000000 74%);

    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    /* position: relative; */
    outline: 2px solid #fede00;


}

.code-ser-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    padding: 0 2rem;
    color: #fede00;

}

.code-ser-card h2 {
    font-size: 40px;
    padding: 0 0 1rem 0;

}

.code-ser-card p {
    font-size: 17px;
    /* color: #666; */
    color: #fede00;

    margin-bottom: 10px;
    padding: 0 2rem 1rem 2rem;
}



/* Hover Effects */
.code-ser-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    /* outline: 5px solid #fede00; */
}

/* Dark Card Styling */
.code-ser-dark {
    background: #1a2a2a;
    color: white;
}

.code-ser-dark h3,
.code-ser-dark p,
.code-ser-dark a {
    color: white;
}

.code-ser-dark:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(26, 42, 42, 0.3);
}





/* =================================end-our-services-sectioon============================= */







/* ================feedback-section========================================== */

.feedback-container h2 {
    text-align: center;
    font-size: 30px;
    color: #666;
}


.feedback-container {
    margin: 2rem 0 0 0;
    font-family: "Poppins", serif;
    background-color: #fede00;
    background-image: url("https://www.transparenttextures.com/patterns/light-wool.png");
    padding: 3rem 0 2rem 0;
}

.feed-sub-container {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.feedback-title {
    font-size: 50px;
    text-align: center;
    color: #000000;
    padding: 0 10rem;
}

.feedback-section {
    margin: 2rem 0;
}

.feedback-wrapper {
    /* display: flex;
    justify-content: center; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-right: 7rem;
    /* margin: auto; */
}

.feedback-testimonial {
    /* background-color: #222; */
    width: 350px;
    position: relative;
    box-shadow: 10px 10px #000;
}

.feedback-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding: 10px;
    position: relative;
    top: -30px;
    color: #fede00;

}

.feedback-header:after,
.feedback-header:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.feedback-header:after {
    border-color: rgba(136, 183, 213, 0);
    border-top-color: #000;
    border-width: 30px;
    margin-left: -30px;
}

.feedback-header:before {
    border-color: rgba(194, 225, 245, 0);
    border-top-color: #beff1d;
    border-width: 20px;
    margin-left: -20px;
}

.feedback-header i {
    font-size: 35px;
    /* border-radius: 50%; */
    margin-right: 10px;
}

.info h3 {
    margin: 0;
    font-size: 1em;
}

.info p {
    margin: 0;
    font-size: 0.9em;
}

.content {
    padding: 20px;
    background-color: #e63946;
    border: 1px solid #beff1d;
    border-radius: 0 0 0 10px;
}

.content p {
    font-style: italic;
    color: #fff;
    /* color: #beff1d; */
    position: relative;
}

/* 
.content p::before {
    content: "“";
    font-size: 2em;
    color: #fede00;
    position: absolute;
    left: -10px;
    top: -5px;
} */





/* ============================end-feedback-secttion============================ */


/* FOOTER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
    position: fixed;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    padding: 5px;
    color: black;
    background: rgba(255, 255, 255, 0.65);
}

.page-footer a {
    display: flex;
    margin-left: 4px;
}


/* --------=======================certificate-section==================---------- */



.main-cert-section {
    background-color: #e5d171;
    color: #000000;
    margin-bottom: 4rem;
    /* margin-top: 2rem; */
    box-shadow: 15px 15px 200px 80px #FFD60A inset;
    /* --mask:
        linear-gradient(0deg, #0000 10px, #000 0) 0 5px,
        radial-gradient(5px, #000 98%, #0000) 50%/9.25px 10px repeat space;
    -webkit-mask: var(--mask);
    mask: var(--mask); */




    /* height: 40vh; */
    /* background-color: #20B2AA; */
    position: relative;
}

.main-cert-section::before {
    content: "";
    width: 100%;
    height: 26px;
    position: absolute;
    bottom: -0.3%;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: 71vw bottom;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 134' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 0C22.4434 -1 28.9842 2 55 24C94.1849 54 121.997 57 158.5 58C198.5 60 200 44 240 52C280 59 320 89 360 89C400 89 440 59 480 54C520 49 560 69 600 84C640 99 680 109 720 114C760 119 800 119 840 104C880 89 920 59 960 62C1000 64 1040 99 1080 94C1120 89 1127.5 59 1147.5 37C1171.48 11 1185.65 0 1200 0V134H1180C1160 134 1120 134 1080 134C1040 134 1000 134 960 134C920 134 880 134 840 134C800 134 760 134 720 134C680 134 640 134 600 134C560 134 520 134 480 134C440 134 400 134 360 134C320 134 280 134 240 134C200 134 160 134 120 134C80 134 40 134 20 134H0V0.0103865Z' fill='%23FFF5EE'/></svg>");
}

@media(max-width:850px) {
    .main-cert-section::before {
        height: 13px
    }
}



.semi-sub-cert {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.cert-card-img img {
    width: 570px;
    height: 370px;
    margin-left: 5rem;
    margin-top: 3rem;
}

.cert-card-img {
    margin-bottom: 3rem;
    
}

.cert-content {
    margin: 5rem 7rem 3rem 5rem;
}

.cert-title h1 {
    margin-bottom: 1rem;
    font-family: "Poppins", serif;
    font-size: 40px;
    color: white;

}

.cert-title h1 span {
    margin-bottom: 1rem;
    font-family: "Poppins", serif;
    font-size: 40px;
    font-weight: 900;
    color: #000000;
}

.cert-title span {
    font-family: "Poppins", serif;
    font-size: 18px;
    color: #e63946;
    font-weight: 300;
}

.cert-title span span {
    font-weight: 600;
    font-size: 25px;
}


/* .cert-para p {
    font-size: 18px;
    margin: 1rem 0;
    font-weight: 400;
    font-family: "Poppins", serif;

} */

.cert-button button {
    padding: 1rem 2rem;
    margin: 1rem 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: #e63946;
    color: #ece5e5;
}


/* ------------------------------featured-section---------------------------------------- */
.featured-main-section {
    background: #fede00;
    padding: 3rem 0;
    font-family: "Poppins", serif;
}

.featured-main-section h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 900;
    padding: 0 6rem 2rem 6rem;
}

.featured-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-content {
    display: flex;
    background: rgb(0, 0, 0);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 90%;
    color: #fede00;
}

.text-section {
    flex: 1;
    padding-right: 20px;
}

.rating {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}



.description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.features li {
    font-size: 14px;
    margin-bottom: 5px;
}

/* .buttons {
    display: flex;
    gap: 10px;
} */

.fenroll {
    background: #e63946;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    /* border-radius: 5px; */
    cursor: pointer;
}

.fenroll:hover {
    background: transparent;
    outline: 1px solid #e63946;
}

.fcurriculum {
    background-color: #fede00;
    color: #000;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    /* border-radius: 5px; */
    cursor: pointer;
}

.fcurriculum:hover {
    background: transparent;
    outline: 1px solid #fede00;
    color: #fff;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* ----------------------------------end-featured-section------------------------------------ */



/* ====================================top-courses========================================= */

.top-main-section {
    padding: 3rem 0;
    font-family: "Poppins", serif;
    width: 100%;
    height: 100%;

    background: #000000;
    --gap: 5em;
    --line: 1px;
    --color: rgba(255, 255, 255, 0.2);

    background-image: linear-gradient(-90deg,
            transparent calc(var(--gap) - var(--line)),
            var(--color) calc(var(--gap) - var(--line) + 1px),
            var(--color) var(--gap)),
        linear-gradient(0deg,
            transparent calc(var(--gap) - var(--line)),
            var(--color) calc(var(--gap) - var(--line) + 1px),
            var(--color) var(--gap));
    background-size: var(--gap) var(--gap);
}

.top-main-section h1 {
    font-size: 60px;
    font-weight: 900;
    color: #fede00;
    text-align: center;
}


.top-main-courses {
    position: relative;
    margin: 3rem 0;
    width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-sub-section {
    display: flex;
    justify-content: center;
}

.top-course-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.top-main-courses .top-image {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 15px;

}

.top-main-courses:nth-child(1) .top-image {
    background: url(../images/top1.jpg);
    background-size: cover;
    background-position: center;
}

.top-main-courses:nth-child(2) .top-image {
    background: url(../images/top2.jpg);
    background-size: cover;
    background-position: center;
}

.top-main-courses:nth-child(3) .top-image {
    background: url(../images/top3.jpg);
    background-size: cover;
    background-position: center;
}

.top-main-courses .top-image::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    bottom: 0;
    right: 50%;
    box-shadow: 10px 10px 0 #000;
}

.top-main-courses .top-image::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    right: 0;
    bottom: 70px;
    box-shadow: 10px 10px 0 #000;
}

.top-main-courses .top-content {
    position: relative;
    width: 100%;
    height: 150px;
    background: #fede00;
    border-radius: 15px;
    border-top-right-radius: 0px;
}

.top-main-courses .top-content .top-head {
    position: absolute;
    height: 80px;
    width: 50%;
    background: #fede00;
    top: -80px;
    right: 0;
    border-top: 10px solid #000;
    border-left: 10px solid #000;
    border-top-left-radius: 25px;
}

.top-main-courses .top-content .top-head::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    right: 0;
    box-shadow: 10px -10px 0 #000;
}

.top-main-courses .top-content .top-head::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background: transparent;
    border-radius: 50%;
    bottom: 0;
    left: -25px;
    box-shadow: 10px 10px 0 #e63946;
}

.top-main-courses .top-content .top-head span {
    background: #e63946;
    color: #fff;
    padding: 10px 20px;
    margin: 15px;
    display: block;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
}

.top-main-courses .top-content .top-text {
    height: 100%;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    gap: 5px;
}

.top-main-courses .top-content .top-text p {
    color: #333;
    font-size: 14px;
}



/* ====================================end-top-courses========================================= */


/* ==============================trending-courses-section===================================  */

.trend-main-section {
    background-color: #fede00;
    background-image: url("https://www.transparenttextures.com/patterns/football-no-lines.png");
}

.trend-book-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 0 4rem 0;

}

.trend-book-btn button {
    padding: 1rem 2rem;
    margin: 1rem 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: #e63946;
    color: #ece5e5;
    font-size: 20px;
    font-weight: 600;
}

.trend-hover {
    position: absolute;
    z-index: 20;
    top: 85%;
    left: 10%;
    color: #fff;
    font-weight: 500;
}

.trend-card:hover>.trend-hover {
    opacity: 0;
}

.trend-main-section h1 {
    text-align: center;
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    font-family: "Poppins", serif;
    padding: 3rem 6rem 0 6rem;
}

.trend-sub-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.trend-btn {
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    background: #e63946;
}

.trend-btn:hover {
    outline: 2px solid #000;
    background: transparent;
    color: #000;
}

/* -------- */
/* CONTENT */

#trend-main-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 60px 40px;
    min-height: 100dvh;
    overflow: hidden;
    font-family: "Poppins", serif;
}

.trend-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 50% 50%;
    border: 1px solid #000;
    width: 300px;
    aspect-ratio: 1/1;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.03),
        0 22.3px 17.9px rgba(0, 0, 0, 0.05);
}



.trend-title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fede00;
    background: #000;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.more {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    background-color: #fede00;
    border-radius: 0 0 20px 20px;

}

.open-icon {
    font-size: 1.25rem;
    color: #000;
    transform: translateY(3px);
    margin-left: 3px;
    z-index: 1;
}

.trend-modal-open {
    text-transform: uppercase;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    background-color: transparent;
    outline: none;
    border: none;
    cursor: pointer;
    grid-area: 1 / 2 / span 1 / span 1;
}

.trend-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 2;
    transition: all 450ms ease-in 200ms;
}

.trend-card:hover>.trend-card-img {
    width: 50%;
    height: 50%;
    top: 50%;
    border-radius: 0 0 0 20px;

}

/* ------ */
/* trend-modal */

/* body.prevent-background-scroll {
    min-height: 100dvh;
    overflow-y: hidden;
  }
   */
.trend-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 20;
    animation: opentrend-modal 0.3s ease-in-out 1 normal;
}

@keyframes opentrend-modal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.trend-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fede00;
    color: #000;
    text-align: center;
    width: 30%;
    border-radius: 4px;
    z-index: 30;
}

.trend-modal-header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 15px 20px 10px;
    font-size: 1.2rem;
}

.trend-modal-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
}

.trend-modal-header .trend-modal-close {
    background: #efefef;
    border: 0;
    outline: 0;
    transform: translateY(3px);
    background-color: transparent;
    cursor: pointer;
}

.close-icon {
    font-size: 1.6rem;
    color: #000;
    transform: scale(1);
    transition: all 0.3s;
}


.trend-modal-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px 50px;
    height: 70vh;
    overflow-y: auto;
}

.trend-modal-body>img {
    max-width: 100%;
    width: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.trend-modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 20px;
}







/* ------ */
/* MEDIA QUERIES */

@media (max-width: 1100px) {
    .beer {
        width: 200px;
    }

    #trend-main-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    #intro {
        padding: 30px;
    }

    .beer {
        width: 150px;
    }

    .info {
        gap: 20px;
        padding: 30px 30px;
    }

    .info h1 {
        font-size: 2.5rem;
    }

    .info p {
        font-size: 1rem;
    }

    #trend-main-content {
        gap: 30px;
        padding: 60px 20px;
    }

    .trend-card {
        width: 250px;
    }

    .trend-modal-content {
        width: 80%;
    }

    footer {
        padding: 20px 80px 60px;
    }

    footer>p {
        font-size: 1.1rem;
    }
}

@media (max-width: 550px) {
    #intro {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
            "split-beer"
            "info";
    }

    .info {
        grid-area: info;
    }

    .split-beer {
        grid-area: split-beer;
        margin: 20px auto;
    }

    .beer {
        width: 100px;
    }

    #trend-main-content {
        grid-template-columns: repeat(1, 1fr);
        padding: 40px 40px;
    }


}


/* ==============================end-trending-courses-section===================================  */



/* =====================================company-marquee====================================  */

.company-marquee-section {
    padding: 0.5rem 0 3rem 0;
}


.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

.uppercase-text {
    text-transform: uppercase;
}

/* Media */
@media (max-width: 768px) {
    text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    text {
        font-size: 4rem;
    }
}

/* Background size */
path {
    stroke-width: 2rem;
}

@media (max-width: 768px) {
    path {
        stroke-width: 6rem;
    }
}

@media (max-width: 480px) {
    path {
        stroke-width: 8rem;
    }
}



/* =====================================end-company-marquee====================================  */

.icon-container img {
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
}

.spacer-100 {
    width: 100px;
    height: 100px;
}

.spacer-60 {
    width: 60px;
    height: 60px;
}

.spacer-30 {
    width: 30px;
    height: 30px;
}

.spacer-15 {
    width: 15px;
    height: 15px;
}

.marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 600px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    background: #fede00;

}

.marquee-horizontal {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 60px;
    justify-content: flex-start;
    align-items: center;
    background-color: #000000;
}

.track-horizontal {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal 40s linear infinite;
}

.marquee-horizontal-large {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 190px;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
}

.marquee-text {
    margin-right: 8vw;
    flex: 0 0 auto;
    color: #ffffff;
    text-transform: uppercase;
}

.track-horizontal-alt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.track-horizontal-alt {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal-alt 40s linear infinite;
}

.icon-container {
    display: flex;
    width: 210px;
    height: 15vw;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
}

.icon-container-alt {
    display: flex;
    width: 250px;
    height: 150px;
    padding-right: 30px;
    padding-left: 30px;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
}

.icon {
    width: 65%;
}

.col {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.col.small {
    width: 41%;
    flex: 0 0 auto;
}

.header-quaternary {
    max-width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    color: #000000;
    padding: 2px 4px;
}

.header-secondary {
    max-width: 100%;
    font-size: 40px;
    line-height: 120%;
}

.comarquee-main-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 60px;
    padding-left: 60px;
}

.flex-vertical {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.flex-horizontal {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-horizontal.flex-left {
    justify-content: flex-start;
}

.track-vertical {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical 20s linear infinite;
}

.track-vertical-alt {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-vertical-alt 20s linear infinite;
}

.marquee-cover {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 10;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 70%, #e4e4e4),
        linear-gradient(180deg, #e4e4e4, hsla(0, 0%, 100%, 0) 30%);
}

.marquee-cover-horizontal {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 10;
    background-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0) 70%, #e4e4e4),
        linear-gradient(270deg, #e4e4e4, hsla(0, 0%, 100%, 0) 30%);
}

@keyframes marquee-vertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes marquee-vertical-alt {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0%);
    }
}

@keyframes marquee-horizontal {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-horizontal-alt {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}







/* ================================main-testimonial===================================== */

.test-main-section {
    font-family: "Poppins", serif;
    background: #fede00;
    padding: 3rem 0;
}

.test-main-section h1 {
    color: #000000;
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    padding-bottom: 2rem;

}

.swiper {
    max-width: 1000px;
    background: #000;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    padding: 50px;
}

.client-img {
    display: flex;
    justify-content: center;
}

.swiper-slide img {
    width: 300px;
    height: 200px;
    /* object-fit: cover; */
}

.detail-bx p {
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.detail-bx {
    /* width: 100%;
    height: 100%; */
    /*
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 20px; */
    padding: 0 4rem;
    margin: 2rem;
}

.quote-detail-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.test-quote p {
    color: #fff;
    font-size: 16px;
}

.quote-icon-bx {
    width: 100%;
}

.quote-icon {
    font-size: 40px;
    color: #dfe4ea;
}

.bxs-quote-alt-right {
    float: right;
}

.name-detail {
    /* width: 100%; */
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.name {
    font-size: 22px;
    font-weight: 600;
    color: #e63946;
}

.job {
    font-size: 20px;
    font-weight: 400;
    color: #dfdada;
}

.swiper-button {
    width: 40px !important;
    height: 40px !important;
    /* background: #fede00; */
    transition: 0.2s;

}

.swiper-button:hover {
    background: rgba(0, 0, 0, 0.2);
}

.swiper-button::after,
.swiper-button::before {
    font-size: 18px;
    color: #fff;
}

.swiper-pagination-bullet {
    width: 17px !important;
    height: 17px !important;
    background-color: rgba(240, 236, 236, 0.8) !important;
}

.swiper-pagination-bullet-active {
    background-color: #fede00 !important;
}

@media screen and (max-width:992px) {

    .swiper {
        width: 400px;
    }

    .swiper-slide {
        height: 100%;
        flex-direction: column;
    }

    .swiper-slide img {
        height: 260px;
    }

    .swiper-slide p {
        font-size: 17px;
    }

    .quote-icon {
        font-size: 24px;
    }

    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
    }

    .name-detail {
        margin-bottom: 20px;
    }

    .name-detail .name {
        font-size: 18px;
    }

    .name-detail .job {
        font-size: 16px;
    }

    .swiper-button {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button::after,
    .swiper-button::before {
        font-size: 20px !important;
    }

}



/* ================================end-main-testimonial===================================== */








/* ----------------------------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;
}

.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;
}

.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;
}

.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;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 30px;
    }
} */


.con-main-section {
  display: flex;
  justify-content: center;
  padding: 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;
  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;
}

.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: 16px;
    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) {

    footer{
        margin: 0 -5rem;
    }

    .top-section {
        flex-direction: column;
    }

    footer .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: 0;
    }

    .bottom-section p {
        font-size: 16px;
        padding: 0;
    }

    /* Newsletter Styling */
    .newsletter {
        width: 40%;
        text-align: left;
        position: relative;
        margin: 0 3rem;
    }

    .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: 50%;
        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: 55%;
        margin-right: -3rem;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        padding: 7px 20px;
        /* border: 1px solid #fede00;
    border-radius: 20px ; */
    }

    .newsletter .sub:hover {
        color: #e63946;
    }

    .small-text {
        font-size: 15px;
        margin-top: 7px;
        font-weight: 200;
    }


    .links {
        width: 100%;
        margin: auto;
        padding-top: 1rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .support {
        text-align: center;
    }

}


/* =======================footer-ends========================= */