/********** Template CSS **********/
:root {
    --primary: #da2626;
     --primary-dark: #a51e1e;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
    --bg-white: #ffffff;

    --brand-blue: #da2626;
        --brand-dark-blue: #a51e1e; /* Darker shade for gradient */
        --text-grey: #555;
        --light-bg: #f8f9fa;
         --glass-bg: rgba(218, 38, 38, 0.85); /* Glass version of primary red */

/* extra */

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--brand-dark-blue) !important;
    border-color: var(--brand-dark-blue) !important;
}


}


 body {
            font-family: 'Roboto', sans-serif;
            padding-top: 0px!important; /* Space for fixed header */
        }

        /* --- Animations --- */


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}

/******/
/* 1. Truck Loader Animation */
        .loader-container {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #fff;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s;
        }

        .loader-container.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .truck-loader {
            width: 200px;
            height: 100px;
            position: relative;
        }

        .truck-body {
            width: 100%;
            height: 70px;
            background: var(--primary);
            border-radius: 10px 30px 0 0;
            position: absolute;
            bottom: 20px;
            animation: bounce 1s infinite alternate;
        }

        .truck-window {
            width: 40px;
            height: 30px;
            background: #fff;
            position: absolute;
            right: 20px;
            top: 10px;
            border-radius: 5px;
        }

        .truck-logo {
            color: #fff;
            font-weight: bold;
            position: absolute;
            left: 20px;
            top: 25px;
            font-size: 1.2rem;
        }

        .wheel {
            width: 36px;
            height: 36px;
            background: #333;
            border-radius: 50%;
            position: absolute;
            bottom: 0;
            border: 3px solid #ddd;
            animation: spin 1s linear infinite;
        }

        .wheel.back { left: 30px; }
        .wheel.front { right: 30px; }

        .road {
            position: absolute;
            bottom: 10px;
            width: 100%;
            height: 2px;
            background: #333;
            z-index: -1;
        }

        @keyframes spin {
            100% { transform: rotate(360deg); }
        }

        @keyframes bounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-3px); }
        }

        /* 2. Staggered Entrance Animation */
        .animate-on-load {
            opacity: 0;
            transform: translateY(-20px);
            animation: slideInFade 0.8s forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

        @keyframes slideInFade {
            to { opacity: 1; transform: translateY(0); }
        }

        /* 3. Micro-interactions */
        .icon-hover-ring:hover .fa-phone {
            animation: ring 0.5s ease;
            color: var(--light);
        }

        .icon-hover-shake:hover .fa-envelope {
            animation: shake 0.5s ease;
            color: var(--light);
        }

        @keyframes ring {
            0% { transform: rotate(0); }
            20% { transform: rotate(15deg); }
            40% { transform: rotate(-15deg); }
            60% { transform: rotate(10deg); }
            80% { transform: rotate(-10deg); }
            100% { transform: rotate(0); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px) rotate(-5deg); }
            75% { transform: translateX(5px) rotate(5deg); }
        }


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    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;
}



