/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header and Navbar */

/* Section Styles */
.section {
    padding: 50px 20px;
    text-align: center;
}
#process{
background:#bfbfbf;   
border-top: 1px solid #f3e759;


}

#about {
    background-color: rgb(217 217 217 / 33%)
}

#about h2 {
    background:#bfbfbf;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000000;
}

.about-image {
    width: 80%;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#process .process-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: linear-gradient(60deg,  #5b4014eb  0%, #f59e0b 60%);
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #fff;
}

.step img {
    width: 100%;
    height: 43vh;
    border-radius: 10px;
    margin-top: 15px;
}

#gallery .gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

#gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    border-top: 1px solid black;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 1em;
    margin: 0;
}

/* Mobile and Tablet Styles (Responsive Breakpoints) */
@media screen and (max-width: 1024px) {
    .navbar nav ul {
        flex-direction: column;
    }

    .navbar nav ul li {
        padding: 12px 0;
    }

    #process .process-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 80%;
        margin-bottom: 20px;
    }

    #gallery .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        width: 90%;
    }
}

@media screen and (max-width: 600px) {
    .navbar nav ul {
        padding: 20px;
    }

    .navbar nav ul li {
        font-size: 1em;
    }

    .navbar h1 {
        font-size: 1.8em;
    }

    #about h2 {
        font-size: 2em;
    }

    #process .process-container {
        flex-direction: column;
    }

    .step {
        width: 90%;
    }

    #gallery .gallery-container {
        grid-template-columns: 1fr;
    }

    footer p {
        font-size: 0.9em;
    }
}
