/*-- Use For Custom Styling --*/

/* Features Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  width: 100%;
}

.feature-box {
  padding: 30px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 1;
}

.feature-box:hover {
  border-color: #592b1c;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(89, 43, 28, 0.15);
}

.feature-box:hover::before {
  border-color: #592b1c;
}

.feature-box h4 {
  position: relative;
  z-index: 2;
  color: #333;
  transition: color 0.3s ease;
}

.feature-box:hover h4 {
  color: #592b1c;
}

.feature-box p {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
