/* ============================================
   DHANSHIKA - Complete CSS
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary: #0B1F26;
    --primary-dark: #061217;
    --secondary: #1A3A44;
    --accent: #16A6A1;
    --accent-dark: #0E7A76;
    --accent-light: #4DC9C4;
    --gold: #C9A84C;
    --gold-dark: #B8922E;
    --gold-light: #DAB85A;

    --white: #FFFFFF;
    --light-bg: #F5F7F7;
    --dark-text: #172126;
    --muted-text: #687477;
    --border-color: #E8ECED;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-light: 0 5px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-primary);
    color: var(--dark-text);
    background-color: #f8fafc;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: var(--accent); transition: var(--transition-smooth); }
a:hover { color: var(--accent-dark); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}
.btn-primary { background: var(--gold); border: 2px solid var(--gold); color: var(--white); }
.btn-primary:hover {
    background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white);
    transform: translateY(-2px); box-shadow: var(--shadow-medium);
}
.btn-accent {
    background: var(--gold); border: 2px solid var(--gold); color: var(--white);
    padding: 8px 24px; border-radius: 4px; font-weight: 600; font-size: 0.95rem;
    transition: var(--transition-smooth); display: inline-block;
}
.btn-accent:hover {
    background: var(--gold-dark); border-color: var(--gold-dark);
    color: var(--white); transform: translateY(-2px);
}

/* ============================================
   SITE HEADER — light bar like Rithwik
   ============================================ */
.site-header { position: relative; z-index: 1050; }

#mainNav {
    position: fixed; top: 0; left: 0; width: 100%;
    background: var(--light-bg);
    padding: 14px 0;
    transition: var(--transition-smooth);
    z-index: 1050;
    border-bottom: 1px solid transparent;
}
#mainNav.navbar-scrolled {
    background: #fff;
    padding: 8px 0;
    border-bottom-color: var(--border-color);
    box-shadow: 0 6px 24px rgba(23, 33, 38, .08);
}

.logo-img { height: 55px; width: auto; transition: var(--transition-smooth); }
.navbar-scrolled .logo-img { height: 46px; }

/* Nav links — dark & bold */
#mainNav .navbar-nav .nav-link {
    color: var(--dark-text);
    font-weight: 600;
    font-size: .97rem;
    padding: 10px 14px;
    position: relative;
}
#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active { color: var(--accent-dark); }

/* Teal underline (like "Home" in reference) */
#mainNav .navbar-nav .nav-link::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
    background: var(--accent);
    transform: scaleX(0); transform-origin: left center;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Top-level caret (mobile only — desktop is clean like Rithwik) */
#mainNav .dropdown-toggle::after {
    border-top-color: currentColor;
    opacity: .6; vertical-align: middle;
    transition: transform .3s;
}

/* Toggler */
.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(23,33,38,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   DROPDOWN CARD — white rounded card like Rithwik
   ============================================ */
.dropdown-menu {
    background: #fff;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 15px 45px rgba(11, 31, 38, .14);
    padding: 14px 20px;
    min-width: 240px;
}
.dropdown-item {
    color: var(--dark-text);
    font-weight: 600;
    font-size: .93rem;
    padding: 9px 10px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}
.dropdown-item:hover { background: rgba(22, 166, 161, .08); color: var(--accent-dark); }

@keyframes ddFade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: none; }
}

/* ============================================
   DESKTOP — hover dropdowns + right flyout cards
   ============================================ */
@media (min-width: 992px) {
    /* no caret on top-level items (clean look) */
    #mainNav .navbar-nav > .nav-item > .dropdown-toggle::after { display: none; }

    .navbar-nav .dropdown { position: relative; }

    /* First-level card: hidden, opens on hover */
    .navbar-nav .dropdown > .dropdown-menu {
        display: block;
        position: absolute; top: 100%; left: 0; margin-top: 10px;
        opacity: 0; visibility: hidden; pointer-events: none;
        transform: translateY(14px);
        transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
    }
    .navbar-nav .dropdown:hover > .dropdown-menu,
    .navbar-nav .dropdown:focus-within > .dropdown-menu {
        opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
        transition: opacity .25s ease, transform .25s ease;
    }
    /* invisible bridge so hover doesn't drop */
    .navbar-nav .dropdown > .dropdown-menu::before {
        content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
    }

    /* ---- Projects card: category rows ---- */
    .mega-menu { min-width: 280px; padding: 16px 22px; }

    .mega-menu .dropdown-submenu { position: relative; }

    .mega-menu .dropdown-submenu > .dropdown-toggle {
        position: relative;
        text-transform: uppercase;
        letter-spacing: .8px;
        font-weight: 700;
        font-size: .88rem;
        color: var(--dark-text);
        padding: 12px 42px 12px 10px;
        background: transparent;
    }
    /* right chevron  › */
    .mega-menu .dropdown-submenu > .dropdown-toggle::after {
        content: "";
        position: absolute; right: 12px; top: 50%;
        width: 8px; height: 8px;
        border: 0;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        transform: translateY(-50%) rotate(45deg);
        margin: 0; opacity: .8;
        transition: transform .3s;
    }
    .mega-menu .dropdown-submenu:hover > .dropdown-toggle {
        background: transparent;
        color: var(--accent-dark);
        text-decoration: underline;
        text-underline-offset: 6px;
        text-decoration-thickness: 2px;
    }

    /* ---- Second-level card: flies out on the right ---- */
    .mega-menu .dropdown-submenu > .dropdown-menu {
        display: block;
        position: absolute; top: -16px; left: calc(100% + 12px);
        min-width: 250px;
        padding: 14px 22px;
        opacity: 0; visibility: hidden; pointer-events: none;
        transform: translateX(-10px);
        transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
    }
    .mega-menu .dropdown-submenu:hover > .dropdown-menu {
        opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0);
        transition: opacity .25s ease, transform .25s ease;
    }
    /* bridge across the 12px gap */
    .mega-menu .dropdown-submenu > .dropdown-menu::before {
        content: ""; position: absolute; top: 0; bottom: 0; left: -14px; width: 14px;
    }

    /* auto-flip to left side when near right edge (class added by JS) */
    .mega-menu .dropdown-submenu.flip > .dropdown-menu {
        left: auto; right: calc(100% + 12px);
        transform: translateX(10px);
    }
    .mega-menu .dropdown-submenu.flip:hover > .dropdown-menu { transform: translateX(0); }
    .mega-menu .dropdown-submenu.flip > .dropdown-menu::before { left: auto; right: -14px; }

    .mega-menu .dropdown-submenu > .dropdown-menu .dropdown-item {
        text-transform: none; letter-spacing: 0;
        font-weight: 600; padding: 9px 10px;
    }
}

/* ============================================
   MOBILE — click accordion
   ============================================ */
@media (max-width: 991.98px) {
    #mainNav { background: #fff; padding: 10px 0; }
    .logo-img { height: 42px; }

    .navbar-collapse {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding-bottom: 1rem;
    }

    #mainNav .navbar-nav .nav-link { padding: 12px 4px; border-bottom: 1px solid var(--border-color); }
    #mainNav .navbar-nav .nav-link::after { display: none; }

    /* accordion panels */
    .navbar-nav .dropdown-menu {
        position: static !important; display: none;
        box-shadow: none; border-radius: 0; min-width: 0;
        background: var(--light-bg);
        padding: 6px 0 6px 14px; margin: 0;
        opacity: 1; visibility: visible; transform: none;
    }
    .navbar-nav .dropdown.open > .dropdown-menu { display: block; animation: ddFade .25s ease; }

    /* categories inside Projects */
    .mega-menu { padding: 6px 0 6px 14px; }
    .mega-menu .dropdown-submenu > .dropdown-toggle {
        text-transform: none; letter-spacing: 0;
        font-size: .95rem; font-weight: 600;
        padding: 10px 34px 10px 4px;
    }
    .mega-menu .dropdown-submenu:hover > .dropdown-toggle { text-decoration: none; }
    /* chevron points down on mobile */
    .mega-menu .dropdown-submenu > .dropdown-toggle::after {
        right: 10px;
        transform: translateY(-50%) rotate(135deg);
    }
    .mega-menu .dropdown-submenu.open > .dropdown-toggle::after {
        transform: translateY(-50%) rotate(315deg);
    }
    .mega-menu .dropdown-submenu > .dropdown-menu {
        display: none; position: static;
        background: #fff; padding-left: 14px;
        opacity: 1; visibility: visible; transform: none;
    }
    .mega-menu .dropdown-submenu.open > .dropdown-menu { display: block; animation: ddFade .25s ease; }
    .mega-menu .dropdown-item { padding: 8px 4px; }

    .dropdown.open > .dropdown-toggle::after { transform: rotate(180deg); }
}

@media (max-width: 575.98px) {
    #mainNav { padding: 6px 0; }
    .logo-img { height: 35px; }
    .navbar-scrolled .logo-img { height: 30px; }
    #mainNav .navbar-nav .nav-link { font-size: .9rem; }
}

