﻿/********** Template CSS **********/
html, body {
    overflow-x: hidden;
}

body {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    /*font-weight: <weight>;*/
    font-style: normal;
}

:root {
    /*--primary: #635924;*/
    --primary: #251003;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 700 !important;
    color: var(--primary);
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

    .topbar-right::before {
        position: absolute;
        content: "";
        width: 30px;
        height: 100%;
        top: 0;
        left: -15px;
        transform: skewX(-30deg);
        background-color: var(--primary);
    }

.justify-text {
    text-align: justify;
}

.text-black {
    color: black !important;
}

    .text-black:hover {
        color: #ffc107;
    }

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: relative;
    padding-right: 32px;
    height: 75px;
    display: flex;
    align-items: center;
    margin: 5px;
    border-radius: 5px;
    background-color: #3c2a1f;
    transition: all 0.3s ease-in-out;
}


.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    /*color: #efe0cb;*/
    font-size: 17px;
    font-weight: 600;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #ffc107;
    }


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    /*font-family: "Font Awesome 5 Free";*/
    /*font-family: 'Georgia', serif;*/
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.brand-text span {
    line-height: 1.1;
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /*background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);*/
    background: linear-gradient(to right, rgb(117 133 159) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #ffc107;
    border: 15px solid #ffc107;
    border-radius: 3.5rem;
}
.carousel-control-prev-icon1,
.carousel-control-next-icon1 {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #ffc107;
    border: 8px solid #ffc107;
    border-radius: 3.5rem;
}


@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--light);
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
        color: var(--light);
    }


/*** Facts ***/
.facts {
    position: relative;
    margin: 6rem 0;
    /*background: var(--dark);*/
    /*background: #4d5b73;*/
}

    .facts .border {
        border-color: rgba(255, 255, 255, .1) !important;
    }


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .service-item .service-img {
        position: absolute;
        padding: 12px;
        width: 130px;
        height: 130px;
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
        background: rgb(108 111 96 / 20%);
        box-shadow: 0 0 45px rgba(0, 0, 0, .09);
        z-index: 2;
    }

    .service-item .service-detail {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: 1;
    }

    .service-item .service-title {
        position: absolute;
        padding: 65px 30px 25px 30px;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: #FFFFFF;
        transition: .5s;
    }

    .service-item:hover .service-title {
        top: -100%;
    }

    .service-item .service-text {
        position: absolute;
        overflow: hidden;
        padding: 65px 30px 25px 30px;
        width: 100%;
        height: 100%;
        top: 100%;
        left: 0;
        display: flex;
        align-items: center;
        text-align: center;
        background: rgba(2, 36, 91, .7);
        transition: .5s;
    }

    .service-item:hover .service-text {
        top: 0;
    }

    .service-item .service-text::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100px;
        top: -100%;
        left: 0;
        transform: skewY(-12deg);
        background: #FFFFFF;
        transition: .5s;
    }

    .service-item:hover .service-text::before {
        top: -55px;
    }

    .service-item .btn {
        position: absolute;
        width: 130px;
        height: 50px;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        background: #FFFFFF;
        border: none;
        box-shadow: 0 0 45px rgba(0, 0, 0, .09);
        z-index: 2;
    }

        .service-item .btn:hover {
            color: #FFFFFF;
            background: var(--primary);
        }


/*** Project ***/
.project-carousel {
    position: relative;
    background: antiquewhite;
}

.project-item {
    position: relative;
    display: block;
}

    .project-item img {
        transition: .5s;
        max-width: 100px;
    }

    .project-item:hover img,
    .project-carousel .owl-item.center img {
        /*margin-top: -60px;*/
        margin-top: -5px;
    }

    .project-item .project-title {
        position: absolute;
        padding: 0 15px;
        width: 150px;
        height: 80px;
        bottom: -110px;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: var(--primary);
        transition: .5s;
    }

    .project-item:hover .project-title,
    .project-carousel .owl-item.center .project-title {
        bottom: -30px;
    }

    .project-item .project-title::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 30px;
        top: -15px;
        left: 0;
        transform: skewY(-5deg);
        background: antiquewhite;
        transition: .5s;
    }

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: antiquewhite;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

