body {
      background-color: #f8f9fa;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    h2, h3, h4 {
      color: #212529;
    }

    /* Hero Section */
.hero-section {
  background: url('assets/images/hero-background.png') no-repeat center center/cover;
  min-height: 260px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-section h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-section .breadcrumb {
  background: none;
  padding: 8px 15px;
  margin: 0 auto;
  display: inline-flex;
  font-size: 1.2rem;
  border: 2px solid #f0852d; /* Light blue border */
  border-radius: 8px;
}

.hero-section .breadcrumb-item a {
  color: #f1f1f1;
  text-decoration: none;
}

.hero-section .breadcrumb-item.active {
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 200px;
    padding: 30px 15px;
  }
  .hero-section h2 {
    font-size: 1.8rem;
  }
  .hero-section .breadcrumb {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

    /* Carousel Images */
.carousel-img {
  height: 450px;           
  object-fit: cover;     
  background-color: #f8f9fa; 
  border-radius: 12px;
}

    /* Features Box */
.features-box {
  background-color: #f9f9ff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.features-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Features list */
.features-list li {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #6c757d;
}

/* .features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #635bff;   
  font-weight: bold;
} */

/* Contact button */
.btn-contact {
  display: inline-block;
  background: #635bff;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: #4b3af5;
  color: #fff;
}


   /* Description Section */
.description-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  line-height: 1.75;
  color: #444;
  transition: all 0.3s ease-in-out;
}

.description-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.description-section h4 {
  font-size: 1.8rem;
  color: #222;
  border-left: 6px solid #635bff; /* accent line */
  padding-left: 12px;
  margin-bottom: 20px;
}

.description-section h5 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  position: relative;
}

.description-section h5::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #635bff;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.description-section p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #555;
}

/* Bullet list styling */
.description-section ul {
  margin-top: 12px;
  margin-bottom: 20px;
}

.description-section ul li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  color: #444;
  font-weight: 500;
}

/* Replace bullet with Font Awesome checkmark */
.description-section ul li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #635bff; /* accent color */
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.description-section ul li:hover::before {
  color: #00c9a7; /* teal hover accent */
}

/* Responsive */
@media (max-width: 768px) {
  .description-section {
    padding: 25px;
  }

  .description-section h4 {
    font-size: 1.4rem;
  }

  .description-section h5 {
    font-size: 1.1rem;
  }
}


    /* Why Choose Us Section */
.why-section {
  background: #0f4dae; /* light background to separate section */
  padding: 60px 20px;
  border-radius: 12px;
}

.why-section h3 {
   font-size: 2.5rem;
   color: #ffffff;
   margin-bottom: 10px;
}

.why-section p {
   font-size: 2rem;
   color: #ffffff;
   margin-bottom: 40px;
   font-weight: lighter;
}

/* Card Styles */
.why-section .card {
    border: 1px solid #ff3d00;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.why-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Card Images */
.why-section .card img {
  width: 80px;
  height: 80px;
  margin: 20px auto 10px;
  object-fit: contain;
}

/* Card Title */
.why-section .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Card Text */
.why-section .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding: 0 10px;
}
