    .navbar-brand img {
      height: 45px;
      width: auto;
    }

    .mobile-footer {
      position: fixed;
      bottom: 0;
      width: 100%;
      background: #f8f9fa;
      border-top: 1px solid #ddd;
      z-index: 1000;
    }

    .mobile-footer .nav-link {
      padding: 10px;
      text-align: center;
      flex: 1;
    }

    .mobile-menu-collapse {
      position: fixed;
      bottom: 60px;
      width: 100%;
      background: #fff;
      z-index: 999;
      border-top: 1px solid #ddd;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 992px) {

      .mobile-footer,
      .mobile-menu-collapse {
        display: none !important;
      }
    }

    @media (max-width: 991.98px) {
      .desktop-buttons {
        display: none !important;
      }
    }

    @media (min-width: 992px) {
      .mobile-header-buttons {
        display: none !important;
      }
    }

    .home-banner {
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .full-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* ensures the image fills the space nicely */
    }

    .image-box {
      position: relative;
      background-size: cover;
      background-position: center;
      height: 250px;
      color: #fff;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .image-box::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.4);
      /* dark overlay for better text visibility */
      z-index: 1;
    }

    .image-box h4 {
      position: relative;
      z-index: 2;
      font-weight: bold;
    }

    @media (max-width: 767.98px) {
      .image-box {
        height: 180px;
      }
    }

    .video-wrapper {
      max-width: 100%;
      margin: auto;
    }

    .video-wrapper video {
      width: 100%;
      height: auto;
      display: block;
    }



    .blog-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .blog-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      flex: 1 1 calc(33.33% - 40px);
      /* 3 cards per row with gap */
      max-width: calc(33.33% - 40px);
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-content h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }

    .blog-content p {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .read-more {
      text-decoration: none;
      color: #007BFF;
      font-weight: bold;
      font-size: 14px;
    }

    /* Responsive - Tablets */
    @media (max-width: 992px) {
      .blog-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
      }
    }

    /* Responsive - Mobile */
    @media (max-width: 600px) {
      .blog-card {
        flex: 1 1 100%;
        max-width: 100%;
      }
    }

    .home-banner {
      position: relative;
      height: 50vh;
      /* Half of the viewport height */
      overflow: hidden;
      /* border-radius: 10px; */
    }

    .home-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .home-banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: rgba(0, 0, 0, 0.5); */
      /* Dark overlay with opacity */
      z-index: 1;
    }

    .home-banner .overlay-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
      padding: 0 15px;
      z-index: 2;
    }

    @media (max-width: 768px) {
      .home-banner .overlay-text {
        font-size: 1.2rem;
      }
    }

    .overlay-text i {
      color: #fff;
      margin-bottom: 10px;
    }

    .contact-info {
      background: linear-gradient(to right, #fdfdfd, #f7f7f7);
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      max-width: 500px;
      margin: auto;
      font-family: 'Segoe UI', sans-serif;
    }

    .contact-info h2 {
      font-size: 24px;
      color: #333;
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid #ddd;
      padding-bottom: 10px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
      padding: 12px;
      background: #ffffff;
      border: 1px solid #eee;
      border-radius: 10px;
      transition: box-shadow 0.3s;
    }

    .info-item:hover {
      box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1);
    }

    .icon {
      font-size: 22px;
      color: #007BFF;
      flex-shrink: 0;
    }

    .info-item div {
      font-size: 15px;
      color: #444;
      line-height: 1.4;
    }

    .contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 30px;
      background: #f4f4f4;
      border-radius: 12px;
      font-family: Arial, sans-serif;
    }

    .contact-info,
    .contact-form {
      flex: 1 1 300px;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .contact-info h2,
    .contact-form h2 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #333;
    }

    .contact-info p {
      font-size: 16px;
      margin: 10px 0;
      color: #444;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-group label {
      font-weight: bold;
      margin-bottom: 5px;
      display: block;
      color: #333;
    }

    .form-group i {
      margin-right: 8px;
      color: #007BFF;
    }

    .form-group input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
      width: 100%;
    }

    button {
      /* background: #007BFF; */
      color: white;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background: #0056b3;
    }

    /* Responsive - stack on small screens */
    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }
    }


    .feature-box {
      background-color: #1d1f21;
      color: #fff;
      padding: 30px 0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      border: 1px solid #3a3a3a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #ccc;
    }

    .feature-text h6 {
      margin: 0;
      font-weight: 600;
    }

    .feature-text p {
      margin: 0;
      font-size: 14px;
      color: #ccc;
    }

    @media (min-width: 768px) {
      .feature-item {
        margin-bottom: 0;
      }
    }

    .feature-box {
      background-color: #1d1f21;
      color: #fff;
      padding: 30px 0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      border: 1px solid #3a3a3a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #ccc;
      transition: all 0.3s ease;
    }

    /* 🔥 Hover Effect for Icon */
    .feature-icon:hover {
      color: #ff9800;
      /* Icon color on hover */
      border-color: #ff9800;
      /* Optional: border color change */
      background-color: #2c2f31;
      /* Optional: subtle background */
    }

    .feature-text h6 {
      margin: 0;
      font-weight: 600;
    }

    .feature-text p {
      margin: 0;
      font-size: 14px;
      color: #ccc;
    }

    @media (min-width: 768px) {
      .feature-item {
        margin-bottom: 0;
      }
    }

    .nav-link a {
        color: #1c1c3c;
      }
    