/* ============================================
   PAGE CONTENT (unchanged)
   ============================================ */
.page-content { margin-top: 90px; padding: 2rem 1rem; text-align: center; min-height: 100vh; }
.page-content h1 { font-weight: 800; color: var(--primary); font-size: 3rem; margin-bottom: 0.5rem; }
.page-content .lead { font-size: 1.2rem; color: var(--muted-text); }
.page-content .since { color: var(--gold); font-weight: 700; letter-spacing: 2px; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-accent { color: var(--accent) !important; }
.text-gold { color: var(--gold) !important; }
.bg-primary-dark { background: var(--primary) !important; }
.shadow-sm { box-shadow: var(--shadow-light) !important; }
.rounded { border-radius: 4px !important; }

/* ============================================
   DHANSHIKA - Footer (Rithwik-style dark footer)
   ============================================ */

.site-footer {
    position: relative;
    background:
        radial-gradient(60% 55% at 50% 100%, rgba(190, 205, 92, .45) 0%, rgba(190, 205, 92, 0) 70%),
        #171c11;                                   /* dark olive-black + bottom glow */
    color: #fff;
    padding: 90px 0 40px;
    overflow: hidden;
}

.footer-inner { position: relative; z-index: 1; }

/* ---------- Grid ---------- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

/* ---------- Headings ---------- */
.footer-heading {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 28px;
}

/* ---------- Contact column ---------- */
.footer-phones { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 22px; }

.footer-phone {
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    letter-spacing: 1px;
    line-height: 1.2;
}
.footer-phone::after {
    content: "";
    position: absolute; left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: var(--accent, #16A6A1);
    transform: scaleX(0); transform-origin: left center;
    transition: transform .3s ease;
}
.footer-phone.underlined::after,
.footer-phone:hover::after { transform: scaleX(1); }
.footer-phone:hover { color: #fff; }

.footer-email {
    display: inline-block;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 18px;
    word-break: break-all;
}
.footer-email:hover { color: var(--accent-light, #4DC9C4); }

.footer-address {
    color: rgba(255, 255, 255, .45);
    font-size: .92rem;
    line-height: 1.8;
    max-width: 340px;
}

/* ---------- Social row ---------- */
.footer-social {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px 10px;
    margin-top: 42px;
}
.footer-social a {
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
    font-size: .9rem;
}
.footer-social a:not(:first-child)::before {
    content: "·";
    margin-right: 10px;
    color: rgba(255, 255, 255, .35);
}
.footer-social a:hover { color: var(--accent-light, #4DC9C4); }

/* ---------- Link columns ---------- */
.footer-links li { margin-bottom: 16px; list-style: none; }
.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    font-size: .95rem;
    transition: color .3s ease, .3s ease;
}
.footer-links a:hover { color: #fff; padding-left: 5px; }

/* ---------- Big center logo ---------- */
.footer-brand {
    text-align: center;
    margin: 80px 0 34px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.footer-logo {
    color: #2E8C86;
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.1;
}
.footer-logo:hover { color: var(--accent-light, #4DC9C4); }
.footer-logo-img { height: 90px; width: auto; }
.footer-tagline {
    color: #2E8C86;
    font-weight: 600;
    letter-spacing: .18em;
    font-size: clamp(.68rem, 1.6vw, 1rem);
}

/* ---------- Copyright ---------- */
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
}
.footer-bottom p { margin-bottom: 4px; }
.footer-credits a { color: rgba(255, 255, 255, .75); font-weight: 600; }
.footer-credits a:hover { color: #fff; }

/* ---------- Back to top ---------- */
#backToTop {
    position: fixed; right: 28px; bottom: 28px;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--accent, #16A6A1);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .35);
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 1200;
}
#backToTop.visible { opacity: 1; visibility: visible; transform: none; }
#backToTop:hover { background: var(--accent-dark, #0E7A76); transform: translateY(-3px); }

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .site-footer { padding: 70px 0 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
    .footer-brand { margin: 60px 0 28px; }
}

@media (max-width: 575.98px) {
    .site-footer { padding: 56px 0 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-address { max-width: 100%; }
    .footer-social { margin-top: 28px; }
    .footer-brand { margin: 48px 0 24px; }
    #backToTop { right: 18px; bottom: 18px; width: 46px; height: 46px; }
}
/* ============================================
   CONTACT PAGE
   ============================================ */
.page-hero {
    margin-bottom: 80px;
    position: relative;
    min-height: 520px;
    padding: 140px 0 90px;                 /* space for fixed navbar */
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(18, 28, 52, .55) 0%, rgba(84, 58, 122, .35) 60%, rgba(18, 28, 52, .15) 100%),
        url('../images/banner1.png') center/cover no-repeat;
}
.page-hero h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

/* rounded light panel overlapping the hero */
.contact-body {
    position: relative;
    z-index: 2;
    margin-top: -48px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 70px 0 90px;
}

/* ---------- Info cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.contact-card {
    display: flex;
    flex-direction: column;
    background: #FBFCFC;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 34px 34px;
    transition: var(--transition-smooth);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

.contact-icon { display: inline-block; color: var(--dark-text); margin-bottom: 30px; }

.contact-card h3 { font-size: 1.55rem; font-weight: 600; color: var(--dark-text); margin-bottom: 12px; }

.contact-card p { color: var(--muted-text); line-height: 1.9; font-size: .98rem; margin-bottom: 34px; }
.contact-card p a { color: var(--muted-text); }
.contact-card p a:hover { color: var(--accent-dark); }

/* teal pill buttons */
.contact-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    text-align: center;
    background: #2E8B7A;
    color: #0B1F26;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .3px;
    padding: 13px 20px;
    border: 0;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.contact-btn:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

/* ---------- Leave A Message + Map ---------- */
.contact-message-section { margin-top: 70px; }

.contact-message-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.contact-form-title { color: #2E8C86; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; margin-bottom: 8px; }
.contact-form-sub { color: var(--muted-text); margin-bottom: 32px; }

.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    background: #EBEDEE;
    border-radius: 50px;
    padding: 15px 26px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--dark-text);
    margin-bottom: 20px;
    outline: none;
    transition: box-shadow .3s ease, background .3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8b9497; }
.contact-form input:focus,
.contact-form textarea:focus { background: #fff; box-shadow: 0 0 0 2px var(--accent); }
.contact-form input.error,
.contact-form textarea.error { box-shadow: 0 0 0 2px #e05252; }

.contact-form textarea { border-radius: 24px; min-height: 150px; resize: vertical; }

.contact-submit { width: auto; padding: 14px 44px; margin-top: 6px; }

.form-status { display: none; margin-top: 16px; font-weight: 600; }
.form-status.success { display: block; color: var(--accent-dark); }
.form-status.error { display: block; color: #c0392b; }

/* map card */
.contact-map { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-medium); min-height: 480px; }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 480px; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .page-hero { min-height: 400px; padding: 120px 0 80px; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-message-grid { grid-template-columns: 1fr; gap: 44px; }
    .contact-map, .contact-map iframe { min-height: 380px; }
}

@media (max-width: 575.98px) {
    .contact-body { margin-top: -32px; border-radius: 22px 22px 0 0; padding: 48px 0 60px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-card { padding: 32px 26px 26px; }
}


/* ---------- Filter chips ---------- */
.client-filters {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px;
}
.client-filters .btn {
    padding: 9px 24px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--muted-text);
    font-size: .85rem;
    font-weight: 600;
}
.client-filters .btn:hover { border-color: var(--accent); color: var(--accent-dark); transform: none; }
.client-filters .btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ---------- Client cards ---------- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.client-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 24px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}
.client-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); border-color: rgba(22, 166, 161, .4); }

.client-monogram {
    width: 74px; height: 74px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    background: rgba(22, 166, 161, .1);
    border: 2px solid rgba(22, 166, 161, .25);
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 1px;
}
.client-logo { height: 60px; width: auto; object-fit: contain; margin: 0 auto 18px; }

.client-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark-text); margin-bottom: 6px; }
.client-card p { font-size: .85rem; color: var(--muted-text); line-height: 1.6; margin-bottom: 16px; }

.client-tag {
    display: inline-block;
    font-size: .66rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--accent-dark);
    background: rgba(22, 166, 161, .1);
    padding: 5px 14px;
    border-radius: 50px;
}

/* filter animation */
.client-card.hidden { display: none; }
@keyframes popIn {
    from { opacity: 0; transform: scale(.95) translateY(8px); }
    to   { opacity: 1; transform: none; }
}
.client-card.pop { animation: popIn .35s ease; }

/* ---------- CTA band ---------- */
.clients-cta { padding: 70px 0 90px; }
.clients-cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    color: #fff;
}
.clients-cta-box::after {
    content: "";
    position: absolute; left: 50%; bottom: -60%;
    width: 90%; height: 100%;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 166, 161, .35), rgba(22, 166, 161, 0) 70%);
    pointer-events: none;
}
.clients-cta-box h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.clients-cta-box p { color: rgba(255, 255, 255, .75); max-width: 620px; margin: 0 auto 28px; position: relative; z-index: 1; }
.clients-cta-box .btn { position: relative; z-index: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
    .page-hero { padding: 140px 0 90px; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .page-body { margin-top: -32px; border-radius: 22px 22px 0 0; padding-top: 48px; }
    .clients-grid { grid-template-columns: 1fr; }
    .clients-cta { padding: 50px 0 60px; }
    .clients-cta-box { padding: 48px 24px; }
}
/* ============================================
   EQUIPMENTS PAGE
   ============================================ */
.equip-section { padding: 10px 0 90px; }

.equip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.equip-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.equip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

/* ---- UNIFORM IMAGE AREA (same size for every card) ---- */
.equip-media {
    position: relative;
    height: 230px;                              /* fixed height = identical images */
    background: linear-gradient(135deg, rgba(22, 166, 161, .15), rgba(11, 31, 38, .12));
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.equip-media-icon { color: rgba(11, 31, 38, .25); }   /* shows only if image missing */
.equip-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;                          /* crops any photo to same size */
    transition: transform .5s ease;
}
.equip-card:hover .equip-media img { transform: scale(1.06); }

.equip-year {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: var(--accent); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .5px;
    padding: 4px 12px; border-radius: 50px;
}

/* ---- Card body ---- */
.equip-body {
    padding: 24px 26px 26px;
    display: flex; flex-direction: column; align-items: flex-start;
    flex: 1;
}

.equip-tag {
    display: inline-block;
    font-size: .66rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--accent-dark);
    background: rgba(22, 166, 161, .1);
    padding: 5px 14px; border-radius: 50px;
    margin-bottom: 12px;
}

.equip-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark-text); margin-bottom: 16px; }

