@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* font-family: "Manrope", sans-serif; */
/* font-family: "Playfair Display", serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Noto Serif Display", serif; */
    font-family: "Manrope", sans-serif;
}

a {
    text-decoration: none;
    color: #222;
}


.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
}

.section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    background: #ffdde2;
    color: #ae061d;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

/* hero section */
.serve-Hero {
    width: 100%;
    height: auto;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .serve-Hero-Container {
        width: 100%;
        height: auto;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h2 {
            font-size: 3rem;
            line-height: 3.5rem;
            color: #121212;
            margin-bottom: 15px;
            font-weight: 550;
            max-width: 750px;
            text-align: center;

            span {
                color: #d19200;
            }
        }

        h3 {
            font-size: 1.5rem;
            color: #222;
            font-weight: 500;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.2rem;
            line-height: 2rem;
            font-weight: 400;
            max-width: 1000px;
            text-align: center;
            color: #444;
        }
    }
}

@media only screen and (max-width:768px) {
    .serve-Hero {
        padding: 0 10px;

        .serve-Hero-Container {
            min-height: 450px;

            h4 {
                margin-bottom: 10px;
            }

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            p {
                font-size: 1rem;
                line-height: 1.5rem;
                max-width: 100%;
            }
        }
    }
}

/* hero section */

/* service showcase section */
.service-Showcase {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .service-show-Container {
        width: 100%;
        max-width: 1400px;
        height: auto;
        margin: 50px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        .service-Cards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;

            .service-Card {
                width: 50%;
                max-width: 680px;
                height: auto;
                min-height: 400px;
                max-height: 450px;
                display: flex;
                align-items: center;
                background-color: #fff;
                overflow: hidden;
                box-shadow: 2px 2px 5px #00000015;
                border-radius: 15px;
                gap: 35px;
                justify-content: space-between;

                .serv-left,
                .serve-right {
                    width: 50%;
                    height: auto;
                }

                .serv-left {
                    margin: 0;
                    padding: 0;
                    height: 400px;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        /* min-height: 400px;
                        max-height: 400px; */
                        object-fit: cover;
                    }
                }

                .serve-right {
                    display: flex;
                    align-items: start;
                    justify-content: start;
                    flex-direction: column;
                    padding-right: 10px;
                    padding-top: 20px;
                    padding-bottom: 20px;

                    #serve-icon {
                        font-size: 2.5rem;
                        color: #ae061d;
                        /* font-weight: 400; */
                        margin-bottom: 15px !important;
                    }

                    h3 {
                        font-size: 1.5rem;
                        line-height: 2rem;
                        margin-bottom: 15px;
                        color: #121212;
                    }

                    p {
                        color: #222;
                        margin-bottom: 20px;
                    }

                    ul {
                        list-style-type: disc;
                        margin-left: 10px;
                        margin-bottom: 20px;

                        li {
                            color: #333;
                            margin-bottom: 5px;
                        }
                    }

                    .serve-btn {
                        padding: 10px 20px;
                        color: #121212;
                        border: 1px solid #121212;
                        border-radius: 12px;
                        background-color: #fff;
                        transition: all .5s ease-in-out;
                        /* 
                        &:hover{
                            color: #fff;
                            border: 1px solid #d19200;
                            background-color: #d19200;
                            transform: translateX(15px);
                        } */

                        i {
                            color: #ae061d;
                            font-size: 1.1rem;
                        }
                    }

                }
            }
        }
    }
}

@media only screen and (max-width:768px) {
    body {
        position: relative;
    }

    .service-Showcase {
        padding: 0 10px;

        .service-show-Container {
            margin-bottom: 0;

            .service-Cards {

                .service-Card {
                    width: 100%;
                    position: sticky;
                    top: 25px;
                    height: auto;
                    min-height: 650px;
                    max-height: auto;
                    /* min-height: 650px; */
                    /* max-height: auto; */
                    flex-wrap: wrap;
                    gap: 10px;
                    box-shadow: none;

                    .serv-left {
                        width: 100% !important;
                        height: auto !important;
                        min-height: auto !important;
                        max-height: auto !important;

                        img {
                            width: 100%;
                            max-height: 200px;
                            min-height: 200px;
                            object-fit: cover !important;
                        }
                    }

                    .serve-right {
                        width: 100%;
                        height: auto;
                        min-height: 500px;

                        ul{
                            margin-left: 20px;
                        }
                    }
                }
            }
        }
    }
}
/* service showcase section */