@media (max-width: 557px) {
    .navbar .navbar-brand img {
        width: 50px;
    }

    .navbar .navbar-brand::after {
        display: none;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

    .testimonial-carousel .owl-nav .owl-prev:hover,
    .testimonial-carousel .owl-nav .owl-next:hover {
        color: var(--dark);
    }

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}



/*Navbar line Style Start*/

.navbar .collapse a {
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .navbar .collapse a::before,
    .navbar .collapse a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background: #ffc107;
        transition: all 0.5s;
    }

    .navbar .collapse a::before {
        top: 0;
        left: 0;
    }

    .navbar .collapse a::after {
        bottom: 0;
        right: 0;
    }

    .navbar .collapse a:hover::before {
        width: 100%;
        transition: width 0.25s ease-in-out;
    }

    .navbar .collapse a:hover::after {
        width: 100%;
        transition: width 0.25s ease-in-out 0.25s;
    }

/* Navbar Line Style End */


/* Partners Start */

/* Section with background image */
.partners-section {
    background-image: url('/Template/img/partner.jpg'); /* Change to your desired image */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* optional: adds a nice scroll effect */
    color: white; /* optional: helps text stand out */
}


/* Partner logos inside Swiper */
.partners-carousel .swiper-slide img {
    max-width: 170px;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .partners-carousel .swiper-slide img:hover {
        transform: scale(1.05);
    }

.partners-section .section {
    background-color: transparent;
}

/* Client Start */
.client-section {
    background-image: url('/Template/img/clien.jpg'); /* Change to your desired image */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* optional: adds a nice scroll effect */
    color: white; /* optional: helps text stand out */
}


/* Partner logos inside Swiper */
.client-carousel .swiper-slide img {
    max-width: 170px;
    max-height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .client-carousel .swiper-slide img:hover {
        transform: scale(1.05);
    }

.client-section .section {
    background-color: transparent;
}



/*Business Vertics Start*/
/* ===== Card Base Styling ===== */
/* ===== Card Base Styling ===== */
.business-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    /* Animation initial state */
    opacity: 0;    
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding: 1px;
}

    /* Animate in */
    .business-card.show {
        opacity: 1;        
    }

    .business-card .card-title {
        transition: color 0.4s;
    }

    .business-card:hover .card-title {
        color: #635924;
    }

    .business-card a span {
        transition: background 0.4s, border-radius 0.4s;
    }

    .business-card:hover a span {
        background: #635924;
        border-radius: 0px 8px 0px 0px;
    }

/* Card body hover effect */
.card-body-business {
    background-color: #fff;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.business-card:hover .card-body-business {
    background-color: #635924;
    color: white;
}

/* ===== Image Container ===== */
.bus-image {
    height: 300px;
    object-fit: cover;
}

/* ===== Responsive Tweaks ===== */
@media (max-width: 1200px) {
    .bus-image {
        height: 260px;
    }

    .bus-overlay-content h5 {
        font-size: 1.1rem;
    }

    .bus-overlay-content p {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .bus-image {
        height: 240px;
    }

    .bus-overlay-content h5 {
        font-size: 1rem;
    }

    .bus-overlay-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .bus-image {
        height: 220px;
    }

    .bus-overlay-content h5 {
        font-size: 0.95rem;
    }

    .bus-overlay-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .bus-image {
        height: 200px;
    }

    .bus-overlay-content h5 {
        font-size: 0.9rem;
    }

    .bus-overlay-content p {
        font-size: 0.85rem;
    }

    .bus-read-more-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}



/*Business Vertics End*/


/*Section*/
.about-section, .fact-section, .business-section, .resilience-section, .service-section, .partners-section,
.project-section, .client-section, .gallery-section, .portfolio-section, .team-section, .footer-section {
    padding: 50px 80px;
    margin: auto;
}

    .about-section h2, .fact-section h2, .business-section h2, .resilience-section h2, .service-section h2,
    .partners-section h2, .project-section h2, .client-section h2, .gallery-section h2 {
        text-align: center;
        font-size: 36px;
        color: #433024;
        margin-bottom: 10px;
    }

        .about-section h2 span, .fact-section h2 span, .business-section h2 span, .resilience-section h2 span, .service-section h2 span,
        .partners-section h2 span, .project-section h2 span, .client-section h2 span, .gallery-section h2 span {
            color: #FF5E14;
        }

    .about-section .subtitle, .fact-section .subtitle, .business-section .subtitle, .resilience-section .subtitle, .service-section .subtitle,
    .partners-section .subtitle, .project-section .subtitle, .client-section .subtitle, .gallery-section .subtitle {
        text-align: center;
        margin-bottom: 80px;
    }

/* Default styles already defined by you */

/* Large desktops (1200px and up) */
@media (max-width: 1200px) {
    .about-section, .fact-section, .business-section, .resilience-section, .service-section,
    .partners-section, .project-section, .client-section, .gallery-section,
    .portfolio-section, .team-section, .footer-section {
        padding: 40px 60px;
    }

        .about-section h2, .fact-section h2, .business-section h2, .resilience-section h2,
        .service-section h2, .partners-section h2, .project-section h2,
        .client-section h2, .gallery-section h2 {
            font-size: 34px;
        }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
    .about-section, .fact-section, .business-section, .resilience-section, .service-section,
    .partners-section, .project-section, .client-section, .gallery-section,
    .portfolio-section, .team-section, .footer-section {
        padding: 35px 40px;
    }

        .about-section h2, .fact-section h2, .business-section h2, .resilience-section h2,
        .service-section h2, .partners-section h2, .project-section h2,
        .client-section h2, .gallery-section h2 {
            font-size: 32px;
        }

        .about-section .subtitle, .fact-section .subtitle, .business-section .subtitle,
        .resilience-section .subtitle, .service-section .subtitle, .partners-section .subtitle,
        .project-section .subtitle, .client-section .subtitle, .gallery-section .subtitle {
            margin-bottom: 50px;
        }
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
    .about-section, .fact-section, .business-section, .resilience-section, .service-section,
    .partners-section, .project-section, .client-section, .gallery-section,
    .portfolio-section, .team-section, .footer-section {
        padding: 30px 20px;
    }

        .about-section h2, .fact-section h2, .business-section h2, .resilience-section h2,
        .service-section h2, .partners-section h2, .project-section h2,
        .client-section h2, .gallery-section h2 {
            font-size: 28px;
        }

        .about-section .subtitle, .fact-section .subtitle, .business-section .subtitle,
        .resilience-section .subtitle, .service-section .subtitle, .partners-section .subtitle,
        .project-section .subtitle, .client-section .subtitle, .gallery-section .subtitle {
            margin-bottom: 40px;
            font-size: 14px;
        }
}

/* Small mobile devices (576px and below) */
@media (max-width: 576px) {
    .about-section, .fact-section, .business-section, .resilience-section, .service-section,
    .partners-section, .project-section, .client-section, .gallery-section,
    .portfolio-section, .team-section, .footer-section {
        padding: 20px 15px;
    }

        .about-section h2, .fact-section h2, .business-section h2, .resilience-section h2,
        .service-section h2, .partners-section h2, .project-section h2,
        .client-section h2, .gallery-section h2 {
            font-size: 25px;
        }

        .about-section .subtitle, .fact-section .subtitle, .business-section .subtitle,
        .resilience-section .subtitle, .service-section .subtitle, .partners-section .subtitle,
        .project-section .subtitle, .client-section .subtitle, .gallery-section .subtitle {
            margin-bottom: 30px;
            font-size: 13px;
        }
}



/*Service Start */
.service-container {
    /*display: flex;*/
    gap: 40px;
    flex-wrap: wrap;
}

    .service-container .service-text {
        flex: 1 1 300px;
    }

        .service-container .service-text h3 {
            /* color: #1f1f1f; */
            font-size: 24px;
        }

        .service-container .service-text p {
            /* color: #666; */
            margin: 20px 0;
        }

        .service-container .service-text button {
            padding: 10px 20px;
            background: #635924;
            color: #fff;
            border: none;
            cursor: pointer;
            box-shadow: #93710b 0px 13px 27px -5px, #93710b 0px 8px 16px -8px;
        }

    .service-container .grid {
        flex: 2 1 600px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-container .grid-item {
        background: #fff;
        padding: 40px 20px;
        /* border: 1px solid #635924; */
        display: flex;
        justify-content: space-between;
        gap: 15px;
        align-items: center;
        transition: 0.3s;
    }

        .service-container .grid-item:hover {
            background: #635924;
            color: #fff;
            box-shadow: #93710b 0px 13px 27px -5px, #93710b 0px 8px 16px -8px;
        }

        .service-container .grid-item i {
            font-size: 24px;
            color: inherit;
        }

        .service-container .grid-item div {
            display: flex;
            flex-direction: column;
        }

        .service-container .grid-item h4 {
            margin: 0;
            font-size: 18px;
        }

        .service-container .grid-item p {
            margin: 5px 0 0;
            font-size: 14px;
            color: inherit;
        }

/*Gallery*/

.media-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

    .media-card:hover {
        transform: scale(1.03);
    }

/*Resilience Start*/

.resilience-section {
    background: url('/Template/img/black-concrete-wall.jpg') center/cover no-repeat;
    text-align: center;
}

.resilience-table {
    overflow-x: auto;
    margin-top: 80px;
}

    .resilience-table table {
        width: 100%;
        min-width: 700px;
        border-collapse: collapse;
    }

    .resilience-table th,
    .resilience-table td {
        padding: 12px 20px;
        /*color: white;*/
        text-align: center;
    }

    .resilience-table th {
        font-size: 18px;
        /*background-color: rgba(255, 255, 255, 0.1);*/
    }

    .resilience-table td {
        font-size: 20px;
        font-weight: bold;
        color: #FF5E00;
    }

    .resilience-table .fy-cell {
        color: #fff;
        font-weight: bold;
        text-align: left;
    }

@media (max-width: 768px) {
    .resilience-section h2 {
        font-size: 24px;
    }

    .resilience-section p {
        font-size: 14px;
    }

    .resilience-table th,
    .resilience-table td {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .about-section, .fact--section, .business-section, .resilience-section, .service-section, .partners-section,
    .project-section, .client-section, .gallery-section, .portfolio-section, .team-section {
        padding: 0 10px;
        margin: auto;
    }
}

/*section divider start*/
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 20px 0;
}

    .divider .line {
        flex: 1;
        height: 2px;
        background-color: #ffc107; /* golden yellow */
        max-width: 60px;
    }

    .divider .icon {
        margin: 0 12px;
    }

        .divider .icon i {
            font-size: 20px; /* size of icon */
            /* color: #28a745; /* green color */
            color: #ffc107;
        }
/*section divider end*/

/*about section start */
.about-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 5px;
}

    .about-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures full cover */
        display: block;
    }

/* ===== Base styling ===== */
.about-des {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.about-email {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2px;
}

.about-down {
    font-size: 1.1rem;
    color: #222;
    word-break: break-word;
}

/* Icon circle */
.btn-lg-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* ===== Responsive adjustments ===== */

/* Large desktops (≥1200px and below) */
@media (max-width: 1200px) {
    .about-des {
        font-size: 1.2rem;
    }

    .about-down {
        font-size: 1.1rem;
    }
}

/* Tablets (≥992px and below) */
@media (max-width: 992px) {
    h2 {
        font-size: 28px;
        text-align: center;
    }

    .about-des {
        font-size: 1rem;
        line-height: 1.6;
    }

    .btn-lg-square {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Small tablets / large phones (≥768px and below) */
@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }

    .about-des {
        font-size: 1rem;
        line-height: 1.5;
        text-align: justify;
    }

    .about-email {
        font-size: 1rem;
    }

    .about-down {
        font-size: 1rem;
    }

    .btn-lg-square {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* Small phones (≥576px and below) */
@media (max-width: 576px) {
    h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .about-des {
        font-size: 1rem;
        line-height: 1.5;
        text-align: justify; /* better for readability on tiny screens */
    }

    .about-email,
    .about-down {
        font-size: 1rem;
    }

    .btn-lg-square {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}





.text-justify {
    text-align: justify;
}


.bus-read-more-btn {
    background-color: #FF5E14;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .bus-read-more-btn:hover {
        background-color: #d65f1c;
        text-decoration: none;
    }

.fact-card {
    border-top: 5px solid #efe0cb;
    border-radius: 10px;
    box-shadow: #ff5e14 0px 15px 25px -10px;
}


/*project Start*/

.project-img-wrapper {
    width: 100%;
    height: 450px; /* fixed height for consistency */
    overflow: hidden;
    border-radius: 8px; /* optional for rounded edges */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* optional shadow */
}

    .project-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* ?? keeps aspect ratio while filling */
        object-position: center; /* centers the image */
        display: block;
    }

.project-bg {
    position: relative;
}

.details-card {
    max-width: 400px;
    position: absolute; /* overlap only by default */
    left: -37%;
    top: 22%;
    transform: translateY(-50%);
}

/* ?? On small screens reset to normal flow */
@media (max-width: 991px) {
    .details-card {
        position: static; /* no absolute positioning */
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto; /* center inside parent */
    }
}

/* Position indicators at bottom */
#projectCarousel .custom-indicators {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-113%);
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}

    /* Make indicators thin lines instead of circles */
    #projectCarousel .custom-indicators button {
        width: 30px;
        height: 4px;
        border: none;
        border-radius: 2px;
        background-color: rgba(0, 0, 0, 0.2);
        transition: background-color 0.4s ease, width 0.3s ease;
    }

        /* Active slide line */
        #projectCarousel .custom-indicators button.active {
            background-color: #ff5e14; /* match your theme */
            width: 40px;
        }


/*project Start end*/



.service-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

    .service-card:hover {
        background: #ffc107;
        color: #fff !important;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .service-card .icon {
        font-size: 3rem;
        color: #ffc107;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .service-card:hover .icon {
        color: #fff;
    }

    .service-card h5 {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.9rem;
        color: #6c757d;
    }

    .service-card:hover p {
        color: #fff;
    }

.readmore {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: #ff7f00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card:hover .readmore {
    color: #fff;
}

.counter {
    display: inline-block;
    will-change: contents;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* full viewport height */
    overflow: hidden;
}

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* fill, crop if needed */
    }

/* Optional: smooth text animations */
.carousel-caption .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/*bussiness*/

.bus-image-container {
    position: relative;
    height: 300px;
}

    .bus-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

.bus-image-overlay-card:hover img {
    transform: scale(1.03);
}

.bus-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(67, 48, 36, 0.55); /* semi-transparent dark */
    color: white;
    padding: 1rem;
    transition: background 0.3s ease;
}

    .bus-overlay-content h5 {
        font-size: 1.3rem;
        color: #ffc107;
    }

    .bus-overlay-content p {
        font-size: 0.9rem;
        color: #f8f9fa;
    }


