:root {
  --primary-color: #0c4da2;
  --secondary-color: #f39c12;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.top-header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.header-mail {
  color: #fff;
}

.btn {
  white-space: nowrap;
}

.main-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}

.logo-img1 {
  width: 80px;
}
.logo-img2 {
  width: 90px;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .active {
  color: var(--primary-color);
  font-weight: 700;
}

.nav-item {
  text-wrap: nowrap;
}

.carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 0.8;
}

.justified-content {
  text-align: justify;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.section-title h2 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.section-title::after {
  content: '';
  width: 70px;
  height: 3px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.card {
  margin-bottom: 20px;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #0a3f82;
  border-color: #0a3f82;
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
}

.timeline-date {
  font-weight: 700;
  color: var(--primary-color);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-links h4 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 5px;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-location {
  width: 100%;
}

.client-img-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.client-img {
  width: 150px;
}

@media (max-width: 768px) {
  .carousel-item {
    height: 300px;
  }

  .carousel-caption h5 {
    font-size: 18px;
  }

  .carousel-caption p {
    font-size: 14px;
  }
}