/* --- Header Styling --- */
        
        /* Topbar */
        .topbar {
            /* background: linear-gradient(90deg, #1a1a1a 0%, #333 100%); */
             background: var(--primary);
            border-bottom: none;
            font-size: 0.85rem;
            color: var(--light);
            position: relative; z-index: 1;;
        }

        .topbar a {
            color: var(--light);
            text-decoration: none;
            transition: 0.3s;
        }

        .topbar a:hover {
            color: lightgray;
            text-shadow: 0 0 5px rgba(218, 38, 38, 0.5);
        }

        .social-icons a {
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-left: 5px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Brand & Contact Area */
        .brand-area {
            background: #fafafa;
            padding: 5px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            z-index: 10;
        }

        .contact-info-box {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 10px;
            border-radius: 8px;
            transition: 0.3s;
        }

        .contact-info-box:hover {
            background: #f9f9f9;
        }

        .icon-box {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(218, 38, 38, 0.1);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-right: 15px;
            transition: 0.3s;
        }

        .contact-info-box:hover .icon-box {
            background: var(--primary);
            color: #fff;
        }

        .info-text h6 {
            font-weight: 700;
            margin-bottom: 2px;
            font-size: 0.95rem;
            color: #333;
        }

        .info-text p {
            margin: 0;
            font-size: 0.8rem;
            color: var(--text-grey);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Navbar Creative Styles */
        .navbar-custom {
            background: var(--bg-white);
            padding: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        /* Scroll Effect Class */
        .navbar-custom.scrolled {
            background: rgba(218, 38, 38, 0.9);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.4s ease forwards;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }




/*** Navbar ***/
/* .navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 6px 20px;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    border-radius: 24px;
}
.navbar-collapse{ padding: 10px 0;}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
    background-color: rgba(255,255, 255,0.7);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
} */


/* Navbar Creative Styles */
        .navbar-custom {           
            padding: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        /* Scroll Effect Class */
        .navbar-custom.scrolled {
            background: rgba(218, 38, 38, 0.9);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.4s ease forwards;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            padding: 10px 20px !important;
            position: relative;
            overflow: hidden;
            transition: 0.3s;
        }

        /* Sliding Line Effect */
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .nav-link:hover, .nav-link:focus {
            background: rgba(255,255,255,0.1);
            color: var(--primary);
            letter-spacing: 1px;
        }

        .btn-business {
            background: var(--primary);
            color: var(--light);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            padding: 4px 22px;
            border-radius: 30px;
            transition: 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .btn-business:focus{
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);

        }

        .btn-business:hover {
            transform: scale(1.05);
            background: var(--primary);
            color: var(--light);
        }

        /* Mobile Menu Tweak */
        .navbar-toggler {
            border: none;
            display: none;
            /* filter: invert(1); */
        }

        /* Placeholder styling for demo */
        .placeholder-content {
            height: 100vh;
            background: #f4f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            font-size: 2rem;
        }




/*** Header ***/
#main-header{ border-top: 1px solid #da2626;}
.stickyheader{ position:fixed; top: 0; z-index: 99; width: 100%;        
    animation: slideDown 0.4s ease forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}



#header-carousel .carousel-caption {
    top: -100px!important;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


.carousel-item{ max-height: 85vh;}
.gradient-bg { background: linear-gradient(90deg, rgba(0,156,255,0.12), rgba(0,156,255,0.03));}
.glass-bg {
   background: rgba(255, 255, 255, 0.7);
   backdrop-filter: blur(8px);
   border: 1px solid rgba(0, 156, 255, 0.2);
}
.hero-services .service-list span {
   display: block;
   font-size: 0.875rem;
   line-height: 1.6;
   margin-bottom: 6px;
}

.hero-services i {
   color: #00d084;
   margin-right: 8px;
   font-size: 14px;
}

.hero-btn {
   font-size: 13px;
   padding: 7px 18px;
   border-radius: 30px;
}



@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 40px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*** Creative Header Carousel Styles (Reduced Height) ***/

/*** Creative Header Carousel Styles (Reduced Height) ***/

/* 1. Main Carousel Settings - ADJUSTED HEIGHT HERE */
#header-carousel {
    position: relative;   
    min-height: 400px; /* Reduced from 500px to 400px */
    overflow: hidden;
}

.carousel-item {
    height: 100%;
    width: 100%;
}

/* 2. Ken Burns Effect (Slow Zoom) */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 20s infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* 3. Caption Positioning */
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Modern Gradient Overlay */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)); 
    z-index: 2;
}

/* 4. Glassmorphism Panel */
.glass-panel {
    background: rgba(0, 0, 0, 0.6); /* Darker background for better contrast with small text */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    max-width: 800px; /* Slightly narrower */
    width: 90%;
    
    /* Force specific padding to ensure it fits in 60vh height */
    padding: 15px 20px !important; 
}

/* 2. Typography Overrides - Make everything smaller */
.glass-panel h1, 
.glass-panel h2, 
.glass-panel h3 {
    font-size: 1.5rem; /* Force small heading size */
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.glass-panel p {
    font-size: 0.85rem; /* Small paragraph text */
    margin-bottom: 5px;
    line-height: 1.4;
}

.glass-panel h4 {
    font-size: 0.75rem; /* Very small sub-heading */
    letter-spacing: 1px;
}

/* 5. Text Animations (Initial State) */
.anim-text-title,
.anim-text-desc,
.anim-text-sub,
.anim-list-item,
.anim-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth easing */
}

/* 6. Text Animations (Active State) */
.carousel-item.active .anim-text-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.carousel-item.active .anim-text-sub {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.carousel-item.active .anim-text-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* List Item Staggered Delays */
.carousel-item.active .anim-list-item.d-1 { opacity: 1; transform: translateX(0); transition-delay: 0.7s; transform: translateX(-20px); }
.carousel-item.active .anim-list-item.d-2 { opacity: 1; transform: translateX(0); transition-delay: 0.8s; transform: translateX(-20px); }
.carousel-item.active .anim-list-item.d-3 { opacity: 1; transform: translateX(0); transition-delay: 0.9s; transform: translateX(-20px); }
.carousel-item.active .anim-list-item.d-4 { opacity: 1; transform: translateX(0); transition-delay: 1.0s; transform: translateX(-20px); }
.carousel-item.active .anim-list-item.d-5 { opacity: 1; transform: translateX(0); transition-delay: 1.1s; transform: translateX(-20px); }

.carousel-item.active .anim-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.3s;
}