/*Service*/
.service-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

/* Image wrapper */
.service-img-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    /* Image */
    .service-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

/* Overlay only on image */
.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* transparent by default */
    transition: background 0.4s ease;
}

.service-card:hover .service-overlay {
    box-shadow: rgba(255, 215, 0, 0.6) 0px -50px 50px 10px inset; /* light yellow glow */
}

/* Icon */
.service-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 60px;
    height: 60px;
    border-radius: .75rem;
    overflow: hidden;
    z-index: 2;
    background: #fff;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

    .service-icon i {
        font-size: 1.5rem;
        color: #f4c20d;
    }

/* Content */
.service-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: #fff;
    z-index: 2;
    transition: color 0.4s ease;
}

    .service-content h6 {
        font-size: 1rem;
        letter-spacing: 1px;
        font-weight: 600;
        opacity: 0.9;
        color: white;
        margin-bottom: 0.3rem;
    }

    .service-content h5 {
        font-size: 1.3rem;
        font-weight: bold;
        color: white;
        margin: 0;
    }

/* Arrow */
.service-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4c20d;
    font-size: 1.2rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.service-card:hover .service-arrow {
    background: #f4c20d;
    color: #fff;
}

.service-card:hover .service-content {
    color: #f4c20d;
}


/*hero*/
.hero {
    height: 300px;
    position: relative;
}

    .hero .hero-inner .imgContainer {
        background-size: cover;
        background-position: center;
        z-index: 0;
    }

    .hero .hero-inner .overlay {
        background-color: rgb(95 58 45 / 30%);
        z-index: 1;
    }


