.services-section {    
    padding: 60px 20px;
    background-color: rgba(19, 18, 18, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #31e619;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    background: rgba(44, 44, 44, 0.432);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(238, 238, 238, 0.678);
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 25px rgba(10, 248, 1, 0.712);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #22ff59;
}

.service-item p {
    font-size: 1rem;
    color: #f0e9e9;
    line-height: 1.6;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-button {
    color: #224aff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover {
    color: #1ad95a;
    transform: scale(1.1);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    .service-item {
        padding: 15px;
    }
}
