/* =========================
   RESPONSIVE DESIGN
========================= */

/* TABLET (≤ 992px) */
@media (max-width: 992px) {

    .hero,
    .about {
        flex-direction: column;
        padding: 40px;
    }

    .hero-image img,
    .about-image img {
        width: 100%;
    }

    .service-cards {
        flex-wrap: wrap;
    }

    .card {
        width: 100%;
    }

    .project {
        flex-direction: column;
        height: auto;
    }
}
    /* MOBILE (≤ 600px) */
@media (max-width: 600px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .navbar nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .navbar nav a {
        margin: 10px 0;
    }

    .hero,
    .about,
    .gallery,
    .project-page {
        padding: 30px 20px;
    }

    .hero-text h1,
    .about-text h1 {
        font-size: 24px;
    }

    .service-cards {
        flex-direction: column;
        gap: 15px;
    }

    /* GALLERY */
    .project {
        margin-bottom: 20px;
    }

    /* PROJECT GRID */
    .project-grid {
        grid-template-columns: 1fr;
    }

    .box3 {
        grid-column: span 1;
    }

    /* Reduce heights */
    .project-grid .box {
        height: 150px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #1c1c1c;
    background-color: #f8f6f2;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo img {
    width: 250px;
}

.logo span {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 400;
}

.nav-links a.active,
.nav-links a:hover {
    border-bottom: 2px solid #112250;
}


/* ABOUT SECTION */
.about {
    display: flex;
    gap: 50px;
    padding: 80px 60px;
    background: #f7f4ef;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #112250;
}

.about-text h3 {
    margin: 25px 0 10px;
    font-size: 18px;
    color: #112250;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #112250;
}

/* ACTIVE NAV LINK */
nav a.active {
    border-bottom: 2px solid #0f1f44;
    padding-bottom: 5px;
}


.footer {
    background: #ffffff;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    align-items: start;
}

/* BRAND SECTION */
.footer-brand {
    color: #706E6E;
}

.footer-logo {
    width: 280px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.6;
}

/* SERVICES */
.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #112250;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #112250;
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #112250;
}

