:root {
  --primary-color: #a14920;
  --secondary-color: #b07455;
  --accent-color: #c0c0c0;
  --text-color: #691d10;
  --light-text: #666666;
  --sidebar-width: 250px;
}

body {
  color: var(--text-color);
  overflow-x: hidden;
}

.hero-section {
  background-color: var(--accent-color);
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
}

.hero-section p {
  color: #fff !important;
  text-align: center;
}

.feature-box {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 30px;
  color: var(--primary-color);
}

.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.bg-light-green {
  background-color: var(--accent-color);
}

.testimonials {
  background-color: #2b2b2b;
  color: #fff;
}

.swiper-slide {
  height: 85vh;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.swiper-slide::after {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -99;
}

.swiper-slide:nth-child(1) {
  background-image: url(../img/index/5.jpg);
}

.swiper-slide:nth-child(2) {
  background-image: url(../img/index/3.jpg);
}

.swiper-slide:nth-child(3) {
  background-image: url(../img/index/4.jpg);
}

.card {
  position: relative;
  cursor: pointer;
}

.card .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff !important;
  opacity: 0;
  height: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card:hover .card-body {
  opacity: 1;
  transition: opacity 0.8s ease;
}

.zoom-img {
  transition: transform 0.3s ease; /* Smooth zoom transition */
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the container */
}

.card:hover .zoom-img {
  transform: scale(1.2); /* Zoom effect */
}

.card-ctz-class{
  height: 100% !important;
  object-fit: cover !important;
}