/* Enable smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #000;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #ff6600;
  }
  
  .quote-btn {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .quote-btn:hover {
    background-color: #ff3300;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.6), #121212);

    padding: 50px 10%;
    gap: 20px;
  }
  
  .hero-content {
    
    max-width: 50%;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
  }
  
  .hero-content h1 span {
    color: #ff6600;
  }
  
  .hero-content p {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn-primary {
    background-color: #ff6600;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #ff3300;
  }
  
  .btn-secondary {
    background-color: #333;
    color: #fff;
  }
  
  .btn-secondary:hover {
    background-color: #555;
  }
  
  /* Features Section */
  .features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
  }
  
  .feature {
    padding: 10px;
    background-color: #1c1c1c;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  /* Hero Image */
  .hero-image img {
    width: 100%;
    max-width: 400px;
    animation: moveCar 2s ease-in-out forwards;
  }

  /* Keyframe animation for moving the car from left to right */
  @keyframes moveCar {
    0% {
      transform: translateZ(-1000px) translateX(-300px) scale(0.5) rotateY(30deg); /* Start far behind with some rotation */
      opacity: 0;
    }
    100% {
      transform: translateZ(0) scale(1) rotateY(0); /* Move to normal position with no rotation */
      opacity: 1;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-content {
      max-width: 100%;
    }
  
    .hero-image img {
      margin-top: 20px;
    }
  }


/* Van Section */
.van-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.4), #121212);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .van-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .van-section h1 span {
    color: #ff6600;
  }
  
  .van-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .van-buttons {
    display: flex;
    gap: 20px;
  }
  
  .van-buttons button {
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .van-buttons .btn-primary {
    background-color: #ff6600;
    color: #fff;
  }
  
  .van-buttons .btn-primary:hover {
    background-color: #ff3300;
  }
  
  .van-buttons .btn-secondary {
    background-color: #333;
    color: #fff;
  }
  
  .van-buttons .btn-secondary:hover {
    background-color: #555;
  }
  
  /* Image Section */
  .van-image-container {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .van-image-container img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.7);
  }
  
  .flame-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.3), transparent 70%);
    z-index: -1;
    border-radius: 50%;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .van-section {
      flex-direction: column;
      text-align: center;
    }
  
    .van-image-container img {
      max-width: 100%;
    }
  
    .flame-background {
      width: 300px;
      height: 300px;
    }
  }

  /* Logistics Section */
.logistics-section {
    background-color: #121212;
    color: #fff;
    padding: 50px 10%;
    text-align: center;
  }
  
  .partners {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .partners span {
    color: #fff;
    font-weight: bold;
  }
  
  h2 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 30px;
  }
  
  .vans-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .van-card {
    position: relative;
    max-width: 300px;
    background-color: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }
  
  .van-card:hover {
    transform: scale(1.05);
  }
  
  .van-card img {
    width: 100%;
    display: block;
  }
  
  .icon {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #ff6600, #ff3300);
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .icon img {
    width: 40px;
    height: 40px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .partners {
      flex-wrap: wrap;
      gap: 15px;
      font-size: 1rem;
    }
  
    .vans-gallery {
      flex-direction: column;
      gap: 20px;
    }
  
    .van-card {
      max-width: 100%;
    }
  }

/* Deliveries Section */
.deliveries-section {
    background: linear-gradient(135deg, #0c0c0c, #1e1e1e, #0a0a0a);
    color: #fff;
    text-align: center;
    padding: 50px 10%;
  }
  
  .deliveries-section h2 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 40px;
  }
  
  .deliveries-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .globe-container {
    flex: 1;
    text-align: center;
  }
  
  .globe-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.8);
    border-radius: 50%;
  }
  
  .features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(28, 28, 28, 0.9);
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .feature-item:hover {
    transform: translateX(10px);
    background-color: rgba(255, 102, 0, 0.2);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .cta-button {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: center;
  }
  
  .cta-button:hover {
    background-color: #ff3300;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .deliveries-content {
      flex-direction: column;
      text-align: center;
    }
  
    .features-list {
      align-items: center;
    }
  
    .feature-item {
      justify-content: center;
    }
  }


  
