:root {
    --navy: #111827;
    --navy-2: #172033;
    --gold: #c99a3b;
    --gold-light: #e2bd6d;
    --cream: #f7f5f0;
    --white: #ffffff;
    --text: #26303d;
    --muted: #6b7280;
    --border: #e5e7eb;
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(92%, var(--max));
    margin: auto;
}

/* TOP BAR */
.topbar {
    background: #0b1019;
    color: #cbd5e1;
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.topbar a:hover {
    color: var(--gold-light);
}

.divider {
    margin: 0 10px;
    opacity: .4;
}

/* NAV */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.nav-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 330px;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand strong {
    display: block;
    font-size: 21px;
    letter-spacing: .08em;
    color: var(--navy);
}

.brand span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.3;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
    position: relative;
}

.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 11px 17px;
    border-radius: 3px;
}

.nav-cta:hover {
    background: #ae8128;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

/* HERO */
.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(10,15,25,.55), rgba(10,15,25,.72)),
        url("images/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,12,20,.72), rgba(8,12,20,.15));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 100px 0;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 13px;
}

.eyebrow.light {
    color: var(--gold-light);
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.02;
    letter-spacing: -.035em;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold-light);
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 3px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .25s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #ae8128;
    transform: translateY(-2px);
}

.btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
    color: #e5e7eb;
    font-size: 13px;
}

/* STATS */
.trust-strip {
    background: var(--navy);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.1);
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong {
    display: block;
    color: var(--gold-light);
    font-size: 29px;
}

.trust-grid span {
    color: #cbd5e1;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* SECTIONS */
.section {
    padding: 105px 0;
}

.section-light {
    background: var(--cream);
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading h2,
.section-intro h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.section-heading p,
.section-intro p {
    color: var(--muted);
    font-size: 16px;
}

.heading-dark h2 {
    color: var(--white);
}

.heading-dark p {
    color: #b9c1cd;
}

/* ABOUT */
.about-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: start;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-cards article {
    padding: 28px;
    border: 1px solid var(--border);
    background: var(--white);
}

.card-number {
    color: var(--gold);
    font-weight: 700;
    font-size: 12px;
}

.about-cards h3 {
    margin: 8px 0;
    color: var(--navy);
}

.about-cards p {
    color: var(--muted);
    font-size: 14px;
}

.text-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--gold);
    font-weight: 700;
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15,23,42,.10);
}

.service-card > img {
    height: 210px;
    object-fit: cover;
}

.service-content {
    padding: 22px;
}

.service-content > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
}

.service-content h3 {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.2;
    margin: 7px 0 10px;
}

.service-content p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.service-content a {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}

/* PROCESS */
.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    background-color: #172033;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.process-step {
    padding: 35px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-step strong {
    color: var(--gold);
    font-size: 14px;
}

.process-step h3 {
    margin: 10px 0;
    color: var(--gold);
}

.process-step p {
    color: var(--white);
    font-size: 14px;
}

/* PROJECTS */
.project-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.project-card {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.project-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,.88));
}

.project-overlay {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 24px;
    color: var(--white);
}

.project-overlay span {
    color: var(--gold-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.project-overlay h3 {
    font-size: 25px;
    margin: 5px 0;
}

.project-overlay p {
    color: #d1d5db;
    font-size: 13px;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.team-card {
    border: 1px solid var(--border);
    background: var(--white);
}

.team-card img {
    height: 330px;
    object-fit: cover;
}

.team-card > div {
    padding: 20px;
}

.team-card h3 {
    color: var(--navy);
    margin-bottom: 3px;
}

.team-card p {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
}

.team-card small {
    display: block;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
}

/* SERVE */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.serve-grid div {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 22px;
    font-weight: 700;
    color: var(--navy);
}

/* CTA */
.cta-section {
    background:
        linear-gradient(90deg, rgba(12,18,29,.97), rgba(12,18,29,.88)),
        url("Images/Full Construction.jpg") center/cover no-repeat;
    color: var(--white);
    padding: 100px 0;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 80px;
    align-items: center;
}

.cta-layout h2 {
    max-width: 650px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.cta-layout > div > p {
    color: #cbd5e1;
}

.contact-list {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    color: #dbe2ea;
    font-size: 14px;
}

.contact-list a:hover {
    color: var(--gold-light);
}

.contact-form {
    background: var(--white);
    padding: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    padding: 14px;
    margin-bottom: 12px;
    font: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form .btn {
    width: 100%;
    border: 0;
}

/* FOOTER */
footer {
    background: #080c13;
    color: #94a3b8;
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.footer-brand strong {
    display: block;
    color: var(--white);
}

.footer-brand span {
    display: block;
    font-size: 10px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .main-nav {
        gap: 14px;
    }

    .service-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-card:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 780px) {
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }

    .topbar-inner > div {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        padding: 20px 5%;
        border-bottom: 1px solid var(--border);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        min-height: 610px;
    }

    .about-layout,
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 75px 0;
    }

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

    .hero p {
        font-size: 16px;
    }

    .hero-trust {
        display: grid;
        gap: 8px;
    }

    .about-cards,
    .service-grid,
    .team-grid,
    .process-grid,
    .project-grid,
    .serve-grid {
        grid-template-columns: 1fr;
    }

    .project-card:first-child {
        grid-column: auto;
    }

    .project-card {
        height: 360px;
    }

    .team-card img {
        height: 380px;
    }

    .brand span {
        display: none;
    }

    .nav-inner {
        min-height: 72px;
    }

    .main-nav {
        top: 72px;
    }
}

/* ========================================================= */
                              /* Whatsapp */
/* ========================================================= */
.whatsapp-button {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;
    border-radius: 50px;

    background: #25D366;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;
    color: #25D366;

    font-size: 19px;
}

@media (max-width: 600px) {
    .whatsapp-button {
        right: 18px;
        bottom: 20px;
        padding: 10px;
    }

    .whatsapp-button > span:last-child {
        display: none;
    }
}



/* ========================Animation Adds================================ */
/* ====================================================================== */
.marquee-section {
    overflow: hidden;
    padding: 2rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee-scroll 10s linear infinite;
}

.marquee-track img {
    height: 180px;
    width: auto;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    object-fit: cover;
    flex-shrink: 0;
    transition: var(--transition);
}

.marquee-track img:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}