.equip-note {
    width: 100%;
    font-size: .82rem; color: var(--muted-text);
    background: var(--light-bg);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
}

/* specs pinned to bottom = equal-height cards */
.equip-specs {
    list-style: none;
    width: 100%;
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
}
.equip-specs li { border-top: 1px solid var(--border-color); padding-top: 10px; }
.equip-specs span {
    display: block;
    font-size: .66rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 2px;
}
.equip-specs strong { color: var(--dark-text); font-size: .92rem; font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .equip-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .equip-section { padding-bottom: 60px; }
}
@media (max-width: 575.98px) {
    .equip-grid { grid-template-columns: 1fr; }
    .equip-media { height: 210px; }
}
/* ============================================
   SERVICES PAGE
   ============================================ */
.services-section { padding: 10px 0 20px; }

.services-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.services-intro h2 {
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}
.services-intro p { color: var(--muted-text); }

/* ---------- Alternating feature rows ---------- */
.service-row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 44px;
    align-items: stretch;
    margin-bottom: 64px;
}
.service-row.reverse .service-media { order: 2; }
.service-row.reverse .service-text  { order: 1; }

/* gradient media panel */
.service-media {
    position: relative;
    border-radius: 20px;
    min-height: 320px;
    background: linear-gradient(140deg, var(--primary) 0%, var(--secondary) 70%, var(--accent-dark) 130%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.service-media::after {
    content: "";
    position: absolute; left: 50%; bottom: -55%;
    width: 90%; height: 90%;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 166, 161, .35), rgba(22, 166, 161, 0) 70%);
    pointer-events: none;
}
.service-num {
    position: absolute; top: 16px; left: 26px;
    font-size: 3rem; font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .18);
}
/* ---------- Media panel: photo + overlay + floating icon ---------- */
.service-media {
    position: relative;
    border-radius: 20px;
    min-height: 320px;
    /* fallback gradient if the image file is missing */
    background: linear-gradient(140deg, var(--primary) 0%, var(--secondary) 70%, var(--accent-dark) 130%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

/* the photo — uniform size on every card */
.service-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.service-row:hover .service-img { transform: scale(1.07); }

/* dark-teal overlay so icon & number stay readable on any photo */
.service-media::before {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(160deg, rgba(11, 31, 38, .62) 0%, rgba(11, 31, 38, .25) 55%, rgba(14, 122, 118, .45) 100%);
}

/* breathing glow (kept from animation) */
.service-media::after {
    content: "";
    position: absolute; left: 50%; bottom: -55%;
    width: 90%; height: 90%;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(22, 166, 161, .35), rgba(22, 166, 161, 0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 5s ease-in-out infinite;
}

/* number badge on top of photo */
.service-num {
    position: absolute; top: 16px; left: 26px;
    z-index: 2;
    font-size: 3rem; font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .35);
}

/* glass icon circle on top of photo */
.service-icon {
    position: relative; z-index: 2;
    width: 112px; height: 112px;
    border-radius: 50%;
    background: rgba(11, 31, 38, .45);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: var(--transition-smooth);
}
.service-row:hover .service-icon { transform: scale(1.08); background: rgba(22, 166, 161, .45); }

/* text side */
.service-text h2 {
    color: var(--primary);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 800;
    margin-bottom: 18px;
    padding-bottom: 14px;
    position: relative;
}
.service-text h2::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 56px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.service-text p {
    color: var(--muted-text);
    font-size: .98rem;
    margin-bottom: 14px;
}
.service-text p:last-child { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .service-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 52px; }
    .service-row .service-media,
    .service-row .service-text { order: initial; }   /* media always on top */
    .service-media { min-height: 240px; }
}
@media (max-width: 575.98px) {
    .services-intro { margin-bottom: 44px; }
    .service-media { min-height: 200px; }
    .service-num { font-size: 2.2rem; }
}
/* ============================================
   SERVICES PAGE ANIMATIONS
   ============================================ */

/* Scroll-reveal primitives (classes are added by JS, so page is fully visible if JS fails) */
.pre {
    opacity: 0;
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}
.pre.from-left  { transform: translateX(-48px); }
.pre.from-right { transform: translateX(48px); }
.pre.from-up    { transform: translateY(32px); }
.pre.in-view    { opacity: 1; transform: none; }

/* text side enters slightly after the media side */
.service-text.pre { transition-delay: .12s; }

/* heading underline draws in when the row is revealed */
.service-text.pre h2::after { width: 0; transition: width .7s ease .35s; }
.service-text.pre.in-view h2::after { width: 56px; }

/* floating icon inside the circle */
.service-icon svg { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

/* breathing glow inside the gradient media panel */
.service-media::after { animation: glowPulse 5s ease-in-out infinite; }
@keyframes glowPulse {
    0%, 100% { opacity: .65; transform: translateX(-50%) scale(1); }
    50%      { opacity: 1;   transform: translateX(-50%) scale(1.12); }
}

/* accessibility: disable all motion if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pre { opacity: 1 !important; transform: none !important; transition: none !important; }
    .service-icon svg, .service-media::after { animation: none !important; }
}


/* ============================================
   HIGHWAY DEVELOPMENT PAGE
   ============================================ */

/* ---------- HERO ---------- */


/* ---------- ROUNDED BODY ---------- */
.highway-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ============================================
   PROJECT IMAGE (inside content)
   ============================================ */
.highway-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.highway-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.highway-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ============================================
   PROJECT ITEM (no cards, editorial sections)
   ============================================ */
.highway-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.highway-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.highway-page .proj-item:first-child {
    padding-top: 0;
}

.highway-page .proj-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ---------- Block Header ---------- */
.highway-page .pd-block-head {
    margin-bottom: 30px;
}

.highway-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.highway-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.highway-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.highway-page .pd-loc-inline svg {
    color: var(--accent);
}

/* ---------- Grid ---------- */
.highway-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.highway-page .pd-main section {
    margin-bottom: 35px;
}

.highway-page .pd-main section:last-child {
    margin-bottom: 0;
}

.highway-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.highway-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.highway-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highway-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.highway-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.highway-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.highway-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.highway-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0;
    border: none;
}

.highway-page .pd-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.highway-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.highway-page .pd-info li:last-child {
    border-bottom: none;
}

.highway-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.highway-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.highway-page .proj-progress {
    margin-bottom: 24px;
}

.highway-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.highway-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.highway-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.highway-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.highway-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.highway-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.highway-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    

    .highway-page .page-body {
        padding: 60px 0 40px;
        border-radius: 24px 24px 0 0;
    }

    .highway-page .proj-image img {
        height: 300px;
    }

    .highway-page .proj-item {
        padding: 40px 0;
    }

    .highway-page .pd-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highway-page .pd-side {
        position: static;
    }

    .highway-page .pd-block-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .highway-page .page-hero {
        min-height: 300px;
        padding: 100px 0 60px;
    }

    .highway-page .page-body {
        padding: 40px 0 30px;
        margin-top: -40px;
        border-radius: 24px 24px 0 0;
    }

    .highway-page .proj-image {
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .highway-page .proj-image img {
        height: 220px;
    }

    .highway-page .proj-item {
        padding: 30px 0;
    }

    .highway-page .pd-block-title {
        font-size: 1.3rem;
        padding-left: 18px;
    }

    .highway-page .pd-block-title::before {
        width: 4px;
        height: 24px;
    }

    .highway-page .pd-loc-inline {
        padding-left: 18px;
    }

    .highway-page .pd-main h2 {
        font-size: 1rem;
    }

    .highway-page .pd-scope {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   ROAD CONSTRUCTION PAGE STYLES
   Scoped to .road-page to prevent conflicts
   ============================================ */

/* ---------- HERO ---------- */


/* ---------- ROUNDED BODY ---------- */
.road-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ============================================
   PROJECT IMAGE (inside content)
   ============================================ */
.road-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.road-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.road-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ============================================
   PROJECT ITEMS (Editorial layout, no cards)
   ============================================ */
.road-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.road-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.road-page .proj-item:first-child {
    padding-top: 0;
}

.road-page .proj-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ---------- Block Header ---------- */
.road-page .pd-block-head {
    margin-bottom: 30px;
}

.road-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.road-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.road-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.road-page .pd-loc-inline svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ---------- Grid (Main + Sidebar) ---------- */
.road-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.road-page .pd-main section {
    margin-bottom: 35px;
}

.road-page .pd-main section:last-child {
    margin-bottom: 0;
}

.road-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.road-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.road-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.road-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.road-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.road-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.road-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.road-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0;
    border: none;
}

.road-page .pd-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.road-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.road-page .pd-info li:last-child {
    border-bottom: none;
}

.road-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.road-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.road-page .proj-progress {
    margin-bottom: 24px;
}

.road-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.road-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.road-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.road-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.road-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.road-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.road-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .road-page .page-hero {
        min-height: 350px;
        padding: 120px 0 80px;
    }

    .road-page .page-body {
        padding: 60px 0 40px;
        border-radius: 24px 24px 0 0;
    }

    .road-page .proj-image img {
        height: 300px;
    }

    .road-page .proj-item {
        padding: 40px 0;
    }

    .road-page .pd-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .road-page .pd-side {
        position: static;
    }

    .road-page .pd-block-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .road-page .page-hero {
        min-height: 300px;
        padding: 100px 0 60px;
    }

    .road-page .page-body {
        padding: 40px 0 30px;
        margin-top: -40px;
        border-radius: 24px 24px 0 0;
    }

    .road-page .proj-image {
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .road-page .proj-image img {
        height: 220px;
    }

    .road-page .proj-item {
        padding: 30px 0;
    }

    .road-page .pd-block-title {
        font-size: 1.3rem;
        padding-left: 18px;
    }

    .road-page .pd-block-title::before {
        width: 4px;
        height: 24px;
    }

    .road-page .pd-loc-inline {
        padding-left: 18px;
    }

    .road-page .pd-main h2 {
        font-size: 1rem;
    }

    .road-page .pd-scope {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   ROAD INFRASTRUCTURE & MAINTENANCE PAGE
   ============================================ */


/* ---------- ROUNDED BODY ---------- */
.infrastructure-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ============================================
   PROJECT IMAGE
   ============================================ */
.infrastructure-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.infrastructure-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.infrastructure-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ============================================
   PROJECT ITEMS
   ============================================ */
.infrastructure-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.infrastructure-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.infrastructure-page .proj-item:first-child {
    padding-top: 0;
}

.infrastructure-page .proj-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ---------- Block Header ---------- */
.infrastructure-page .pd-block-head {
    margin-bottom: 30px;
}

.infrastructure-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.infrastructure-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.infrastructure-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.infrastructure-page .pd-loc-inline svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ---------- Grid ---------- */
.infrastructure-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.infrastructure-page .pd-main section {
    margin-bottom: 35px;
}

.infrastructure-page .pd-main section:last-child {
    margin-bottom: 0;
}

.infrastructure-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.infrastructure-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.infrastructure-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.infrastructure-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.infrastructure-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.infrastructure-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.infrastructure-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.infrastructure-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0;
    border: none;
}

.infrastructure-page .pd-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.infrastructure-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.infrastructure-page .pd-info li:last-child {
    border-bottom: none;
}

.infrastructure-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.infrastructure-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.infrastructure-page .proj-progress {
    margin-bottom: 24px;
}

.infrastructure-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.infrastructure-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.infrastructure-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.infrastructure-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.infrastructure-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.infrastructure-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.infrastructure-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
   

    .infrastructure-page .page-body {
        padding: 60px 0 40px;
        border-radius: 24px 24px 0 0;
    }

    .infrastructure-page .proj-image img {
        height: 300px;
    }

    .infrastructure-page .proj-item {
        padding: 40px 0;
    }

    .infrastructure-page .pd-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .infrastructure-page .pd-side {
        position: static;
    }

    .infrastructure-page .pd-block-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
   

    .infrastructure-page .page-body {
        padding: 40px 0 30px;
        margin-top: -40px;
        border-radius: 24px 24px 0 0;
    }

    .infrastructure-page .proj-image {
        margin-bottom: 24px;
        border-radius: 12px;
    }

    .infrastructure-page .proj-image img {
        height: 220px;
    }

    .infrastructure-page .proj-item {
        padding: 30px 0;
    }

    .infrastructure-page .pd-block-title {
        font-size: 1.3rem;
        padding-left: 18px;
    }

    .infrastructure-page .pd-block-title::before {
        width: 4px;
        height: 24px;
    }

    .infrastructure-page .pd-loc-inline {
        padding-left: 18px;
    }

    .infrastructure-page .pd-main h2 {
        font-size: 1rem;
    }

    .infrastructure-page .pd-scope {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   MINING OPERATIONS PAGE
   Scoped to .mining-page to prevent conflicts
   ============================================ */

/* ---------- ROUNDED BODY ---------- */
.mining-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ---------- PROJECT IMAGE ---------- */
.mining-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.mining-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.mining-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ---------- PROJECT ITEMS ---------- */
.mining-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mining-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.mining-page .proj-item:first-child { padding-top: 0; }
.mining-page .proj-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Block Header ---------- */
.mining-page .pd-block-head { margin-bottom: 30px; }

.mining-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.mining-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.mining-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.mining-page .pd-loc-inline svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Grid ---------- */
.mining-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.mining-page .pd-main section { margin-bottom: 35px; }
.mining-page .pd-main section:last-child { margin-bottom: 0; }

.mining-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mining-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.mining-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mining-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mining-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.mining-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.mining-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.mining-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mining-page .pd-info ul { list-style: none; padding: 0; margin: 0 0 24px 0; }

.mining-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.mining-page .pd-info li:last-child { border-bottom: none; }

.mining-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.mining-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.mining-page .proj-progress { margin-bottom: 24px; }

.mining-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mining-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.mining-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.mining-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.mining-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.mining-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.mining-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
   
    .mining-page .page-body {
        padding: 60px 0 40px;
        border-radius: 24px 24px 0 0;
    }
    .mining-page .proj-image img { height: 300px; }
    .mining-page .proj-item { padding: 40px 0; }
    .mining-page .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .mining-page .pd-side { position: static; }
    .mining-page .pd-block-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
   
    .mining-page .page-body {
        padding: 40px 0 30px;
        margin-top: -40px;
    }
    .mining-page .proj-image {
        margin-bottom: 24px;
        border-radius: 12px;
    }
    .mining-page .proj-image img { height: 220px; }
    .mining-page .proj-item { padding: 30px 0; }
    .mining-page .pd-block-title {
        font-size: 1.3rem;
        padding-left: 18px;
    }
    .mining-page .pd-block-title::before {
        width: 4px;
        height: 24px;
    }
    .mining-page .pd-loc-inline { padding-left: 18px; }
    .mining-page .pd-main h2 { font-size: 1rem; }
    .mining-page .pd-scope { grid-template-columns: 1fr; }
}
/* ============================================
   MINING INFRASTRUCTURE PAGE
   Scoped to .mininginfrastructure-page
   ============================================ */



/* ---------- ROUNDED BODY ---------- */
.mininginfrastructure-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ---------- PROJECT IMAGE ---------- */
.mininginfrastructure-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.mininginfrastructure-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.mininginfrastructure-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ---------- PROJECT ITEMS ---------- */
.mininginfrastructure-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mininginfrastructure-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.mininginfrastructure-page .proj-item:first-child { padding-top: 0; }
.mininginfrastructure-page .proj-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Block Header ---------- */
.mininginfrastructure-page .pd-block-head { margin-bottom: 30px; }

.mininginfrastructure-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.mininginfrastructure-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.mininginfrastructure-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.mininginfrastructure-page .pd-loc-inline svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Grid ---------- */
.mininginfrastructure-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.mininginfrastructure-page .pd-main section { margin-bottom: 35px; }
.mininginfrastructure-page .pd-main section:last-child { margin-bottom: 0; }

.mininginfrastructure-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mininginfrastructure-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.mininginfrastructure-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mininginfrastructure-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mininginfrastructure-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.mininginfrastructure-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.mininginfrastructure-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.mininginfrastructure-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mininginfrastructure-page .pd-info ul { list-style: none; padding: 0; margin: 0 0 24px 0; }

.mininginfrastructure-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.mininginfrastructure-page .pd-info li:last-child { border-bottom: none; }

.mininginfrastructure-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.mininginfrastructure-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.mininginfrastructure-page .proj-progress { margin-bottom: 24px; }

.mininginfrastructure-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.mininginfrastructure-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.mininginfrastructure-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.mininginfrastructure-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.mininginfrastructure-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.mininginfrastructure-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.mininginfrastructure-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  
    .mininginfrastructure-page .page-body {
        padding: 60px 0 40px;
        border-radius: 24px 24px 0 0;
    }
    .mininginfrastructure-page .proj-image img { height: 300px; }
    .mininginfrastructure-page .proj-item { padding: 40px 0; }
    .mininginfrastructure-page .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .mininginfrastructure-page .pd-side { position: static; }
    .mininginfrastructure-page .pd-block-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
   
    .mininginfrastructure-page .page-body {
        padding: 40px 0 30px;
        margin-top: -40px;
    }
    .mininginfrastructure-page .proj-image {
        margin-bottom: 24px;
        border-radius: 12px;
    }
    .mininginfrastructure-page .proj-image img { height: 220px; }
    .mininginfrastructure-page .proj-item { padding: 30px 0; }
    .mininginfrastructure-page .pd-block-title {
        font-size: 1.3rem;
        padding-left: 18px;
    }
    .mininginfrastructure-page .pd-block-title::before {
        width: 4px;
        height: 24px;
    }
    .mininginfrastructure-page .pd-loc-inline { padding-left: 18px; }
    .mininginfrastructure-page .pd-main h2 { font-size: 1rem; }
    .mininginfrastructure-page .pd-scope { grid-template-columns: 1fr; }
}
/* ============================================
   LAND DEVELOPMENT PAGE
   Scoped to .land-page
   ============================================ */


/* ---------- ROUNDED BODY ---------- */
.land-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ---------- PROJECT IMAGE ---------- */
.land-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.land-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.land-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ---------- PROJECT ITEMS ---------- */
.land-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.land-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.land-page .proj-item:first-child { padding-top: 0; }
.land-page .proj-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Block Header ---------- */
.land-page .pd-block-head { margin-bottom: 30px; }

.land-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.land-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.land-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.land-page .pd-loc-inline svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Grid ---------- */
.land-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.land-page .pd-main section { margin-bottom: 35px; }
.land-page .pd-main section:last-child { margin-bottom: 0; }

.land-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.land-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.land-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.land-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.land-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.land-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.land-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.land-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.land-page .pd-info ul { list-style: none; padding: 0; margin: 0 0 24px 0; }

.land-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.land-page .pd-info li:last-child { border-bottom: none; }

.land-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.land-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.land-page .proj-progress { margin-bottom: 24px; }

.land-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.land-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.land-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.land-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.land-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.land-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.land-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .land-page .page-body { padding: 60px 0 40px; border-radius: 24px 24px 0 0; }
    .land-page .proj-image img { height: 300px; }
    .land-page .proj-item { padding: 40px 0; }
    .land-page .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .land-page .pd-side { position: static; }
    .land-page .pd-block-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .land-page .page-body { padding: 40px 0 30px; margin-top: -40px; }
    .land-page .proj-image { margin-bottom: 24px; border-radius: 12px; }
    .land-page .proj-image img { height: 220px; }
    .land-page .proj-item { padding: 30px 0; }
    .land-page .pd-block-title { font-size: 1.3rem; padding-left: 18px; }
    .land-page .pd-block-title::before { width: 4px; height: 24px; }
    .land-page .pd-loc-inline { padding-left: 18px; }
    .land-page .pd-main h2 { font-size: 1rem; }
    .land-page .pd-scope { grid-template-columns: 1fr; }
}
/* ============================================
   SITE DEVELOPMENT PAGE
   Scoped to .site-page
   ============================================ */



/* ---------- ROUNDED BODY ---------- */
.site-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ---------- PROJECT IMAGE ---------- */
.site-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.site-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.site-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ---------- PROJECT ITEMS ---------- */
.site-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.site-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.site-page .proj-item:first-child { padding-top: 0; }
.site-page .proj-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Block Header ---------- */
.site-page .pd-block-head { margin-bottom: 30px; }

.site-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.site-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.site-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.site-page .pd-loc-inline svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Grid ---------- */
.site-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.site-page .pd-main section { margin-bottom: 35px; }
.site-page .pd-main section:last-child { margin-bottom: 0; }

.site-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.site-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.site-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.site-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.site-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.site-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.site-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.site-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.site-page .pd-info ul { list-style: none; padding: 0; margin: 0 0 24px 0; }

.site-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.site-page .pd-info li:last-child { border-bottom: none; }

.site-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.site-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.site-page .proj-progress { margin-bottom: 24px; }

.site-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.site-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.site-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.site-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.site-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.site-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.site-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .site-page .page-body { padding: 60px 0 40px; border-radius: 24px 24px 0 0; }
    .site-page .proj-image img { height: 300px; }
    .site-page .proj-item { padding: 40px 0; }
    .site-page .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .site-page .pd-side { position: static; }
    .site-page .pd-block-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .site-page .page-body { padding: 40px 0 30px; margin-top: -40px; }
    .site-page .proj-image { margin-bottom: 24px; border-radius: 12px; }
    .site-page .proj-image img { height: 220px; }
    .site-page .proj-item { padding: 30px 0; }
    .site-page .pd-block-title { font-size: 1.3rem; padding-left: 18px; }
    .site-page .pd-block-title::before { width: 4px; height: 24px; }
    .site-page .pd-loc-inline { padding-left: 18px; }
    .site-page .pd-main h2 { font-size: 1rem; }
    .site-page .pd-scope { grid-template-columns: 1fr; }
}
/* ============================================
   INFRASTRUCTURE DEVELOPMENT PAGE
   Scoped to .infrastructuredev-page
   ============================================ */



