*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    /* outline: 1px solid rgba(0, 255, 0, 0.1); Light green borders for debugging */

}

  :root {
            --primary-red: #D71A21;
            --dark-bg: #111111;
            --light-bg: #f8f9fa;
            --text-dark: #212529;
            --text-light: #6c757d;
            --border-light: #dee2e6;
        }

      

      
    /* Custom Scrollbar Styles */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--primary-red), #A3141A);
        border-radius: 10px;
        border: 2px solid #f1f1f1;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #A3141A, #8B0000);
    }

    /* Firefox Scrollbar */
    * {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-red) #f1f1f1;
    }

    /* =========================================
   Global Styles
========================================= */
body {
    font-family: "Trirong", serif;
}
html {
    overflow-x: hidden;
}

.mega-menu-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.nev-ileft {
    border: 2px solid black;
    padding: 6px 18px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-collapse {
    text-align: center;
}

/* =========================================
   Hero Section (Carousel / Banner)
========================================= */
.hero {
    padding-top: 78px;
}

#heroCarousel {
    height: 100%;
}

.hero img,
.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 6s ease-in-out;
}

.carousel-item.active .hero-image {
    transform: scale(1.05);
}

/* Caption Styles */
.premium-caption {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    padding-bottom: 5rem;
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 10;
    /* background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.85) 100%
    ); */
}

.caption-content {
    max-width: 900px;
    padding: 0 5%;
}

.premium-caption h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.premium-caption p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.btn-hero {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-hero:hover {
    border-color: whitesmoke;
    background-color: #a02030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}



/* =========================================
   Animated Watermark and Scrolling Text
========================================= */
.watermark {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4vw;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.scroll-text {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    background: #f9f9f9;
    padding: 8px 0;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.scroll-text span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 45s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    50% { transform: translateX(-50%); }
    100% { transform: translateX(-100%); }
}

/* =========================================
   Circular Rotating Text
========================================= */
.circle-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
}

.circle-svg {
    width: 100%;
    height: 100%;
    animation: rotate-circle 15s linear infinite;
}

.circle-text {
    font-size: 16px;
    fill: #333;
    font-weight: bold;
    letter-spacing: 2px;
}

@keyframes rotate-circle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.center-number {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    font-weight: bold;
    color: red;
}

/* =========================================
   About Section
========================================= */
.about-section h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.about-section h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.video-container {
    width: 100%;
    height: 550px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   Stats Section
========================================= */
.stats {
    margin: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    border-left: 2px solid #dc3545;
    flex: 1 1 100%;
    width: 100%;
    transition: background 0.3s ease;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: red;
    margin-right: 20px;
    min-width: 80px;
    text-align: left;
}

.stat-label {
    font-weight: 500;
    color: #444;
    line-height: 1.3;
}

/* =========================================
   Sliders
========================================= */
.slider-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    height: 350px;
    align-items: center;
}

.slider-container img {
    min-width: 427px;
    height: 100%;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 10px;
}

.slider-wrapper2 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container2 {
    display: flex;
    gap: 10px;
    transition: transform 0.5s linear;
}

.slider-container2 img {
    height: 250px;
    width: 327px;
    border-radius: 10px;
}

/* =========================================
   Contact Form
========================================= */
.contact-section {
    padding: 60px 0;
}

.contact-left h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.contact-left p a {
    color: #d9534f;
    text-decoration: none;
}

.contact-left p a:hover {
    text-decoration: underline;
}

.form-control {
    margin-bottom: 15px;
}

.btn-submit {
    background-color: #d9534f;
    color: #fff;
}

/* =========================================
   Nav Pills Styling
========================================= */
/* --- Global Link Enhancement --- */
a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #495057; /* Neutral grey base */
}

a:hover {
    color: #d9534f; /* Premium deep blue on hover for all links */
}


/* Or if you want to style the nav-link instead */
.nav-item.active .nav-link {
    border-bottom: 4px solid #d9534f;
    color: #d9534f !important;
}

.dropdown-item {
    text-wrap: wrap;
    padding: 12px 20px;
    font-size: 1rem;
    color: #495057;
    border-left: 4px solid transparent;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover {
    color: #ffffff;
    background-color: #d9534f; /* Main accent color: Deep Blue */
    border-left-color: #ffc107; /* Gold accent line */
    transform: translateX(2px);
    box-shadow: 
        5px 0 10px rgba(0, 0, 0, 0.1),
        -5px 0 10px rgba(0, 123, 255, 0.4); /* Blue shadow for elegance */
}

.dropdown-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0) 50%
    );
}