/* 7. Hero Services List */
.hero-services .service-list span {
    font-size: 0.875rem; /* Smaller font for list */
    line-height: 1.4; /* Tighter line height */
    margin-bottom: 2px;
    padding: 2px 0;
}

.hero-services i {
    font-size: 12px; /* Smaller icon */
    margin-right: 6px;
}

/* 4. Adjust Container Spacing */
.hero-services .container {
    padding: 0; /* Remove default padding inside glass panel */
}

/* 8. Buttons */
.btn-glow {
    transition: 0.3s;
    border: 1px solid transparent;
}

.btn-glow:hover {
    background-color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-2px);
}

/* 9. Indicators & Controls */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(255,255,255,0.5);
    margin: 0 5px;
    transition: 0.3s;
}

.carousel-indicators .active {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 50%;
    transition: 0.3s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: var(--primary);
    background-size: 50%;
    border: 2px solid #fff;
}

/* Mobile Adjustments - ADJUSTED HEIGHT HERE */
@media (max-width: 992px) {
   .glass-panel {
        width: 95%;
        padding: 12px !important;
    }
    
    .glass-panel h1, 
    .glass-panel h2, 
    .glass-panel h3 {
        font-size: 1.25rem; /* Even smaller on mobile */
    }

    .hero-services .service-list span {
        font-size: 12px;
    }
}

.carousel-control-prev, .carousel-control-next{ z-index: 11;;}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
/* .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
} */



