@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);

* {
    padding: 0px;
    margin: 0px;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Profile Cards Section starts */
#section-two {
    /* background-color: orchid; */
    margin-top: 20px;
    /* padding: 50px 20px; */
    text-align: center;
}

#section-two h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: rgb(22, 4, 63);
}

.container p {
    margin-bottom: 30px;
    color: rgb(22, 4, 63);
}

#section-two .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
}

.arrow-left,
.arrow-right {
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

.arrow-left {
    position: absolute;
    left: 10px;
}

.arrow-right {
    position: absolute;
    right: 10px;
}

.card {
    background-color: rgba(233, 233, 233, 0.682);
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.card h3 {
    margin-top: 20px;
    font-size: 24px;
}

.card p {
    margin-top: 10px;
    font-size: 16px;
}

.star {
    font-size: 1.5rem;
    color: #d8d7d7;
}

.star.filled {
    color: rgb(255, 178, 0);
}

#section-two .container .card:hover {
    background-color: rgba(234, 234, 234, 0.953);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition-duration: 0.7s;
}

/* Profile card section ends */

/* Profile card Media query starts */
@media (max-width: 1200px) {
    .card-container {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .card-container .card {
        display: none;
    }

    .card-container .card:first-child {
        display: block;
    }

    .arrow-left,
    .arrow-right {
        display: block;
    }
}

/* Profile card section media query ends */

/* Gallery section starts*/
#gallery {
    /* background-color: red; */
    height: 810px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery .left-container {
    height: 100%;
    width: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery .left-container .left-container-wrapper {
    height: 90%;
    width: 80%;
    /* background-color: darkviolet; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* grid-template-columns: repeat(2, 1fr); */
}

#gallery .left-container .left-container-wrapper .form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(22, 4, 63);
}

/* Form Input Fields */
label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

textarea {
    resize: vertical;
}

button {
    background-color: rgb(230, 92, 0);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: rgb(6, 146, 15);
}

#gallery .right-container {
    height: 100%;
    width: 50%;
    /* background-color: skyblue; */
    /*background-color:hsl(42, 100%, 50%);*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);*/
    /* padding: 10px; */
    gap: 10px;
    margin-right: 20px;
    margin-left: 20px;
}

#gallery .right-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

/* Gallery section ends */

/* Gallery Section Media query starts */

@media (max-width: 1200px) {
    #gallery {
        height: auto;
        flex-direction: column;
        gap: 20px;
    }

    #gallery .left-container,
    #gallery .right-container {
        width: 100%;
        /* gap: 20px; */

    }

    #gallery .left-container .left-container-wrapper {
        width: 80%;
        grid-template-columns: 1fr;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 40px;
    }

    #gallery .left-container .left-container-wrapper .projects {
        width: 100%;
    }

    #gallery .left-container .left-container-wrapper h1 {
        font-size: 36px;
    }

    #gallery .left-container .left-container-wrapper .projects {
        width: 50%;
        gap: 20px;
    }

        #gallery .right-container img {
            height: 200px;
        }
    }

    @media (max-width: 480px) {
        #gallery .left-container .left-container-wrapper h1 {
            font-size: 28px;
        }

        #gallery .right-container img {
            /* height: 150px; */
            /* width: 100%; */
            display: none;
        } 
        #gallery .left-container .left-container-wrapper .form-container {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
            width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    } 

/* Gallery Section Media query ends */

/* Services Section starts*/
#services {
    height: auto;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.service-wrapper {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#services .container {
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    justify-content: center;
}

#services h2 {
    font-size: 30px;
    margin-bottom: 20px;
    justify-content: center;
}

.services-list {
    /* background-color: aqua; */
    display: flex;
    justify-content: space-around;
    padding: 0 80px;
    gap: 20px;
}

.service {
    background-color: white;
    /* padding: 30px; */
    width: 100%;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    text-align: center;
    /* border-radius: 8px; */
}

#services .container .services-list .steps {
    margin-bottom: 20px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
}

/*  service section media query starts*/
@media (max-width: 980px) {
    .services-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    #services h2 {
        font-size: 24px;
    }

    .service {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    #services {
        padding: 30px 10px;
    }

    #services h2 {
        font-size: 22px;
    }

    .service h3 {
        font-size: 20px;
    }

    .service p {
        font-size: 14px;
    }

    .steps {
        max-width: 100px;
    }
}

/*  service section media query starts*/