/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 03 2026 | 09:04:43 */
/* Section Container and Layout */
.solar-features-section {
  padding: 80px 20px;
  background-color: #fff; /* Palette White */
  font-family: Arial, sans-serif;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Card Styling */
.feature-card {
  background-color: #fff;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Modern Hover Effect */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: rgba(1, 132, 0, 0.2); /* Faded Green */
}

/* CRITICAL: Force high-res images into Small Circles */
.feature-image-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden; /* Crops image into circle */
  border: 5px solid #fff; /* Palette White Border */
  box-shadow: 0 0 0 3px rgba(1, 132, 0, 0.2); /* Faded Green outer glow */
  background-color: #000; /* Handles transparency in Earth PNG */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.feature-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents stretching */
  display: block;
}

/* Card Content Styling */
.feature-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Heading Styling (Uses #000 and the Green accent) */
.feature-title {
  color: #000; /* Palette Black */
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
  padding-bottom: 15px;
  position: relative;
}

/* Replacing the old VC Separator with modern CSS underline */
.feature-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #018400; /* Palette Green */
}

/* Description Text Styling */
.feature-description {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
  min-height: 100px; /* Aligns buttons across columns */
}

/* Main Button Styling (Uses #018400 Green) */
.solar-features-section .btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background-color: #018400; /* Palette Green */
  color: #fff; /* Palette White */
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  border: 2px solid #018400;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Button Hover State */
.solar-features-section .btn-primary:hover {
  background-color: transparent;
  color: #018400; /* Palette Green */
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 767px) {
  .features-container {
    grid-template-columns: 1fr; /* 1 column for mobile */
    gap: 40px;
  }
}