body {
  padding-top: 90px;
}

header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
}
header nav {
  border-bottom: 1px solid #ddd;
}

.list-item {
  padding: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: #121212;
}
.list-item::before {
  content: "• ";
  color: #007bff;
  font-weight: bold;
  margin-right: 5px;
}

.logo-container {
  display: flex;
  align-items: center;
}
.navbar-nav {
  gap: 24px;
}
.navbar-nav .nav-link {
  font-weight: bold;
  color: #000;
}
.navbar-nav .nav-link:hover {
  color: #0929dd;
}
/* hero section start */
.hero-section {
  background: url("images/hero.jpg") no-repeat center center/cover;
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6); /* Add a semi-transparent overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.btn-orange {
  background-color: #f68534;
  color: white;
  font-weight: bold;
  border: none;
}

.btn-orange:hover {
  background-color: #e65500;
  color: #fff;
}
/* hero section start */

.section-heading {
  font-size: 40px;
  color: #f68534;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-heading-small {
  font-size: 26px;
  font-style: italic;
  margin-bottom: 0;
  font-weight: 700;
}
.content {
  line-height: 1.6;
  font-size: 1.1rem;
}

.feature-card,
.service-card {
  flex: 1;
  max-width: 18%;
  text-align: left;
}
.feature-icon {
  height: 100px;
  overflow: hidden;
  margin-bottom: 20px;
}
.feature-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.feature-title,
.service-title {
  cursor: pointer;
  color: #0929dd;
  font-weight: 700;
  font-size: 20px;
}
.feature-card p,
.service-card p {
  font-size: 1.1rem;
}

.service-btn {
  background-color: #f68534;
  color: white;
  font-weight: bold;
  border: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.service-btn:hover {
  background-color: #f68534;
  color: #fff;
}
.service-icon img {
  width: 100%;
  max-height: 320px;
  min-height: 260px;
  object-fit: cover;
  background-color: #000;
}

.contact-section {
  background: url("images/contact-us.jpg") no-repeat center center/cover;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
.contact-overlay {
  background: rgb(0 0 0 / 70%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
}
.contact-content p {
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-heading {
  font-weight: 700;
  margin: 0;
  color: #0929dd;
  font-size: 2.2rem;
}
@media (max-width: 991.98px) {
  .feature-card,
  .service-card {
    max-width: 100%;
  }

  .contact-content p {
    font-size: 1rem;
  }
}
