:root {
  --primary-orange: #1e753c;
  --dark-bg: #2c3e50;
  --light-gray: #f8f9fa;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.top-banner {
  background-color: var(--light-gray);
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
  color: #666;
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: #333 !important;
}

.navbar-brand .text-orange {
  color: var(--primary-orange) !important;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 15px;
}

.btn-quote {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 500;
}

.btn-quote:hover {
  background-color: #e64a19;
  color: white;
}

/* Hero Section with Background Image */
/* .hero-section {
  background-image: linear-gradient(
      rgba(44, 62, 80, 0.8),
      rgba(44, 62, 80, 0.8)
    ),
    url("images/BYD_DOLPHIN_SURF.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
} */
.hero-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: -180px;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
      background: rgb(0 0 0 / 52%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #fff;
}

.hero-truck {
  max-width: 100%;
  height: auto;
}

@keyframes move-horizontal {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(30px); /* moves right */
  }
  100% {
    transform: translateX(0);    /* moves back to center */
  }
}

.hero-truck {
  animation: move-horizontal 3s ease-in-out infinite;
  display: block;
  max-width: 100%;
  transition: transform 0.5s ease-in-out;
}


.hero-content {
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-learn-more {
  background-color: var(--primary-orange);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
}

.btn-learn-more:hover {
  background-color: #e64a19;
  color: white;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.hero-truck {
  /* position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: auto; */
  z-index: 1;
}

/* Welcome Section */
.welcome-section {
  padding: 60px 0;
  background-color: white;
}

.welcome-image {
    width: 100%;
    height: 100%;
  object-fit: cover;
  border: 15px solid #e3f2fd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-content h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.welcome-content h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.welcome-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.feature-list li::before {
  content: "✓";
  background-color: var(--primary-orange);
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--primary-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 40px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-body {
  padding: 30px;
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

/* Additional Services Section */
.additional-services {
  padding: 60px 0;
  background-color: white;
}

.info-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-card i {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
}

.info-card h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.info-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background-image: linear-gradient(
      rgba(44, 62, 80, 0.9),
      rgba(44, 62, 80, 0.9)
    ),
    url("images/template_photo_2.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-section .btn-learn-more {
  margin-right: 20px;
}

.play-button {
  background-color: transparent;
  border: 3px solid var(--primary-orange);
  color: var(--primary-orange);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: var(--primary-orange);
  color: white;
}

/* Jobs Section */
.jobs-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.jobs-content {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.jobs-image {
  height: 300px;
  object-fit: cover;
}

.jobs-text {
  padding: 40px;
}

.jobs-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.jobs-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
  background-color: white;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 30px;
  height: 100%;
}

.testimonial-card .stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-card h5 {
  color: #333;
  font-weight: bold;
}

/* News Section */
.news-section {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-body {
  padding: 25px;
}

.news-card h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.news-date {
  color: var(--primary-orange);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 60px 0 30px;
}

.footer h5 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--primary-orange);
}

.newsletter-signup {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.newsletter-signup h5 {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-truck {
    display: none;
  }

  .welcome-image {
    width: 280px;
    height: 280px;
    margin-bottom: 30px;
  }

  .welcome-content h2 {
    font-size: 2.2rem;
  }

  .welcome-content h3 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .jobs-text h2 {
    font-size: 2rem;
  }
}