/* ---------- ROUNDED BODY ---------- */
.infrastructuredev-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ---------- PROJECT IMAGE ---------- */
.infrastructuredev-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.infrastructuredev-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.infrastructuredev-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ---------- PROJECT ITEMS ---------- */
.infrastructuredev-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.infrastructuredev-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.infrastructuredev-page .proj-item:first-child { padding-top: 0; }
.infrastructuredev-page .proj-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Block Header ---------- */
.infrastructuredev-page .pd-block-head { margin-bottom: 30px; }

.infrastructuredev-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.infrastructuredev-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.infrastructuredev-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.infrastructuredev-page .pd-loc-inline svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Grid ---------- */
.infrastructuredev-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.infrastructuredev-page .pd-main section { margin-bottom: 35px; }
.infrastructuredev-page .pd-main section:last-child { margin-bottom: 0; }

.infrastructuredev-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.infrastructuredev-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.infrastructuredev-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.infrastructuredev-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.infrastructuredev-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.infrastructuredev-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.infrastructuredev-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.infrastructuredev-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.infrastructuredev-page .pd-info ul { list-style: none; padding: 0; margin: 0 0 24px 0; }

.infrastructuredev-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.infrastructuredev-page .pd-info li:last-child { border-bottom: none; }

.infrastructuredev-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.infrastructuredev-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.infrastructuredev-page .proj-progress { margin-bottom: 24px; }

