* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 54px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
}

h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
}

h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 26px;
}

:root {
    --light: #fff;
    --dark: #000;
    --gray: #ccc;
    --yellow: #fbbc00;
}

.btn:focus {
    box-shadow: none;
}

.text-light {
    color: var(--light);
}

.text-dark {
    color: var(--dark);
}

.text-yellow {
    color: var(--yellow);
}

.btn-black {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    background-color: var(--dark); /* Yellow color */
    border: none;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    /* Hover effect */
    .btn-black:hover {
        color: var(--light); /* Ensures text stays white */
        background-color: var(--dark); /* Darker yellow on hover */
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-3px); /* Subtle lift effect */
    }

    /* Additional animated underline effect */
    .btn-black::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0,0, 0, 0.5);
        transition: all 0.4s ease-in-out;
    }

    .btn-black:hover::before {
        left: 0;
    }
/* btn-light-------- */
.btn-light {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    background-color: var(--light); /* Yellow color */
    border: none;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    /* Hover effect */
    .btn-light:hover {
        color: var(--dark); /* Ensures text stays white */
        background-color: var(--light); /* Darker yellow on hover */
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-3px); /* Subtle lift effect */
    }

    /* Additional animated underline effect */
    .btn-light::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0,0, 0, 0.5);
        transition: all 0.4s ease-in-out;
    }

    .btn-light:hover::before {
        left: 0;
    }





/* whatups=========== */


.floating_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border: none;
    background-color: transparent;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: var(--yellow);
    color: var(--light);
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 var(--yellow);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}



/* scroll-top button================ */
.backToTopBtn {
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 1;
    height: 50px;
    width: 50px;
    font-size: 20px;
    border: none;
    color: var(--yellow);
    border-radius: 100%;
    transition: 0.5s;
    cursor: pointer;
    background-color: transparent;
}

    .backToTopBtn:not(:hover) {
        border: 2PX solid var(--yellow);
    }

    .backToTopBtn:hover {
        background: var(--yellow);
        color: var(--gray);
    }

    .backToTopBtn.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .backToTopBtn:not(.active) {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }


/* Button Base Styles */
/* page progress scroll */
.page-progress-scroll {
    position: fixed;
    top: 0px;
    transition: 0.3s;
    left: 0%;
    width: 0%;
    height: 4px;
    background-color: var(--yellow);
    z-index: 99999;
}

/* fixed social icon========= */

.fixed-social-icon #fixed-social {
    position: fixed;
    top: 300px;
    z-index: 11;
}

    .fixed-social-icon #fixed-social a {
        color: var(--light);
        display: block;
        background-color: #d52f4e;
        height: 40px;
        position: relative;
        text-align: center;
        line-height: 40px;
        width: 40px;
        margin-bottom: 1px;
        z-index: 2;
    }

        .fixed-social-icon #fixed-social a:hover > span {
            visibility: visible;
            left: 41px;
            opacity: 1;
        }

        .fixed-social-icon #fixed-social a span {
            line-height: 40px;
            left: 60px;
            position: absolute;
            text-align: center;
            width: 120px;
            visibility: hidden;
            transition-duration: 0.5s;
            background-color: #d52f4e;
            z-index: 1;
            opacity: 0;
        }

    .fixed-social-icon #fixed-social .fixed-facebook {
        background-color: #4b69b1;
    }

        .fixed-social-icon #fixed-social .fixed-facebook span {
            background-color: #4b69b1;
        }

    .fixed-social-icon #fixed-social .fixed-twitter {
        background-color: #37b1e2;
    }

        .fixed-social-icon #fixed-social .fixed-twitter span {
            background-color: #37b1e2;
        }

    .fixed-social-icon #fixed-social .fixed-gplus {
        background-color: #e83f3a;
    }

        .fixed-social-icon #fixed-social .fixed-gplus span {
            background-color: #e83f3a;
        }

    .fixed-social-icon #fixed-social .fixed-linkedin {
        background-color: #ff0033;
    }

        .fixed-social-icon #fixed-social .fixed-linkedin span {
            background-color: #ff0033;
        }

    .fixed-social-icon #fixed-social .fixed-instagrem {
        background-color: #d52f4e;
    }

        .fixed-social-icon #fixed-social .fixed-instagrem span {
            background-color: #d52f4e;
        }

    .fixed-social-icon #fixed-social .fixed-whatsapp {
        background-color: #42db87;
    }

        .fixed-social-icon #fixed-social .fixed-whatsapp span {
            background-color: #42db87;
        }

    .fixed-social-icon #fixed-social .fixed-phone {
        background-color: #259d24;
    }

        .fixed-social-icon #fixed-social .fixed-phone span {
            background-color: #259d24;
        }


