* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:      #1C2951;
    --navy-dark: #111B38;
    --orange:    #D4521A;
    --orange-lt: #E8663A;
    --green:     #2D4A35;
    --white:     #FFFFFF;
    --grey-bg:   #F5F6F8;
    --grey-text: #666;
    --text:      #1C2951;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Navigation ── */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(28,41,81,0.10);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--orange);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.05em;
}

.logo-name span {
    color: var(--orange);
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

/* Per-link hover background colors in header nav */
.nav-links li:nth-child(1) a {
    display: inline-block;
    padding: 0.15rem 0.3rem;
    margin: -0.15rem -0.3rem;
}

.nav-links li:nth-child(2) a {
    display: inline-block;
    padding: 0.15rem 0.3rem;
    margin: -0.15rem -0.3rem;
}

.nav-links li:nth-child(3) a {
    display: inline-block;
    padding: 0.15rem 0.3rem;
    margin: -0.15rem -0.3rem;
}

.nav-links li:nth-child(4) a {
    display: inline-block;
    padding: 0.15rem 0.3rem;
    margin: -0.15rem -0.3rem;
}

.nav-links li:nth-child(1) a:hover,
.nav-links li:nth-child(1) a.active {
    background: #D4521A; /* orange */
    color: #fff;
    border-radius: 3px;
}

.nav-links li:nth-child(2) a:hover,
.nav-links li:nth-child(2) a.active {
    background: #0A1F44; /* navy dark */
    color: #fff;
    border-radius: 3px;
}

.nav-links li:nth-child(3) a:hover,
.nav-links li:nth-child(3) a.active {
    background: #14532D; /* dark green */
    color: #fff;
    border-radius: 3px;
}

.nav-links li:nth-child(4) a:hover,
.nav-links li:nth-child(4) a.active {
    background: #D4AF37; /* golden */
    color: #1C2951;
    border-radius: 3px;
}

.nav-links li:nth-child(1) a:hover::after,
.nav-links li:nth-child(2) a:hover::after,
.nav-links li:nth-child(3) a:hover::after,
.nav-links li:nth-child(4) a:hover::after,
.nav-links li:nth-child(1) a.active::after,
.nav-links li:nth-child(2) a.active::after,
.nav-links li:nth-child(3) a.active::after,
.nav-links li:nth-child(4) a.active::after {
    display: none;
}

.quote-btn {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.3rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.25s !important;
}

.quote-btn::after { display: none !important; }

.quote-btn:hover {
    background: var(--orange) !important;
    color: var(--white) !important;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
}

/* ── Hero ── */
.hero {
    background:
        linear-gradient(rgba(17,27,56,0.72), rgba(17,27,56,0.72)),
        url('assets/banner.png');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 75px;
    position: relative;
    overflow: hidden;
}

/* diagonal orange accent bar echoing the logo bars */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--orange), var(--green));
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 14px;
    width: 3px;
    height: 100%;
    background: var(--navy-dark);
    opacity: 0.5;
}

.hero-content {
    color: var(--white);
    max-width: 820px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: inline-block;
    background: var(--orange);
    padding: 0.4rem 1.1rem;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.88;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── CTA Buttons ── */
.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: background 0.25s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
}

.cta-button-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white) !important;
}

.cta-button-outline:hover {
    background: var(--white);
    color: var(--navy) !important;
    transform: translateY(-2px);
}

.cta-button-light {
    background: var(--white);
    color: var(--navy);
}

.cta-button-light:hover {
    background: var(--grey-bg);
    transform: translateY(-2px);
}

/* ── Stats ── */
.stats-section {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.75;
    margin-top: 0.25rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(to right, var(--orange), var(--green));
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--grey-text);
    margin-top: 0.75rem;
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: var(--white);
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
    border-top: 4px solid transparent;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(28,41,81,0.14);
}

.service-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.07);
}

.service-body {
    padding: 1.5rem;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 0.6rem;
}

.service-card h3 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* ── Three-Column Cards Grid (All Projects & Civil Constructions) ── */
.three-col-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

@media (max-width: 900px) {
    .three-col-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .three-col-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ── Cards Row (flex row for Projects & Civil Constructions on index) ── */
.cards-row {
    display: flex;
    flex-direction: row;
    gap: 1.8rem;
    align-items: stretch;
}

.cards-row .service-card {
    flex: 1 1 0;
    min-width: 0;
}

/* ── Partners ── */
.partners-section { background: var(--grey-bg); }

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.partner-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(28,41,81,0.09);
    border-bottom: 3px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 110px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(28,41,81,0.14);
}