.video-wrapper {
    width: 100%;
    height: 100vh; /* full screen */
    overflow: hidden;
}

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crops while keeping aspect ratio */
    }


@media (max-width: 992px) {
    .carousel-caption h1 {
        font-size: 3rem; /* instead of huge display-1 */
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .video-wrapper {
        height: 750px; /* smaller height for mobile */
    }

        .video-wrapper video {
            height: 100%;
        }
}

@media (max-width: 768px) {
    .carousel-caption {
        padding: 0 15%;
    }

        .carousel-caption h1 {
            font-size: 2.2rem; /* instead of huge display-1 */
        }

        .carousel-caption p {
            font-size: 1rem;
        }

    .video-wrapper {
        height: 650px; /* smaller height for mobile */
    }

        .video-wrapper video {
            height: 100%;
        }
}


@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }

    .video-wrapper {
        height: 500px; /* smaller height for mobile */
    }

        .video-wrapper video {
            height: 100%;
        }
}

.carousel-caption {
    left: 0; /* keep full width */
    right: 0; /* overlay stays full */
    padding: 0 12%; /* space for arrows, only text moves */
    text-align: left;
}


/*news*/

.news-blog-card {
    /* background-color: #e8f2fb; */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #efe0cb;
    height: 100%;
}

    .news-blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }

    .news-blog-card .img-wrapper {
        width: 100%;
        height: 250px;
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .news-blog-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.news-publish-date {
    font-size: 0.9rem;
    color: #5d6c76;
    margin-bottom: 5px;
}


.news-blog-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1d3557;
    margin-bottom: 20px;
}

