html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
}

.carousel-item img {
  filter: brightness(0.7);
}
.carousel-item .carousel-caption {
  bottom: 20%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.carousel-item .carousel-caption h1 {
  font-weight: 700;
  font-size: 3rem;
}

#services .card {
  transition: all 0.3s ease;
  border-radius: 12px;
}
#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
#services .card .btn-outline-primary:hover {
  color: #fff;
}

#stats {
  background: linear-gradient(45deg, #01245e, #000712);
}
#stats h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0;
}
#stats p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

footer h5 {
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #01245e;
}
footer .input-group .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
}
footer .input-group .form-control::placeholder {
  color: #aaa;
}

@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 86, 179, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 86, 179, 0);
  }
}
.btn-primary.rounded-pill {
  animation: pulse-blue 2s infinite;
}

.nav-pill-container {
  background-color: #f3f7fb;
  border-radius: 50px;
}
.nav-pill-container .nav-link {
  color: #444;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-pill-container .nav-link.active-pill {
  background-color: #122243;
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 20px !important;
}
.nav-pill-container .nav-link.dropdown-toggle::after {
  vertical-align: middle;
}

.btn-inspection {
  background-color: #0673c5;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  padding: 5px 5px 5px 15px;
  border: none;
  transition: transform 0.2s ease;
}
.btn-inspection .icon-circle {
  background-color: #122243;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.btn-inspection:hover {
  background-color: #0565ac;
  color: white;
  transform: translateY(-2px);
}

.phone-capsule {
  background-color: #122243;
  color: white;
  border-radius: 50px;
  padding: 5px;
}
.phone-capsule .phone-icon-bg {
  background-color: white;
  color: #122243;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-section {
  background: linear-gradient(135deg, #0d182f 0%, #122243 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%), linear-gradient(-45deg, #fff 25%, transparent 25%);
  background-size: 60px 60px;
  pointer-events: none;
}

.border-orange {
  border-color: #0673c5 !important;
  border-width: 2px !important;
}

.text-secondary-alt {
  color: #b0c0d8;
}

.services-accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: auto;
  min-height: 500px;
}
@media (min-width: 992px) {
  .services-accordion-grid {
    flex-direction: row;
    height: 480px;
  }
}

.service-card {
  position: relative;
  flex: 1; /* All panels start with equal space distribution */
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.service-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 34, 67, 0.95) 0%, rgba(18, 34, 67, 0.2) 60%, transparent 100%);
  z-index: 1;
}
.service-card .book-now-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #fff;
  color: #122243;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 6px 6px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}
