@charset "utf-8";
/* CSS Document */

		   .feature-card {
    color: var(--gray-500);
    transition: 0.3s;
}

/* Change ALL text inside on hover */
.feature-card:hover {
    color: #fff;
}

/* Optional: icon color also */
.feature-card:hover i {
    color: #fff;
}

			   
			   .feature-card:hover {
    color: #fff;
    background: #1f2937;
    border-radius: 10px;
}
			   
			   
			   .feature-card p {
    transition: 0.3s;
}

.feature-card:hover p {
    color: #fff;
}


.feature-section {
    padding: 40px;
    background: #f8f9fa;
    font-family: Arial, sans-serif;
}

.feature-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-table th, .feature-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.feature-table th {
    background: #0d6efd;
    color: #fff;
    font-size: 16px;
}

.feature-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.feature-table tr:hover {
    background: #f1f5ff;
}

.check {
    color: #198754;
    font-size: 18px;
    font-weight: bold;
}

.cross {
    color: #ccc;
}

@media (max-width: 768px) {
    .feature-table th, .feature-table td {
        padding: 10px;
        font-size: 14px;
    }
}