body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden; 
}

.slide {
    height: 700px;
    width: 100vw;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 5px #014ab8;
  }
  .slide-content {
    text-align: center;
    padding: 0 20px;
  }
  .slide-content img {
    width: 60px;
    margin-bottom: 15px;
  }
  .service, .testimonial {
    box-shadow: 0 4px 8px #014ab8;
    border-radius: 8px;
    padding: 20px;
    background-color: #cedeff;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;

  }

  .service:hover {
    transform: scale(1.05);
    border-color: rgb(1, 74, 184);
  }

  @media (max-width: 768px) {
    .slide {
      height: 400px;
      padding: 0;
    }
    .slide-content img {
      width: 40px;
    }
    .slide-content h2 {
      font-size: 1.5rem;
    }
  }
  /* .navbar-nav .nav-link.active {
    color: rgb(1, 74, 184) !important;
    font-weight: bold;
  } */
  .partner-logo {
    border: 2px dashed #999;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
  .partner-logo:hover {
    transform: scale(1.05);
    border-color: rgb(1, 74, 184);
  }

  .contact-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-highlight {
    color: rgb(1, 74, 184);
    border-bottom: 2px solid rgb(1, 74, 184);
    padding-bottom: 2px;
  }
  
  .contact-normal {
    color: #6c757d; /* Bootstrap's text-secondary */
  }
  
  .bg-primary-custom {
  background-color: #0d6efd !important;
}

  .navbar-nav .nav-link {
    position: relative;
    color: white;
    transition: color 0.3s;
  }
  
  .navbar-nav .nav-link.active {
    color: rgb(1, 74, 184)!important;
    font-weight: bold;
  }
  
  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgb(1, 74, 184);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  .navbar-nav .nav-link.active::before {
    content: "▼";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgb(1, 74, 184);
  }
  .bg-dark{
    background-color: rgb(142, 193, 244) !important;
  }
  .soft-shadow {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  }
  
  .address-box p {
  line-height: 1.3;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.address-box h4 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.address-box i {
  color: rgb(1, 74, 184); /* Optional: color icons for visibility */
}

.btn-custom {
  background-color: #004080;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #a7cdf3;
}

.bg-dark-gray {
  background-color: #2c2c2c !important; /* Custom dark gray */

}
