* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--readex-pro);
	scroll-padding-top: 2rem;
}

:root {
    --lato: "Lato", serif;
    --exo: "Exo", serif;
    --readex-pro: "Readex Pro", sans-serif;
    --poppins: "Poppins", serif;
    --green: #16c47f;
    --olive-green: #578e7e;
    --yellow: #fbb040;
}

p {
    font-weight: 300;
}

a {
    text-decoration: none !important;
}

ul {
    padding-left: 0 !important;
}

.yellow {
    color: #fbb040;
}

.deskOnly {
    display: block;
}

.mblOnly {
    display: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000; 
    padding: 0 1rem 0 0;
}

nav>a{
    background-color: #fff;
    padding: 0 1rem;
}

nav img {
    width: 8rem;
    height: auto;
}

nav .hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

nav .hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

nav .menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}

nav .menu li {
    position: relative;
    list-style-type: none;
}

nav .menu a {
    color: #fff !important;
    display: block;
    padding: 1rem 1.3rem;
    transition: background 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--lato);
}

nav .menu a:hover {
    color: #fbb040 !important;
}

nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #444;
    display: none;
    z-index: 2;
    width: 12rem;
}

nav li:hover .submenu {
    display: block;
}

nav .submenu a {
    padding: 10px 15px;
    color: #fff !important;
    font-size: 0.9em;
}

nav .submenu a:hover {
    background: #e8a94b;
    color: #fff !important;
}

.btn_des {
    background: #fbb040;
    font: 500 1.1rem "Readex Pro";
    padding: 0.5rem 2rem;
    border: 2px solid #fbb040;
    outline: 2px solid #fff;
    transition: outline-offset 200ms ease;
}

.btn_des a{
    color: #fff;
} 

.btn_des:hover {
    outline-offset: -6px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    nav img {
        width: 6rem;
    }

    nav .hamburger-menu {
        display: flex;
    }

    nav .menu {
        flex-direction: column;
        gap: 0;
        background: #292727;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    nav .menu.open {
        max-height: 500px;
        /* Adjust based on content */
    }

    nav .menu a {
        padding: 1rem;
        text-align: center;
    }

    nav .submenu {
        position: static;
        background: #444;
        margin-left: 1rem;
    }

    nav li:hover .submenu {
        display: none;
    }

    nav li .submenu {
        display: none;
    }

    nav li .submenu.open {
        display: block;
    }

    /* Add arrow styles */
    .arrow {
        font-size: 0.8rem;
        margin-left: 5px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .menu li .submenu.open~.arrow {
        transform: rotate(180deg);
        /* Rotate arrow when submenu is open */
    }

    nav .submenu {
        display: none;
        padding-left: 1rem;
    }

    nav li .submenu.open {
        display: block;
    }
}

/* banner */
.banner .swiper-slide img {
    width: 100%;
    height: 100vh;
}

#marquee {
    padding: 6px 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
}

#marquee .pic-container {
    display: flex;
    animation: marquee 25s linear infinite;
    width: calc(12 * 10rem);
    /* Adjust based on number of images */
}

#marquee:hover .pic-container {
    animation-play-state: paused;
}

#marquee .pic-container .pic {
    flex: 0 0 10rem;
}

#marquee img {
    width: 10rem;
    height: auto;
    object-fit: cover;
    border: 1px solid rgba(238, 231, 231, 0.9);
}

/* Animation for smooth infinite scrolling */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    #marquee .pic-container {
        width: calc(12 * 8rem);
    }

    #marquee .pic-container .pic {
        flex: 0 0 8rem;
    }
}

@media (max-width: 768px) {
    #marquee .pic-container {
        width: calc(12 * 6rem);
    }

    #marquee .pic-container .pic {
        flex: 0 0 6rem;
    }
}

.tech_partner {
    padding: 1rem 0;
    background: #fbb040;
}

.tech_partner p {
    font-family: var(--exo);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
}

.popular_course {
    margin: 5rem 0;
}

.popular_course h3 {
    font-family: var(--exo);

}

.popular_course h2,
.about_sec h3,
.grid_sec h3,
.testimonial_sec h3 {
    font-family: var(--exo);
    font-weight: 600;
    letter-spacing: -1px;
    font-size: 2rem;
}

.popular_course span {
    font-family: var(--exo);
}

