 /* Apply Poppins font */
    body {
      font-family: 'Poppins', sans-serif;
    }

    /* Navbar */
    .navbar {
      transition: background 0.3s ease-in-out;
    }
    .navbar.scrolled {
      background: #1f425d!important;
    }
    .navbar-brand img {
      height: 120px;
    }
    .navbar-dark .navbar-nav .nav-link {
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Carousel */
    .carousel-item img {
      height: 100vh;
      object-fit: cover;
    }
    .carousel-caption {
      top: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .carousel-caption h1 {
      font-size: 3.5rem;
      font-weight: 700;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }
    .carousel-caption p {
      font-size: 1.2rem;
      margin-top: 10px;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    }

    /* Section Titles */
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #0d6efd;
      text-transform: uppercase;
    }

    /* Services */
    .service-card {
      border: none;
      transition: transform 0.3s;
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 2.5rem;
      color: #0d6efd;
      margin-bottom: 15px;
    }

    /* Contact */
    #contact {
      background: linear-gradient(rgba(13,110,253,0.9), rgba(13,110,253,0.9)), url('office-bg.jpg') center/cover no-repeat;
    }

    /* Footer */
    footer {
      background: #111;
      color: #aaa;
      padding: 30px 0;
    }
    footer a {
      color: #0d6efd;
      text-decoration: none;
    }
	.fancy-service {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fancy-service img {
  transition: transform 0.5s ease;
}

.fancy-service .service-detail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease;
  padding: 20px;
  text-align: center;
}

.fancy-service:hover img {
  transform: scale(1.1); /* Zoom effect on image */
}

.fancy-service:hover .service-detail {
  opacity: 1; /* Show overlay on hover */
}