.service-card .book-now-badge .badge-icon {
  background-color: #122243;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.service-card .card-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .service-card .card-content-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}
.service-card .icon-sphere {
  background-color: #0673c5;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.service-card .card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 5px;
  white-space: nowrap;
}
.service-card .card-desc {
  color: #b0c0d8;
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: 420px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}
@media (min-width: 992px) {
  .service-card:hover {
    flex: 2.5;
  }
  .service-card:hover .book-now-badge {
    opacity: 1;
    transform: translateY(0);
  }
  .service-card:hover .card-desc {
    opacity: 1;
    height: auto;
    margin-top: 8px;
  }
}
@media (max-width: 991px) {
  .service-card.active .book-now-badge {
    opacity: 1;
    transform: translateY(0);
  }
  .service-card.active .card-desc {
    opacity: 1;
    height: auto;
    margin-top: 8px;
  }
}

.text-navy {
  color: #122243;
}

.text-orange {
  color: #0673c5;
}

.about-section .about-image-wrapper {
  padding-bottom: 50px;
  padding-right: 50px;
}
.about-section .about-image-wrapper .accent-shape {
  position: absolute;
  background-color: #f3f7fb;
  width: 70%;
  height: 90%;
  bottom: 0;
  left: -20px;
  z-index: 0;
  border-radius: 32px;
}
.about-section .about-image-wrapper .main-img-box {
  position: relative;
  z-index: 1;
}
.about-section .about-image-wrapper .main-img-box img {
  object-fit: cover;
  height: 400px;
  transition: transform 0.4s ease;
}
.about-section .about-image-wrapper .main-img-box:hover img {
  transform: scale(1.03);
}
.about-section .about-image-wrapper .secondary-img-box {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 240px;
  height: 180px;
  z-index: 2;
  border: 6px solid #fff;
}
.about-section .about-image-wrapper .secondary-img-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-section .about-image-wrapper .experience-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background-color: #0673c5;
  min-width: 130px;
  z-index: 3;
}
.about-section .about-image-wrapper .experience-badge span.tracking-wider {
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.about-section .icon-box-navy {
  background-color: #f3f7fb;
  color: #122243;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.about-section .icon-box-navy:hover {
  background-color: #122243;
  color: #fff;
}
.about-section .btn-navy-action {
  background-color: #122243;
  color: #fff;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.about-section .btn-navy-action:hover {
  background-color: #1b3263;
  color: #fff;
  transform: translateY(-2px);
}

.cta-section {
  background-color: #f8fafc;
}
.cta-section .container-cta-bg {
  background: linear-gradient(135deg, #122243 0%, #091223 100%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}
.cta-section .text-secondary-alt {
  color: #b0c0d8;
}
.cta-section .lead-form-card {
  border-top: 5px solid #0673c5;
}
.cta-section .lead-form-card .text-navy {
  color: #122243;
}
.cta-section .lead-form-card .custom-input {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.cta-section .lead-form-card .custom-input:focus {
  background-color: #fff;
  border-color: #122243;
  box-shadow: 0 0 0 3px rgba(18, 34, 67, 0.1);
  outline: none;
}
.cta-section .lead-form-card select.custom-input {
  cursor: pointer;
}
.cta-section .btn-orange-submit {
  background-color: #0673c5;
  border: none;
  box-shadow: 0 4px 14px rgba(247, 164, 34, 0.4);
  transition: all 0.3s ease;
}
.cta-section .btn-orange-submit i {
  transition: transform 0.2s ease;
}
.cta-section .btn-orange-submit:hover {
  background-color: #0562a7;
  box-shadow: 0 6px 20px rgba(247, 164, 34, 0.6);
  transform: translateY(-1px);
}
.cta-section .btn-orange-submit:hover i {
  transform: translateX(4px);
}
.cta-section .btn-orange-submit:active {
  transform: translateY(1px);
}

.stats-section {
  background-color: #f8fafc;
}
.stats-section .container-stats-bg {
  background: linear-gradient(135deg, #0f1c37 0%, #122243 100%);
  border-radius: 32px;
  overflow: hidden;
}
.stats-section .text-secondary-alt {
  color: #b0c0d8;
}
.stats-section .glow-radial-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 115, 197, 0.1) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}
.stats-section .stat-impact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stats-section .stat-impact-card .stat-icon-wrapper {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-section .stat-impact-card h2 {
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
}
.stats-section .stat-impact-card p {
  font-size: 0.72rem !important;
  letter-spacing: 0.5px;
}
.stats-section .stat-impact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 115, 197, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-section .header-line {
  width: 60px;
  height: 3px;
  background-color: #0673c5;
}
.gallery-section .btn-filter {
  border: 1px solid #dee2e6;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  transition: all 0.3s ease;
}
.gallery-section .btn-filter:hover, .gallery-section .btn-filter.active {
  background-color: #122243;
  color: #fff;
  border-color: #122243;
}
.gallery-section .project-item {
  height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.gallery-section .project-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-section .project-item .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 34, 67, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-section .project-item .project-info {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.gallery-section .project-item .project-info .badge.bg-orange {
  background-color: #0673c5;
  font-weight: 500;
}
.gallery-section .project-item .project-link {
  color: #0673c5;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-section .project-item .project-link:hover {
  color: #fff;
}
.gallery-section .project-item:hover img {
  transform: scale(1.1);
}
.gallery-section .project-item:hover .project-overlay {
  opacity: 1;
}
.gallery-section .project-item:hover .project-info {
  transform: translateY(0);
}
.gallery-section .btn-outline-navy {
  border: 2px solid #122243;
  color: #122243;
}
.gallery-section .btn-outline-navy:hover {
  background-color: #122243;
  color: #fff;
}

.main-footer {
  background: linear-gradient(135deg, #0c162b 0%, #101e3b 100%);
  border-top: 4px solid #0673c5;
  font-family: "Segoe UI", Roboto, sans-serif;
}
.main-footer .max-container {
  max-width: 1400px;
  margin: 0 auto;
}
.main-footer .text-secondary-alt {
  color: #b0c0d8;
}
.main-footer .text-orange {
  color: #0673c5 !important;
}
.main-footer .footer-heading {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}
.main-footer .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: #0673c5;
}
.main-footer .footer-links li a {
  color: #b0c0d8;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  display: inline-block;
}
.main-footer .footer-links li a:hover {
  color: #fff;
  transform: translateX(4px);
}
.main-footer .social-circle {
  background: rgba(255, 255, 255, 0.04);
  color: #b0c0d8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.main-footer .social-circle:hover {
  background-color: #0673c5;
  color: #fff;
  transform: translateY(-2px);
  border-color: #0673c5;
}
.main-footer .footer-newsletter .bg-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 30px 0 0 30px !important;
  font-size: 0.85rem;
  height: 42px;
}
.main-footer .footer-newsletter .bg-glass:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  outline: none;
}
.main-footer .footer-newsletter .bg-glass ::placeholder {
  color: rgba(176, 192, 216, 0.6);
}
.main-footer .footer-newsletter .btn-orange-news {
  background-color: #0673c5;
  border-radius: 0 30px 30px 0 !important;
  border: none;
  width: 46px;
  transition: background-color 0.2s ease;
}
.main-footer .footer-newsletter .btn-orange-news:hover {
  background-color: #0562a7;
}
.main-footer .footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
}

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