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

/* Page-specific banner backgrounds */
.bg-breadcrumb.banner-about {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-service {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-team {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-testimonial {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-contact {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-product {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-feature {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-blog {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

.bg-breadcrumb.banner-404 {
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner2.jpg);
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner2.jpg) type("image/jpeg"),
        url(../img/banner2.webp) type("image/webp")
    );
}

/* Rounded client logos */
.client-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain; /* preserve logo aspect inside circle */
    background: var(--bs-white);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 12px; /* inner whitespace around logo */
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 576px) {
    .client-logo {
        width: 80px;
        height: 80px;
        padding: 8px;
    }
}

/* Header Social Icons */
.header-social a {
    color: var(--bs-white);
    font-size: 18px;
    line-height: 1;
}

.header-social a:hover {
    color: var(--bs-primary);
}

.sticky-top.navbar-light .header-social a {
    color: var(--bs-dark);
}

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

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

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

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

.btn-xl-square {
    width: 66px;
    height: 66px;
}

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

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

/*** Navbar ***/

/* Enhanced Transparent Header Styles */
.navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border: none;
    background: transparent !important;
    transition: all 0.5s ease;
    z-index: 999;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--bs-white) !important;
    transition: all 0.5s ease;
    /* Maintain original padding - no shrinking */
    padding: 35px 0 !important;
    margin-right: 25px;
}

.navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--bs-white);
}

.navbar-light .navbar-toggler .fa-bars {
    color: var(--bs-white);
}

/* Solid Header State - NO SHRINKING */
.sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.5s ease;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
    /* Keep same padding as transparent state - NO SHRINKING */
    padding: 35px 0 !important;
    margin-right: 25px;
}

.sticky-top.navbar-light .navbar-nav .nav-link:hover,
.sticky-top.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.sticky-top.navbar-light .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.3);
    color: var(--bs-dark);
}

.sticky-top.navbar-light .navbar-toggler .fa-bars {
    color: var(--bs-dark);
}

/* Mobile Responsive Adjustments - Fixed Mobile Dropdown Menu */
@media (max-width: 991.98px) {
    /* Mobile navbar with minimal padding for tight spacing */
    .navbar-light {
        background: transparent !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        padding: 10px 12px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
    }
    
    /* Mobile navbar brand - no extra margins */
    .navbar-light .navbar-brand {
        padding: 0;
        margin: 0;
        flex: 0 0 auto;
    }

    .navbar-light .navbar-brand img {
        max-height: 60px !important;
        display: block;
    }
    
    /* Hamburger menu - positioned close to logo */
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 12px;
        border: 2px solid rgba(255, 255, 255, 0.6);
        color: var(--bs-white);
        margin: 0;
        border-radius: 5px;
        background: transparent;
        transition: all 0.3s ease;
        flex: 0 0 auto;
        box-shadow: none;
    }

    .navbar.navbar-expand-lg .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.15);
        color: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler .fa-bars {
        font-size: 18px;
    }

    /* Fixed mobile menu collapse styling with solid white background */
    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
        background: var(--bs-white) !important;
        padding: 10px 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    /* Center align mobile menu items */
    .navbar-light .navbar-nav {
        text-align: center;
        width: 100%;
    }

    /* Reduced spacing and centered menu items */
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 20px;
        margin: 0;
        color: var(--bs-dark) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
        display: block;
        background: var(--bs-white);
    }
    
    /* Requested: reduce line-height of items in hamburger (collapsed) menu */
    .navbar-light .navbar-collapse .navbar-nav .nav-link {
        line-height: 0.30;
    }
    
    .navbar-light .navbar-nav .nav-link:hover {
        background: rgba(var(--bs-primary-rgb), 0.1) !important;
        color: var(--bs-primary) !important;
    }
    
    /* Dropdown menu styling for mobile with solid background */
    .navbar-light .navbar-nav .dropdown-menu {
        background: var(--bs-white) !important;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        border-radius: 5px;
        text-align: center;
    }
    
    .navbar-light .navbar-nav .dropdown-item {
        color: var(--bs-dark) !important;
        padding: 8px 20px;
        text-align: center;
        background: var(--bs-white);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-light .navbar-nav .dropdown-item:hover {
        background: var(--bs-primary) !important;
        color: var(--bs-white) !important;
    }
    
    /* Ensure mobile menu text is always dark and visible */
    .navbar-light .navbar-nav .nav-link {
        color: var(--bs-dark) !important;
    }
    
    /* Fix any potential logo color issues on mobile */
    .navbar-light .navbar-brand img {
        filter: none;
        opacity: 1;
    }

    /* Center the 'Order Now' button inside collapsed mobile menu */
    .navbar-light .navbar-collapse {
        text-align: center;
    }
    .navbar-light .navbar-collapse > .btn {
        display: block !important; /* override d-inline-flex */
        margin: 12px auto 0 auto; /* center horizontally */
        float: none;
        width: max-content; /* shrink to content so auto margins work */
    }
}


/* Logo Transitions */
.navbar-logo {
    transition: all 0.5s ease;
}

/* Ensure logo is not color-altered anywhere */
#navbar-logo {
    filter: none !important;
}

/* Button Styles for Transparent Header */
.navbar-light .btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.sticky-top.navbar-light .btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

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

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 45%; /* slightly lower */
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
    height: 100vh; /* decreased overall hero height on desktop */
}

.carousel .carousel-inner .carousel-item img {
    height: 100vh; /* match desktop item height */
    object-fit: cover;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 85px;
    display: flex;
    align-items: center; /* vertically center */
    justify-content: center; /* horizontally center */
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: center;
    padding-right: 0;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: center;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 85px;
    display: flex;
    align-items: center; /* vertically center */
    text-align: center;
    justify-content: center; /* horizontally center */
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: center;
    padding-left: 0;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: center;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px; /* increased hero height on mobile */
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px; /* match mobile height */
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    /* Fallback for older browsers */
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/banner1.jpg);
    /* Prefer WebP when supported (JPEG first to avoid missing WebP) */
    background-image: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), image-set(
        url(../img/banner1.jpg) type("image/jpeg"),
        url(../img/banner1.webp) type("image/webp")
    );
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

/* Equal height columns for feature items */
.feature .row > [class^="col-"],
.feature .row > [class*=" col-"] {
    display: flex;
}

.feature .feature-item {
    height: 100%;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
    margin-top: auto; /* push button to bottom for consistent layout */
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px; 
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    /* Fallback for older browsers */
    background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)), url(../img/fact-bg.jpg);
    /* Prefer WebP when supported */
    background-image: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)), image-set(
        url(../img/fact-bg.webp) type("image/webp"),
        url(../img/fact-bg.jpg) type("image/jpeg")
    );
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start; /* align icon to first line top */
    gap: 8px;
}

/* Better multi-line alignment for icons in footer links */
.footer .footer-item a i {
    line-height: 2;
    margin-top: 2px; /* subtle nudge to visually center next to first line */
    flex: 0 0 auto;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

/* Footer logo sizing */
.footer-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 576px) {
    .footer-logo {
        max-height: 50px;
    }
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/



/* Logo Styles - NO SHRINKING */
.navbar-logo {
    max-height: 90px !important;
    transition: 0.5s;
}

/* Remove logo shrinking on sticky state */
.sticky-top .navbar-logo {
    max-height: 90px !important;
}

@media (max-width: 991.98px) {
    .navbar-logo {
        max-height: 60px !important;
    }
    
    .sticky-top .navbar-logo {
        max-height: 60px !important;
    }
}