.partner-card img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.25s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* ── Projects ── */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.8rem;
}

.project-card {
    position: relative;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.35);
    transition: transform 0.4s;
}

.project-card:hover .project-image-placeholder {
    transform: scale(1.05);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}

.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(17,27,56,0.92));
    color: var(--white);
    padding: 1.2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-overlay h3 { font-size: 1rem; font-weight: 700; }
.project-overlay p  { font-size: 0.8rem; color: var(--orange); margin-top: 2px; }

.project-card:hover .project-overlay { transform: translateY(0); }

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
    border-left: 4px solid var(--orange);
}

.testimonial-quote {
    color: var(--orange);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 46px; height: 46px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong { color: var(--navy); }
.testimonial-author p { font-size: 0.82rem; color: var(--grey-text); }

/* ── CTA Band ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: var(--white);
    text-align: center;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 5px; height: 100%;
    background: var(--orange);
}

.cta-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-section p {
    margin-bottom: 1.8rem;
    opacity: 0.85;
}

/* ── About Intro Section (Homepage) ── */
.about-intro-section { padding: 5rem 0; }

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

.about-intro-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-intro-content p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 0.85rem;
    font-size: 0.96rem;
}

.about-intro-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.highlight-item i {
    color: var(--orange);
    font-size: 1rem;
}

/* ── Footer ── */
.footer-logo {
    max-width: 65px;
    height: auto;
    margin-bottom: 0.75rem;
    display: block;
}

.footer {
    background: var(--navy-dark);
    color: #aab;
    padding: 3.5rem 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.footer-column .footer-brand-tag {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.5rem; }

.footer-column a {
    color: #aab;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-column a:hover { color: var(--orange); }

.footer-column p {
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.footer-column p i {
    margin-right: 8px;
    color: var(--orange);
    width: 14px;
}

.social-icons { display: flex; gap: 0.8rem; margin-top: 0.5rem; }

.social-icons a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: background 0.2s;
}

.social-icons a:hover { background: var(--orange); }

.footer-bottom {
    text-align: center;
    padding: 1.2rem 20px;
    font-size: 0.82rem;
    color: rgba(170,170,187,0.6);
}

/* ── Page Header (inner pages) ── */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0 3rem;
    margin-top: calc(75px + 46px); /* navbar + ribbon */
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
}

/* ── Service Page Blocks (services.html) ── */
.service-page-block { padding: 4.5rem 0; }

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.service-page-grid-reverse { direction: rtl; }
.service-page-grid-reverse > * { direction: ltr; }

.service-page-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(28,41,81,0.12);
}

.service-page-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}

.service-page-img:hover img { transform: scale(1.04); }

.service-finance-icon {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.25);
}

.service-page-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0.5rem 0 1rem;
}

.service-page-content p { color: #444; line-height: 1.75; margin-bottom: 0.5rem; }

.service-features li { margin-bottom: 0.6rem; font-size: 0.93rem; color: #333; }
.service-features i { color: var(--green); margin-right: 8px; }

/* ── About Page Mini Stats ── */
.stats-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.stats-mini-item {
    background: var(--white);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    border-bottom: 3px solid var(--orange);
    box-shadow: 0 2px 8px rgba(28,41,81,0.07);
}

.stats-mini-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stats-mini-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-text);
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .service-page-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-page-grid-reverse { direction: ltr; }
    .service-page-img img,
    .service-finance-icon { height: 220px; }
    .stats-mini-grid { grid-template-columns: 1fr 1fr; }
}

/* ── About Page ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-card {
    background: var(--grey-bg);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    border-bottom: 4px solid var(--orange);
}

.about-icon-large {
    font-size: 7rem;
    color: var(--navy);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}

.choose-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(28,41,81,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.choose-card-img-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.choose-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.mission-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
    border-bottom: 4px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28,41,81,0.14);
}

.mission-card i {
    font-size: 2rem;
    color: var(--orange);
    margin-right: 10px;
}

.mission-card-img-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-bg);
    border-radius: 50%;
    padding: 14px;
}

.mission-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ── Services Detail ── */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
    border-top: 4px solid var(--navy);
}

.service-icon-large {
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.service-features { list-style: none; margin-top: 1rem; }
.service-features li { margin-bottom: 0.5rem; font-size: 0.92rem; }
.service-features i { color: var(--green); margin-right: 8px; }

/* ── Project List Cards (Homepage "All Projects" section) ── */
.project-list-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.09);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--navy);
}

