/* General Styles */
:root {
    --primary-color: #ffc764;
    --secondary-color: #ffffff;
    --dark-color: #000000;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden !important;
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    transition: all 0.3s ease;
}

.header.sticky {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .navbar {
    padding: 15px 0;
} */

.logo {
    height: 40px;
    width: auto;
}

.nav-link {
    color:white;
    margin: 0 10px;
    transition: color 0.3s ease;
}


.nav-link:active {
    color:rgb(244, 209, 11) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}


.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    margin-right: 5px;
}

.quote-btn {
    padding: 8px 20px;
    border-radius: 30px;
}

/* Banner Section */
.banner-section {
    /* margin-top: 70px; */
}

.banner-slider .swiper-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 150px 0;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* What We Are Section */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
   
}

.footer h4 {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
   
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-toggler {
        border: none;
        padding: 0;
        color: white;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .offcanvas {
        background: var(--dark-color);
    }

    .offcanvas .nav-link {
        color: white;
    }

    .offcanvas-title {
        color: white;
    }

    .btn-close {
        filter: invert(1);
    }
}












.service-card .icon i {
    color: var(--primary-color);
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}
.btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}
/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

.banner-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-slider, .swiper-slide {
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

.banner-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 250px 0;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content .subtitle {
    display: inline-block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.banner-content .btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .banner-content .lead {
        font-size: 1.1rem;
    }
    .banner-content {
        padding: 120px 0;
    }
}

/* About Section Styles */
.about-img {
    position: relative;
    padding: 20px;
}

.about-img img{
    position: relative;
    padding: 0px;
    min-height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    right: 0;
    bottom: 30px;
    background: var(--primary-color);
    color: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
}

.experience-badge .text {
    font-size: 1rem;
}

/* Services Section Styles */
.service-card {
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #333;
    padding: 20px 10px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.3);
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
    margin: 5px 0;
}

.service-features li {
    color: #fff;
    text-align: left;
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
}

.service-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-description {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Smoother Button Animation Styles */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.8s ease;  /* Increased duration */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background-color: #000;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);  /* Slower, smoother transition */
    z-index: -1;
    transform: translateX(-50%);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:hover {
    color: var(--primary-color) !important;
}

/* Primary Button Specific Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transition: all 0.8s ease;  /* Slower transition */
}

.btn-primary:hover {
    border-color: var(--primary-color);
}

/* Outline Button Specific Styles */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.8s ease;  /* Slower transition */
}

.btn-outline-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
}

/* Service Card Button Specific Styles */
.service-card .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    margin-top: 15px;
    width: 45%;
    transition: all 0.8s ease;  /* Slower transition */
}

.service-card .btn-outline-primary:hover {
    border-color: var(--primary-color);
}

/* Services Section Dark Theme */
.services-section {
    background-color: #da9b03;
    color: #fff;
    padding: 80px 0;
}

.services-section .section-title,
.services-section .subtitle,
.services-section .section-description {
    color: #fff;
}

/* Update section spacing and animations */
.services-section .row {
    margin-top: 50px;
}

.services-section .subtitle {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.services-section .section-description {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section .section-title {
        font-size: 2.2rem;
    }
    .service-card {
        padding: 30px 20px;
    }
}

/* What We Are Section Styles - Light Theme */
.what-we-are {
    background-color: #f8f9fa;
    color: #333;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.what-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,215,0,0.05) 0%, rgba(255,215,0,0.1) 100%);
    z-index: 1;
}

.what-we-are .container {
    position: relative;
    z-index: 2;
}

.what-we-are .section-title {
    color: #222;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.what-we-are .section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.stat-card {
    background: #f6f2f2;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background-color: #1a1a1a;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255,215,0,0.1);
    background-color: #1a1a1a;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.stat-content h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-content p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.05;
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-bg-icon {
    transform: rotate(0deg);
    opacity: 0.08;
}

/* Counter Animation */
.counter {
    display: inline-block;
    position: relative;
    background: linear-gradient(45deg, #222, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter::after {
    content: '+';
    position: absolute;
    top: 0;
    right: -20px;
    color: var(--primary-color);
    font-size: 2rem;
    -webkit-text-fill-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .what-we-are {
        padding: 60px 0;
    }

    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .stat-content h3 {
        font-size: 2.8rem;
    }

    .what-we-are .section-title {
        font-size: 2.2rem;
    }
}

/* Additional Enhancements */
.what-we-are .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-below{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

/* .what-we-are .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
} */

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

/* Footer Styles */
.footer {
    position: relative;
    color: #fff;
}

.footer-bg {
    background-image: url('./images/lbg-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 40px;
    position: relative;
}

.footer-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85));
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    color: #ccc;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 5px;
}

.contact-info h5 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.contact-info p {
    color: #ccc;
    margin: 0;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    position: relative;
}

.footer-below {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-below p {
    color: #ccc;
}

.footer-below a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-below a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-widget {
        text-align: center;
    }

    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-below {
        flex-direction: column;
        text-align: center;
    }
}

/* Loader Styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-content {
    text-align: center;
}

.truck-container {
    position: relative;
    width: 300px;
    height: 80px;
    margin: 0 auto 0px;
}

.truck {
    position: relative;
    animation: truck-move 3s infinite linear;
}

.truck-body {
    position: relative;
    width: 150px;
    height: 60px;
}

.cabin {
    position: absolute;
    width: 40px;
    height: 35px;
    background: var(--primary-color);
    bottom: 0;
    right: 0;
    border-radius: 5px;
}

.window {
    position: absolute;
    width: 20px;
    height: 15px;
    background: #333;
    top: 5px;
    left: 5px;
    border-radius: 3px;
}

.trailer {
    position: absolute;
    width: 100px;
    height: 45px;
    background: var(--primary-color);
    bottom: 0;
    right: 45px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trailer .text {
    color: #000;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.wheel {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #333;
    border: 3px solid #666;
    border-radius: 50%;
    bottom: -8px;
    animation: wheel-rotate 1s infinite linear;
}

.wheel.front {
    right: 15px;
}

.wheel.back {
    left: 15px;
}

.road {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #333;
    bottom: 8px;
    overflow: hidden;
    border-radius: 2px;
}

.lines {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    background-image: linear-gradient(
        to right,
        var(--primary-color) 50%,
        transparent 50%
    );
    background-size: 20px 100%;
    animation: road-move 1s infinite linear;
}

.loading-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 20px;
}

.dots {
    animation: dots 1.5s infinite;
}

@keyframes truck-move {
    0% {
        transform: translateX(-150px);
    }
    100% {
        transform: translateX(150px);
    }
}

@keyframes wheel-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes road-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20px);
    }
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}

/* Add this to hide loader when page is loaded */
.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Add shadow effect */
.truck-body::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    filter: blur(5px);
    border-radius: 50%;
    animation: shadow-move 3s infinite linear;
}

@keyframes shadow-move {
    0%, 100% {
        transform: scaleX(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 0.8;
    }
}





.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent; /* Default transparent */
  }
  
  .header.sticky {
    background: black; /* Black background on scroll */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  



  [id] {
  scroll-margin-top: 10px !important; /* Adjust this to the actual height of your navbar */
}