.card h3 {
    font-family: var(--reader-pro);
    font-weight: 500;
    letter-spacing: -1px;
    font-size: 1.5rem;
    min-height: 4rem;
}

.view_course {
    background-color: var(--green);
    color: #fff;
    padding: 0.5rem 1.8rem;
}

.view_course svg {
    border-radius: 20px;
    background: #92e8c6ad;
}

.card-text {
    font-size: 0.8rem;
}

.mechSwiper .swiper-button-next:after,
.mechSwiper .swiper-button-prev:after {
    font-size: 2rem !important;
    color: #16c47f;
}

.view_course_btn {
    border: 0 !important;
    background-color: var(--yellow) !important;
    font-size: 0.9rem !important;
}

.view_course_btn:hover {
    background-color: #292727 !important;
    color: var(--yellow) !important;
}

.learning_path {
    background-image: url(/assets/images/banner/learning-path.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    height: 65vh;
    color: white;
}

.learning_path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.running_numbers {
    position: relative;
    margin: 5rem 0;
    padding: 2rem;
    background-image: url('/assets/images/banner/mech-bg.jpg');
    background-position: center;
    color: #fff;
    overflow: hidden;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.running_numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
}

.start-box {
    position: relative;
    text-align: center;
    z-index: 2;
}

.start-box h1 {
    font-size: 3rem;
    font-weight: 600;
}

.start-box p {
    font-size: 1rem;
    font-weight: 300;
    padding: .7rem;
    min-height: 0rem;
}

.start-box .color_box {
    width: 17rem;
    height: 3px;
    margin: .8rem auto;
    border-radius: 30px 30px 0 0;
}

.counter-count {
    font-size: 5rem;
    font-weight: bold;
    position: relative;
    color: #000000;
    text-align: center;
    display: inline-block;
}

.about_sec {
    margin: 5rem 0;
}

.about_sec img {
    width: 30rem;
    height: auto;
}

.grid_sec {
    margin: 5rem 0;
}

.grid {
    display: grid;
    grid-template-columns: 25% 30% 15% 25%;
    gap: 15px;
    place-content: center;
    grid-template-rows: 50% 50%;
    height: 80vh;
    min-height: 460px;
    padding: max(2vh, 1.5rem);

    @include mQ(690px) {
        height: 65vh;
    }

    @include mQ(470px) {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 35%);
    }

    .card {
        border-radius: 25px;
        box-shadow: -2px 4px 15px rgb(0 0 0 / 26%);

        @include mQ(470px) {
            grid-column: span 1;
        }

        &:nth-child(2) {
            grid-column: 2/3;
            grid-row: span 2;

            @include mQ(690px) {
                grid-column: span 1;
                grid-row: span 1;
            }
        }

        &:nth-child(3) {
            grid-column: span 2;

            @include mQ(690px) {
                grid-column: 2/4;
                grid-row: 1/2;
            }
        }

        @include mQ(690px) {
            &:nth-child(6) {
                grid-column: 2/4;
                grid-row: 2/3;
            }
        }

        @include mQ(470px) {

            &:nth-child(5) {
                grid-column: span 2;
            }
        }

        img {
            border-radius: 25px;
            width: 100%;
            display: block;
            height: 100%;
            object-fit: cover;
        }

        .card__img {
            position: relative;
            height: 100%;

        }
    }
}

.testimonial_sec {
    margin: 5rem 0;
}

.testimonialSwiper img {
    width: 23rem;
    height: auto;
}

.testimonialSwiper .swiper-pagination-bullet-active {
    background: #e8a94b !important;
}

.testimonialSwiper .swiper-pagination-bullet {
    background: #FFECB3;
}

.testimonialSwiper .swiper-button-next:after,
.testimonialSwiper .swiper-button-prev:after {
    font-size: 1.5rem;
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
    color: var(--yellow);
}

#login-box {
    position: relative;
    margin: 5% auto;
    max-width: 37.5rem;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-wrap: wrap;
}

.left-box,
.right-box {
    box-sizing: border-box;
    padding:1.5rem 2.5rem;
    width: 50%;
    min-height: 25rem;
}

.left-box input::placeholder {
    color: #000;
}

.left-box input[type="email"],
.left-box input[type="text"],
.left-box input[type="tel"],
.left-box select {
    display: block;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 4px;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    border-bottom: 1px solid #aaa;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 15px;
    transition: 0.2s ease;
}

