/* Mobile dropdown styling */

html, body {
  font-family: 'Poppins', sans-serif;
      line-height: 1.7;
  max-width: 100%;
  overflow-x: hidden;
}


    /* Hero Banner */
    .hero-section {
      background: url('images/slide_07.jpg') center/cover no-repeat;
      height: 55vh;
      position: relative;
      color: #fff;
    }
    .hero-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }




    /* Section Headings */
    .section-heading h2 {
      font-weight: 600;
      margin-bottom: 1rem;
    }

    /* Contact Form */
    .contact-form .form-control {
      border-radius: 10px;
      padding: 14px;
    }
    .contact-form button {
      background: #0d6efd;
      color: #fff;
      padding: 12px 25px;
      border-radius: 8px;
      border: none;
      transition: background 0.3s;
    }
    .contact-form button:hover {
      background: #0056b3;
    }

    /* Map */
    #map iframe {
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Info Box */
    .info-box {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .info-box h5 {
      font-weight: 600;
    }
    .info-box p {
      margin-bottom: 8px;
    }

    /* Social Icons */
    .social-icons a {
      font-size: 1.2rem;
      margin-right: 12px;
      color: #0d6efd;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #0056b3;
    }
.page-heading {
      position: relative;
    }
    .page-heading .overlay {
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* Section Headings */
    .section-heading h2 {
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    /* Service Cards */
    .service-item {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    .service-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    }
    .service-item .icon {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }

    /* Logo image default size */
.logo-img {
  height: 65px;        /* adjust as needed */
  width: auto;         /* keeps aspect ratio */
  max-height: 70px;    /* prevents it from growing too big */
}

  .page-heading {
    height: 60vh; /* Adjust height */
    overflow: hidden;
  }
  .page-heading img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .overlay-text {
    background: rgba(0,0,0,0.5); /* semi-transparent background */
    padding: 20px 40px;
    border-radius: 10px;
  }

@media (max-width: 991px) {
  .navbar-collapse {
    background: #f8f9fa; /* light gray */
    padding: 1rem;
    border-radius: 8px;
  }
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
}
/* Smaller logo on mobile */
@media (max-width: 576px) {
  .logo-img {
    height: 50px;
  }
}


* Looping fade/zoom text animation */
/* Text animation */
@keyframes fadeZoom {
  0% { opacity: 0; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(0.9); }
}

.banner .text-white h1,
.banner .text-white p {
  animation: fadeZoom 6s ease-in-out infinite;
}

