
header#top {
    /* min-height: 100vh;
    background: url(../images/4.jpg) no-repeat center center; */
    background-size: cover;
    position: relative;
    padding: 10px 0;
}
nav .service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 5px 30px;
}
.wrapper h3 {
    color: #fff;
    text-align: center;
    margin: 10px auto;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #5dae87;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
    background: #4b8d6f;
    transform: translateY(-3px);
}

.header {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    height: 100px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.content-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-section {
    background-color: white;
    margin: 15px 0;
    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) {
    .header {
        font-size: 22px;
        padding: 15px;
    }

    .content-container {
        width: 95%;
    }

    .content-section {
        padding: 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .list-item {
        padding: 10px;
    }

    .read-more-btn {
        font-size: 14px;
        padding: 8px 12px;
    }

}

@media (max-width: 480px) {

    .header {
        font-size: 18px;
        padding: 10px;
    }

    .content-container {
        width: 100%;
    }

    .content-section {
        padding: 10px;
    }

    .section-title {
        font-size: 18px;
    }

    .list-item {
        padding: 8px;
    }

    .read-more-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
      
}