.submit {
    width: 100%;
    background: #fbb040;
    border: none;
    border-radius: 2px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.25s ease;
    padding: 0.8rem 0.7rem;
    cursor: pointer;
}

.submit:hover,
.submit:focus {
    background: #db9428;
    transition: 0.2s ease;
}

.right-box {
    background-image: url(http://www.psdgraphics.com/file/colorful-triangles-background.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.right-box h6 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 1px 1px #4b4a4a;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    #login-box {
        flex-direction: column;
    }

    .left-box,
    .right-box {
        width: 100%;
    }

    .right-box h6 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    .left-box,
    .right-box {
        padding: 20px;
    }

    .right-box h6 {
        font-size: 1.8rem;
    }
}

.footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.footer-box {
    background: #444;
    padding: 20px;
    border-radius: 8px;
}

.footer-box h6 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fbb040;
    text-transform: capitalize;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-box .social-icons {
    margin-top: 10px;
}

.footer-box .social-icons a {
    text-decoration: none;
    color: #ffcc00;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-box .social-icons a:hover {
    color: #ff6600;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    background: #222;
    margin-top: 20px;
}

.banner_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_content h1 {
    color: #fcb041;
    font-size: 3.5rem;
    font-weight: 700;
}

.banner_content p {
    color: #fff;
}

.banner_img {
    width: 33rem;
    height: auto;
}

.banner {
    background-color: #000;
}

.cta_button {
    font-size: 0.8rem;
    color: #222;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #fafafa;
    background: #fcb041;
    box-shadow: 3px 3px #fafafa;
    cursor: pointer;
}

.cta_button:active {
    box-shadow: none;
    transform: translate(3px, 3px);
}

.cta_button:hover {
    background-color: #ea9a25;
}

.banner_down img {
    width: 3rem;
}

.banner_down {
    overflow: hidden;
    padding: 1rem;
    border-bottom: 1px solid #454545;
    background: antiquewhite;
}

.begineer_grid {
    gap: 1rem;
    display: flex;
    align-items: center;
}

.begineer_grid h6 {
    font-size: 1.4rem;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: -1px;
    color: #084642;
}

.begineer_grid p {
    padding-top: 0.2rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.form_placement {
    margin: 5rem 0;
}

.coursePlacementSwiper .swiper-wrapper {
    height: 26rem;
}

.coursePlacementSwiper .swiper-slide img {
    width: 100%;
    height: auto;
}

.coursePlacementSwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #ff9d23;
}

.coursePlacementSwiper .swiper-button-next:after,
.coursePlacementSwiper .swiper-button-prev:after {
    color: #ff9d23;
    font-size: 2rem;
}

.course_form {
    background-color: #fffaec;
    padding: 3.5rem;
    box-shadow: 0 8.51497px 10.40719px #00000026;
    margin-left: 4rem;
    display: grid;
    width: auto;
}

.course_form input,
.course_form select,
.course_form textarea {
    margin: 0;
    font-size: 0.9rem;
    padding: 0.5rem;
    margin-top: 1.5rem;
    border: none;
    border-bottom: 1px solid #fcb041;
    background-color: transparent;
    font-weight: 300;
}


.course_form input:focus-visible,
.course_form select:focus-visible,
.course_form textarea:focus-visible {
    color: #222;
    border-bottom: 2px solid #fcb041;
    outline: unset;
}

.form_submit {
    width: fit-content;
    padding: 0.3rem 2rem;
    background-color: #fcb041;
    font-size: 1.4rem;
    font-weight: 600;
    border: unset;
    margin-top: 1.5rem;
}

.course_form p {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    color: #084642;
}

