html {
  scroll-behavior: smooth;
}

.menu-section {
  background-color: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}
.menu-section .navbar .navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: #004e92;
}
.menu-section .navbar .nav-link {
  padding: 7px 25px;
  color: #001f3f;
  font-weight: 500;
  transition: color 0.3s ease;
}
.menu-section .navbar .nav-link:hover, .menu-section .navbar .nav-link.active {
  color: #004e92;
}
@media (max-width: 767.98px) {
  .menu-section .navbar .nav-link {
    border-bottom: 1px solid #e0e0e0;
    padding: 7px 10px 14px 10px;
  }
}
.menu-section .navbar .dropdown-toggle::after {
  display: none;
}
.menu-section .navbar .dropdown-menu-custom {
  background-color: #ffffff;
  padding: 0.5rem 0;
  border: 1px solid #eee;
  min-width: 240px;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in-out;
}
.menu-section .navbar .dropdown-menu-custom .dropdown-item {
  padding: 10px 20px;
  color: #001f3f;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.menu-section .navbar .dropdown-menu-custom .dropdown-item:hover {
  background-color: #004e92;
  color: #ffffff;
}
.menu-section .navbar .navbar-toggler {
  border: none;
  box-shadow: none;
  /*.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23e23524' viewBox='0 0 30 30'%3E%3Cpath stroke='%23e23524' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }*/
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-header {
  background: #004e92;
  padding: 10px 0;
}
.top-header .top-header-tagline p,
.top-header .top-header-contact p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 15px;
}
.top-header .top-header-tagline i,
.top-header .top-header-contact i {
  color: #90caf9;
}
.top-header .top-header-tagline a,
.top-header .top-header-contact a {
  color: #ffffff;
  text-decoration: none;
}
.top-header .top-header-tagline a:hover,
.top-header .top-header-contact a:hover {
  color: #90caf9;
  text-decoration: underline;
}

.hero-section .carousel-caption.overlay {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-section .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .hero-section .carousel-caption p {
    font-size: 1rem;
  }
}

.service-section {
  padding: 75px 0;
  background-color: #f9f9f9;
}
.service-section .service-title {
  font-size: 30px;
  font-weight: 700;
  color: #004e92;
  margin-bottom: 30px;
}
.service-section .service-box {
  border-radius: 15px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  cursor: pointer;
}
.service-section .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-section .service-box .service-thumbnail img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 4px solid #004e92;
}
.service-section .service-box .service-info {
  padding: 30px 25px;
  text-align: left;
}
.service-section .service-box .service-info h5 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #004e92;
}
.service-section .service-box .service-info p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.6;
}

.about-section {
  padding: 75px 0;
  background-color: #f4f9ff;
}
.about-section .about-image {
  border-radius: 15px;
  overflow: hidden;
}
.about-section .about-title {
  font-size: 30px;
  font-weight: 700;
  color: #004e92;
}
@media (max-width: 767.98px) {
  .about-section .about-title {
    margin-top: 50px;
  }
}

.contact-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/banner-1.jpg") no-repeat center center;
  background-size: cover;
  padding: 75px 0;
}
.contact-section .contact-row {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
}
.contact-section .contact-col {
  flex: 1;
  display: flex;
}
.contact-section .dark-bg {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}
.contact-section .light-bg {
  background-color: #ffffff;
  color: #2c2c2c;
}
.contact-section .contact-form .form-control {
  padding: 12px;
  border-radius: 4px;
}
.contact-section .contact-form .btn {
  background: #004e92;
  color: #ffffff;
  border: none;
}
.contact-section .contact-form .btn:hover {
  background: #00335f;
}
.contact-section .contact-info .contact-box {
  transition: 0.3s ease;
}
.contact-section .contact-info .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-info .contact-box i {
  width: 40px;
  text-align: center;
}
.contact-section .contact-info .contact-box h6 {
  color: #42a5f5;
}

.breadcrumb-section {
  height: 300px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
.breadcrumb-section .breadcrumb-item {
  color: #ffffff;
}
.breadcrumb-section .breadcrumb-item a {
  color: #ffffff;
}
.breadcrumb-section .breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-section .breadcrumb-item.active {
  color: #ccc;
}
.breadcrumb-section .breadcrumb-item::before {
  color: #eee;
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/assets/images/breadcrumb-bg.jpg") center/cover no-repeat;
  text-align: center;
  padding: 125px 0;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: bold;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.cta-section .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: 2px solid #ffffff;
  transition: 0.3s ease;
}
.cta-section .btn:hover {
  background-color: #007bff;
  border-color: #007bff;
}

footer {
  background: #004e92;
  color: #ffffff;
  padding: 20px 0;
}
footer a {
  color: #929292;
  text-decoration: none;
}

.testimonials-section {
  background-color: #fff7f3;
  padding: 75px 0;
}
.testimonials-section .testimonial-item {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.testimonials-section .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.testimonials-section .testimonial-text {
  font-size: 1.1rem;
  color: #4a4a4a;
}

.why-choose-us-section {
  padding: 75px 0;
}
.why-choose-us-section .card {
  transition: 0.3s ease;
}
.why-choose-us-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.gallery-section {
  padding: 75px 0;
}
.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-section .gallery-item img {
  transition: transform 0.3s ease;
}
.gallery-section .gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-section .gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-section .gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 51, 102, 0.7); /* semi-transparent dark blue */
  color: #fff;
  padding: 10px 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-contact-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 10px 15px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 10px;
}
.mobile-contact-buttons .contact-btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
}
.mobile-contact-buttons .contact-btn i {
  margin-right: 6px;
  font-size: 18px;
}
.mobile-contact-buttons .call-btn {
  background-color: #42a5f5;
}
.mobile-contact-buttons .whatsapp-btn {
  background-color: #25d366;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/*# sourceMappingURL=style.css.map */
