/* Main Styles */

:root {
  --bs-primary: #0056b3;
  --accent-color: #6c757d;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
}

.navbar-brand {
  font-weight: 700;
  color: var(--bs-primary) !important;
}

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section-padding {
  padding: 5rem 0;
}

.footer-bg {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  color: black;
}

/* Carousel Styles */

.carousel-caption {
  left: 0;
  right: 0;
  padding: 1rem;
  margin-bottom: 1rem;
}

.carousel-item img {
  object-fit: cover;
  object-position: center;
}

/* Testimonials */

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive Adjustments */

@media (max-width: 767.98px) {
  .section-padding {
    padding: 2rem 0;
  }
}

@media (max-width: 767.98px) {
  .carousel-caption {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.25rem;
  }
}

@media (max-width: 767.98px) {
  .testimonial img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

