/*=================== GENERAL SECTION ================*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: 'Arvo', serif;
    color: #000000;
    background-color: #ffffff;
}

img{
    max-width: 100%;
    display: block;
}

a{
    text-decoration: none;
    color: inherit;
}

section{
    padding: 4rem 2rem;
}

/*=================== HEADER SECTION ================*/

header{
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 999;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

header img{
    height: 50px;
}

/*=================== HERO SECTION ================*/

.hero{
    background: url('images/background.jpg') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1{
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p{
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn{
    background-color: #05e0e9;
    color: #000;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
}

.cta-btn:hover{
    background-color: #04c9d2;
}

/*=================== ABOUT SECTION ================*/

.about{
    background-color: #f0f0f0;
    color: #000;
}

.about h2{
    margin-bottom: 1rem;
    text-align: center;
}

.about p{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

/*=================== SERVICES SECTION ================*/

.services{
    background-color: #ffffff;
    color: #000;
    text-align: center;
}

.services h2{
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 250;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/*=================== MISSION SECTION ================*/

.mission {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
    font-style: italic;
}

.mission div {
    margin-top: 1rem;
    text-align: right;
    font-style: normal;
}

/*=================== PORTFOLIO SECTION ================*/

.portfolio {
    background-color: #d3d3d3;
    color: #000000;
    text-align: center;
}

.portfolio h2 {
    margin-bottom: 2rem;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.project {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: scale(1.03);
}

.project img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.project p{
    text-align: center;
    font-size: 16px;

}

/*=================== CONTACT SECTION ================*/

.contact {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}

.contact form{
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Arvo', serif;
}

.contact button {
    background-color: #05e0e9;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.contact button:hover {
    background-color: #04c9d2;
}

/*=================== FOOTER SECTION ================*/

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

footer .socials-icons {
    margin-bottom: 1rem;
}

footer .socials-icons a {
    margin: 0 0.5rem;
    color: #05e0e9;
    transition: transform 0.3s;
    display: inline-block;
}

footer .socials-icons a:hover {
    transform: translateY(-3px);
}