  :root {
      --primary-blue: #0050aa;
      --accent-orange: #ff6b35;
      --white: #ffffff;
    }
    
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow-x: hidden;
      font-family: 'Montserrat', sans-serif;
      background-color: #000;
    }
    
    /* Top Navigation Bar */
   .top-bar {
  position: relative;
  z-index: 1000;
}

@media (max-width: 575.98px) {
  .button-container {
    flex-direction: column;
    align-items: flex-end;
  }

  .button-container .btn {
    margin-bottom: 5px;
  }
}

    .top-bar .logo img {
      height: 100px;
      transition: transform 0.3s ease;
    }
    
    .top-bar .logo img:hover {
      transform: scale(1.05);
    }
    
    .btn-outline-light {
      border-radius: 30px;
      padding: 5px 20px;
      font-weight: 600;
      border-width: 2px;
      transition: all 0.3s ease;
    }
    
    .btn-outline-light:hover {
      background-color: var(--white);
      color: var(--primary-blue);
      transform: translateY(-2px);
    }
    
    .login-link {
      color: white;
      text-decoration: none;
      font-weight: 600;
      margin-left: 15px;
      transition: color 0.3s ease;
    }
    
    .login-link:hover {
      color: var(--accent-orange);
    }
    
    /* Hero Slider */
    .hero-slider {
      width: 100%;
      height: 100vh;
    }
    
    .carousel-slide {
      position: relative;
      height: 100vh;
      color: white;
      background-size: cover;
      background-position: center;
      display: flex !important;
      align-items: center;
      justify-content: center;
    }
    
    .carousel-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
      z-index: 1;
    }
    
    .carousel-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 1200px;
      padding: 0 20px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }
    
    .slick-active .carousel-content {
      opacity: 1;
      transform: translateY(0);
    }
    
    .carousel-content h1 {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 800;
      margin: 0;
      line-height: 1.2;
      text-transform: uppercase;
      color: var(--white);
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
      margin-bottom: 10px;
    }
    
    .carousel-content h2 {
      font-size: clamp(1.2rem, 2.5vw, 2rem);
      font-weight: 600;
      margin: 0;
      line-height: 1.4;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      margin-bottom: 30px;
    }
    
    .slide-link {
      margin-top: 30px;
      font-size: 1.1rem;
      color: white;
      text-decoration: none;
      border-bottom: 2px solid white;
      padding-bottom: 5px;
      display: inline-block;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .slide-link:hover {
      color: var(--accent-orange);
      border-bottom-color: var(--accent-orange);
      transform: translateX(5px);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
       .top-bar .button-container {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .top-bar .logo {
      width: 100%;
      text-align: center;
    }
  }
      
      .carousel-content {
        padding: 0 15px;
      }
      
      .carousel-content h1 {
        font-size: 4.2rem;
      }
      
      .carousel-content h2 {
        font-size: 2.2rem;
      }
      
      .btn-outline-light, .login-link {
        font-size: 0.9rem;
      }
    
    
    @media (max-width: 576px) {
      .top-bar {
        flex-wrap: wrap;
        padding: 0.5rem;
      }
      
      .top-bar .menu {
        order: 1;
      }
      
      .top-bar .logo {
        order: 2;
        width: 100%;
        text-align: center;
        margin: 5px 0;
      }
      
      .top-bar .button-container {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 5px;
      }
      
      .carousel-content h1 {
        font-size: 1.8rem;
      }
    }
      .video-section {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }
        
        .video-poster {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background-color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
        }
        
        .play-button:hover {
            transform: scale(1.1);
            background-color: var(--white);
            color: var(--primary-blue);
        }
        
        .content-overlay {
            position: absolute;
            bottom: 100px;
            left: 0;
            width: 100%;
            padding: 0 50px;
            z-index: 3; /* Higher than video overlay */
        }
        
        .we-are-container {
            display: flex;
            align-items: flex-end;
        }
        
        .truck-icon {
            width: 156px;
            height: 156px;
            margin-right: 30px;
            transform: rotate(-5deg);
            transition: transform 0.5s ease;
        }
        
        .truck-icon:hover {
            transform: rotate(0deg) scale(1.1);
        }
        
        .we-are-text {
            color: var(--white);
        }
        
        .we-are-text h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .we-are-text h3 .first-part {
            color: var(--white);
        }
        
        .we-are-text h3 .second-part {
            color: var(--primary-blue);
        }
        
        .reference-text h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--white);
        }
        
        .reference-text h1 .first-part {
            display: block;
            color: var(--white);
        }
        
        .reference-text h1 .second-part {
            color: var(--primary-blue);
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .reference-text h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .we-are-text h3 {
                font-size: 2.5rem;
            }
            
            .reference-text h1 {
                font-size: 3rem;
            }
            
            .content-overlay {
                bottom: 50px;
                padding: 0 30px;
            }
        }
        
        @media (max-width: 768px) {
            .we-are-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .truck-icon {
                margin-bottom: 20px;
                margin-right: 0;
            }
            
            .we-are-text h3 {
                font-size: 2rem;
            }
            
            .reference-text h1 {
                font-size: 2.2rem;
            }
            
            .video-container {
                height: 80vh;
                min-height: 500px;
            }
        }
        
        @media (max-width: 576px) {
            .we-are-text h3 {
                font-size: 1.8rem;
            }
            
            .reference-text h1 {
                font-size: 1.8rem;
            }
            
            .content-overlay {
                padding: 0 20px;
                bottom: 30px;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .truck-icon {
                width: 120px;
                height: 120px;
            }
        }

   
     .partnership-section {
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }

        /* Partnership Section */
         .partnership-section {
            background-color: #000;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
         .stroke-heading {
            font-size: 4rem;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px var(--primary-blue);
            text-transform: uppercase;
            position: relative;
            text-align: right;
            padding-right: 15%;
            opacity: 0.7;
            white-space: nowrap;
            animation: scrollLeft 20s linear infinite;
        }
        
        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .stroke-heading {
                font-size: 3rem;
                padding-right: 10%;
            }
        }
        
        @media (max-width: 768px) {
            .stroke-heading {
                font-size: 2rem;
                padding-right: 5%;
                animation: scrollLeft 15s linear infinite;
            }
            
            .partnership-section {
                padding: 60px 0;
            }
        }
        @keyframes scrollLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Transport Services Section */
        .transport-section {
            background-color: #f8f9fa;
            padding: 100px 0;
            position: relative;
        }
        
        .dual-header {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .dual-header .first-span {
            color: var(--primary-blue);
        }
        
        .dual-header .second-header {
            color: var(--black);
            display: block;
        }
        
        .image-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-blue);
            color: white;
            text-decoration: none;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            border: none;
            transition: all 0.3s ease;
        }
        
        .image-button:hover {
            color: white;
            transform: translateY(-3px);
        }
        
        .image-button::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 1;
        }
        
        .image-button:hover::after {
            transform: translateX(0);
        }
        
        .image-button i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .image-button:hover i {
            transform: translateX(5px);
        }
        
        .floating-text {
            position: absolute;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            opacity: 0.7;
        }
        
        .floating-text:nth-child(1) {
            top: 20%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-text:nth-child(2) {
            top: 40%;
            right: 15%;
            animation: float 8s ease-in-out infinite 1s;
        }
        
        .floating-text:nth-child(3) {
            top: 60%;
            right: 5%;
            animation: float 7s ease-in-out infinite 0.5s;
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        }
        
        /* Warehousing Section */
        .warehousing-section {
            padding: 60px 0;
            position: relative;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .dual-header {
                font-size: 2.5rem;
            }
            
            .stroke-heading {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .dual-header {
                font-size: 2rem;
            }
            
            .floating-text {
                display: none;
            }
        }
          .custom-img-wrapper {
      padding: 20px;
      background-color: #000000;
    }
    .custom-img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
     #stroke-heading {
            font-size: 4rem;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px #fff;
            text-transform: uppercase;
            position: relative;
            text-align: right;
            padding-right: 15%;
            opacity: 0.7;
            white-space: nowrap;
            
        }

         .contact-hero {
      position: relative;
      background: url('images/banner7.jpg') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      align-items: center;
    }

    .contact-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(25, 48, 77, 0.9); /* dark blue transparent */
    }

    .contact-content {
      position: relative;
      z-index: 2;
      padding: 60px 30px 1px;
      max-width: 700px;
    }

    .contact-content h1 {
      font-size: 5rem;
      font-weight: 800;
    }

    .contact-content p {
      font-size: 1.25rem;
      line-height: 1.8;
    }

    .contact-content a {
      color: #fff;
      font-weight: 600;
      text-decoration: none;
    }

    .breadcrumb-custom {
      font-size: 0.9rem;
      color: #ccc;
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      .contact-content h1 {
        font-size: 3rem;
      }
    }

     .contact-section {
      padding: 60px 20px;
    }

    .contact-left h2 span:first-child {
      color: #0056a3;
      font-size: 2.6rem;
      font-weight: 700;
    }

    .contact-left h2 span:last-child {
      font-weight: bold;
      color: #000;
      font-size: 2.6rem;
      font-weight: 700;
    }

    .contact-info p,
    .contact-info a {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: #000;
    }

    .contact-info a {
      color: #0056a3;
      text-decoration: none;
    }

    .form-control {
      border-radius: 0;
      padding: 14px;
    }

    .btn-submit {
      background-color: #0056a3;
      color: #fff;
      font-size: 1.25rem;
      font-weight: 600;
      border-radius: 6px;
      padding: 14px 32px;
      width: 100%;
    }

    .social-icons a {
      font-size: 1.3rem;
      color: #000;
      margin-right: 15px;
    }

    @media (max-width: 767.98px) {
      .contact-form .row > div {
        margin-bottom: 1rem;
      }
    }

    .contact-banner {
      background: url('images/home-we-are-bk.jpg') no-repeat center center/cover;
      color: white;
      padding: 80px 20px;
      text-align: center;
    }

    .contact-banner h2 {
      font-weight: 800;
      font-size: 2.5rem;
    }

    .contact-banner p {
      font-size: 1.25rem;
    }

    /* Section 2: Our Facilities */
    .facilities {
      padding: 80px 20px;
    }

    .facilities h2 span:first-child {
      color: #0056a3;
    }

    .facilities h2 span:last-child {
      font-weight: bold;
      color: #000;
    }

    .facility-address h6 {
      font-weight: 700;
      color: #0056a3;
      text-transform: uppercase;
    }

    .facility-address p,
    .facility-address a {
      font-size: 1.1rem;
      color: #000;
      margin-bottom: 5px;
    }

    .facility-address a {
      color: #0056a3;
      text-decoration: none;
    }

    .map-img {
      width: 100%;
      height: auto;
      border-radius: 5px;
    }

    @media (max-width: 991.98px) {
      .contact-banner h2 {
        font-size: 2rem;
      }
      .contact-banner p {
        font-size: 1rem;
      }
    }

     .trucking-section {
    position: relative;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    padding-bottom: 50px;
  }

  .trucking-text-outline {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10vw;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #003366;
    white-space: nowrap;
    line-height: 1;
    z-index: 0;
    animation: moveRightToLeft 15s linear infinite;
  }

  @keyframes moveRightToLeft {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .trucking-title {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
  }

  .trucking-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    margin-top: 200px;
    
  }

  .trucking-image img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 768px) {
    .trucking-title {
      font-size: 2rem;
      left: 20px;
      top: 20px;
    }

    .trucking-text-outline {
      font-size: 18vw;
    }

    .trucking-image {
      margin-top: 120px;
    }
  }

  form input,
form textarea {
  border-radius: 0;
}