
    body {
      background-color: #f4f4f4;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .section-heading {
      font-weight: bold;
      font-size: 1.5rem;
      text-transform: uppercase;
      color: #2c3e50;
      margin-bottom: 20px;
      position: relative;
      text-align: center;
    }

    .section-heading::after {
      content: "";
      display: block;
      height: 3px;
      width: 80px;
      margin: 10px auto 0;
      background: #0d6efd;
    }

    .ad-img,
    .map-iframe {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .ad-img:hover,
    .map-iframe:hover {
      transform: scale(1.01);
    }

    .partner-section {
      background: #fff;
      padding: 50px 0;
    }

    .partner-logo {
      max-height: 60px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.8;
      transition: all 0.3s ease;
    }

    .partner-logo:hover {
      transform: scale(1.1);
      filter: none;
      opacity: 1;
    }

    @media (max-width: 576px) {
      .section-heading {
        font-size: 1.2rem;
      }

      .partner-logo {
        max-height: 40px;
      }
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f4f4f4;
    }

    /* .partner-slider {
      position: relative;
      overflow: hidden;
      background: #ffffff;
      padding: 40px 0;
    } */

    /* .partner-slider h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #2c3e50;
      position: relative;
    } */

    /* .partner-slider::before,
    .partner-slider::after {
      content: '';
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    } */

    /* .partner-slider::before {
      left: 0;
      background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    }

    .partner-slider::after {
      right: 0;
      background: linear-gradient(to left, #ffffff 0%, transparent 100%);
    }

    .partner-track {
      display: flex;
      width: max-content;
      animation: scroll-left 30s linear infinite;
      gap: 60px;
    } */

    /* .partner-slider:hover .partner-track {
      animation-play-state: paused;
    }

    .partner-slider img {
      height: 60px;
      object-fit: contain;
      transition: transform 0.3s ease, filter 0.3s ease;
       filter: grayscale(100%); 
      opacity: 0.8;
    } */

    /* .partner-slider img:hover {
      transform: scale(1.1);
      
      opacity: 1;
    } */

    /* @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive text size */
    @media (max-width: 600px) {
      .partner-slider h2 {
        font-size: 1.5rem;
      }

      .partner-slider img {
        height: 40px;
      }
    } */
  .hover-shadow {
  transition: all 0.3s ease-in-out;
}
.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
a.text-primary:hover,
a.text-info:hover,
a.text-danger:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.card:hover {
        transform: scale(1.02);
        transition: 0.3s ease-in-out;
    }
   
.partner-slider {
    background-color: #f8f9fa;
    padding: 40px 0;
    overflow: hidden;
    text-align: center;
}

.partner-slider h2 {
    font-size: 28px;
    margin-bottom: 30px;
    
    font-weight: 600;
}

.partner-track {
    display: flex;
    width: calc(250px * 36); /* Adjust based on image count */
    animation: scroll 50s linear infinite;
    gap: 30px;
    align-items: center;
}

.partner-track img {
    width: 180px;
    height: auto;
    transition: transform 0.3s ease;
    
}

.partner-track img:hover {
    transform: scale(1.1);
    
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

    .clean-card {
        border: none;
        border-radius: 1rem;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease-in-out;
    }

    .clean-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .clean-card .card-header {
        background-color: #0058a9;
        color: white;
        padding: 1rem 1.2rem;
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

    .clean-card .card-body {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .clean-card h5 {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 0;
    }

    .clean-card small {
        color: #d8d8d8;
        font-size: 0.85rem;
    }

    .clean-card i {
        color: #0058a9;
        margin-right: 6px;
    }

    @media (max-width: 576px) {
        .clean-card h5 {
            font-size: 1rem;
        }

        .clean-card .card-body {
            font-size: 0.88rem;
        }
    }
     
    .quick-link {
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        padding: 1.2rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

    .quick-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .quick-link-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #fff;
        margin-bottom: 0.8rem;
    }

    .quick-link-title {
        font-weight: 600;
        font-size: 0.95rem;
        color: #333;
    }

    /* Color variants */
    .quick-link-icon.blue {
        background-color: #0058a9;
    }

    .quick-link-icon.orange {
        background-color: #f57224;
    }

    .quick-link-icon.yellow {
        background-color: #fbb034;
    }

    .quick-link-icon.dark {
        background-color: #343a40;
    }

    @media (max-width: 576px) {
        .quick-link {
            padding: 1rem;
        }

        .quick-link-icon {
            width: 60px;
            height: 60px;
            font-size: 20px;
        }

        .quick-link-title {
            font-size: 0.85rem;
        }
    }
 
    .navbar {
      font-family: 'Segoe UI', sans-serif;
    }

    /* Input + Toggler wrapper for mobile */
    @media (max-width: 991.98px) {
      .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
      }

      .mobile-header input {
        flex: 1;
        border-radius: 25px;
        padding: 8px 16px;
        border: 1px solid #ced4da;
        font-weight: 600;
        font-size: 16px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        margin-right: 0.5rem;
      }

      .navbar-toggler {
        border: none;
      }

      .navbar-toggler:focus {
        box-shadow: none;
      }
    }

    .nav-link {
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: #0d6efd;
    }

    .btn-search {
      transition: background 0.3s ease;
    }

    .btn-search:hover {
      background: #0b5ed7;
    }
 


