/* ===== ABOUT.CSS ===== */
/* About Page Specific Styles */

/* About Hero Section */

.service-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../img/banners/services.webp') no-repeat center center;
  background-size: cover; /* Change back to cover */
  height: 500px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: left;
  padding: 120px 1rem 0; /* Top padding for navbar */
  position: relative;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

.service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-hero p.lead {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .service-hero {
    height: 400px;
    padding-top: 100px;
  }
  
  .service-hero h1 {
    font-size: 2.5rem;
  }
  
  .service-hero p.lead {
    font-size: 1.1rem;
  }
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    margin-right: 10px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #FFFFFF;
    transition: color 0.3s; /* Smooth transition for color change */
}

.breadcrumb-item a:hover,
.breadcrumb-item a:active {
    color: #007bff; /* Change this to your desired hover/active color */
}

.breadcrumb-item.active {
    color: #FFFFFF;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    margin: 0 10px;
    color: #FFFFFF;
}




/* Text & Image Section Styles */
.text-image-section {
  padding: 5rem 0;
}

.text-image-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 1.5rem;
}

.text-image-section .lead {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.8;
}

.text-image-section ul li {
  font-size: 1.1rem;
  padding: 0.5rem 0;
}

.text-image-section img {
  transition: transform 0.3s ease;
}

.text-image-section img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .text-image-section h2 {
    font-size: 2rem;
  }
  
  .text-image-section .lead {
    font-size: 1.1rem;
  }
  
  .text-image-section ul li {
    font-size: 1rem;
  }
}


/* Image & Text Section - Uses same styles as text-image-section */
.image-text-section img {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive order adjustment */
@media (max-width: 768px) {
  .order-1 {
    order: 1 !important;
  }
  .order-2 {
    order: 2 !important;
  }
}

































