/* Base style for all sections */
section {
  padding: 80px 0;
  color: #333;
}

/* Hero section styles */
#hero {
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  padding: 50px 0;
}

#hero h1 {
  font-size: 36px;
  font-weight: 600;
  color: #2a2a2a;
}

#hero p {
  font-size: 16px;
  color: #777;
}

#hero ul {
  padding-left: 0;
}

#hero ul li {
  list-style: none;
  font-size: 16px;
  margin: 10px 0;
}

#hero a {
  padding: 12px 40px;
  background-color: #007bff;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
}

#hero a:hover {
  background-color: #0056b3;
}

/* About section styles */
#about {
  background-color: #fff;
  text-align: center;
}

#about h2, #about h3 {
  font-weight: 600;
  color: #2a2a2a;
}

#about p {
  font-size: 16px;
  color: #777;
}

/* Why Us section styles */
#why-us {
  background-color: #f9fafb;
  text-align: center;
}

#why-us .section-title {
  margin-bottom: 40px;
}

#why-us .section-title h2 {
  font-weight: 600;
  color: #333;
}

#why-us .box {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

#why-us .box img {
  width: 60px;
  margin-bottom: 20px;
}

#why-us .box h4 {
  font-weight: 600;
  color: #333;
}

#why-us .box p {
  font-size: 14px;
  color: #777;
}

#why-us .box a {
  color: #007bff;
  text-decoration: none;
}

#why-us .box a:hover {
  text-decoration: underline;
}

/* Services section styles */
#services {
  background-color: #fff;
}

#services .section-title {
  text-align: center;
  margin-bottom: 40px;
}

#services .section-title h2 {
  font-weight: 600;
  color: #333;
}

#services .icon-boxes .icon-box {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9fafb;
  margin-bottom: 30px;
}

#services .icon-boxes .icon-box h4 {
  font-weight: 600;
  color: #333;
}

#services .icon-boxes .icon-box p {
  font-size: 14px;
  color: #777;
}

#services .icon-boxes .icon-box a {
  color: #007bff;
  text-decoration: none;
}

#services .icon-boxes .icon-box a:hover {
  text-decoration: underline;
}

/* FAQ section styles */
#faq {
  background-color: #f9fafb;
}

#faq .section-title {
  text-align: center;
  margin-bottom: 40px;
}

#faq .faq-list li {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

#faq .faq-list li .question {
  font-weight: 600;
  color: #333;
}

#faq .faq-list li .collapsed {
  cursor: pointer;
}

#faq .faq-list li .collapsed img {
  margin-left: 10px;
}

/* General styling for icons in different sections */
.icons {
  width: 40px;
  margin-bottom: 20px;
}

.icon-box .icon {
  margin-bottom: 20px;
}

/* Adjust spacing for various screen sizes */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
  }

  #hero p {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 14px;
  }
}



.b-index {
  background: url('https://i.postimg.cc/SK19tzmx/Whats-App-Image-2025-03-24-at-02-19-05-1.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Keeps the image fixed while scrolling */
  height: 50vh;
  display: flex;
  align-items: center;
  color: white; /* Ensures text is readable */
  position: relative;
  z-index: 1;
}

.b-index::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
  z-index: -1;
}

h1, p, ul {
  position: relative;
  z-index: 2; /* Ensures text is above the overlay */
}

.btn-get-started {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.2rem;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-get-started:hover {
  background: #cc5500;
}


.about {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.about h2 i {
  font-size: 1.8rem;
  color: #ff6600;
}

.about h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.about p:hover {
  transform: scale(1.02);
}


/* General Styling */
/* General Styling */
section {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  padding: 100px 0;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  width: 50px;
  height: 3px;
  background: #ff6b6b;
  display: block;
  margin: 10px auto 0;
}

/* Why Us Section */
.why-us .box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.why-us .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.why-us .icons {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.why-us h4 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.why-us p {
  font-size: 16px;
  color: #555;
}

/* Services Section */
.services {
  background-color: #ffffff;
}

.icon-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.icon-box h4 a {
  font-size: 20px;
  font-weight: bold;
  color: #ff6b6b;
  text-decoration: none;
}

.icon-box p {
  font-size: 15px;
  color: #555;
}

.iconbox-blue {
  border-left: 5px solid #4a90e2;
}

.iconbox-orange {
  border-left: 5px solid #ff9f43;
}

.iconbox-pink {
  border-left: 5px solid #ff6b6b;
}

.iconbox-teal {
  border-left: 5px solid #20c997;
}

@media (max-width: 768px) {
  .why-us .box, .icon-box {
    margin-bottom: 20px;
  }
}



/* Services Section */
.services {
  background-color: #ffffff;
}

.icon-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  position: relative;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Truck Animation */
.truck-container {
  width: 60px;
  position: absolute;
  left: -70px;
  animation: moveTruck 3s infinite ease-in-out;
}

@keyframes moveTruck {
  0% { transform: translateX(0); }
  50% { transform: translateX(15px); }
  100% { transform: translateX(0); }
}

.icon-box h4 a {
  font-size: 20px;
  font-weight: bold;
  color: #ff6b6b;
  text-decoration: none;
}

.icon-box p {
  font-size: 15px;
  color: #555;
}

.iconbox-blue {
  border-left: 5px solid #4a90e2;
}

.iconbox-orange {
  border-left: 5px solid #ff9f43;
}

.iconbox-pink {
  border-left: 5px solid #ff6b6b;
}

.iconbox-teal {
  border-left: 5px solid #20c997;
}

@media (max-width: 768px) {
  .why-us .box, .icon-box {
    margin-bottom: 20px;
  }
}