/* heathcare css */
body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 90%;
    margin: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.container.show {
    opacity: 1;
    transform: translateY(0);
}

.container.hide {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

.text-section {
    width: 50%;
}

.container .text-section h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    font-family: "neulis-neue", sans-serif !important;
    color: #FDBC02;
}
.h{
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3;
    font-family: "neulis-neue", sans-serif !important;
    font-weight: 600;
    font-style:Â normal;
}
.text-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 15px;
    color: #c9bbbb;
    font-family: "neulis-neue", sans-serif;
    font-weight: 400;
    font-style:Â normal;
}

.image-section {
    width: 45%;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.image-grid img {
    width: 90%;
    height: auto;
    border-radius: 10px;
}

/* ðŸ”¹ Responsive Design for Small Devices */
/* @media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .text-section {
        width: 100%;
    }

    .text-section h1 {
        font-size: 28px;
    }

    .text-section p {
        font-size: 14px;
    }

    .image-section {
        width: 100%;
        margin-top: 20px;
    }

    .image-grid img {
        width: 80%;
    }
} */

@media screen and (max-width: 580px) {
    .text-section h1 {
        font-size: 20px !important;
    }

    .image-grid img {
        width: 100%;
    }
    .text-section p {
        font-size: 12px;
        line-height: 1.6;
        text-align: justify;
    }
    svg{
        width: 100% !important;
    }
    .container{
        padding: 0 !important;
    }
    .scroll-content{
        top: 0 !important;
    }
    .container-expertise{
        flex-direction: column;
        height: 65vh !important;
        padding: 0 !important;
    }
    /* ----expertise-section---- */
    .cards {
        flex-direction: column;
    }
    .card {
        width: 100% !important;
    }
    .parent h1{
        font-size: 1.6rem !important
    }
    .parent h2{
        font-size: 18px;
    }
}

/* /##########################################################################################################################################################/ */

/* -----------------------------expertise-section--------------------------------- */

#main-container {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #1e1e1e, #727171, #4d4949, #131212);
    color: #fff;
    font-family: Arial, sans-serif;
}

.container-expertise {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    height: 60vh;
    margin: auto;
    padding: 50px 20px;
}

.text-section {
    width: 50%;
}

.image-section {
    width: 45%;
    display: flex;
    justify-content: center;
}

.image-section img {
    max-width: 80%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .text-section, .image-section {
        width: 100%;
    }
}

/* /##########################################################################################################################################################/ */


/* ------------------------------what we do section---------------------------------  */

.parent {
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 40px 20px;
    background: #bbb;
}

.parent h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2%;
    color: #FFE656;
    font-family: "neulis-neue", sans-serif !important;
    font-weight: 600;
    font-style:Â normal;
}

.parent h3 {
    color: rgb(253, 188, 2);
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 20%;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);  /* Default shadow */
    overflow: hidden;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);  /* Darker shadow on hover */
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.card-content p {
    font-size: 18px;
    color: #555;
    font-family: "neulis-neue", sans-serif;
    font-weight: 400;
    font-style:Â normal;
}

.parent button {
    background: #FDBC02;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 2px solid #FDBC02;
    /*font-family: "neulis-neue", sans-serif;*/
}

.parent button:hover {
    background: #fff;
    color: #000;
    border: 2px solid #FDBC02;
}



/* Fade-in effect */
.card.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.15);  /* Slight shadow after fade-in */
}

/* /##########################################################################################################################################################/ */