.infrastructuredev-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.infrastructuredev-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.infrastructuredev-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.infrastructuredev-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.infrastructuredev-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.infrastructuredev-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.infrastructuredev-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .infrastructuredev-page .page-body { padding: 60px 0 40px; border-radius: 24px 24px 0 0; }
    .infrastructuredev-page .proj-image img { height: 300px; }
    .infrastructuredev-page .proj-item { padding: 40px 0; }
    .infrastructuredev-page .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .infrastructuredev-page .pd-side { position: static; }
    .infrastructuredev-page .pd-block-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .infrastructuredev-page .page-body { padding: 40px 0 30px; margin-top: -40px; }
    .infrastructuredev-page .proj-image { margin-bottom: 24px; border-radius: 12px; }
    .infrastructuredev-page .proj-image img { height: 220px; }
    .infrastructuredev-page .proj-item { padding: 30px 0; }
    .infrastructuredev-page .pd-block-title { font-size: 1.3rem; padding-left: 18px; }
    .infrastructuredev-page .pd-block-title::before { width: 4px; height: 24px; }
    .infrastructuredev-page .pd-loc-inline { padding-left: 18px; }
    .infrastructuredev-page .pd-main h2 { font-size: 1rem; }
    .infrastructuredev-page .pd-scope { grid-template-columns: 1fr; }
}
/* ============================================
   COMMERCIAL & INDUSTRIAL DEVELOPMENT PAGE
   Scoped to .commercial-page
   ============================================ */



