
.top-header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1031;
      background: rgba(0, 51, 102, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .top-header h5 {
      font-size: 1rem;
      margin-bottom: 0;
      font-weight: 500;
      line-height: 1.2;
    }
    .top-header small {
      font-size: 0.8rem;
      color: #e0e0e0;
    }
    .top-header a.btn {
      font-weight: 500;
    }
    .navbar-custom {
      position: fixed;
      top: 56px; /* Adjusted to match top-header height */
      width: 100%;
      z-index: 1030;
      background-color: #003366;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .navbar-custom .navbar-nav .nav-link {
      color: #ffffff;
    }
    .navbar-custom .navbar-nav .nav-link:hover {
      color: #00c6ff;
    }
    .offcanvas-nav {
      background-color: #003366;
    }
    .offcanvas-nav .nav-link {
      color: white;
      padding: 10px 15px;
    }
    .offcanvas-nav .nav-link:hover {
      background-color: #002244;
    }

    @media (max-width: 991.98px) {
     .navbar-custom {
        top: 46px; /* Set lower for mobile due to hidden top-header */
      }
      .navbar-custom .navbar-collapse {
        display: none !important;
      }
    }

    @media (min-width: 992px) {
      .offcanvas {
        display: none !important;
      }
    }

    @media (max-width: 767.98px) {
      body {
        padding-top: 100px; /* Adjusted top padding */
      }
      .top-header {
        display: none;
      }
      .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px;
        background-color: #003366;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1040;
      }
      .mobile-header img {
        height: 30px;
      }
      .mobile-header .brand-text {
        font-size: 0.9rem;
        color: white;
        margin-left: 10px;
        line-height: 1;
      }
      .mobile-header .auth-links a {
        font-size: 0.75rem;
        padding: 2px 6px;
        margin-left: 5px;
      }
       .services-section .col-md-3 {
        width: 50% !important;
        flex: 0 0 50%;
      }
    }
    .modal-content {
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.form-control:focus, .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.03);
}
.whatsapp-circle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.whatsapp-circle.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-circle img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.whatsapp-circle:hover img {
  transform: scale(1.1);
}
.home-news-section {
  background: #f9f9f9;
  border-top: 2px solid #ccc;
}

.news-scroll-box {
  max-height: 300px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #dee2e6;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.news-scroll-box::-webkit-scrollbar {
  width: 6px;
}
.news-scroll-box::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 10px;
}
.news-item {
  padding-bottom: 10px;
}
.news-title {
  color: #003366;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .footer i {
    transition: transform 0.2s ease-in-out;
  }

  .footer i:hover {
    transform: scale(1.2);
  }

 