/* 5. Why Choose Us Section ========================= */
/* Feature cards showing company strengths. */
.why-choose-us {
    padding: 3rem 0 5rem 0;
    /* Increased top padding for more space above */
    background: #f7fafc;
}

/* Ensure consistent spacing between section title and cards */
.why-choose-us .section-title {
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    /* Use CSS Grid for layout */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive columns: as many 300px columns as fit, else 1fr */
    gap: 2rem;
    /* Space between grid items */
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    /* Rounded corners */
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    /* Card shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover */
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-3px);
    /* Lift on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #cbd5e0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    /* Icon circle gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Careers Page Feature Styles */
.features-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.features-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.feature-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Benefits Section for Careers */
.about-section {
    padding: 4rem 0;
    background: white;
}

.about-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    background: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item div {
    flex: 1;
}

.benefit-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        margin: 0 auto 1rem auto;
    }
}