/* header css=============================*/

header.header-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 40px 100px;
    z-index: 10;
}

    header.header-top.sticky {
        padding: 10px 100px;
        background: var(--dark);
    }

    header.header-top .logo {
        position: relative;
        color: var(--light);
        text-decoration: none;
        transition: 0.6s;
    }

        header.header-top .logo img {
            width: 100px;
        }

    header.header-top .offcanvas-header h5 a img {
        width: 100px;
    }

    header.header-top .offcanvas-header button.btn-close {
        font-size: 20px;
        opacity: 1;
    }

        header.header-top .offcanvas-header button.btn-close:focus {
            box-shadow: none;
        }

    header.header-top .offcanvas-body ul {
        padding-left: 0;
        margin-bottom: 0;
    }

        header.header-top .offcanvas-body ul li {
            list-style: none;
            margin: 30px 0px;
        }


            header.header-top .offcanvas-body ul li a {
                display: inline-block;
                color: var(--dark);
                text-decoration: none;
                position: relative;
                font-weight: 600;
            }

                header.header-top .offcanvas-body ul li a::after {
                    position: absolute;
                    content: '';
                    display: inline-block;
                    height: 3px;
                    background: var(--dark);
                    transition: width .3s;
                    top: 28px;
                    left: 0;
                    width: 0;
                }

                header.header-top .offcanvas-body ul li a:hover::after {
                    width: 100%;
                }