.news-read-more-btn {
    display: inline-block;
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1d3557;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

    .news-read-more-btn:hover {
        background-color: #d0e4f7;
        text-decoration: none;
    }

    .news-read-more-btn::after {
        content: " ->";
        color: #3e84f8;
        font-weight: bold;
    }


/*filter Button*/
.portfolio-filters {
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    /* background: linear-gradient(145deg, #ff7a00, #ff5e14); */
    background: linear-gradient(145deg, #ff7a00, #635924);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .filter-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: -1;
        transition: all 0.4s ease;
        transform: scaleX(0);
        transform-origin: left;
    }

    .filter-btn:hover::before {
        transform: scaleX(1);
    }

    .filter-btn:hover {
        color: #ff5e14;
        font-weight: 700;
    }

    .filter-btn.active {
        background: #635924;
    }

/*Career Form*/
/* Form container */
.career-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

    /* Labels */
    .career-form label {
        font-weight: 600;
        color: #444;
        font-size: 1rem;
    }

/* Inputs and file uploads */
.form-control {
    border: 2px solid #e2e2e2;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    transition: all 0.25s ease-in-out;
    background-color: #fdfdfd;
}

    /* On focus - golden highlight */
    .form-control:focus {
        border-color: #93710b;
        box-shadow: 0 0 8px rgba(147, 113, 11, 0.3);
        background-color: #fffbea;
    }

/* File input special look */
input[type="file"].form-control {
    padding: 0.5rem;
    border: 2px dashed #ccc;
    background-color: #fff;
}

    input[type="file"].form-control:hover {
        border-color: #93710b;
    }

/* Button styling */
.career-btn-dark {
    background-color: rgb(67, 48, 36);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease;
}

    .career-btn-dark:hover {
        background-color: #93710b;
        color: #fff;
        box-shadow: 0 4px 12px rgba(147, 113, 11, 0.4);
    }


/*navbar brand*/

.dropdown .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}
/* Style for nested dropdown */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%; /* push submenu to the right */
        margin-top: -1px;
    }





