.custom-carousel {
  max-height: 350px; /* Adjust height here */
  overflow: hidden;
}

.carousel-img {
  height: 350px; /* Same as carousel height */
  object-fit: cover; /* Prevent image stretching */
}

.btn-gradient {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  border-radius: 50px;
}

.contact-card {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.style1 {
  background-color: aqua;
  color: white;
}

.style2 {
  background-color: rgb(119, 14, 105);
  color: white;
}

.text-style1 {
  color: rgb(119, 14, 105);
}

.border-style {
  border: 300px;
  border-color: rgb(119, 14, 105);
  border-radius: 300px;
}
.nav-link.active {
  border: 2px solid rgb(235, 230, 234);
  padding: 6px 12px;
  border-radius: 6px;
}

.color2 {
  color: rgb(68, 66, 66);
}
.review-section {
  width: 30%;
  margin: 40px auto; /* centers it */
  border: 2px solid rgb(119, 14, 105);
  border-radius: 12px;
  padding: 30px;
}

#reviewForm .form-control {
  border-color: rgb(119, 14, 105);
}

#reviewForm .form-control:focus {
  border-color: rgb(119, 14, 105);
  box-shadow: 0 0 0 0.2rem rgba(119, 14, 105, 0.25);
}

#reviewForm button {
  background-color: rgb(119, 14, 105);
  color: white;
}
.review-section {
  width: 30%;
  min-width: 320px;
}
@media (max-width: 768px) {
  .review-section {
    width: 90%;
  }
}

.contact-icon i {
  font-size: 22px;
  color: #0d6efd; /* Bootstrap blue */
}

.nav-pill {
  border: 2px solid #fff; /* border color */
  border-radius: 50px; /* oval shape */
  padding: 6px 16px;
  margin-right: 8px;
  background: transparent !important;
  color: #fff;
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}

/* Hover: still no background */
.nav-pill:hover {
  border-color: #f0f0f0;
  color: #f0f0f0;
  background: transparent !important;
}

/* Active link: border only */
.nav-pill.active {
  border: 2px solid #fff;
  background: transparent !important;
  color: #fff;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