/* Subtle gradient overlay for extra polish on hover */
.dropdown-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* A gentle background gradient for a "glossy" look */
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.05), /* Very slight white highlight */
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.05) /* Very slight dark shadow */
    );
}

.nav-pills .nav-link {
    color: #000;
    background-color: transparent;
    border-left: 4px solid transparent;
}

.nav-pills .nav-link.active {
    border-left: 4px solid red;
    background-color: #d9534f;
    color: #fff;
}

.nav-pills .nav-link:hover {
    border-left: 4px solid red;
    color: red;
}

.nav-pills .nav-link.active:hover {
    background-color: #d9534f;
    color: #fff;
}

/* =========================================
   Offcanvas / Footer
========================================= */
.offcanvas-body {
    position: relative;
    z-index: 1;
}

.offcanvas-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    /* width: 100%; height: 100%; */
    background-image: url('../images/tiger.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

footer,
.footer-bg {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-link:hover {
    color: #d9534f !important;
}

/* =========================================
   Product Section (Refined Design)
========================================= */
.products-header-section {
    background-color: #fff;
    padding-bottom: 3rem;
}

.products-heading-ref {
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #d9534f;
}

.products-title-ref {
    font-weight: 800;
    line-height: 1.2;
    color: #212529;
    max-width: 400px;
}

.illustration-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    text-align: end;
}

.truck-illustration {
    max-width: 60%;
    height: auto;
    z-index: 2;
}

.design-line {
    position: absolute;
    width: 250px;
    height: 10px;
    transform: rotate(-15deg);
    z-index: 1;
}
.product-cards-section {
    margin-top: -30px;
}

.product-card {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    padding: 2rem;
    color: #fff;
    transition: background 0.3s ease-in;
}

.product-card:hover .card-overlay {
    background: linear-gradient(
        to bottom right,
        rgba(220, 53, 69, 0.9) 0%,
        rgba(220, 53, 69, 0.9) 55%,
        rgba(220, 53, 69, 0.0) 55%
    );
}

.card-title-ref {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-subtitle-ref {
    font-size: 1rem;
    font-weight: 300;
}

.know-more-link {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    transition: all 0.2s ease-in-out;
}

.know-more-link:hover {
    color: #f0f0f0;
    padding-left: 5px;
}

/* =========================================
   Fade Carousel (Mini Banners)
========================================= */
/* Image settings */
.carousel-item img {
    height: 400px;
    width: 100%;
    object-fit: cover; /* Use 'cover' to fill area, 'contain' to preserve full image with possible gaps */
    transition: transform 0.5s ease;
}

/* Custom CSS for the Dark Overlay */
.carousel-overlay {
    position: relative;
    height: 100%;
}

.custom-dark-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Semi-transparent black color */
    /* background: rgba(0, 0, 0, 0.2);  */
     background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1; /* Ensure overlay is above image but below caption */
}

/* Ensure image and caption are positioned correctly */
.carousel-overlay img {
    position: relative;
    z-index: 0;
}

.carousel-caption {
    z-index: 2; /* Ensure text is above the overlay */
    padding-bottom: 2rem; /* Add more padding at the bottom for a better look */

}
/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 991.98px) {
    html, body { overflow-x: hidden; }

    .navbar-collapse { max-width: 100vw; overflow-x: hidden; }

    .navbar .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
        border: 0;
        background: transparent;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
        font-size: 25px;
        color: black;
    }

    .stats { display: flex; flex-wrap: wrap; }

    .station-img { width: 90%; padding-top: 40px; }

    .video-container { height: 250px; }

    .premium-caption h1 { font-size: 2.2rem; }
    .premium-caption p { font-size: 1rem; }
    .caption-content { padding: 0 1rem; }
    .premium-caption { padding-bottom: 3rem; }
}