/* General Footer Styles */
.footer-section {
    background: #000000f2;
    position: relative;
}

    .footer-section ul {
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: end;
    }

    .footer-section .footer-cta {
        border-bottom: 1px solid #373636;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

        .footer-section .footer-cta .single-cta {
            display: flex;
            align-items: center;
        }

            .footer-section .footer-cta .single-cta i {
                color: var(--yellow);
                font-size: 30px;
                margin-right: 15px;
            }

        .footer-section .footer-cta .cta-text h4 {
            color: var(--light);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 0.125rem;
        }

        .footer-section .footer-cta .cta-text span {
            color: #757575;
            font-size: 15px;
        }

    .footer-section .footer-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
        position: relative;
        z-index: 2;
    }

    .footer-section .footer-widget .footer-logo img {
        max-width: 100px;
        margin-bottom: 30px;
    }

    .footer-section .footer-widget .footer-text p {
        font-size: 14px;
        color: #7e7e7e;
        line-height: 28px;
        margin-bottom: 1rem;
    }

    .footer-section .footer-widget .footer-social-icon span {
        color: var(--light);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        display: block;
    }

    .footer-section .footer-widget .footer-social-icon a {
        color: var(--light);
        font-size: 16px;
        margin-right: 15px;
    }

    .footer-section .footer-widget .footer-social-icon i {
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 38px;
        border-radius: 50%;
    }

    .footer-section .footer-social-icon .facebook-bg {
        background: #3B5998;
    }

    .footer-section .footer-social-icon .twitter-bg {
        background: #55ACEE;
    }

    .footer-section .footer-social-icon .google-bg {
        background: var(--yellow);
    }

    .footer-section .footer-widget-heading h3 {
        color: var(--light);
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 2.5rem;
        position: relative;
    }

        .footer-section .footer-widget-heading h3::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -15px;
            height: 2px;
            width: 50px;
            background: var(--yellow);
        }

    .footer-section .footer-widget ul li {
        display: inline-block;
        width: 50%;
        margin-bottom: 12px;
    }

        .footer-section .footer-widget ul li a {
            color: #878787;
            text-transform: capitalize;
            transition: color 0.3s;
        }

            .footer-section .footer-widget ul li a:hover {
                color: var(--yellow);
            }

    .footer-section .subscribe-form {
        position: relative;
        overflow: hidden;
    }

        .footer-section .subscribe-form input {
            width: 100%;
            padding: 14px 28px;
            background: #2E2E2E;
            border: 1px solid #2E2E2E;
            color: var(--light);
        }

        .footer-section .subscribe-form button {
            position: absolute;
            right: 0;
            top: 0;
            background: var(--yellow);
            padding: 11px 20px;
            border: 1px solid var(--yellow);
            color: var(--light);
            font-size: 22px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

            .footer-section .subscribe-form button:hover {
                background: var(--yellow);
            }

    .footer-section .copyright-area {
        background: var(--dark);
        padding: 25px 0 70px;
    }

    .footer-section .copyright-text p {
        margin: 0;
        font-size: 14px;
        color: #878787;
        text-align: left;
    }

        .footer-section .copyright-text p a {
            color: var(--yellow);
            transition: color 0.3s;
        }

            .footer-section .copyright-text p a:hover {
                color: var(--yellow);
            }

    .footer-section .footer-menu li {
        display: inline-block;
        margin-left: 20px;
    }

        .footer-section .footer-menu li a {
            font-size: 14px;
            color: #878787;
            transition: color 0.3s;
        }

            .footer-section .footer-menu li a:hover {
                color: var(--yellow);
            }
/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* ------------------------------------------------- */
/* ------------------------------------------------- */


.banner-section {
    position: relative;
}

    .banner-section .owl-carousel .item {
        position: relative;
        height: 100vh;
        width: 100%;
        background-image: url(../images/home-banner1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

        .banner-section .owl-carousel .item::before {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            width: 100%;
            height: 100vh;
            background-image: linear-gradient(to right, #ff000014, #0c050596);
        }

    .banner-section .owl-carousel .item2 {
        background-image: url(../images/home-banner2.jpg);
    }

    .banner-section .owl-carousel .item3 {
        background-image: url(../images/home-banner3.jpg);
    }

    .banner-section .owl-carousel .item .inner-div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

        .banner-section .owl-carousel .item .inner-div p {
            font-size: 20px;
            margin-bottom: 20px;
        }

    .banner-section .owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        top: 50%;
        left: 47px;
        background-position: center;
        transform: translateY(-50%);
        width: 30px;
        height: 40px;
        outline: none;
        background-image: url(../images/left-arrow.svg) !important;
        background-repeat: no-repeat !important;
        background-size: 20px;
        z-index: 1;
        filter: invert(1);
    }

    .banner-section .owl-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 50%;
        right: 47px;
        background-position: center;
        transform: translateY(-50%);
        width: 30px;
        height: 40px;
        outline: none;
        background-image: url(../images/right-arrow.svg) !important;
        background-repeat: no-repeat !important;
        background-size: 20px;
        z-index: 1;
        filter: invert(1);
    }

    .banner-section .owl-carousel .owl-nav button span {
        font-size: 0;
    }


/* counter section=========================== */
.counter-section {
    display: flex;
    flex-wrap: wrap;
}

    .counter-section .inner-div {
        width: 33.33%;
        text-align: center;
        padding: 100px 30px;
        background-color: #4b69b1;
    }

        .counter-section .inner-div:nth-child(2) {
            background-color: #37b1e2;
        }

        .counter-section .inner-div:nth-child(3) {
            background-color: #e83f3a;
        }

        .counter-section .inner-div:nth-child(4) {
            background-color: #0678b6;
        }

        .counter-section .inner-div:nth-child(5) {
            background-color: #d52f4e;
        }

        .counter-section .inner-div:last-child {
            background-color: #63367a;
        }

        .counter-section .inner-div i {
            color: var(--light);
            font-size: 2.5em;
            display: block;
        }

        .counter-section .inner-div .num {
            color: var(--light);
            font-size: 3em;
            font-weight: 600;
            display: block;
        }

        .counter-section .inner-div .text {
            color: var(--light);
            font-size: 1.25em;
            font-weight: 600;
            display: block;
        }

/* our story -------------------- */

.our-story .inner-text .left-content {
    background-color: var(--dark);
    padding: 75px;
}

.our-story .inner-text .right-content {
    background-color: var(--dark);
    padding: 100px;
    position: relative;
}

    .our-story .inner-text .right-content::before {
        content: "";
        position: absolute;
        left: 0;
        top: 100px;
        height: 300px;
        background-color: #dbd4d4;
        width: 1px;
    }

    .our-story .inner-text .right-content .progress {
        margin-bottom: 23px;
    }

    .our-story .inner-text .right-content span {
        display: block;
        color: var(--light);
        margin-bottom: 10px;
        font-weight: 500;
        text-transform: capitalize;
    }

/* kpl facility======================= */

.kpl-facility {
    padding: 60px 0px;
    background-color: #00000078;
    background-image: url(../images/kpl-facility-banner.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: color;
}

    .kpl-facility .inner-text ul {
        padding-left: 0%;
        margin-bottom: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

        .kpl-facility .inner-text ul li {
            list-style: none;
            text-align: center;
        }

            .kpl-facility .inner-text ul li:hover img {
                transform: translateY(-10px);
            }

            .kpl-facility .inner-text ul li img {
                margin-bottom: 15px;
                transition: all .3s linear;
            }

            .kpl-facility .inner-text ul li p {
                color: var(--light);
                font-weight: 300;
            }

/* Testimonials slider============== */
.testimonials {
    padding: 60px 0px;
}

    .testimonials .inner-text .owl-carousel .item .box {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

        .testimonials .inner-text .owl-carousel .item .box svg {
            margin-right: 20px;
        }

        .testimonials .inner-text .owl-carousel .item .box h3 {
            margin-bottom: 0;
            color: #FFf;
            font-size: 26px;
            font-weight: 500;
            line-height: 30px;
        }

    .testimonials .inner-text .owl-carousel .item p {
        height: 170px;
        color: var(--dark);
    }

    .testimonials .inner-text .owl-carousel .item .name {
        display: flex;
        align-items: center;
    }

        .testimonials .inner-text .owl-carousel .item .name img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 20px;
        }

        .testimonials .inner-text .owl-carousel .item .name .right h6 {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .testimonials .inner-text .owl-carousel .item .name .right span {
            color: var(--dark);
            font-size: 18px;
        }

    .testimonials .inner-text .owl-carousel .item .slider-line {
        margin: 20px 0px;
    }


/* anchor_faq======================== */
.kpl_faq {
    padding: 60px 0px;
    background-color: #00000078;
    background-image: url(../images/faq-banner.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: color;
}

    .kpl_faq .inner-text .accordion .accordion-item {
        background-color: transparent;
        margin: 10px 0px;
        border-bottom: 1px solid rgb(255 255 255 / 61%);
    }

        .kpl_faq .inner-text .accordion .accordion-item .accordion-header {
            padding: 0;
        }

            .kpl_faq .inner-text .accordion .accordion-item .accordion-header .accordion-button {
                line-height: normal;
                padding: 25px 0px;
                background-color: transparent;
                color: var(--light);
                font-size: 18px;
                font-weight: 300;
            }

                .kpl_faq .inner-text .accordion .accordion-item .accordion-header .accordion-button:focus {
                    box-shadow: none;
                }

        .kpl_faq .inner-text .accordion .accordion-item .accordion-collapse {
            background-color: transparent;
            color: var(--light);
        }

        .kpl_faq .inner-text .accordion .accordion-item .accordion-header .accordion-button::after {
            flex-shrink: 1;
            margin-left: auto;
            content: "\f067";
            transition: transform .2s ease-in-out;
            font-size: 20px;
            font-family: fontawesome;
            right: 0px;
            position: absolute;
            top: 26px;
            background: none;
        }

        .kpl_faq .inner-text .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
            content: "\f068";
            transform: rotate(0deg);
            font-family: fontawesome;
            background-image: none;
            right: 0px;
            position: absolute;
            top: 26px;
            font-size: 20px;
        }

        .kpl_faq .inner-text .accordion .accordion-item .accordion-collapse .accordion-body {
            font-weight: 300;
            line-height: 30px;
            padding-left: 0;
            padding-right: 0;
        }

/* get in touch ======================= */

.get-in-touch-section {
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
}

    .get-in-touch-section .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }



    .get-in-touch-section .content-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
        align-items: flex-start;
    }

    .get-in-touch-section .map-container {
        flex: 1;
        min-width: 48%;
    }

    .get-in-touch-section .info-container {
        flex: 1;
        min-width: 48%;
        background-color: #353f72;
        padding: 110px;
        text-align: left;
    }


        .get-in-touch-section .info-container .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .get-in-touch-section .info-container .info-list li {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
                font-size: 16px;
                text-align: left;
            }

                .get-in-touch-section .info-container .info-list li i {
                    margin-right: 10px;
                    font-size: 20px;
                }


/* contact us  section===================== */
.banner-about {
    height: 500px;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    background-position: center center;
    position: relative;
    text-align: center;
}

    .banner-about:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(177deg, rgb(0 0 0 / 20%) 0, #00000059 50%, #000000bf);
        opacity: 0.85;
        content: "";
    }

    .banner-about .banner-content h6 {
        z-index: 1;
        position: relative;
        color: var(--yellow);
    }

    .banner-about .banner-content h1 {
        z-index: 1;
        position: relative;
        color: var(--light);
        text-align: center;
    }

    .banner-about .banner-content p {
        z-index: 1;
        position: relative;
        font-size: 18px;
        color: var(--light);
        margin-bottom: 20px;
        text-align: center;
    }

.breadcrumb-section {
    background-color: var(--yellow);
    padding: 10px 0;
}

    .breadcrumb-section nav {
        float: none;
        margin-top: 0;
    }

    .breadcrumb-section .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .breadcrumb-section .breadcrumb .breadcrumb-item {
            position: relative;
            padding-right: 25px;
        }

            .breadcrumb-section .breadcrumb .breadcrumb-item a {
                color: var(--dark);
                font-size: 16px;
            }

            .breadcrumb-section .breadcrumb .breadcrumb-item.active {
                font-weight: bold;
                color: var(--dark);
            }

            .breadcrumb-section .breadcrumb .breadcrumb-item:last-child {
                padding-right: 0;
            }

            .breadcrumb-section .breadcrumb .breadcrumb-item::before {
                position: absolute;
                top: -13px;
                right: -4px;
                content: "-";
                font-size: 36px;
                color: var(--dark);
            }

            .breadcrumb-section .breadcrumb .breadcrumb-item:last-child::before {
                display: none;
            }

.contact-form {
    padding: 60px 0px;
}

    .contact-form .inner-text form {
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
        margin-top: -180px;
        padding: 40px 30px 30px;
        background-color: #e9ecf1;
    }

    .contact-form .inner-text h2 {
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-form .inner-text h5 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 26px;
        font-weight: 500;
    }

        .contact-form .inner-text h5 span {
            color: #F60000;
        }

    .contact-form .inner-text .input-group {
        flex-direction: column;
        margin-bottom: 20px;
    }

        .contact-form .inner-text .input-group .form-control {
            width: 100%;
            background-color: var(--light);
            border: 1px solid var(--yellow);
            height: 70px;
            border-radius: 0px;
        }

            .contact-form .inner-text .input-group .form-control:focus {
                box-shadow: none;
            }

.error_box {
    color: var(--yellow);
    font-size: 14px;
}

.contact-form .inner-text .input-group textarea.form-control {
    resize: none;
    height: 200px;
    padding-top: 25px;
}

.contact-form .inner-text .input-group .addfile-info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-form .inner-text .form-control:focus {
    box-shadow: none;
    border-color: var(--yellow);
}

.contact-form .inner-text .form-control {
    border-color: var(--yellow);
}

.contact-form .inner-text form .form-floating label sup {
    color: #F60000;
    font-size: 20px;
    top: 0;
}

.contact-form .inner-text .conttact-left {
    padding: 30px;
    height: 100%;
    background-color: #e9ecf1;
}

    .contact-form .inner-text .conttact-left h3 {
        margin: 0 0 10px;
        border-bottom: 1px solid var(--gray);
        padding-bottom: 10px;
        color: var(--dark);
        font-size: 30px;
    }

    .contact-form .inner-text .conttact-left ul {
        padding-left: 0;
        margin-bottom: 0;
    }

    .contact-form .inner-text .conttact-left p {
        font-size: 18px;
        color: var(--dark);
        font-weight: 500;
    }

    .contact-form .inner-text .conttact-left ul li {
        list-style: none;
        margin: 15px 0px;
        font-size: 18px;
        transition: all .3s ease;
    }

        .contact-form .inner-text .conttact-left ul li i {
            color: var(--yellow);
            margin-right: 10px;
            font-size: 22px;
        }

        .contact-form .inner-text .conttact-left ul li a {
            color: var(--dark);
            font-weight: 500;
        }

        .contact-form .inner-text .conttact-left ul li span a:hover {
            text-decoration: underline;
        }

    .contact-form .inner-text .conttact-left .maps iframe {
        width: 100%;
        height: 250px;
        border: 0;
    }

.contact-form .inner-text form .form-floating .attached-info .left-attached {
    position: absolute;
    right: 10px;
    top: 18px;
    margin: 0;
    z-index: 9;
    text-align: right;
}

    .contact-form .inner-text form .form-floating .attached-info .left-attached .uploadfile {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        width: 90px;
        opacity: 0;
    }

    .contact-form .inner-text form .form-floating .attached-info .left-attached .addfile {
        color: var(--dark);
    }

        .contact-form .inner-text form .form-floating .attached-info .left-attached .addfile img {
            max-width: 100%;
            height: auto;
        }

.contact-form .inner-text form .form-floating .attached-info .uploadfiletext {
    font-size: 14px;
}

/* gallery section========================= */
.gallery {
    padding: 60px 0px;
}

    .gallery .inner-text h2 {
        text-align: center;
        color: var(--dark);
        margin-bottom: 50px;
    }

    .gallery .inner-text ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding-left: 0;
        margin-bottom: 0;
    }

        .gallery .inner-text ul li {
            list-style: none;
        }

            .gallery .inner-text ul li img {
                width: 100%;
            }


/* about-us-section---------------------- */

.about-us-section {
    padding: 60px 0px;
}

    .about-us-section .inner-text h2 {
        text-align: center;
        margin-bottom: 30px;
        color: var(--dark);
    }

    .about-us-section .inner-text p {
        color: var(--dark);
        text-align: center;
    }

/* kpl-team=================== */
.kpl-team {
    padding: 60px 0px;
    background-color: var(--dark);
}

    .kpl-team .inner-text h2 {
        margin-bottom: 40px;
        color: var(--light);
        text-align: center;
    }

    .kpl-team .inner-text ul {
        padding-left: 0;
        margin-bottom: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

        .kpl-team .inner-text ul li {
            list-style: none;
            align-items: center;
            display: flex;
            justify-content: center;
            background: rgb(255, 255, 255);
            padding: 20px;
        }

            .kpl-team .inner-text ul li img {
                width: 100%;
                object-fit: cover;
            }


/* board-members-section============ */
.board-members-section {
    padding: 40px 0px;
}

    .board-members-section h2 {
        text-align: center;
        color: var(--dark);
    }

    .board-members-section .member img {
        width: 100%;
        margin-bottom: 10px;
    }

    .board-members-section .member h5 {
        text-align: center;
        text-transform: capitalize;
        color: var(--yellow);
    }

        .board-members-section .member h5 span {
            display: block;
            font-size: 16px;
            color: #000;
        }

/* slider bottom --------------------- */

.ticker-wrapper {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 20;
}

    .ticker-wrapper .ticker {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        height: 50px;
        margin: 0 auto;
    }

        .ticker-wrapper .ticker .news {
            width: 100%;
            background: #ffd700;
            overflow: hidden;
        }

        .ticker-wrapper .ticker .news-title {
            width: 180px;
            text-align: center;
            background: #C8102E;
            height: 50px;
            position: absolute;
            z-index: 10;
        }

            .ticker-wrapper .ticker .news-title:after {
                position: absolute;
                content: "";
                right: -39px;
                border-left: 20px solid #C8102E;
                border-top: 28px solid transparent;
                border-right: 20px solid transparent;
                border-bottom: 21px solid transparent;
                top: 0;
            }

            .ticker-wrapper .ticker .news-title h5 {
                font-size: 17px;
                margin: 12px 0;
                color: #fff;
            }

        .ticker-wrapper .ticker .news marquee {
            font-size: 20px;
            margin-top: 15px;
            padding-left: 200px; /* Ensures text starts after the title */
            white-space: nowrap;
            font-weight: bold;
        }

        .ticker-wrapper .ticker .news-content p {
            display: inline;
            color: #222;
            margin-right: 20px;
        }

/* teams section==================== */
.teams-section {
    padding: 40px 0px;
}

    .teams-section h2 {
        text-align: center;
        color: var(--dark);
    }

    .teams-section .inner-text figure {
        height: 200px;
        width: 200px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        padding: 25px;
    }

/* kpl match schedule------------- */

/*--------- registration-section--------------- */
.registration-section {
    padding: 50px 0px;
    position: relative;
}

    .registration-section .inner-text h2 {
        text-align: center;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .registration-section .inner-text p {
        text-align: center;
        color: #241a1a;
    }


    .registration-section .inner-text form {
        margin-top: 50px;
    }

    .registration-section .inner-text .form-group {
        margin-bottom: 20px;
    }

        .registration-section .inner-text .form-group label {
            display: block;
            font-size: 16px;
            margin-bottom: 5px;
            color: #000;
        }

        .registration-section .inner-text .form-group .form-control {
            width: 100%;
            background-color: var(--light);
            border: 1px solid var(--yellow);
            padding: 10px;
            border-radius: 0px;
        }

        .registration-section .inner-text .form-group .form-select {
            width: 100%;
            background-color: var(--light);
            border: 1px solid var(--yellow);
            padding: 10px;
            border-radius: 0px;
        }

            .registration-section .inner-text .form-group .form-select:focus {
                box-shadow: none;
            }

        .registration-section .inner-text .form-group .form-control:focus {
            box-shadow: none;
        }

        .registration-section .inner-text .form-group .radio-group label input {
            cursor: pointer;
        }

        .registration-section .inner-text .form-group .form-check-input:checked {
            background-color: #fbbc00;
            border-color: #fbbc00;
        }

        .registration-section .inner-text .form-group .form-check-input:focus {
            box-shadow: 0 0 0 .25rem rgb(255 215 0 / 22%);
        }
