/* =========================
   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;
}

/* HERO SECTION */
.hero {
    display: flex;
    padding: 60px;
    gap: 40px;
    background: #f7f7f7;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #112250;
}

.hero-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #112250;
}

.hero-text button {
    padding: 12px 25px;
    background: #112250;
    font-weight: bold;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 6px;
}

/* SERVICES */
.services {
    padding: 60px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
    color: #112250;
    letter-spacing: 0.3cm;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.card {
    width: 250px;
    background: #112250;
    color: white;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card p {
    padding: 15px;
    font-weight: bold;
}


.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;
}