/* ---------- ROUNDED BODY ---------- */
.commercial-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ---------- PROJECT IMAGE ---------- */
.commercial-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.commercial-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.commercial-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ---------- PROJECT ITEMS ---------- */
.commercial-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.commercial-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.commercial-page .proj-item:first-child { padding-top: 0; }
.commercial-page .proj-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Block Header ---------- */
.commercial-page .pd-block-head { margin-bottom: 30px; }

.commercial-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.commercial-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.commercial-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.commercial-page .pd-loc-inline svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Grid ---------- */
.commercial-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.commercial-page .pd-main section { margin-bottom: 35px; }
.commercial-page .pd-main section:last-child { margin-bottom: 0; }

.commercial-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.commercial-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.commercial-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.commercial-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.commercial-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.commercial-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.commercial-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.commercial-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.commercial-page .pd-info ul { list-style: none; padding: 0; margin: 0 0 24px 0; }

.commercial-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.commercial-page .pd-info li:last-child { border-bottom: none; }

.commercial-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.commercial-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.commercial-page .proj-progress { margin-bottom: 24px; }

.commercial-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.commercial-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.commercial-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.commercial-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.commercial-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.commercial-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.commercial-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .commercial-page .page-body { padding: 60px 0 40px; border-radius: 24px 24px 0 0; }
    .commercial-page .proj-image img { height: 300px; }
    .commercial-page .proj-item { padding: 40px 0; }
    .commercial-page .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .commercial-page .pd-side { position: static; }
    .commercial-page .pd-block-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .commercial-page .page-body { padding: 40px 0 30px; margin-top: -40px; }
    .commercial-page .proj-image { margin-bottom: 24px; border-radius: 12px; }
    .commercial-page .proj-image img { height: 220px; }
    .commercial-page .proj-item { padding: 30px 0; }
    .commercial-page .pd-block-title { font-size: 1.3rem; padding-left: 18px; }
    .commercial-page .pd-block-title::before { width: 4px; height: 24px; }
    .commercial-page .pd-loc-inline { padding-left: 18px; }
    .commercial-page .pd-main h2 { font-size: 1rem; }
    .commercial-page .pd-scope { grid-template-columns: 1fr; }
}
/* ============================================
   WATER SUPPLY PROJECTS PAGE
   Scoped to .water-page
   ============================================ */


/* ---------- ROUNDED BODY ---------- */
.water-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 60px;
    z-index: 10;
}

/* ---------- PROJECT IMAGE ---------- */
.water-page .proj-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.12);
}

.water-page .proj-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform .8s ease;
}

.water-page .proj-item:hover .proj-image img {
    transform: scale(1.03);
}

/* ---------- PROJECT ITEMS ---------- */
.water-page .pd-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.water-page .proj-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.water-page .proj-item:first-child { padding-top: 0; }
.water-page .proj-item:last-child { border-bottom: none; padding-bottom: 0; }

/* ---------- Block Header ---------- */
.water-page .pd-block-head { margin-bottom: 30px; }

.water-page .pd-block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.water-page .pd-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 32px;
    background: var(--accent);
    border-radius: 3px;
}

.water-page .pd-loc-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted-text);
    font-size: 0.95rem;
    padding-left: 24px;
}

.water-page .pd-loc-inline svg { color: var(--accent); flex-shrink: 0; }

/* ---------- Grid ---------- */
.water-page .pd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ---------- Main Content ---------- */
.water-page .pd-main section { margin-bottom: 35px; }
.water-page .pd-main section:last-child { margin-bottom: 0; }

.water-page .pd-main h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.water-page .pd-main p {
    color: var(--muted-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Scope List ---------- */
.water-page .pd-scope {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.water-page .pd-scope li {
    position: relative;
    padding-left: 28px;
    color: var(--dark-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.water-page .pd-scope li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ---------- Sidebar ---------- */
.water-page .pd-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.water-page .pd-info {
    background: transparent;
    border: none;
    padding: 0;
    border-top: 3px solid var(--accent);
    padding-top: 24px;
}

.water-page .pd-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.water-page .pd-info ul { list-style: none; padding: 0; margin: 0 0 24px 0; }

.water-page .pd-info li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.water-page .pd-info li:last-child { border-bottom: none; }

.water-page .pd-info span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.water-page .pd-info strong {
    color: var(--dark-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
}

/* ---------- Progress Bar ---------- */
.water-page .proj-progress { margin-bottom: 24px; }

.water-page .proj-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.water-page .proj-progress-head span {
    font-size: 0.82rem;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.water-page .proj-progress-head strong {
    font-size: 0.88rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.water-page .proj-progress .bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.water-page .proj-progress .bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 50px;
    transition: width 0.6s ease;
}

/* ---------- CTA Button ---------- */
.water-page .pd-cta {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.water-page .pd-cta:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .water-page .page-body { padding: 60px 0 40px; border-radius: 24px 24px 0 0; }
    .water-page .proj-image img { height: 300px; }
    .water-page .proj-item { padding: 40px 0; }
    .water-page .pd-grid { grid-template-columns: 1fr; gap: 30px; }
    .water-page .pd-side { position: static; }
    .water-page .pd-block-title { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .water-page .page-body { padding: 40px 0 30px; margin-top: -40px; }
    .water-page .proj-image { margin-bottom: 24px; border-radius: 12px; }
    .water-page .proj-image img { height: 220px; }
    .water-page .proj-item { padding: 30px 0; }
    .water-page .pd-block-title { font-size: 1.3rem; padding-left: 18px; }
    .water-page .pd-block-title::before { width: 4px; height: 24px; }
    .water-page .pd-loc-inline { padding-left: 18px; }
    .water-page .pd-main h2 { font-size: 1rem; }
    .water-page .pd-scope { grid-template-columns: 1fr; }
}
/* ============================================
   OVERVIEW (ABOUT US) PAGE
   Scoped to .overview-page
   ============================================ */
/* ============================================
   OVERVIEW (ABOUT US) PAGE
   Scoped to .overview-page
   ============================================ */

/* ---------- ROUNDED BODY ---------- */
.overview-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 70px;
    z-index: 10;
}

/* ---------- STATS STRIP ---------- */
.ov-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.ov-stat {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ov-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.1);
    border-color: var(--accent);
}

.ov-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.ov-stat span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 600;
}

/* ---------- SECTION HEADINGS ---------- */
.ov-h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    padding-left: 22px;
}

.ov-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--accent);
    border-radius: 3px;
}

.ov-lead {
    color: var(--muted-text);
    max-width: 760px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.ov-section { margin-bottom: 70px; }

/* ---------- WHO WE ARE ---------- */
.ov-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.ov-intro-text p {
    color: var(--muted-text);
    line-height: 1.9;
    margin-bottom: 16px;
}

/* Image column with overlay badge */
.ov-intro-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ov-intro-image > img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(11, 31, 38, 0.15);
}

.ov-since {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(150deg, var(--primary) 0%, var(--accent-dark) 120%);
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.25);
    min-width: 200px;
}

.ov-since span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.ov-since strong {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--accent-light);
}

.ov-since p {
    margin-top: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* ---------- QHSE VALUE CARDS ---------- */
.ov-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ov-value {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
}

.ov-value:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.1);
    border-color: var(--accent);
}

.ov-value-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(22, 166, 161, 0.1);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ov-value h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.ov-value p {
    color: var(--muted-text);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- PILLARS ---------- */
.ov-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ov-pillar {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ov-pillar:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- SERVICES LIST ---------- */
.ov-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ov-services li {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 16px 16px 44px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.ov-services li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-weight: 800;
}

.ov-services li:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 31, 38, 0.08);
}

/* ---------- CTA ---------- */
.ov-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
}

.ov-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.ov-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 28px;
}

.ov-cta .btn {
    padding: 14px 40px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
}

.ov-cta .btn:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .overview-page .page-body { padding: 60px 0 50px; border-radius: 24px 24px 0 0; }

    .ov-stats { grid-template-columns: repeat(2, 1fr); margin-bottom: 50px; }
    .ov-intro { grid-template-columns: 1fr; gap: 60px; margin-bottom: 80px; }
    .ov-intro-image { order: -1; }
    .ov-values { grid-template-columns: repeat(2, 1fr); }
    .ov-services { grid-template-columns: repeat(2, 1fr); }
    .ov-section { margin-bottom: 50px; }
}