.course_form h6 {
    color: #fcb041;
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.course_content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.course_content p {
    margin-top: 1rem;
}

.apply {
    font-family: var(--shoulder);
    color: #EE6C1A;
    font-size: 3rem;
    text-transform: uppercase;
    margin-top: 2rem;
    font-weight: 700;
}

.career {
    font-family: var(--shoulder);
    color: #05346A;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
}

.no_one_course h3 {
    background: linear-gradient(130deg, #37a099 0%, #13605b 50%, #0e4440 100%);
    color: transparent;
    background-clip: text;
    font-size: 15rem;
    font-weight: 800;
    font-family: var(--poppins);
}

.no_one_course p {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -1px;
    text-transform: capitalize;
    font-family: var(--poppins);
}

.cta_button_black {
    font-size: 0.8rem;
    color: #222;
    font-weight: 800;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #000;
    background: #fcb041;
    box-shadow: 3px 3px #000;
    cursor: pointer;
}

.cta_button_black:active {
    box-shadow: none;
    transform: translate(3px, 3px);
}

.cta_button_black:hover {
    background-color: #ea9a25;
}

.career_sec {
    margin: 7rem 0;
}

.career_sec .container {
    max-width: 1072px;
}

.career_opportuity {
    background: #fbb040;
    width: fit-content !important;
    height: fit-content !important;
    padding: 3rem 3rem 3rem 7rem !important;
    position: relative;
    margin: 0 0 0 28rem;
    border-radius: 0.5rem;
}

.career_opportuity h3 {
    font-size: 1.8rem;
    letter-spacing: -1px;
    background: linear-gradient(300deg, #37a099 0%, #13605b 50%, #0e4440 100%);
    color: transparent;
    background-clip: text;
    font-weight: 600;
}

.career_opportuity::before {
    content: ' ';
    position: absolute;
    background-image: url(/assets/images/banner/career-opp.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 30rem;
    height: 30rem;
    top: -2rem;
    left: -25rem;
}

.career_opportuity ul {
    padding-left: 2rem !important;
}

.career_opportuity ul li {
    line-height: 2.2rem;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
}

.faq {
    padding: 4rem 0;
    background: #ffd596;
}

.faq h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.faq .accordion-item {
    margin-bottom: 1rem;
    border-radius: 1rem !important;
}

.faq .accordion-button:not(.collapsed) {
    background-color: #fbb040;
    border-radius: 0.5rem;
    color: #000;
}

.faq .accordion-button {
    background-color: #fbb040;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-item {
    text-align: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.grid-item p {
    margin-top: 10px;
    font-weight: 600;
}

.content {
    max-width: 450px;
}

:root {
    --color-red-dark: #7c000f;
    --color-red-light: #f04257;
    --color-black: hsl(0, 0%, 15%);
    --color-black-light: hsl(0, 0%, 22%);
    --color-red: #c21c30;
    --grid-column-gap: clamp(2rem, 6vw, 8rem);
    --grid-row-gap: 4rem;
    --two-col-layout: 2;
    --three-col-layout: 3;
}

.courses-box .courses-content {
    display: grid;
    grid-template-columns: repeat(var(--two-col-layout), minmax(min-content, 1fr));
    gap: 1rem;
}

.courses-box .courses-content .class-card {
    position: relative;
    width: fit-content;
}

.courses-box .courses-content .class-card__img {
    border-left: 2px solid #fbb040;
    background-position: center;
    background-size: cover;
    max-width: 100%;
    height: 100%;
}

.courses-box .courses-content .class-card__overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    height: 0%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: height 0.5s;
}

.courses-box .courses-content .class-card__overlay .text {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1.5rem;
    text-align: center;
}

.courses-box .courses-content .class-card__title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.39rem;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    background: linear-gradient(to right, #fbb040, #b46c00);
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
}

.courses-box .class-card__overlay .text p{
    margin-top: 1rem;
    margin-bottom: 0;
}

.courses-box .courses-content .class-card:hover .class-card__overlay {
    height: 100%;
}

.why_choose_sec {
    margin: 5rem 0;
}

.why_choose_sec h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.why_choose_row {
    display: flex;
    align-items: center;
}

.modal-body .left-box {
    width: 100%;
}

.modal-body .left-box h6 {
    font-size: 2rem;
    letter-spacing: -1px;
}

.modal-body .left-box h6 span {
    color: #fbb040;
    font-weight: 600;
}

.thank_you_sec {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(/assets/images/banner/thank-you.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.thank_you_sec {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    position: relative;
}

.thank_you_sec h2 {
    font-family: var(--exo);
    color: #fff;
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 800;
}

.thank_you_sec p {
    color: #fff;
}

.partnership_new img {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin-bottom: 0.5rem;
    width: 12rem;
    height: auto;
}

.partnership_new {
    padding: 1rem 0;
    background-color: #f6f6f9;
}

.partnership_new p {
    font-family: var(--exo);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
}