/* Add this to your style.css file */

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
  }
  
  .main-header {
    background-color: #065f46; /* Matching your screenshot */
    color: white;
    padding: 15px 0;
  }
  
  .header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700; /* Bold */
  }
  
  .nav-links a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #facc15; /* Light yellow on hover */
  }
  
  #organiccolor{
    color: white;
  }

  /* ==================== */
.features-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  grid-template-columns: repeat(4, 1fr); /* Creates 4 equal columns */
    gap: 20px; /* Spacing between the images */
  gap: 30px;
  padding: 40px;
  justify-items: center;
}

.feature-card {
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Wrap image in a container so we can tint it */
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Overlay div for light blue tint on hover */
.feature-card:hover .feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(173, 216, 230, 0.6); /* light blue with opacity */
  backdrop-filter: blur(3px);
  z-index: 1;
  border-radius: 50%;
}

/* Overlay text */
.feature-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-weight: bold;
  font-size: 16px;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
  text-align: center;
}

.feature-card:hover .feature-overlay {
  opacity: 1;
}

.feature-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