@media (max-width: 576px) {
    .overview-page .page-body { padding: 40px 0 40px; margin-top: -40px; }

    .ov-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ov-stat { padding: 20px 12px; }
    .ov-stat strong { font-size: 1.5rem; }

    .ov-h2 { font-size: 1.4rem; padding-left: 16px; }
    .ov-h2::before { width: 4px; height: 24px; }

    .ov-intro-image > img { height: 300px; }
    .ov-since { padding: 16px 30px; min-width: 160px; }
    .ov-since strong { font-size: 2rem; }

    .ov-values { grid-template-columns: 1fr; }
    .ov-services { grid-template-columns: 1fr; }
    .ov-cta { padding: 36px 20px; }
    .ov-cta h2 { font-size: 1.5rem; }
}
/* ============================================
   OVERVIEW PAGE - BULLETPROOF SCROLL ANIMATIONS
   ============================================ */

/* 1. BASE STATE: Always visible by default (Safe if JS fails) */
.overview-page .ov-anim {
    opacity: 1;
    transform: none;
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}

/* 2. HIDDEN STATE: Only hide if JS is active AND element hasn't scrolled into view yet */
html.js .overview-page .ov-anim:not(.in-view) {
    opacity: 0;
}
html.js .overview-page .ov-anim.from-up:not(.in-view)    { transform: translateY(40px); }
html.js .overview-page .ov-anim.from-down:not(.in-view)  { transform: translateY(-40px); }
html.js .overview-page .ov-anim.from-left:not(.in-view)  { transform: translateX(-60px); }
html.js .overview-page .ov-anim.from-right:not(.in-view) { transform: translateX(60px); }
html.js .overview-page .ov-anim.from-scale:not(.in-view) { transform: scale(.92); }

/* 3. REVEALED STATE: When JS adds .in-view, it reverts to base visible state smoothly */
/* (No extra CSS needed here, it just drops the :not(.in-view) rules above) */

/* Heading underline draws in when section is revealed */
html.js .overview-page .ov-h2.ov-anim::before {
    transition: height .6s ease .4s;
    height: 0;
}
html.js .overview-page .ov-h2.ov-anim.in-view::before {
    height: 30px;
}

/* Accessibility: disable animations for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
    .overview-page .ov-anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .overview-page .ov-h2.ov-anim::before {
        height: 30px !important;
        transition: none !important;
    }
}
/* ============================================
   SAFETY CONCERN PAGE
   Scoped to .safety-page
   ============================================ */



/* ---------- ROUNDED BODY ---------- */
.safety-page .page-body {
    position: relative;
    margin-top: -50px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 70px;
    z-index: 10;
}

/* ---------- STATS STRIP ---------- */
.sc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.sc-stat {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.sc-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.1);
    border-color: var(--accent);
}

.sc-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.sc-stat span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 600;
}

/* ---------- SECTION HEADINGS ---------- */
.sc-h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    padding-left: 22px;
}

.sc-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--accent);
    border-radius: 3px;
}

.sc-lead {
    color: var(--muted-text);
    max-width: 760px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.sc-section { margin-bottom: 70px; }

/* ---------- SHE POLICY INTRO ---------- */
.sc-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.sc-intro-text p {
    color: var(--muted-text);
    line-height: 1.9;
    margin-bottom: 16px;
}

.sc-intro-text p strong {
    color: var(--primary);
}

.sc-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.sc-pillar {
    background: rgba(22, 166, 161, 0.1);
    color: var(--accent-dark);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Image column with overlay badge */
.sc-intro-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sc-intro-image > img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(11, 31, 38, 0.15);
}

.sc-goal {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(150deg, #D97706 0%, #B45309 120%);
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.25);
    min-width: 200px;
}

.sc-goal span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.sc-goal strong {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

.sc-goal p {
    margin-top: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* ---------- CORE COMMITMENTS ---------- */
.sc-commitments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sc-commit {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.sc-commit:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.1);
    border-top-color: var(--gold);
}

.sc-commit-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.1);
    color: #B45309;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sc-commit h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.sc-commit p {
    color: var(--muted-text);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- ENVIRONMENTAL STEWARDSHIP ---------- */
.sc-env-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sc-env-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.sc-env-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.1);
    border-color: var(--accent);
}

.sc-env-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.sc-env-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(22, 166, 161, 0.1);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-env-head h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.sc-env-card p {
    color: var(--muted-text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.sc-env-card p strong {
    color: var(--primary);
}

/* ---------- SAFETY PRACTICES ---------- */
.sc-practices {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.sc-practices li {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px 18px 18px 52px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sc-practices li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.sc-practices li:hover {
    border-color: var(--gold);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(11, 31, 38, 0.08);
}

/* ---------- CTA ---------- */
.sc-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
}

.sc-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.sc-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 28px;
}

.sc-cta .btn {
    padding: 14px 40px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
}

.sc-cta .btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS - SELF-PROTECTING
   (Content is visible by default. It is hidden ONLY
   after JS marks it with .will-animate)
   ============================================ */
.safety-page .sc-anim {
    opacity: 1;
    transform: none;
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}

/* Hidden ONLY when JS has marked the element AND it hasn't been revealed yet */
.safety-page .sc-anim.will-animate:not(.in-view) { opacity: 0; }
.safety-page .sc-anim.will-animate.from-up:not(.in-view)    { transform: translateY(40px); }
.safety-page .sc-anim.will-animate.from-down:not(.in-view)  { transform: translateY(-40px); }
.safety-page .sc-anim.will-animate.from-left:not(.in-view)  { transform: translateX(-60px); }
.safety-page .sc-anim.will-animate.from-right:not(.in-view) { transform: translateX(60px); }
.safety-page .sc-anim.will-animate.from-scale:not(.in-view) { transform: scale(.92); }

/* Heading underline draws in when revealed */
.safety-page .sc-h2.sc-anim.will-animate::before {
    transition: height .6s ease .4s;
    height: 0;
}
.safety-page .sc-h2.sc-anim.in-view::before {
    height: 30px;
}

@media (prefers-reduced-motion: reduce) {
    .safety-page .sc-anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .safety-page .sc-h2.sc-anim::before {
        height: 30px !important;
        transition: none !important;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .safety-page .page-body { padding: 60px 0 50px; border-radius: 24px 24px 0 0; }
    .sc-hero-img img { height: 300px; }

    .sc-stats { grid-template-columns: repeat(2, 1fr); margin-bottom: 50px; }
    .sc-intro { grid-template-columns: 1fr; gap: 60px; margin-bottom: 80px; }
    .sc-intro-image { order: -1; }
    .sc-commitments { grid-template-columns: repeat(2, 1fr); }
    .sc-env-grid { grid-template-columns: 1fr; }
    .sc-practices { grid-template-columns: 1fr; }
    .sc-section { margin-bottom: 50px; }
}

@media (max-width: 576px) {
    .safety-page .page-body { padding: 40px 0 40px; margin-top: -40px; }
    .sc-hero-img { margin-top: -40px; }
    .sc-hero-img img { height: 220px; border-radius: 14px; }

    .sc-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .sc-stat { padding: 20px 12px; }
    .sc-stat strong { font-size: 1.5rem; }

    .sc-h2 { font-size: 1.4rem; padding-left: 16px; }
    .sc-h2::before { width: 4px; height: 24px; }

    .sc-intro-image > img { height: 300px; }
    .sc-goal { padding: 16px 30px; min-width: 160px; }
    .sc-goal strong { font-size: 2rem; }

    .sc-commitments { grid-template-columns: 1fr; }
    .sc-cta { padding: 36px 20px; }
    .sc-cta h2 { font-size: 1.5rem; }
}
/* ============================================
   WHY CHOOSE US PAGE
   Scoped to .why-page
   ============================================ */



/* ---------- ROUNDED BODY ---------- */
.why-page .page-body {
    position: relative;
    margin-top: -50px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 70px;
    z-index: 10;
}

/* ---------- PILLARS STRIP ---------- */
.wc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.wc-stat {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

.wc-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.1);
}

.wc-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 4px;
}

.wc-stat span {
    color: var(--muted-text);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- SECTION HEADINGS ---------- */
.wc-h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    padding-left: 22px;
}

.wc-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--accent);
    border-radius: 3px;
}

.wc-lead {
    color: var(--muted-text);
    max-width: 760px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.wc-section { margin-bottom: 70px; }

/* ---------- VALUE CARDS ---------- */
.wc-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wc-value {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 34px 28px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.wc-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 34px rgba(11, 31, 38, 0.12);
    border-color: var(--accent);
}

.wc-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.6rem;
    font-weight: 800;
    color: rgba(22, 166, 161, 0.12);
    line-height: 1;
}

.wc-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(22, 166, 161, 0.1);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.wc-value:hover .wc-value-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.06);
}

.wc-value h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.wc-value p {
    color: var(--muted-text);
    font-size: 0.93rem;
    line-height: 1.8;
}

/* ---------- ADVANTAGE + IMAGE 2 ---------- */
.wc-advantage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.wc-adv-text p {
    color: var(--muted-text);
    line-height: 1.9;
    margin-bottom: 22px;
}