.text-brown {
    color: #433024;
}


/* Model scrollable style*/
.modal-dialog-scrollable .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/*Team Card*/
.team-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 8px; /* optional */
}

    .team-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* crop nicely */
        display: block;
    }

.team-photo-wrapper {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*Photo gallery*/
@media (max-width: 576px) {
    .gallery-img {
        height: 210px;
    }
}

@media (min-width: 577px) {
    .gallery-img {
        height: 260px;
    }
}

/*Footer New*/
/* Footer Base */
.footer-section {
    background: #2c1f15;
    color: #d9d9d9;
    /*padding: 60px 0 20px;*/
    font-size: 16px;
    line-height: 1.6;
}

/* Logo */
.footer-logo {
    height: 60px;
    width: auto;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600 !important;
    color: #fff;
    margin-bottom: 2px;
}

.brand-sub {
    color: #ffc107;
    font-weight: 500;
}

.footer-tagline {
    font-size: 1rem;
    color: #bbb;
}

/* Titles */
.footer-title {
    font-size: 18px;
    font-weight: 700 !important;
    margin-bottom: 17px;
    color: #fff;
    text-transform: uppercase;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #d9d9d9;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #ffc107;
        }

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        margin-bottom: 10px;
        display: flex;
        align-items: start;
        gap: 5px;
    }

    .footer-contact i {
        color: #ffc107;
        margin-top: 4px;
    }