.project-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(28,41,81,0.14);
    border-top-color: var(--orange);
}

.plc-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.plc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}

.project-list-card:hover .plc-img img {
    transform: scale(1.06);
}

.plc-num {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--navy);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
}

.plc-body {
    padding: 1.25rem 1.4rem 1.5rem;
}

.plc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.plc-body p {
    font-size: 0.86rem;
    color: var(--grey-text);
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

/* ── Civil Constructions Grid ── */
.civil-projects-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-bottom: 3.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .civil-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .civil-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ── All Projects Marketed Grid ── */
.all-projects-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 900px) {
    .all-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .all-projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ── Ongoing Project Cards (Civil Constructions section) ── */
.ongoing-project-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(28,41,81,0.09);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--orange);
    display: flex;
    flex-direction: column;
}

.ongoing-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(28,41,81,0.14);
}

.opc-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.opc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}

.ongoing-project-card:hover .opc-img img {
    transform: scale(1.06);
}

.opc-status-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.65rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.opc-body {
    padding: 1.25rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.opc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.opc-body p {
    font-size: 0.86rem;
    color: var(--grey-text);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

/* ── Projects Page ── */
.projects-complete-grid { display: grid; gap: 2rem; }

.project-category {
    background: var(--grey-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--navy);
}

.project-category h3 {
    margin-bottom: 1rem;
    color: var(--navy);
    font-weight: 700;
}

.project-list { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.project-tag {
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.88rem;
    box-shadow: 0 2px 6px rgba(28,41,81,0.07);
    color: var(--navy);
}

.ongoing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ongoing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(28,41,81,0.08);
}

.ongoing-icon { font-size: 3rem; color: var(--orange); margin-bottom: 1rem; }

.project-status {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    margin: 0.5rem;
    font-weight: 600;
}

.status-ongoing  { background: var(--orange); color: var(--white); }
.status-upcoming { background: var(--green);  color: var(--white); }

.project-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.partners-showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partner-logo {
    background: var(--grey-bg);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    border-bottom: 3px solid var(--green);
}

.channel-note {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

/* ── Contact Page ── */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item i {
    font-size: 1.4rem;
    color: var(--orange);
    margin-top: 0.2rem;
}

.contact-form-container {
    background: var(--grey-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1.5px solid #dde;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--navy);
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form button {
    width: 100%;
    padding: 0.85rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.25s;
}

.contact-form button:hover { background: var(--orange); }

.text-center { text-align: center; }

/* ── Responsive ── */
@media (max-width: 768px) {

    /* ── Nav ── */
    .mobile-menu { display: block; }

    /* Shrink logo so it fits on narrow screens */
    .logo img { height: 42px; }
    .logo-name { font-size: 1rem; }
    .logo-tagline { font-size: 0.58rem; }
    .logo { gap: 8px; }

    .nav-container { padding: 0.55rem 16px; }

    .nav-links {
        display: none;
        position: fixed;        /* fixed so it always sits over the ticker too */
        top: 65px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        box-shadow: 0 8px 16px rgba(28,41,81,0.12);
        border-top: 2px solid var(--orange);
        z-index: 1100;          /* above ticker (999) and navbar (1000) */
    }

    .nav-links.active { display: flex; }

    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.4rem 0; font-size: 1rem; }

    .quote-btn {
        display: block !important;
        text-align: center !important;
        padding: 0.6rem 1rem !important;
        margin-top: 0.25rem;
    }

    /* ── Hero ── */
    .hero {
        min-height: 80vh;
        margin-top: 0;          /* padding-top from CSS handles offset */
        padding: 2.5rem 0;
    }

    .hero-content {
        padding: 1.5rem 1.25rem;
    }

    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1rem;
        white-space: normal;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* ── Stats ── */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.25rem 0.75rem;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    /* 3rd item spans full width and centres itself */
    .stat-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        border-right: none;
    }

    .stat-number { font-size: 2rem; }

    /* ── About Intro Section ── */
    .about-intro-section { padding: 3rem 0; }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .about-intro-image {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .about-intro-image img {
        max-width: 220px !important;
    }

    .about-intro-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .about-intro-content p {
        font-size: 0.93rem;
        text-align: left;
    }

    .about-intro-tag {
        margin-bottom: 0.5rem;
    }

    .about-intro-highlights {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .about-intro-content .cta-button {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 1.25rem auto 0 !important;
        text-align: center;
    }

    /* ── Sections ── */
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.55rem; padding: 0 0.5rem; }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 2rem; padding: 0 0.5rem; }

    /* ── Why Choose Us ── */
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .choose-card {
        padding: 1.25rem 1rem;
    }

    .choose-card h3 { font-size: 0.9rem; }
    .choose-card p  { font-size: 0.82rem; }

    .choose-card-img {
        width: 64px;
        height: 64px;
    }

    /* ── Projects Grid ── */
    .section [style*="grid-template-columns: repeat(auto-fill"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .plc-img { height: 180px; }

    /* ── Cards Row (Projects & Civil on index) ── */
    .cards-row {
        flex-direction: column !important;
        gap: 1.25rem;
    }

    .cards-row .service-card {
        flex: none;
        width: 100%;
    }

    /* ── Services ── */
    .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .service-img-wrap { height: 160px; }

    /* ── Partners ── */
    .partners-grid { gap: 0.75rem; }
    .partner-card {
        min-width: 140px;
        height: 90px;
        padding: 1rem;
    }

    /* ── CTA Section ── */
    .cta-section { padding: 3rem 0; }
    .cta-section h2 { font-size: 1.55rem; }
    .cta-section p  { font-size: 0.93rem; }
    .cta-section .cta-button {
        display: block;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }

    /* ── Footer ── */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }

    .footer-column { text-align: center; }
    .footer-column ul { padding: 0; }
    .footer-column p { text-align: left; }
    .social-icons { justify-content: center; }

    /* ── About/Contact pages ── */
    .about-grid,
    .contact-page-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* ── Service page ── */
    .service-page-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-page-grid-reverse { direction: ltr; }
    .service-page-img img,
    .service-finance-icon { height: 220px; }
    .stats-mini-grid { grid-template-columns: 1fr 1fr; }

    /* ── Page Header ── */
    .page-header { padding: 5rem 0 2rem; margin-top: calc(65px + 40px); }
    .page-header h1 { font-size: 1.9rem; }

    /* ── General ── */
    .container { padding: 0 16px; }
}

/* ── Floating Price Updates & Offers Box ── */
.floating-offers-btn {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 1100;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212,82,26,0.45);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    user-select: none;
}
.floating-offers-btn:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212,82,26,0.55);
}
.floating-offers-btn.fob-btn-active {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(28,41,81,0.4);
}
.floating-offers-btn i {
    font-size: 1rem;
}

