
  .hero-section {
    background-image: url("/static/images/a1.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    /* min-height: 500px; */
  }
  
  .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
  }
  .hero-section .content {
    position: relative;
    z-index: 3;
    padding: 60px 20px;
    color: white;
  }
  .services-section .card {
    border-radius: 0 !important;
    /* background-image: url("/static/images/bg.jpeg"); */
    background-size: cover;
    background-position: center;
    /* color: #fff; */
  }

  .service-hero-section {
    background-image: url("/static/images/a5.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 70vh;
    /* min-height: 500px; */
  }
  .service-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
  }
  /* Hero Overlay - About Page */
.about-hero-section {
  background: url('/static/images/a6.jpg') no-repeat center center;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.about-hero-section .overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
}
/* About Cards */
.about-card {
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Headings */
h2, h5 {
  font-family: 'Segoe UI', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-section {
    height: 50vh;
  }
}
.card {
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* Override Bootstrap nav-pills active tab */
.nav-pills .nav-link.active {
  background-color: #f68b1e !important;
  color: #fff !important;
}

/* Optional: add hover effects for non-active tabs */
.nav-pills .nav-link {
  color: #f68b1e !important;
  border: 1px solid #f68b1e;
  border-radius: 50px;
  margin: 0 5px;
}

.nav-pills .nav-link:hover:not(.active):not(.disabled) {
  background-color: #fef1e4 !important;
}
.contact-hero-section {
  background: url('/static/images/a7.jpg') no-repeat center center;
  background-size: cover;
  height: 70vh;
  position: relative;
}

.contact-hero-section .overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
}

/* 404 Page Centering */
.min-vh-75 {
  min-height: 75vh;
}