body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #1851eede;
}

.carousel img {
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel img:hover {
  transform: scale(1.01);
}

section {
  margin-bottom: 4rem;
}

h1, h2 {
  letter-spacing: -0.5px;
}

.btn-primary {
  background-color: #1e40af;
  border-color: #1e40af;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 500;
}

section {
  margin-bottom: 4rem;
}
#map {
  height: 500px;
  width: 100%;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.carousel-caption {
  bottom: 20px;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: #eee;
}

.carousel-caption footer {
  font-size: 0.9rem;
  color: #eee;
}
.cta-section {
  background: url('/static/images/project11.jpg') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.cta-section .overlay {
  z-index: 0;
}

.cta-section .container {
  z-index: 1;
}

.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.scroll-section {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card {
    border-left: 5px solid #007BFF;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }

  .service-card .card-body {
    background: rgba(0, 0, 0, 0.4); /* Optional dark overlay for better contrast */
    border-radius: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .hover-shadow:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  @keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-slide {
  animation: fadeSlideIn 1s ease-out forwards;
}

.animate-fade-delay {
  animation: fadeSlideIn 1.2s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}


@media (max-width: 768px) {
  body {
    background-size: 60px;
    background-position: bottom center;
  }
}

.equipment-showcase .card-img-top {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.equipment-showcase .card-title {
  font-weight: 600;
}