/* Testimonial Section */
.testimonial-section {
    position: relative;
    padding: 100px 10%;
    background-color: #121212;
    overflow: hidden;
  }
  
  .testimonial-container {
    display: flex;
    transform-style: preserve-3d;
    animation: slideTestimonial 10s infinite ease-in-out;
  }
  
  .testimonial-item {
    flex: 0 0 100%;
    width: 100%;
    transform: rotateY(0deg);
    transition: transform 0.5s ease;
  }
  
  .testimonial-box {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: perspective(1000px) rotateY(20deg);
    transition: transform 0.5s ease;
  }
  
  .testimonial-img {
    margin-bottom: 20px;
  }
  
  .testimonial-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6600;
  }
  
  .testimonial-text {
    text-align: center;
    color: #fff;
  }
  
  .testimonial-text h5 {
    font-size: 1.3rem;
    color: #ff6600;
    margin-bottom: 15px;
  }
  
  .testimonial-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* 3D Sliding Effect */
  @keyframes slideTestimonial {
    0% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-100%);
    }
    50% {
      transform: translateX(-200%);
    }
    75% {
      transform: translateX(-300%);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  /* Responsive Design for Mobile */
@media (max-width: 768px) {
    /* Set the overall testimonial section */
    .testimonial-section {
      padding: 50px 10%;
      overflow: hidden; /* Prevent horizontal overflow */
    }
  
    /* Container to allow horizontal scroll */
    .testimonial-container {
      display: flex;
      flex-direction: row;
      width: 100%;
      overflow-x: auto; /* Enable horizontal scrolling */
      overflow-y: hidden;
      scroll-snap-type: x mandatory; /* Enable snap scrolling */
      animation: none;
    }
  
    /* Individual testimonial item */
    .testimonial-item {
      flex: 0 0 100%; /* Each item takes 100% of the container width */
      width: 100%;
      transform: rotateY(0deg); /* No 3D effect here for mobile */
      transition: transform 0.5s ease;
      scroll-snap-align: start; /* Align each testimonial at the start when scrolling */
    }
  
    /* Testimonial box style */
    .testimonial-box {
      background-color: #1e1e1e;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 80%; /* Adjust width of the box */
      margin-right: 15px; /* Space between boxes */
      transform: perspective(800px) rotateY(5deg); /* Reduced 3D effect */
    }
  
    /* Client image */
    .testimonial-img {
      margin-bottom: 15px;
    }
  
    .testimonial-pic {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #ff6600;
    }
  
    /* Testimonial text */
    .testimonial-text {
      text-align: center;
      color: #fff;
    }
  
    .testimonial-text h5 {
      font-size: 1.1rem;
      color: #ff6600;
      margin-bottom: 15px;
    }
  
    .testimonial-text p {
      font-size: 0.9rem;
      line-height: 1.5;
    }
  
    /* Enable horizontal scrolling */
    .testimonial-container::-webkit-scrollbar {
      height: 8px; /* Scrollbar height */
    }
  
    .testimonial-container::-webkit-scrollbar-thumb {
      background-color: #ff6600; /* Scrollbar thumb color */
      border-radius: 10px;
    }
  
    .testimonial-container::-webkit-scrollbar-track {
      background: #f1f1f1; /* Track color */
    }
  }

  /* 3D Contact Section */
.contact-section {
    padding: 100px 10%;
    background-color: #121212;
    color: #fff;
    overflow: hidden;
    position: relative;
    font-family: "Roboto", sans-serif;
  }
  
  /* Contact container with flexbox */
  .contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    perspective: 1500px; /* For 3D effect */
  }
  
  /* Contact info box */
  .contact-info {
    flex: 1;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: rotateY(-10deg); /* Slight rotation for 3D effect */
    transition: transform 0.3s ease-in-out;
    padding-left: 30px;
  }
  
  .contact-info:hover {
    transform: rotateY(0deg); /* Remove rotation on hover */
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 20px;
  }
  
  .contact-details {
    margin-top: 30px;
  }
  
  .contact-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ff6600;
  }
  
  .contact-item ul {
    list-style: none;
    padding-left: 0;
  }
  
  .contact-item ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .contact-item ul li a {
    text-decoration: none;
    color: #ff6600;
    transition: color 0.3s;
  }
  
  .contact-item ul li a:hover {
    color: #fff;
  }
  
  /* Contact image with 3D effect */
  .contact-image {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: moveVan 2s ease-in-out forwards;

  }
  
  .contact-pic {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: rotateY(10deg); /* Apply 3D rotation */
    transition: transform 0.3s ease-in-out;
  }
  
  .contact-image:hover .contact-pic {
    transform: rotateY(0deg); /* Remove rotation on hover */
  }

/* Keyframe animation for moving the car from right to left */
@keyframes moveVan {
    0% {
        transform: translateZ(-1000px) translateX(500px) scale(0.5) rotateY(-30deg); /* Start far behind on the right with some rotation */
        opacity: 0;
    }
    100% {
        transform: translateZ(0) scale(1) rotateY(0); /* Move to normal position with no rotation */
        opacity: 1;
    }
}
  
  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .contact-section {
      padding: 50px 20px;
    }
  
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-info,
    .contact-image {
      width: 100%;
      margin-bottom: 30px;
    }
  
    .contact-info h2 {
      font-size: 2rem;
    }
  
    .contact-item ul li {
      font-size: 1rem;
    }
  }

  /* 3D Footer Section */
.footer-section {
    background-color: #e6571c; /* Same as primary color */
    padding: 20px;
    text-align: center;
    color: #fff;
    font-family: "Roboto", sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.2); /* Adding subtle shadow for 3D effect */
  }
  
  .footer-content {
    position: relative;
    z-index: 1;
  }
  
  .footer-content p {
    font-size: 1.1rem;
    margin: 10px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Text shadow for better visibility */
  }
  
  .footer-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 200%;
    background: rgba(0, 0, 0, 0.1); /* Subtle gradient effect */
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
    animation: moveFooter 6s infinite ease-in-out;
  }
  
  /* Animation for background circle movement */
  @keyframes moveFooter {
    0% {
      transform: translate(-50%, -50%) scale(0.7);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
      transform: translate(-50%, -50%) scale(0.7);
    }
  }
  
  /* Responsiveness for Mobile */
  @media (max-width: 768px) {
    .footer-section {
      padding: 10px;
    }
  
    .footer-content p {
      font-size: 1rem;
    }
  }


  /* Logistic section */


  /* Add top and bottom orange lines */
.partners {
    position: relative;
    padding: 3%;
  }
  
  /* Top Orange Line */
  .partners::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Line thickness */
    background-color: #e6571c; /* Orange color */
  }
  
  /* Bottom Orange Line */
  .partners::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Line thickness */
    background-color: #e6571c; /* Orange color */
  }

  /* Initial states for the animations */
 #car-image {
  opacity: 0;
  transform: translateX(-200px);
  transition: opacity 1s ease, transform 1s ease;
}


  /* Extra */

    /* .flame-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff6600, transparent);
    z-index: 1;
    border-radius: 50%;
    opacity: 0.5;
  } */