.floating-offers-box {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 1099;
    width: 330px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(28,41,81,0.18);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.97);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.floating-offers-box.fob-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.fob-header {
    background: var(--navy);
    color: var(--white);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fob-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
}
.fob-header-left i {
    color: var(--orange);
    font-size: 1rem;
}
.fob-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}
.fob-close:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.fob-body {
    padding: 0.75rem 1rem 1rem;
}

.fob-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef0f5;
}
.fob-item:last-of-type {
    border-bottom: none;
}
.fob-item--hot .fob-item-icon {
    background: #fff3ee;
    color: var(--orange);
}

.fob-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #eef1f8;
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    margin-top: 2px;
}

.fob-item-content {
    flex: 1;
}
.fob-item-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.15rem;
}
.fob-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}
.fob-item-desc {
    font-size: 0.78rem;
    color: var(--grey-text);
    line-height: 1.4;
}

.fob-badge {
    background: #fff0e8;
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.45rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
}
.fob-badge--green {
    background: #e8f4ec;
    color: #2D7A3A;
}
.fob-badge--blue {
    background: #e8eef8;
    color: var(--navy);
}

.fob-divider {
    height: 1px;
    background: #eef0f5;
    margin: 0.25rem 0 0.75rem;
}

.fob-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.fob-cta-text {
    font-size: 0.8rem;
    color: var(--grey-text);
    line-height: 1.3;
    flex: 1;
}
.fob-cta-btn {
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}
.fob-cta-btn:hover {
    background: var(--orange-lt);
}

@media (max-width: 480px) {
    .floating-offers-box {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 5rem;
    }
    .floating-offers-btn {
        right: 1rem;
        bottom: 1.5rem;
    }
}

.fob-rates-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-text);
    margin-bottom: 0.25rem;
}


/* ── Ticker ribbon hero offset ── */
.hero { padding-top: calc(75px + 46px) !important; }

@media (max-width: 768px) {
    .hero { padding-top: calc(65px + 40px) !important; margin-top: 0 !important; }
}