/* top bar */
.top-bar {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 20px;
}

.get-quote-btn {
  background-color: #042c6b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.get-quote-btn:hover {
  background-color: #4269a6;
}

/* slider */
.custom-carousel {
  overflow: hidden;
}

.carousel-item {
  height: 80vh;
  align-items: center;
  background-color: #042c6b;
  color: white;
}

.text-section {
  background-color: #042c6b;
  color: #fff;
  padding: 60px;
  margin-bottom: 150px;
}

.text-section h1 {
  font-size: 3rem;
  font-weight: bold;
}

.text-section small {
  color: #bbb;
  font-size: 1rem;
  display: block;
  margin-bottom: 15px;
}

.text-section .btn {
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  font-weight: 600;
}

.text-section .callBtn {
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  padding: 10px 30px;
  font-weight: 600;
}

.callIcon {
  color: #000;
  background-color: #fff;
  border-radius: 100%;
  padding: 5px;
}

.image-section img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-indicators {
  bottom: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
}

/* about */
.about-section h6 {
  color: #b48a4a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section h2 {
  font-weight: 700;
  font-size: 2rem;
}

.about-section p {
  font-size: 0.95rem;
}

.nav-tabs .nav-link {
  border: none;
  font-weight: 500;
  color: #000;
}

.nav-tabs .nav-link.active {
  color: #042c6b;
  border-bottom: 2px solid #042c6b;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li::before {
  content: '✓';
  color: #042c6b;
  margin-right: 8px;
  font-weight: bold;
}

.about-img {
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

/* services */
.swiper {
  padding: 30px 0;
}

.swiper-slide {
  width: 300px;
}

.card {
  height: 100%;
}

.swiper-pagination-bullet-active {
  background-color: black !important;
}

/* Arrows closer to the border */
.swiper-button-next,
.swiper-button-prev {
  color: black;
  width: 30px;
  height: 30px;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* process */
.process-step {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.process-step .step-icon {
  font-size: 2rem;
  color: #042c6b;
  margin-bottom: 15px;
}

.process-step h5 {
  font-weight: 600;
}

.process-step p {
  font-size: 0.9rem;
  color: #555;
}

.process-step:hover {
  background-color: #042c6b;
  color: #fff;
}

.process-step:hover .step-icon {
  color: #fff;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.project-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 15px;
  text-align: left;
}

.project-overlay span {
  font-size: 1.2rem;
  font-weight: bold;
}

.project-overlay h5 {
  margin: 0;
  font-size: 1rem;
}

/* blog */
.blog {
  height: 25vh;
  align-items: center;
  background-color: #042c6b;
  color: #000;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px #000;
  padding: 10px;
}

.section-title {
  color: #042c6b;
}

.service-highlight img {
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

/* quote */
.quote-header {
  background-color: #042c6b;
  color: #fff;
  padding: 60px 0;
}

.quote-header h1 {
  font-weight: bold;
}

.form-control:focus {
  border-color: #042c6b;
  box-shadow: none;
}

.btn-success {
  background-color: #042c6b;
  border: none;
}

.btn-success:hover {
  background-color: #4269a6;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
}

.section-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-outline-success:hover {
  background-color: #042c6b;
  color: white;
}

.subBtn {
  background-color: #042c6b;
  color: #fff;
}

.subBtn:hover {
  background-color: #4269a6;
  color: white;
}

.accordion-button:not(.collapsed) {
  background-color: #042c6b;
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 8px;
    text-align: center;
    flex-direction: column !important;
  }

  .top-bar .container>div {
    margin: 5px 0;
  }

  .navbar-brand span {
    display: none;
    font-size: 16px;
    text-align: left;
  }

  .get-quote-btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  .navbar-nav .nav-link {
    padding: 8px 16px;
    font-size: 15px;
    text-align: left;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-collapse {
    background-color: #ffffff;
    padding: 15px 0;
  }

  .navbar-nav {
    gap: 0;
  }

  .top-bar a {
    display: inline-block;
    margin: 0 4px;
  }

  .carousel-item {
    height: 80vh;
  }

  .carousel-item h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .carousel-item p {
    font-size: 1rem;
  }

  .carousel-item .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .carousel-item .callBtn {
    position: absolute;
    margin-left: 140px;
  }

  .text-section {
    margin-bottom: 0;
  }

  #clientTestimonials {
    height: 30vh;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .image-section img {
    height: 100%;
    object-fit: cover;
  }

  /* about */
  .about-section h2 {
    font-size: 1.5rem;
  }
}