 /* Animate underline on hover */
    .nav-link {
      position: relative;
    }
   
    .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #125b2e; /* Bootstrap orange */
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link:focus::after {
      width: 100%;
    }

    /* Sticky navbar */
    .sticky-top {
      top: 0;
      z-index: 1030;
    }

   /* ======= SEARCH (right) ======= */
    .search {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .search input {
      border: 1px solid #ddd;
      border-radius: 20px;
      padding: 7px 12px;
      font-size: .9rem;
      outline: none;
      width: 170px;
      transition: width .3s ease;
    }
    .search button {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      color: #666;
    }
    .search input:focus { width: 210px; }

    .carousel-caption {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 1rem 2rem;
      border-radius: 8px;
    }
    .carousel-caption h5 {
      font-size: 2rem;
      font-weight: bold;
    }
    .carousel-caption p {
      font-size: 1.1rem;
    }
   .about-section{
      background:#f2f6f9;
      padding:50px 30px;
      border-radius:12px;
      box-shadow:0 0 15px rgba(0,0,0,.05);
    }
    .underline-heading{
      text-decoration:underline;
      font-weight:600;
      color: #125b2e;
      text-align: center;
    }
    .about-text{
      font-size:1.1rem;
      line-height:1.8;
      color:#555;
    }
    .about-image{
      border-radius:10px;
      box-shadow:0 5px 15px rgba(0,0,0,.10);
    }

      .service-card {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 12px;
      transition: transform 0.3s ease;
      background-color: #f8f9fa;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .icon-box {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #125b2e;
    }

    h2.why-heading {
      font-size: 2.3rem;
      color: #ddd;
      text-align: center;
      text-decoration: underline;
      margin-bottom: 40px;
    }
   
     .why-choose-us {
      background: url('../images/why_choose.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 80px 20px;
      position: relative;
    }

    .why-choose-us::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
      z-index: 1;
    }

    .why-content {
      position: relative;
      z-index: 2;
    }
    
    .btn-custom {
      background-color: #ffc107;
      border: none;
      color: #fff;
      font-weight: 600;
    }

    .btn-custom:hover {
      background-color: #e0a800;
    }

    h2.underline-heading {
      text-decoration: underline;
      font-weight: bold;
      margin-bottom: 25px;
    }

     .footer {
      background-color: #343a40;
      color: #fff;
      padding: 40px 0;
    }
    .footer a {
      color: #ddd;
      text-decoration: none;
    }
    .footer a:hover {
      color: #fff;
      text-decoration: underline;
    }
    .footer .social-icons a {
      margin-right: 10px;
      font-size: 18px;
    }
    .footer-bottom {
      background-color: #23272b;
      color: #ccc;
      padding: 15px 0;
      text-align: center;
      font-size: 14px;
    }
    @media (max-width: 768px) {
      .carousel-caption h5 {
        font-size: 1.3rem;
      }
      .carousel-caption p {
        font-size: 0.95rem;
      }
    }