/* =========================
   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;
}


.contact-section {

    background-color: #F5F0E9;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background-color: #F5F0E9;
}

/* LEFT INFO */
.contact-info h2 {
    color: #112250;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #112250;
    line-height: 1.6;
}

/* IMAGE */
.contact-image {
  margin-top: 30px;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}


/* FORM BOX */
.contact-form-box {
    background-color: #ffffff;
    border: 2px solid #112250;
    border-radius: 25px;
    padding: 40px;
}

.contact-form-box h3 {
    text-align: center;
    color: #112250;
    font-size: larger;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* FORM */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #112250;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #112250;
}

/* BUTTON */
.contact-form-box button {
    display: block;
    margin: 30px auto 0;
    background-color: #112250;
    color: #fff;
    padding: 10px 40px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form-box button:hover {
    background-color: #0b183a;
}


.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;
}

