
    /* Features Section Styling with Colorful Backgrounds */
.features {
    padding: 50px 0;
    background: #f9f9f9;
}

.features-item {
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

/* Background Colors for Each Card */
.features-item:nth-child(1) {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.features-item:nth-child(2) {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.features-item:nth-child(3) {
    background: linear-gradient(135deg, #fad0c4, #ffd1ff);
}

.features-item:nth-child(4) {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

.features-item:nth-child(5) {
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}

.features-item:nth-child(6) {
    background: linear-gradient(135deg, #d4fc79, #96e6a1);
}

.features-item:nth-child(7) {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
}

.features-item:nth-child(8) {
    background: linear-gradient(135deg, #a6c0fe, #f68084);
}

.features-item:nth-child(9) {
    background: linear-gradient(135deg, #fccb90, #d57eeb);
}

.features-item:nth-child(10) {
    background: linear-gradient(135deg, #fddb92, #d1fdff);
}

.features-item:nth-child(11) {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.features-item:nth-child(12) {
    background: linear-gradient(135deg, #c3cfe2, #fdeff9);
}

/* Text and Icon Styling */
.features-item i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: inline-block;
}

.features-item h3 {
    font-size: 1.2rem;
    margin: 10px 0 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-item a {
    text-decoration: none;
    color: inherit;
}

.features-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .features-item {
        padding: 15px;
    }

    .features-item i {
        font-size: 2.5rem;
    }

    .features-item h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-item {
        padding: 10px;
    }

    .features-item i {
        font-size: 2rem;
    }

    .features-item h3 {
        font-size: 0.9rem;
    }
}