@media (max-width: 767.98px) {
    .product-cards-section { margin-top: 0; }
}
.service-tile {
    transition: transform 0.3s ease; /* or 1s if you want a slower effect */
}

.service-tile:hover {
    transform: scale(1.05);
}
/* Testimonial Style */

    .testimonial {
    border-left: 5px solid #d72323;
    transition: box-shadow 0.3s ease;
    }

    .testimonial:hover {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 50%;
        background-color: rgba(0, 0, 0, 0.7);
    }


/* Testimonial Style End */

/* Whatsapp button Style */

.whatsapp_btn{
    display: block; 
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 40px;
    z-index: 8;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  
}
/* Whatsapp button Style End */

     /* --- Premium Service Tile Style --- */

    .service-tile-premium {
        /* Base styles for a card/tile look */
        padding: 30px 20px;
        background-color: #ffffff;
        border-radius: 12px;
        height: 100%; /* Ensures all tiles are the same height */
        
        /* Cohesive, subtle separation using box-shadow */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        
        /* Smooth transitions for a premium effect */
        transition: 
            transform 0.4s ease, 
            box-shadow 0.4s ease,
            background-color 0.4s ease;
    }

    .service-tile-premium:hover {
        /* Lifts the tile and darkens the shadow on hover for depth */
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        
        /* Optional: Subtle background change on hover */
        background-color: #f8f9fa; 
    }
/* About Page  */


  .circular-image-container {
            position: relative;
            width: 250px;
            height: 250px;
            margin: 0 auto;
        }
        
        .circular-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .stat-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 10px;
            background-color: #f8f9fa;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background-color: #fff;
        }
        
        .table th {
            background-color: #f8f9fa;
        }


/* About Page END */

/* Contact page */
 /* Base Responsive Styles */
        @media (max-width: 767.98px) {
            .contact-hero {
                text-align: center;
            }
            .contact-illustration {
                max-height: 200px !important;
                margin-bottom: 1.5rem;
            }
            .hero-buttons {
                justify-content: center;
            }
            .map-container {
                height: 250px;
            }
        }

        /* Contact Hero Styles */
        .contact-hero {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
        }
        .hero-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8f9fa' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") center bottom no-repeat;
            background-size: cover;
            z-index: 0;
        }

        /* Contact Info Cards */
        .contact-info-card {
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
            border-left-color: var(--bs-danger);
        }
        .icon-box {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (min-width: 992px) {
            .icon-box {
                width: 60px;
                height: 60px;
            }
        }

        /* Map Container */
        .map-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
        }
        .map-iframe {
            filter: grayscale(20%) contrast(1.1);
            transition: filter 0.3s ease;
        }
        .map-container:hover .map-iframe {
            filter: grayscale(0%) contrast(1);
        }
        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

      

        /* Business Hours Cards */
        .hours-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .hours-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: var(--bs-danger);
        }

        /* Utility Classes */
        .bg-danger-soft {
            background-color: rgba(13, 110, 253, 0.1);
        }
        .z-index-1 {
            z-index: 1;
        }
/* Contact page END */

/* Services Page */

 /* Hero Section Styles */
        .services-hero {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
        }
        .hero-wave {
            position: absolute;
            bottom: 0; /* Add back bottom: 0 to anchor the wave correctly */
            left: 0;
            width: 100%;
            height: 60%; /* Define the height of the visible wave area */
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8f9fa' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") center bottom no-repeat;
            background-size: cover;
            z-index: 0;
        }
        .floating-shapes {
            position: relative;
            height: 400px;
            z-index: 1;
        }
       
        .hero-3d-img {
            position: absolute;
            max-width: 100%;
            height: auto;
            bottom: 0;
            right: 0;
            animation: float 5s ease-in-out infinite;
        }
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
/* Services Page END*/