@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primary-color: #ffde59; 
    --primary-dark: #f7b511; 
    --secondary-color: #333333;
    --light-color: #f8f8f8;
    --dark-color: #222222;
    --text-color: #333333;
    --white: #ffffff;
    --gray: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: rgb(252, 252, 252);
    font-size: 16px;
    font-style: normal;
}

.mobile-only{
    display: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
   
}

.header-container{
   
    max-width: 1240px;
    
}



h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
   
}

h1, h2{
    font-family: "Black Ops One", system-ui !important;
}

h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

section {
    padding: 7rem 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Header Styles */
header {
    background-color: black;
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: "Black Ops One", system-ui !important;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    max-height: 80px;
}

.logo img {
    max-height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
   
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.contact-icon a {
    background-color: var(--primary-color);
    color: var(--white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-icon a:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Overlay Styles */
.screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.99);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 1s ease-in-out;
}

/* Logo animation */
.header-logo-container{
    width: auto;
    height: 300px; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease-in-out;
}

.header-logo-container img {
    height: 100%;
    transition: height 1s ease-in-out;
}

/* Move logo to header inside container */
.move-logo {
    top: 15px !important;
    left: calc(50% - 620px + 2rem) !important;
    transform: none !important;
    height: 80px !important;
}

/* Hide overlay */
.hide-overlay {
    opacity: 0;
    pointer-events: none;
}

.header-logo{
    opacity: 0;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 100vh;
    color: var(--white);
    display: flex;
    align-items: center;
    margin-top: 78px; 
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-container video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-container .fallback-img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
  width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    max-width: 600px;
    margin-left: 10%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    top: -4%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* 
.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 4px;
    background-color: var(--primary-color);
} */

.call-to-action {
    padding: 0.5rem 1.2rem;
    background-color: var(--primary-color);
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.call-to-action:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.call-to-action p {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0;
    text-align: center;
}

/* About Section with Scroll Animations */
.about {
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}



.about .container {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Animation styles for About section */
.about .logo-container,
.about h2,
.about h3,
.about p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.about .logo-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    transition-delay: 0s;
}

.about .circular-logo {
    width: 180px;
    /* height: 100px; */
    margin-bottom: 1.5rem;
}

.about h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    font-weight: 600;
    transition-delay: 0.2s;
}

.about .highlight {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    transition-delay: 0.4s;
    font-weight: 400;
    text-align: justify;
}

.about p:nth-of-type(1) {
    transition-delay: 0.6s;
}

.about p:nth-of-type(2) {
    transition-delay: 0.8s;
}

.about p:nth-of-type(3) {
    transition-delay: 1s;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Animation class that gets added via JavaScript */
.about .logo-container.animate,
.about h2.animate,
.about h3.animate,
.about p.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Why Us Section */
.why-us {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: black;
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 0; 
    background: black;
}


.why-us::before {
    content: '';
    position: absolute;
        top: -86px;
        right: -62px;
        width: 150px;
        height: 150px;
        background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
        animation: float 8s ease-in-out infinite;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }



@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.why-us .container {
    z-index: 2;
    position: relative;
    
}

.why-us-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding-bottom: 5rem;
}

.text-content {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-us h2 {
    color: black;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
}

/* .why-us h2:hover::after {
    width: 100%;
} */

.why-us .main-content h3 {
    color: black;
    font-size: 1.2rem;
    margin-bottom:0;
    line-height: 1.3;
    font-weight: 500;
}

.why-us p {
    color: black;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.feature.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateX(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature .icon {
    /* background-color: rgba(0, 0, 0, 0.1); */
    width: 60px;
    /* height: 60px; */
    border-radius: 50%;
    display: flex
;
    /* align-items: center; */
    /* justify-content: center; */
    transition: all 0.3s ease;
}

/* .feature:hover .icon {
    background-color: rgba(0, 0, 0, 0.2);
    transform: rotate(10deg);
} */

.feature .icon img {
    width: 30px;
    height: 30px;
    /* filter: invert(1); */
    transition: all 0.3s ease;
}

.feature:hover .icon img {
    transform: scale(1.1);
}

.feature .feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature .feature-text h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease;
}

.feature:hover .feature-text h4::after {
    width: 60px;
}

.feature .feature-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.br-trucks-image {
    width: 100%;
    height: 70vh;
    background-color: var(--dark-color);
    overflow: hidden;
    position: relative;
    display: flex;
    scale: 1.03;
 
}

/* .br-trucks-image:hover {
    transform: translateY(-5px);
} */

.br-trucks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%; /* Adjust vertical positioning to show the best part of the image */
    transition: transform 0.8s ease;
}



.br-trucks-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
}

/* Responsive styles for Why Us section */
@media (max-width: 1200px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .why-us-content {
        flex-direction: column;
    }
    
    .text-content {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .br-trucks-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .br-trucks-image {
        height: 280px;
    }
    
    .why-us h2 {
        font-size: 1.3rem;
    }
    
    .why-us .main-content h3 {
        font-size: 1.8rem;
    }

    .feature {
        opacity: 0;
        transform: translateX(-100%);
    }

    .feature.animate {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .feature:nth-child(1) { transition-delay: 0.2s; }
    .feature:nth-child(2) { transition-delay: 0.4s; }
    .feature:nth-child(3) { transition-delay: 0.6s; }
    .feature:nth-child(4) { transition-delay: 0.8s; }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .truck-image, .team-icon {
        width: 200px;
    }

    .fleet-list {
        flex-direction: column;
    }

    .fleet-list ul {
        flex: 0 0 100%;
        margin-bottom: 0rem;
    }

    .downloads {
        flex-direction: column;
        align-items: center;
    }
    
    .downloads .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h2 {
        font-size: 1.8rem;
    }

   
}

@media (max-width: 480px) {
    
    .br-trucks-image {
        height: 220px;
    }
}

/* Our Fleet Section */
.our-fleet {
    /* background-color: var(--white); */
    position: relative;
    /* padding: 0; */
    display: flex;
    flex-direction: row;
    overflow: hidden;
    /* padding: 5rem 0rem; */
    gap: 1rem;
    background-color: var(--white);
}

.our-fleet::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 101%;
    background: url(../images/hp-img-2.webp) no-repeat center center;
    background-size: cover;
    /* opacity: 0.5; */
    z-index: 2;
}

.our-fleet .container {
    /* flex: 0 0 50%; */
    /* padding: 8rem 2rem; */
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    height: 100%;
    align-self: center;
    background-color: var(--white);
}

.fleet-content-wrapper{
    display: flex;
    
}

.our-fleet-text-content{
    display: flex
;
    flex-direction: column;
    justify-content: center;
}

/* .our-fleet h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
} */
.our-fleet h2 {
    color: black;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.our-fleet h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: width 0.3s ease;
}

.our-fleet h3 {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 500;
}

.our-fleet p {
    max-width: 800px;
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}



.fleet-list {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.fleet-list ul {
    flex: 0 0 95%;
}

.fleet-list ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-color);
    font-size: 1rem;
}

.fleet-list ul li span{
    font-weight: 700;
}

.fleet-list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.our-fleet-image {
    flex: 0 0 50%;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.our-fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive styles for Our Fleet section */
@media (max-width: 992px) {
    .our-fleet {
        flex-direction: column;
    }
    
    .our-fleet .container,
    .our-fleet-image {
        flex: 0 0 100%;
    }
    
    .our-fleet-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .our-fleet-image {
        height: 300px;
    }
    
    .fleet-list {
        flex-direction: column;
    }
    
    .fleet-list ul {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .our-fleet-image {
        height: 250px;
    }
    
    .our-fleet h3 {
        font-size: 1.5rem;
    }
}

/* Work With Us Section */
.work-with-us {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: black;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.work-with-us .container {
    padding: 7rem 0rem;
    z-index: 2;
    position: relative;
}

.work-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.work-header {
    flex: 0 0 100%;
    margin-bottom: 1.5rem;
    /* animation: fadeInUp 0.8s ease forwards; */
}

.work-with-us h2 {
    color: black;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.work-with-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: width 0.3s ease;
}

.work-with-us h3 {
    color: black;
    font-size: 1.2rem;
    margin-bottom: 0rem;
    line-height: 1.3;
    font-weight: 500;
}

.work-with-us ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    width: 100%;
}

.work-with-us ul li {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    padding-left: 4rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.work-with-us ul li.animate {
    opacity: 1;
    transform: translateY(0);
}

.work-with-us ul li:nth-child(1) { transition-delay: 0.2s; }
.work-with-us ul li:nth-child(2) { transition-delay: 0.4s; }
.work-with-us ul li:nth-child(3) { transition-delay: 0.6s; }
.work-with-us ul li:nth-child(4) { transition-delay: 0.8s; }

.work-with-us ul li::before {
    content: '✓';
    position: absolute;
    left: 1.5rem;
    color: black;
    font-weight: 800;
    font-size: 1.2rem;
    /* background-color: rgba(0, 0, 0, 0.1); */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.work-with-us ul li:hover {
    background-color: rgba(255, 255, 255, 0.25);
    /* transform: translateY(-5px); */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(15px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--dark-color);
}




/* Responsive styles for Work With Us section */
@media (max-width: 1200px) {
    .work-with-us ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .work-content {
        flex-direction: column;
    }
    
    .work-header {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }
    
    .work-with-us ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-with-us-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .work-with-us ul {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-with-us-image {
        height: 280px;
    }
    
    .work-with-us h2 {
        font-size: 1.3rem;
    }
    
    .work-with-us h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .work-with-us-image {
        height: 220px;
    }
}

/* Contact Section */
.contact {
    background-color: black;
    position: relative;
    padding: 7rem 0;
    color: var(--white);
}

/* .contact-us-heading {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
} */

.contact-us-heading  {
      color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-us-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}


.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
}

.contact-info a {
    color:var(--primary-color);
}

/* .contact-info a:hover {
    color: var(--primary-color);
} */

.contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-left {
    flex: 0 0 30%;
    padding-right: 2rem;
}

.contact-right {
    flex: 0 0 60%;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #333;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    height: 48px; 
    line-height: 1.5;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
    padding-right: 2.5rem; /* Add space for the dropdown arrow */
    cursor: pointer;
}

#subject option:first-child {
    color: #999;
}

#subject:invalid {
    color: #999; 
}

.contact-form textarea {
    height: 8rem;
    resize: none;
}

.contact-form .file-group {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 0.75rem;
    position: relative;
}

.contact-form .file-label {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 0.9rem;
    width: 100%;
    position: relative;
}

.contact-form .file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.contact-form .custom-file-button {
    background-color: var(--gray);
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    /* margin-left: auto; */
    z-index: 1;
}

.contact-form .custom-file-button:hover {
    background-color: lightgray;
    color: black;
}

.contact-form .file-name {
    color: var(--white);
    margin-left: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    display: none;
}

.contact-form .file-name.show {
    display: block;
}

.contact-form .submit-btn {
    background-color: var(--primary-color);
    /* color: var(--white); */
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: none;
    border-radius: 0;
}

.contact-form .submit-btn:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .contact-left {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 0rem;
    }
    
    .contact-right {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: black;
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer strong {
    color: var(--white);
}




/* Responsive Design */
@media (max-width: 992px) {
    .feature {
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
   

header{
    position: relative;
}

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: var(--white);
        width: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        padding: 1rem 0;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 1rem 0;
    }
    
    nav ul li a::after {
        bottom: -3px;
    }

    .hero {
        height: 80vh;
        margin-top: 0;
        padding-top: 0;
    flex-direction: column;
    background: black;
    justify-content: space-between;
    gap: 2.7rem;
    }

    
    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding: 1.5rem;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1::after {
        /* left: 25%; */
        width: 100%;
    }

 

    .feature {
        opacity: 0;
        transform: translateX(-100%);
    }

    .feature.animate {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .feature:nth-child(1) { transition-delay: 0.2s; }
    .feature:nth-child(2) { transition-delay: 0.4s; }
    .feature:nth-child(3) { transition-delay: 0.6s; }
    .feature:nth-child(4) { transition-delay: 0.8s; }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .truck-image, .team-icon {
        width: 200px;
    }

    .fleet-list {
        flex-direction: column;
    }

    .fleet-list ul {
        flex: 0 0 100%;
        margin-bottom: 0rem;
    }

    .downloads {
        flex-direction: column;
        align-items: center;
    }
    
    .downloads .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h2 {
        font-size: 1.8rem;
    }

   
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .overlay{
        display: none;
    }

    .call-to-action {
        padding: 1rem;
        width: 100%;
    }

    .call-to-action p {
        font-size: 1rem;
    }
    
    .about h2, .why-us h2, .our-fleet h2, .work-with-us h2, .contact h2 {
        font-size: 1.2rem;
    }
    .about h3{
        font-size: 1rem;
        /* text-align: left; */
        width: 90%;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .form-group input, .form-group select, .form-group textarea {
        padding: 0.8rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .truck-image, .team-icon {
        width: 160px;
    }
}



@media (max-width: 992px) {
    .work-content {
        flex-direction: column;
    }
    
    .work-header, 
    .work-description {
        flex: 0 0 100%;
        padding-right: 0;
      
    }
    
    .work-header {
        margin-bottom: 2rem;
    }
} 

.floating-element {
    position: absolute;
    background-color: rgba(255, 215, 0, 0.1);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.about-bg-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.about-bg-2 {
    width: 100px;
    height: 100px;
    top: 35%;
    left: 40%;
    animation: float2 10s ease-in-out infinite;
}

.about-bg-3 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 10%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 15px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, -15px) rotate(180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -15px) rotate(180deg); }
}


input,textarea{
    border-radius: 0;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .screen-overlay {
        display: none !important; /* No animation on mobile */
    }

    .header-logo-container {
        display: none !important;
    }

    #headerLogo {
        opacity: 1 !important; /* Show header logo immediately */
    }


   
    
    .hero-content {
        margin: 0 auto;
        text-align: left;
        padding: 1.5rem;
        max-width: 85%;
        top: 15%;
        position: static;
        top: 0;
    }

    .video-container {
        display: flex;
        position: static;
        top: unset;
        left: unset;
        width: 100%;
        height: 30vh;
        z-index: 1;
    }
    .video-container .fallback-img {
        position: static;
        /* min-width: 100%; */
        /* min-height: 100%; */
        width: 100%;
        /* height: 100%; */
        /* top: 50%;
        left: 50%; */
        transform: unset;
        object-fit: cover;
    }

    .why-us-content {
   
        padding-bottom: 3rem;
    }

    .work-with-us .container{
        padding: 0;
    }

    section ,.about,.our-fleet,.work-with-us,.contact{
        padding: 7vh 0;
    }

 .our-fleet{
    padding-bottom: 0;
 }

    .fleet-content-wrapper{
        flex-direction: column;
        
    }
    .our-fleet::after {
       display: none;
       
    }

    .our-fleet-image{
        scale: 1.02;
    }
    .mobile-only{
        display: flex;
    }


    .fleet-list {
        margin-top: 1.5rem;
    }

    .fleet-list ul li:last-child p{
        margin-bottom: 0;
    }

    h3{
        font-size: 1.1rem !important;
         
     }

     .text-content {
        margin-bottom: 1rem;
    }


    .work-with-us{
        text-align: left;
    }
    
    .copyright-container {
        display: flex
    ;
      gap: 1rem;
        align-items: center;
        flex-direction: column;
    }

    .contact-form .submit-btn {
        color: black;
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    
    .copyright-container .logo {
        max-height: 120px;
    }

    .copyright-container .logo img {
        max-height: 120px;
        width: auto;
    }
  
    .about-bg-1 {
        width: 100px;
        height: 100px;
        top: 15% !important;
       left: 7% !important;
        animation: float3 12s ease-in-out infinite;
    }
    .about-bg-2 {
        width: 100px;
        height: 100px;
        top: 75% !important;
        right: 50% !important;
        animation: float3 12s ease-in-out infinite;
    }
    .about-bg-3 {
        width: 100px;
        height: 100px;
        top: 25% !important;
        right: 7% !important;
        animation: float3 12s ease-in-out infinite;
    }
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: black;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        padding: 0;
        margin: 0;
    }

    nav ul.show {
        right: 0;
    }

    nav ul li {
        margin: 1.5rem 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        color: var(--white);
    }

    nav ul li a::after {
        background-color: var(--primary-color);
    }
}

.form-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-align: center;
    display: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    transform: translateX(120%);
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    transform: translateX(0);
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .form-message {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Mobile Contact Buttons */
.mobile-contact-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    padding: 0.75rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100%);
    opacity: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-contact-buttons.show {
    transform: translateY(0);
    opacity: 1;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-contact-buttons.show .mobile-contact-btn {
    opacity: 1;
    transform: translateY(0);
}

.mobile-contact-buttons.show .mobile-contact-btn:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-contact-buttons.show .mobile-contact-btn:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-contact-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-contact-btn.call-btn {
    background-color: var(--primary-color);
    color: black;
}

.mobile-contact-btn.mail-btn {
    background-color: #333;
    color: var(--white);
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-contact-btn:hover i {
    transform: scale(1.1);
}

@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-contact-buttons {
        display: flex;
        gap: 1rem;
    }

    body {
        padding-bottom: 80px;
    }
}


@media (min-width: 780px) and (max-width: 1024px){

.container{
    width: 90%;
}
}
