
.title {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 10px 10px;
    font-size: 20px;
} 
a {
    text-decoration: none; 
    color: inherit; 
    cursor: default; 
}

.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* width: 100%; */
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}
.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    text-align: center;
}
.service-image img {
    width: 100%;
    border-bottom: 3px solid #007bff;
    object-fit: cover;
}
.service-content {
    padding: 15px;
}
.service-content h3 {
    color: #007bff;
    font-size: 20px;
    margin-bottom: 10px;
}
.service-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}
content-container-service
.service-content a {
    display: inline-block;
    margin-top: 10px;
    color: #d9534f;
    text-decoration: none;
    font-weight: bold;
}
.service-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 320px) {
    .service-card {
        max-width: 90%;
        margin: 10px auto;
    }
    .service-content h3 {
        font-size: 18px;
    }
    .service-content p {
        font-size: 14px;
    }
    .service-content a {
        font-size: 14px;
    }
}


/*  */

.content-container-service1 {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color:#000000;
}

.content-container-service {
    background-color: white;
    margin: 15px 0;
    color: #000000;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.section-title {
    color: #2c3e50;
    border-bottom: 2px solid #4ca1af;
    padding-bottom: 5px;
}

.list {
    list-style: none;
    padding: 0;
}

.list-item {
    background: #e3f2fd;
    margin: 10px 0;
    padding: 12px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: bold;
}

.list-item:hover {
    background: #bbdefb;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .title h1 {
        font-size: 25px;
    }

    .content-container-service1 {
        width: 95%;
    }

    .content-container-service {
        padding: 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .list-item {
        padding: 10px;
    }

    .read-more-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

}

@media (max-width: 480px) {

    .title h1 {
        font-size: 20px;
        
    }

    .content-container-service1 {
        width: 100%;
    }

    .content-container-service {
        padding: 10px;
    }

    .section-title {
        font-size: 18px;
    }

    .list-item {
        padding: 8px;
    }

    .read-more-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
      
}