/* --- Split Screen Layout --- */
        .split-hero {
            display: flex;
            flex-wrap: wrap;
            /* min-height: 85vh; */
            background: var(--dark);
            position: relative;
        }

        /* Left Side: Text Content (Dark Background) */
        .split-left {
            flex: 0 0 50%; /* 50% width on desktop */
            max-width: 50%;
            background-color: var(--dark);
            padding: 40px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        /* Right Side: Image (Full Height) */
        .split-right {
            flex: 0 0 50%;
            max-width: 50%;
            background-image: url('../img/warehouse.jpg'); /* Replace with your image */
            background-size: cover;
            background-position: center;
            min-height: 400px;
            position: relative;
        }

        /* Decorative Red Overlay on Image Side */
        .split-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--dark) 0%, transparent 100%);
            z-index: 1;
        }

        /* --- Typography --- */
        .pre-title {
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.7rem;
            margin-bottom: 20px;
            display: inline-block;
            border: 1px solid var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .main-title span {
            color: var(--primary);
        }

        .description {
            font-size: 1.1rem;
            color: #ccc; /* Light grey for dark mode */
            line-height: 1.8;
            margin-bottom: 40px;
            border-left: 3px solid var(--primary);
            padding-left: 20px;
        }

        /* --- Buttons --- */
        .btn-white {
            background-color: #fff;
            color: var(--dark);
            padding: 15px 40px;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .btn-white:hover {
            background-color: var(--primary);
            color: #fff;
            transform: translateX(10px);
        }

        /* --- Stats Bar (Floating) --- */
        .stats-bar {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            line-height: 1;
        }

        .stat-item h3 span {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .stat-item p {
            margin: 0;
            color: #aaa;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- Animations --- */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in-up.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 991px) {
            .split-left, .split-right {
                flex: 0 0 100%;
                max-width: 100%;
            }
            .split-left {
                padding: 60px 30px;
                order: 2; /* Image on top, text below for mobile */
            }
            .split-right {
                min-height: 300px;
                order: 1;
            }
            .main-title { font-size: 2.5rem; }
            .stats-bar { flex-wrap: wrap; gap: 20px; }
        }







/* --- Service Card Styling --- */
        .service-item {
            background: #fff;
            border-radius: var(--card-radius);
            border: 1px solid #eee; /* Subtle border */
            overflow: hidden; 
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            text-decoration: none; 
            color: inherit;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(218, 38, 38, 0.15); /* Red tinted shadow */
            border-color: transparent;
        }

        /* Image Container */
        .img-wrapper {
            position: relative;
            overflow: hidden;
            height: 240px; 
        }

        .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        /* Hover: Zoom Image */
        .service-item:hover .img-wrapper img {
            transform: scale(1.15);
        }

        /* Overlay on Image */
        .img-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(37, 37, 37, 0.4); /* Dark overlay */
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-item:hover .img-overlay {
            opacity: 1;
        }

        .img-overlay i {
            font-size: 2rem;
            color: #fff;
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            background: var(--primary); /* Brand Red Background */
            width: 60px;
            height: 60px;
            line-height: 60px;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 5px 15px rgba(218, 38, 38, 0.4);
        }

        .service-item:hover .img-overlay i {
            transform: scale(1);
        }

        /* Content Area */
        .service-content {
            padding: 30px;
            position: relative;
            z-index: 1;
            background: #fff;
            flex-grow: 1;
        }

        /* Red Bar Animation */
        .icon-bar {
            width: 40px;
            height: 4px;
            background: var(--primary);
            margin-bottom: 15px;
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .service-item:hover .icon-bar {
            width: 100%;
        }

        .service-item h4 {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }

        .service-item:hover h4 {
            color: var(--primary); /* Turns Red on hover */
        }

        .service-item p {
            color: var(--text-grey);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Read More Button Styling */
        .read-more-btn {
            display: inline-block;
            margin-top: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .read-more-btn i {
            margin-left: 5px;
            transition: margin-left 0.3s ease;
        }

        .service-item:hover .read-more-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .service-item:hover .read-more-btn i {
            margin-left: 10px;
        }

        /* --- Entrance Animations --- */
        .reveal {
            opacity: 1;
            transform: translateY(10px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
.carousel-indicators{ z-index: 11;}



/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/****** Contact Us *********/

 /* --- Creative Card Styles --- */
       /* The Card Container */
    .location-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        text-align: center;
    }

    /* Hover Effect: Card lifts up */
    .location-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 156, 255, 0.15); /* Blue shadow on hover */
    }

    /* Header Styling (Your Requested Color) */
    .location-header {
        /* Gradient using your requested #009CFF */
       background: linear-gradient(
    135deg,
    #da2626 0%,
    #8f1d1d 100%
);

        padding: 10px 0;
        color: white;
        margin-bottom: 0;
        position: relative;
    }

    /* The small triangle at bottom of header (Optional creative touch) */
    .location-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid var(--brand-dark-blue);
    }

    .location-header h3 {
        margin: 0;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #fff;
    }

    /* Card Body Content */
    .card-body-content {
        padding: 25px 20px;
    }

    /* Company Name Styling */
    .company-name {
        font-size: 0.7rem;
        font-weight: 700;
        color: #aaa;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
        display: inline-block;
    }

    /* Address Styling */
    .address-text {
        font-size: 0.95rem;
        color: var(--text-grey);
        line-height: 1.5;
        margin-bottom: 20px;
        min-height: 70px;
    }
    
    .address-text i {
        color: var(--brand-blue);
        margin-bottom: 10px;
        display: block;
        font-size: 1.2rem;
    }

    /* Phone Number Box */
    .phone-box {
        background-color: var(--light-bg);
        border-radius: 6px;
        padding: 12px;
        border: 1px solid #e9ecef;
    }

    .phone-box a {
        display: block;
        text-decoration: none;
        color: #333;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 5px;
        transition: color 0.2s;
    }

    .phone-box a:hover {
        color: var(--brand-blue);
    }
    
    .phone-box i {
        color: var(--brand-blue);
        margin-right: 5px;
    }

    /*******************/

/****** Mission and Vission design *********/

      
.list-unstyled-cust .list-item{display:flex;align-items:center;margin-bottom:12px;font-size:.95rem;color:var(--brand-dark)}
.list-unstyled-cust .list-item i{color:var(--brand-blue);margin-right:10px;opacity:.8}


/*** Creative Core Values Styles ***/

.corevalues-section {
    background-color: #f9f9f9;
}

/* 1. The Card Base */
.value-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    height: 100%;
    z-index: 1;
    overflow: hidden; /* For the reveal effect */
}

/* 2. Hover Effect - Lift and Shadow */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(218, 38, 38, 0.15); /* Red shadow */
    border-bottom: 3px solid var(--primary);
}

/* 3. The Floating Icon Circle */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(218, 38, 38, 0.08); /* Light Red */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem; /* Slightly smaller than fa-4x for elegance */
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
}

/* Icon Float Animation on Load */
.icon-wrapper {
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 4. Icon Hover Transformation */
.value-card:hover .icon-wrapper {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg) scale(1.1); /* 3D Flip + Scale */
}

/* 5. Title Styles */
.value-card h5 {
    color: #333;
    font-size: 1.1rem;
    transition: 0.3s;
}

.value-card:hover h5 {
    color: var(--primary);
}

/* 6. Hidden Description (Reveal on Hover) */
.hover-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.value-card:hover .hover-desc {
    max-height: 100px; /* Adjust based on text length */
    opacity: 1;
    margin-top: 10px;
}

/* 7. Background Pattern (Optional Creative Touch) */
.corevalues-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(#ddd 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

/* Ensure content is above pattern */
.corevalues-section .container {
    position: relative;
    z-index: 2;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .value-card:hover {
        transform: translateY(-5px); /* Less lift on mobile */
    }
}




    /*********** OTHER STYLE  *************/

.breadcrumb-item+.breadcrumb-item:hover .text-secondary{ color: #000!important;}
.corevalues .col-lg-3 {width: 20%;}
.modal .modal-header {background: var(--primary) !important;}
.modal-header .btn-close{ color: #fff;filter: invert(1);}

.navbar-toggler i.fa-bars{ display: none;}
.navbar-toggler i.fa-times{ display: block;}
.navbar-toggler.collapsed i.fa-bars{ display: block!important;}
.navbar-toggler.collapsed i.fa-times{ display: none;}



/* --- RESPONSIVE MEDIA QUERIES --- */
        @media (min-width: 1200px) {
  .display-6 {
    font-size: 1.8rem;
  }
}

@media(max-width:991px) {
.desktopview{ display: none;}
 .logowrap{ display: flex;}
  .logowrap .navbar-toggler{ margin-left: auto; height: 30px !important; margin-top: 20px; display: block; }
  .navbar-expand-lg .navbar-collapse.collapse.show {
    height: 90vh;
    overflow: auto;
    /* position: fixed; */
    padding-bottom: 50px;
}
.navbar-toggler:focus{ box-shadow: none;}
/* .navbar-toggler i.fa-bars{ display: none;}
.navbar-toggler i.fa-times{ display: block;} */
.navbar-toggler{ display: block;}

  /* --- Mobile Menu Contact Styling --- */
.navbar-contact-dark {
    background-color: rgba(0,0,0,0.2); /* Slight darkening behind contact info in menu */
    border-radius: 5px;
    margin-top: 20px;
}
.nav-link::after{ display: none;}
/* Override default styles for items inside the mobile menu */
.navbar-contact-dark .contact-info-box {
    background: transparent; /* Remove grey background */
    justify-content: flex-start; /* Align left */
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Subtle separator */
    padding: 8px 0;
}

.navbar-contact-dark .info-text p {   
    font-size: 0.7rem; /* Smaller font */
    margin-bottom: 0;
}

.navbar-contact-dark .info-text h6 {  
    font-size: 0.95rem;
    margin-bottom: 0;
}

.navbar-contact-dark .icon-box {
    /* background: rgba(255,255,255,0.1);  */
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    margin-right: 12px;
}


  
}

    @media(max-width:767px) {
        .corevalues .col-lg-3{ width:50%;}
        
        .stickyheader{ position: static;}
       
       
    }

        /* Extra Small Devices (phones, less than 576px) */
        @media (max-width: 575.98px) {
            .brand-area .container { padding: 0 10px; }
            
            /* Stack contact boxes vertically */
            .contact-info-box {
                justify-content: flex-start;
                background: #fff;
                border: 1px solid #eee;
                margin-bottom: 5px;
                padding: 8px;
            }
            .icon-box { width: 35px; height: 35px; font-size: 0.9rem; }
            
            .navbar-brand img { height: 40px !important; } /* Smaller logo on mobile */
            
            /* Navbar Mobile Adjustments */
            .navbar-collapse {
                background: rgba(26, 26, 26, 0.98);
                padding: 20px;
                margin-top: 10px;
                border-radius: 8px;
            }
            .nav-link { padding: 6px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .nav-link::after { display: none; } /* Remove underline on mobile */
            
            .d-flex { justify-content: center; margin-top: 20px; }
            .btn-business { width: 100%; margin-bottom: 10px; text-align: center; }

            /* Hero Adjustments */
            .glass-panel { padding: 20px; width: 95%; }
            .glass-panel h1 { font-size: 1.5rem; }

            .logowrap .navbar-toggler{ margin-top: 6px;}

        }


 @media (min-width: 991.99px) and (max-width: 1279px) {
html {
    font-size: 0.9rem;
  }
 }

        /* Medium Devices (Tablets, 768px and up) */
        @media (min-width: 768px) and (max-width: 991.98px) {
            .contact-info-box { flex-direction: column; text-align: center; justify-content: center; }
            .icon-box { margin-right: 0; margin-bottom: 5px; }
            .info-text { text-align: center; }
           
        }
