.services-head-section {
    width: 100%;
    background: #bf5885;
    height: 270px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5em;


    .services-title {
        font-family: var(--primary-font);
        font-size: 2.5em;
        color: white;
    }

    .services-description {
        font-family: var(--secondary-font);
        color: white;
        font-size: 1.2em;
        width: 60%;
        text-align: center;
    }
}


.services-hero {
    background: url('../assets/services-bg.png');
    width: 100%;
    height: 500px;
    background-size: 100% 100%;
    display: grid;
    place-items: center;

    .services-hero-content {
        width: 60%;
        height: 70%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2em;
        padding: .8em;

        .services-hero-title,
        .services-hero-secodnary {
            text-align: center;
        }

        .services-hero-title {
            font-family: var(--secondary-font);
            color: var(--alt-black);
            font-weight: bold;
            font-size: 3em;
        }

        .services-hero-secondary {
            font-family: var(--primary-font);
            color: var(--gray-text);
            font-size: 2.4em;
        }

        .services-ad {
            display: flex;
            align-items: center;
            gap: 2em;

            p {
                font-family: var(--primary-font);
                font-size: 1.7em;
                color: var(--alt-black);
            }
        }

        .upcoming-service {
            padding: 2em; 
            background-color: var(--whitesmoke);
            display: flex; 
            gap: 1em;
            img {
                width: 30%;
            }
            div {
                display: flex; 
                flex-direction: column; 
                justify-content: space-evenly;
                font-family: var(--secondary-font);
                p:first-child {
                    font-weight: bold;
                    color: var(--alt-black);
                }
                p:nth-child(2) {
                    color: var(--alt-black);

                    font-family: var(--primary-font);
                }
                p:last-child {
                    color: var(--primary-color);
                }
            }

            
        }


    }
}

.services-container {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    gap: 1em;
    padding: 0 1em; 
    width: 100%; 

    .services-item {
        display: flex;
    

        .services-item-img {
            width: 65%;
            height: 550px;
        }

        .services-item-content {
            width: 35%;
            padding: 1em; 
            line-height: 1.5;
            font-family: var(--secondary-font);
            display: flex; 
            flex-direction: column; 
            align-items: center;
            gap: 2em;
            padding: 2em;
            color: var(--alt-black);

            .services-item-title {
                font-weight: bold;
                font-size: 1.5em;
            }

            .services-item-description {
                line-height: 1.8;
            }
        }
    }

    .services-item:nth-child(odd) {
        background: var(--background-color-2);
    }

    .services-item:nth-child(even) {
        background: var(--whitesmoke);
        .services-item-img {
            order: 2;
        }
    }
}


.liked-our-services {
    width: 100%; 
    padding: 4em; 
    display: flex; 

    flex-direction: column; 
    align-items: center;
    gap: 2em; 
    background: #841441;

    button {
        font-family: var(--secondary-font);
        font-weight: bold; 
        color: white; 
        padding: .8em 3em; 
        background: var(--primary-color);
        font-size: 1.1em; 
        border-radius: 10px;
    }

    p:first-child {
        font-size: 2em;
        font-family: var(--primary-font);
        color: white;
    }

    p:nth-child(2) {
        font-family:var(--primary-font);
        color: white;
        font-size: 1.2em;
    }
}



/* Media Queries */



@media screen and (max-width: 1168px) {
    .services-head-section {
    font-size: .9em; 
    height: 250px;

    }

    .services-hero {
        font-size: .9em;
        height: 450px;
    }
    
    .services-item {
        flex-direction: column;


        .services-item-content {
            width: 100% !important;
        }

        img {
            width: 100% !important;
        }

    }

    .services-item:nth-child(even) {
        .services-item-img {
            order: 1 !important;
        }

        .services-item-content {
            order: 2;
        }
    }


}

@media screen and (max-width: 992px) {
    .services-hero {
        height: 400px;
        font-size: .76em; 
        .services-hero-content {
            width: 80%;
        }
    
    }

   
}

@media screen and (max-width: 768px) {
    .services-head-section {
        font-size: .8em; 
        height: 200px;

        .services-description {
            width: 80%;
        }
    
        }

    .services-hero {
        font-size: .6em; 
        background: none;
        .upcoming-service {
            font-size: 1.5em;
        }

    }
}
@media screen and (max-width: 576px) {
    .services-head-section {
        font-size: .75em; 
        height: 180px;
    }

    .services-hero {
        font-size: .5em;

        .services-hero-content {
            width: 90%;
        }
    }

    .services-container {
        padding: 0; 
    }
    .services-item {

       
        img {
            height: 300px !important;
        }
    }

    .liked-our-services {
        padding: 2em;
        font-size: .8em;
    }
}
@media screen and (max-width: 400px) {
}

