/* for our about us page */

/*
 * Styles for the Features Grid Section
 */

.features-section {
  padding: 5rem 1rem;
  background-color: #111827; /* Equivalent to bg-gray-900 */
  color: #ffffff;
  font-family: 'Ubuntu', sans-serif;
}

.features-section .features-badge {
    display: table; /* To make it fit content width */
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    border: 1px solid #374151; /* border-gray-800 */
    border-radius: 0.75rem; /* rounded-xl */
    color: #f472b6; /* text-pink-400 */
    font-size: 0.875rem;
}

.features-section .features-title {
    font-size: 3.5rem; /* Adjusted from text-7xl for better fit */
    font-weight: 800; /* extrabold */
    text-align: center;
    max-width: 42rem; /* max-w-4xl */
    margin: 2.5rem auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
    max-width: 64rem; /* max-w-6xl */
    margin: 2.5rem auto;
    padding: 2.5rem 1.5rem;
}

/* Responsive grid columns */
@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .features-section {
        padding: 3rem 1rem;
    }
    .features-section .features-title {
        font-size: 2.5rem;
        margin: 1.5rem auto;
    }
    .features-grid {
        padding: 1.5rem 1rem;
    }
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 1rem; /* rounded-2xl */
    padding: 1.5rem;
    transition: all 0.2s ease-in-out;
}

.feature-card:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

.feature-card .icon-container {
    background-color: #111827; /* bg-gray-900 */
    color: #be185d; /* text-pink-800, adjusted for visibility */
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem; /* rounded-xl */
    margin-bottom: 1rem;
}

.feature-card .icon-container svg {
    width: 1.5rem; /* h-5 w-5 */
    height: 1.5rem;
}

.feature-card .card-title {
    color: #ffffff;
    font-size: 1.875rem; /* text-3xl */
    font-weight: 600; /* semibold */
    margin: 1rem 0;
}

.feature-card .card-description {
    color: #9ca3af; /* text-gray-400 */
    font-size: 1.125rem; /* text-lg */
    margin: 0.5rem 0;
}