/* Social Links */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    margin-right: 8px;
    border: 2px solid #ffc107; /* border instead of background */
    border-radius: 50%;
    color: #ffc107;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-links a:hover {
        background: #ffc107;
        color: #2c1f15;
    }

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
}

/*Copyright*/
/* Copyright Section */
.copyright-section {
    background-color: #fffaf2;
    border-top: 1px solid rgba(0,0,0,0.08);
}

    .copyright-section p {
        font-size: 14px;
        color: #6c757d;
    }

    .copyright-section a {
        color: #ffc107;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .copyright-section a:hover {
            color: #d48806;
        }

.brand-link {
    font-weight: 600;
    color: #2c1f15;
}

.designer-link {
    font-weight: 500;
}


/*hamburger*/
/* Custom Navbar Toggler */
.custom-toggler {
    border: none;
    outline: none;
    padding: 6px;
}

    .custom-toggler:focus {
        box-shadow: none;
    }

/* Hamburger lines */
.toggler-icon {
    display: block;
    width: 26px;
    height: 3px;
    margin: 4px 0;
    background-color: #ffc107; /* dark brown/black */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Animation on open (optional) */
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}



/* Section background */
.business-section {
    background: #f1f7ff; /* soft blue background */
}

/* Card */
.business-card {
    border: 1px solid #e6ebf2;
    background: #fff;
}


/* Image */
.business-img {
    object-fit: cover;
    max-height: 450px;
    width: 100%;
}

/* Title */
.business-title {
    color: #0d6efd; /* Bootstrap primary */
    font-size: 2rem;
}

/* Description */
.business-desc {
    color: #333;
    line-height: 1.8;
    text-align: justify;
    font-size: 1.05rem;
}



/* Service Detail Page Section */
/*.service-detail-section {
    background: #f9fbff;
}*/

/* Use your service-item base */
/*.service-item {
    position: relative;
    margin: 80px auto;
    max-width: 900px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 20px;
    overflow: hidden;
}*/

/* Service Image */
/*.service-item .service-img {
        position: absolute;
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 140px;
        padding: 12px;
        background: rgb(108 111 96 / 20%);
        border-radius: 50%;
        box-shadow: 0 0 45px rgba(0, 0, 0, .09);
        z-index: 2;
    }

        .service-item .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }*/

/* Service Title Area */
/*.service-item .service-title {
        padding: 100px 30px 40px 30px;
        text-align: center;
        background: #fff;
    }*/

/* Service Description (Reveal on hover OR expanded for detail page) */
/*.service-item .service-text {
        padding: 30px;
        background: rgba(2, 36, 91, 0.85);
        text-align: justify;
        color: #fff;
        line-height: 1.7;
    }*/

/* Buttons */
/*.service-item .btn {
        border-radius: 30px;
        font-weight: 500;
        min-width: 180px;
        transition: all 0.3s ease;
    }*/


/*Modal Css*/
#notificationModal .modal-dialog {
    max-width: 900px; /* desktop limit */
    width: 100%;
    margin: auto;
}

#notificationModal .modal-content {
    height: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    top:5%;
}

#notificationModal .modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden; /* prevent double scrollbars */
}

/* Ensure carousel scales correctly */
#notificationCarousel,
#carouselContainer,
.carousel-item {
    width: 100%;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Fixed image wrapper height (keeps modal consistent) */
.image-wrapper {
    height: 320px; /* default desktop */
    overflow: hidden;
}

/* Tablet view */
@media (max-width: 768px) {
    .image-wrapper {
        height: 240px;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .image-wrapper {
        height: 200px;
    }
}

/* Caption animation (bottom → top) */
.carousel-caption-bottom {
    position: absolute;
    bottom: -60px; /* start hidden */
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    padding: 10px;
}

.carousel-item.active .carousel-caption-bottom {
    bottom: 0;
    opacity: 1;
}

/* Caption background */
.carousel-caption-bottom.bg-dark {
    background: rgba(0, 0, 0, 0.6);
}



@media (max-width: 576px) {
    .scroll-visible {
        overflow-x: scroll !important;
        -webkit-overflow-scrolling: touch;
    }

        .scroll-visible::-webkit-scrollbar {
            height: 8px;
        }

        .scroll-visible::-webkit-scrollbar-thumb {
            background-color: #ffc107; /* warning color */
            border-radius: 4px;
        }

        .scroll-visible::-webkit-scrollbar-track {
            background-color: #212529; /* dark background */
        }
}