/* Main Styles */

:root {
  --bs-primary: #4a89dc;
  --accent-color: #a0d9d9;
  --light-bg: #f8f4e9;
  --text-color: #333333;
  --soft-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
}

.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: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  box-shadow: var(--soft-shadow);
}

/* Carousel Styles */

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

.carousel-item img {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.96) contrast(1.02);
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Modern Casual Testimonials */

/* Premium Testimonial Cards */

.testimonial {
  background: white;
  will-change: transform;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--soft-shadow);
  border-top: 4px solid var(--accent-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.testimonial img:hover {
  transform: scale(1.05);
}

.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
}

.testimonial blockquote:before {
  content: "“";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  opacity: 0.3;
}

.testimonial .name {
  font-weight: 700;
  color: var(--bs-primary);
  margin-top: 1rem;
  display: block;
  font-size: 1.1rem;
}

.testimonial .position {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* 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;
  }
}