.wc-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc-checks li {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 16px 14px 50px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.wc-checks li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.wc-checks li:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(11, 31, 38, 0.08);
}

/* Image 2 with floating badge */
.wc-adv-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wc-adv-image > img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(11, 31, 38, 0.15);
}

.wc-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(150deg, var(--primary) 0%, var(--accent-dark) 120%);
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 36px;
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.25);
    min-width: 220px;
}

.wc-badge span {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.wc-badge strong {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--accent-light);
}

.wc-badge p {
    margin-top: 4px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* ---------- CTA ---------- */
.wc-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
}

.wc-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.wc-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 28px;
}

.wc-cta .btn {
    padding: 14px 40px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
}

.wc-cta .btn:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS - SELF-PROTECTING
   (visible by default; hidden ONLY after JS marks .will-animate)
   ============================================ */
.why-page .wc-anim {
    opacity: 1;
    transform: none;
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}

.why-page .wc-anim.will-animate:not(.in-view) { opacity: 0; }
.why-page .wc-anim.will-animate.from-up:not(.in-view)    { transform: translateY(40px); }
.why-page .wc-anim.will-animate.from-down:not(.in-view)  { transform: translateY(-40px); }
.why-page .wc-anim.will-animate.from-left:not(.in-view)  { transform: translateX(-60px); }
.why-page .wc-anim.will-animate.from-right:not(.in-view) { transform: translateX(60px); }
.why-page .wc-anim.will-animate.from-scale:not(.in-view) { transform: scale(.92); }

.why-page .wc-h2.wc-anim.will-animate::before {
    transition: height .6s ease .4s;
    height: 0;
}
.why-page .wc-h2.wc-anim.in-view::before {
    height: 30px;
}

@media (prefers-reduced-motion: reduce) {
    .why-page .wc-anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .why-page .wc-h2.wc-anim::before {
        height: 30px !important;
        transition: none !important;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .why-page .page-body { padding: 60px 0 50px; border-radius: 24px 24px 0 0; }

    .wc-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 50px; }
    .wc-values { grid-template-columns: 1fr; }
    .wc-advantage { grid-template-columns: 1fr; gap: 60px; margin-bottom: 80px; }
    .wc-adv-image { order: -1; }
    .wc-section { margin-bottom: 50px; }
}

@media (max-width: 576px) {
    .why-page .page-body { padding: 40px 0 40px; margin-top: -40px; }
    

    .wc-stats { grid-template-columns: 1fr; }
    .wc-stat { padding: 18px 12px; }
    .wc-stat strong { font-size: 1.6rem; }

    .wc-h2 { font-size: 1.4rem; padding-left: 16px; }
    .wc-h2::before { width: 4px; height: 24px; }

    .wc-adv-image > img { height: 300px; }
    .wc-badge { padding: 14px 26px; min-width: 180px; }
    .wc-badge strong { font-size: 1.9rem; }

    .wc-cta { padding: 36px 20px; }
    .wc-cta h2 { font-size: 1.5rem; }
}
/* ============================================
   TESTIMONIAL (CUSTOMER REVIEWS) PAGE
   Scoped to .testimonial-page
   ============================================ */


/* ---------- ROUNDED BODY ---------- */
.testimonial-page .page-body {
    position: relative;
    margin-top: -60px;
    background: var(--light-bg);
    border-radius: 32px 32px 0 0;
    padding: 80px 0 70px;
    z-index: 10;
}

/* ---------- STATS STRIP ---------- */
.tc-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.tc-stat {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.tc-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(11, 31, 38, 0.1);
    border-color: var(--accent);
}

.tc-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.tc-stat span {
    color: var(--muted-text);
    font-size: 0.88rem;
    font-weight: 600;
}

/* ---------- SECTION HEADINGS ---------- */
.tc-h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    padding-left: 22px;
}

.tc-h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--accent);
    border-radius: 3px;
}

.tc-lead {
    color: var(--muted-text);
    max-width: 760px;
    margin-bottom: 34px;
    line-height: 1.8;
}

.tc-section { margin-bottom: 70px; }

/* ---------- TESTIMONIAL CARDS ---------- */
.tc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tc-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tc-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.tc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 34px rgba(11, 31, 38, 0.12);
}

.tc-card:hover::after { transform: scaleX(1); }

.tc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.tc-quote {
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(22, 166, 161, 0.25);
    font-family: Georgia, serif;
}

.tc-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-top: 8px;
}

.tc-text {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
}

.tc-person {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px dashed var(--border-color);
    padding-top: 18px;
}

.tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-person strong {
    display: block;
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 700;
}

.tc-person span:not(.tc-avatar) {
    color: var(--muted-text);
    font-size: 0.82rem;
    font-weight: 600;
}

/* ---------- TRUSTED BY CHIPS ---------- */
.tc-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tc-client {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 26px;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.tc-client:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- CTA ---------- */
.tc-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
}

.tc-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.tc-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 28px;
}

.tc-cta .btn {
    padding: 14px 40px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
}

.tc-cta .btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS - SELF-PROTECTING
   (visible by default; hidden ONLY after JS marks .will-animate)
   ============================================ */
.testimonial-page .tc-anim {
    opacity: 1;
    transform: none;
    transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
    will-change: opacity, transform;
}

.testimonial-page .tc-anim.will-animate:not(.in-view) { opacity: 0; }
.testimonial-page .tc-anim.will-animate.from-up:not(.in-view)    { transform: translateY(40px); }
.testimonial-page .tc-anim.will-animate.from-left:not(.in-view)  { transform: translateX(-60px); }
.testimonial-page .tc-anim.will-animate.from-right:not(.in-view) { transform: translateX(60px); }
.testimonial-page .tc-anim.will-animate.from-scale:not(.in-view) { transform: scale(.92); }

.testimonial-page .tc-h2.tc-anim.will-animate::before {
    transition: height .6s ease .4s;
    height: 0;
}
.testimonial-page .tc-h2.tc-anim.in-view::before {
    height: 30px;
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-page .tc-anim {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .testimonial-page .tc-h2.tc-anim::before {
        height: 30px !important;
        transition: none !important;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .testimonial-page .page-body { padding: 60px 0 50px; border-radius: 24px 24px 0 0; }

    .tc-stats { grid-template-columns: repeat(2, 1fr); margin-bottom: 50px; }
    .tc-grid { grid-template-columns: repeat(2, 1fr); }
    .tc-section { margin-bottom: 50px; }
}

@media (max-width: 576px) {
    .testimonial-page .page-body { padding: 40px 0 40px; margin-top: -40px; }

    .tc-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .tc-stat { padding: 20px 12px; }
    .tc-stat strong { font-size: 1.5rem; }

    .tc-h2 { font-size: 1.4rem; padding-left: 16px; }
    .tc-h2::before { width: 4px; height: 24px; }

    .tc-grid { grid-template-columns: 1fr; }
    .tc-cta { padding: 36px 20px; }
    .tc-cta h2 { font-size: 1.5rem; }
}

/* index */
/* ============================================
   DROPDOWN ARROWS / ICONS
   ============================================ */

/* 1. Main Dropdown Arrow (About Us, Projects) */
.navbar-nav .dropdown > .dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    /* Remove default Bootstrap border if it conflicts */
    border-top: 0;
    border-left: 0;
}

/* Rotate main arrow when open (on mobile or hover) */
.navbar-nav .dropdown.show > .dropdown-toggle::after,
.navbar-nav .dropdown:hover > .dropdown-toggle::after {
    transform: rotate(-135deg);
}

/* 2. Nested Submenu Arrow (Highways & Roads, Mining, etc.) */
/* Only show right-arrow on desktop screens */
@media (min-width: 992px) {
    .dropdown-submenu > .dropdown-toggle::after {
        display: inline-block;
        margin-left: 8px;
        float: right;
        margin-top: 6px;
        content: "";
        width: 6px;
        height: 6px;
        border-bottom: 2px solid currentColor;
        border-right: 2px solid currentColor;
        /* Point Right */
        transform: rotate(-45deg); 
        transition: transform 0.3s ease;
        border-top: 0;
        border-left: 0;
    }

    /* Optional: Slide the arrow slightly when hovering over the submenu item */
    .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(-45deg) translate(2px, -2px);
    }
}

/* 3. Mobile View for Nested Submenus */
/* On mobile, submenus drop DOWN, so the arrow should point down */
@media (max-width: 991.98px) {
    .dropdown-submenu > .dropdown-toggle::after {
        display: inline-block;
        margin-left: 6px;
        vertical-align: middle;
        content: "";
        width: 6px;
        height: 6px;
        border-bottom: 2px solid currentColor;
        border-right: 2px solid currentColor;
        /* Point Down */
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        border-top: 0;
        border-left: 0;
    }

    /* Rotate arrow when the mobile accordion is open */
    .dropdown-submenu.open > .dropdown-toggle::after {
        transform: rotate(-135deg);
    }
}