body {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}
.navbar {
  background-color: #0a588f;
  position: fixed;
  width: 100%;
  top: 0;
  margin-bottom: 70px;
  z-index: 2;
}
.navbar-brand img {
  height: 35px;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.service-card {
  color: #fff;
  border-radius: 10px;
  padding: 25px 10px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 500;
}
.service-card i {
  font-size: 28px;
  margin-bottom: 10px;
}
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0a588f;
  color: #fff;
  display: flex;
  justify-content: space-around;
  padding: 5px 0px 0px 0px;
  z-index: 1000;
}
.bottom-nav a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 13px;
}
.bottom-nav i {
  font-size: 20px;
  display: block;
  /* margin-bottom: 3px; */
}
.owl-carousel .item img {
  border-radius: 8px;
}

/* Nav bar side menu  */

/* ----- Offcanvas Styling ----- */
.custom-offcanvas {
  width: 260px !important;
  background: linear-gradient(180deg, #0a588f 0%, #0b325c 100%);
  color: #fff;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Profile section */
.offcanvas-profile img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.offcanvas-profile {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Menu List */
.menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menu-list li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}
.menu-list li a i {
  width: 25px;
  font-size: 16px;
  opacity: 0.9;
}
.menu-list li a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 25px;
}

/* Footer */
.offcanvas-footer {
  background: rgba(255, 255, 255, 0.05);
}
.btn-close:focus {
  box-shadow: none;
}

/* Hero Banner Carousel */
.banner-carousel .item img {
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Testimonial Cards */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.testimonial-rating {
  position: absolute;
  right: 10px;
  top: 3px;
}
.testimonial-rating i {
  margin-right: 2px;
}
.testimonial-text {
  font-style: italic;
  line-height: 1.4;
}
