* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.5;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    display: flex;
    flex-wrap: wrap;
}
.logo img{
    max-width: 200px;
}
.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #222;
}

.burger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #0589da;
}

/* HERO */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #586fb3, #1aafd0);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 26px;
    background: #fff;
    color: #222;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
}

/* SECTIONS */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* SERVICES */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* PROJECTS */
.projects {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* PROCESS */
.process {
    padding: 80px 0;
    background: #f9f9f9;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step {
    flex: 1;
    text-align: center;
}

.step span {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #586fb3;
    color: white;
    line-height: 45px;
    margin-bottom: 10px;
    font-size: 18px;
}

/* CONTACT */
.contact {
    padding: 80px 0;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
}
.contact-info a{
    text-decoration: none;
    color: #0587da;
}
/* FOOTER */
.footer {
    padding: 20px 0;
    text-align: center;
    background: #f5f5f5;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-direction: column;
    }
}

@media(max-width: 600px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #fff;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .nav.active {
        display: flex;
    }

    .burger {
        display: block;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 30px;
    }
}


/* OVERLAY */
#mobileOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 50;
}

#mobileOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* MENU LEFT */
.mobile-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 280px;
    height: 100%;
      background: #068adb;
    padding: 20px;
    z-index: 60;
    transition: left .35s ease;
}

.mobile-menu.open {
    left: 0;
}

/* CLOSE BUTTON */
.mobile-close {
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    float: right;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #222;
}

#formSuccess {
    display: none;
    text-align: center;
    padding:20px;
    color:green;
}