:root {
    --primary: #34476f;
    --primary-dark: #263655;
    --accent: #e63e3e;
    --accent-soft: #f36e6e;
    --ink: #1f2b3d;
    --muted: #6b7482;
    --line: #d9e0ea;
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-alt: #eef3f9;
    --light-blue: #e9f1fb;
    --light-red: #fff1f1;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --shadow-sm: 0 10px 30px rgba(52, 71, 111, 0.08);
    --shadow-lg: 0 24px 70px rgba(36, 53, 90, 0.14);
    --section: clamp(4rem, 8vw, 7rem);
    --font-body: "Manrope", sans-serif;
    --font-display: "Cormorant Garamond", serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: linear-gradient(180deg, #fbfdff 0%, #f4f7fb 100%);
    line-height: 1.7;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
p {
    color: var(--muted);
}
.skip-link {
    position: absolute;
    left: -9999px;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: #fff;
    padding: 0.75rem 1rem;
    z-index: 1000;
    border-radius: 10px;
}
.container-xxl {
    max-width: 1320px;
}
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(217, 224, 234, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.premium-navbar {
    padding: 0.8rem 0;
}
.navbar-brand img {
    height: 48px;
    width: auto;
}
.nav-link {
    font-weight: 600;
    color: var(--ink) !important;
    padding: 0.5rem 0.8rem !important;
    position: relative;
}
.nav-link:after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.45rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s;
}
.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1);
}
.dropdown-menu {
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 0.85rem;
    background: #fff;
}
.dropdown-item {
    padding: 0.7rem 1rem;
    border-radius: 12px;
}
.dropdown-item:hover {
    background: var(--surface-alt);
    color: var(--primary);
}
.btn-brand,
.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.35s ease;
}
.btn-brand {
    background: linear-gradient(135deg, var(--accent), #cc3131);
    color: #fff;
    box-shadow: 0 16px 30px rgba(230, 62, 62, 0.22);
}
.btn-brand:hover {
    transform: translateY(-2px);
    color: #fff;
}
.btn-outline-brand {
    border: 1px solid rgba(52, 71, 111, 0.18);
    background: #fff;
    color: var(--primary);
}
.btn-outline-brand:hover {
    background: var(--primary);
    color: #fff;
}
main section {
    
  
    margin:30px auto;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(52, 71, 111, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.02;
    color: var(--primary-dark);
    margin: 0.9rem 0 1.2rem;
}

.hero {
    
    overflow: hidden;
}
.hero-grid{
    display:grid;
    grid-template-columns:65% 35%;
    gap:1%;
    align-items:start;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 0.95;
    color: #24304a;
    margin: 1rem 0 1rem;
}
.hero-wide-text{
    width:100%;
    max-width:100%;
}

.hero-wide-text p{
    max-width:100%;
}
.hero p.lead {
    font-size: 1.12rem;
    max-width: 100%;
}
.hero p {
    max-width: 100%;
    width: 100%;
    text-align: left;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.2rem;
}
.hero-stat {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(217, 224, 234, 0.7);
    border-radius: 22px;
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}
.hero-stat strong {
    display: block;
    font-size: 1.7rem;
    color: var(--primary-dark);
}
.hero-visual {
    position: relative;
    min-height: 480px;
    margin-top: 0.5rem;
}
.hero-card-main,
.hero-card-float,
.hero-card-mini {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.hero-card-main {
    inset: 0 0 90px 0;
}
.hero-card-float {
    width: 45%;
    bottom: 0;
    left: 0;
}
.hero-card-mini {
    width: 34%;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
}
.hero-card-main img,
.hero-card-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.metric-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.surface-panel {
    background: var(--surface);
    border: 1px solid rgba(217, 224, 234, 0.75);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    padding: clamp(1.5rem, 3vw, 2.4rem);
}
.soft-band {
    background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}
.tint-red {
    background: linear-gradient(180deg, #fff8f8 0%, #fff1f1 100%);
}
.feature-grid,
.stats-grid,
.offer-grid,
.gallery-grid,
.faq-preview,
.contact-cards {
    display: grid;
    gap: 1.5rem;
}
.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}
.feature-card,
.offer-card,
.project-card,
.faq-card,
.contact-card,
.benefit-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(217, 224, 234, 0.8);
    border-radius: 26px;
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: 0.35s ease;
}
.feature-card:hover,
.offer-card:hover,
.project-card:hover,
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-card .icon-wrap,
.offer-card .icon-wrap,
.contact-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(52, 71, 111, 0.1), rgba(230, 62, 62, 0.08));
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.split-layout {
    
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}
.split-layoutt {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
}
.image-stack {
    position: relative;
    min-height: 540px;
}
.image-stack .primary-img,
.image-stack .secondary-img {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.image-stack .primary-img {
    inset: 0 18% 0 0;
}
.image-stack .secondary-img {
    right: 0;
    bottom: 12%;
    width: 42%;
    height: 52%;
    border: 8px solid #fff;
}
.image-stack img,
.banner-media img,
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline:before {
    content: "";
    position: absolute;
    left: 0.4rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--primary), rgba(52, 71, 111, 0.08));
}
.timeline-item {
    position: relative;
    padding: 0 0 2rem 2.3rem;
}
.timeline-item:before {
    content: attr(data-step);
    position: absolute;
    left: -0.5rem;
    top: 0;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    display: grid;
    place-items: center;
}
.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}
.stat-box {
    padding: 1.8rem;
    border-radius: 26px;
    background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
    border: 1px solid rgba(217, 224, 234, 0.8);
}
.stat-box strong {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--primary-dark);
    display: block;
}
.project-card .card-media {
    aspect-ratio: 2;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}
.project-card .tag {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--light-blue);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.masonry {
    columns: 3 280px;
    column-gap: 1.5rem;
}
.masonry .project-card {
    
    width: 100%;
    margin-bottom: 1.5rem;
}
.cta-block {
    background: linear-gradient(135deg, #31456d 0%, #49608f 55%, #e9eff8 140%);
    color: #fff;
    border-radius: 34px;
    padding: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
    position: relative;
}
.cta-block p,
.cta-block h2 {
    color: #fff;
}
.cta-block:after {
    content: "";
    position: absolute;
    inset: auto -60px -120px auto;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}
.page-hero {
    padding: 3rem 0 3rem;
    background: linear-gradient(180deg, rgba(233, 241, 251, 0.8), rgba(255, 255, 255, 0)), var(--page-bg, none);
    margin-top: 0;
}


.page-hero .banner-media {
    min-height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.breadcrumb-wrap {
    margin-top: 1rem;
}
.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}
.breadcrumb-item,
.breadcrumb-item a {
    color: var(--muted);
}
.breadcrumb-item.active {
    color: var(--primary);
}
.accordion-item {
    border: none;
    border-radius: 22px !important;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    font-weight: 700;
    padding: 1.2rem 1.4rem;
}
.accordion-button:not(.collapsed) {
    background: var(--light-blue);
    color: var(--primary);
}
.form-brief li,
.tick-list li,
.service-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.6rem;
    color: var(--muted);
}
.form-brief li:before,
.tick-list li:before,
.service-list li:before {
    content: "";
   
    left: 0;
    top: 0.68rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
}
.contact-map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer {
    padding: 0 0 2rem;
}
.footer-panel {
    background: #24324d;
    color: #d8e2f2;
    border-radius: 34px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}
.site-footer p,
.site-footer a,
.site-footer span {
    color: #d8e2f2;
}
.site-footer h3 {
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1.2rem;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer li {
    margin-bottom: 0.75rem;
}
.contact-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.back-to-top {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 30px rgba(230, 62, 62, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.35s;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.table-shell {
    overflow: auto;
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
}
table {
    width: 100%;
    min-width: 760px;
    background: #fff;
}
th,
td {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
th {
    background: #eff4fb;
    color: var(--primary-dark);
}
.placeholder-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--light-red);
    color: #b33030;
    font-size: 0.8rem;
    font-weight: 800;
}
.reveal-divider {
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(233, 241, 251, 0.7) 100%);
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120" preserveAspectRatio="none"><path fill="black" d="M0,64L60,69.3C120,75,240,85,360,85.3C480,85,600,75,720,69.3C840,64,960,64,1080,64C1200,64,1320,64,1380,64L1440,64L1440,120L1380,120C1320,120,1200,120,1080,120C960,120,840,120,720,120C600,120,480,120,360,120C240,120,120,120,60,120L0,120Z"/></svg>')
        center/cover no-repeat;
}
/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.faq-section .text-center {
    text-align: center;
    margin-bottom: 45px;
}

.faq-section .section-title {
    margin-bottom: 15px;
}

.faq-section .text-center p {
    max-width: 850px;
    margin: 0 auto;
    color: #6f7b8d;
}

.faq-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e9ef;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 76px;
    padding: 20px 24px;
    border: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
}

.faq-question span {
    flex-shrink: 0;
    margin-left: 20px;
    font-size: 24px;
    font-weight: 400;
    color: #111827;
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
    color: #6f7b8d;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-wrapper {
        max-width: 100%;
    }

    .faq-question {
        min-height: 65px;
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}






.hero-wide-text {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.hero-content {
    min-width: 0;
}

.hero-visual {
    min-width: 0;
}

.hero-wide-text {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
}

.hero-wide-text p {
    width: 100%;
    max-width: none;
}

.hero-actions {
    grid-column: 1 / -1;
}



@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-wide-text,
    .hero-actions,
    .hero-stats {
        grid-column: auto;
    }
}





/* =========================================
   HOME PAGE HERO - SAME STYLE AS WHO WE ARE
========================================= */

.home-page-hero {
    padding-top: 40px;
    padding-bottom: 60px;
}

.home-hero-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.home-hero-content {
    flex: 1 1 480px;
    min-width: 300px;
}

.home-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.02;
    color: var(--primary-dark);
    margin: 0.9rem 0 1.2rem;
}

.home-hero-content .lead {
    font-size: 1.12rem;
    line-height: 1.8;
    max-width: 650px;
    color: var(--muted);
    margin: 0;
}

.home-hero-image {
    flex: 1 1 480px;
    min-width: 300px;
}

.home-hero-image .banner-media {
    min-height: 420px;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.home-hero-image .banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .home-page-hero {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .home-hero-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-content,
    .home-hero-image {
        flex: 1 1 100%;
        width: 100%;
    }

    .home-hero-content h1 {
        font-size: 3rem;
    }

    .home-hero-image .banner-media {
        height: 400px;
    }
}


@media (max-width: 576px) {

    .home-page-hero {
        padding-top: 25px;
        padding-bottom: 40px;
    }

    .home-hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.05;
    }

    .home-hero-content .lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .home-hero-image .banner-media {
        min-height: 300px;
        height: 300px;
        border-radius: 22px;
    }
}



















/* =========================================================
   RESPONSIVE FIX - ALL IMAGES + FOOTER
========================================================= */

/* Prevent horizontal scrolling */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* All images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   ALL PAGE HERO IMAGES
========================================================= */

.page-hero .banner-media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-hero .banner-media img {
    width: 100%;
    max-width: 100%;
    display: block;
}


/* =========================================================
   HOME PAGE HERO IMAGE
========================================================= */

.home-hero-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.home-hero-image .banner-media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.home-hero-image .banner-media img {
    width: 100%;
    max-width: 100%;
    display: block;
}


/* =========================================================
   MOBILE - IMAGES
========================================================= */

@media (max-width: 767px) {

    /* Page hero */
    .page-hero {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .page-hero .banner-media {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        border-radius: 22px;
        overflow: hidden;
    }

    .page-hero .banner-media img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        object-fit: cover;
    }


    /* Home hero */
    .home-hero-image {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .home-hero-image .banner-media {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        border-radius: 22px;
    }

    .home-hero-image .banner-media img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        object-fit: cover;
    }


    /* Other image sections */
    .image-stack,
    .card-media,
    .hero-visual {
        max-width: 100%;
    }

    .card-media img,
    .image-stack img,
    .hero-card-main img,
    .hero-card-float img {
        max-width: 100%;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.footer-panel {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.site-footer a,
.site-footer p,
.site-footer span {
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

@media (max-width: 767px) {

    .site-footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .footer-panel {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 2rem 1.25rem;
        border-radius: 22px;
        overflow: hidden;
    }


    /* Footer columns */
    .site-footer [class*="col-"] {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 1.5rem;
        min-width: 0;
    }


    /* Footer links */
    .site-footer ul {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .site-footer li {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* Contact information */
    .contact-list {
        width: 100%;
        max-width: 100%;
    }

    .contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .contact-list li i {
        flex: 0 0 auto;
    }

    .contact-list li a,
    .contact-list li span {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }


    /* Footer bottom */
    .footer-bottom {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .footer-meta {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .footer-meta a,
    .footer-meta span {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    /* Images */
    .page-hero .banner-media {
        height: auto !important;
        min-height: 0 !important;
        border-radius: 18px;
    }

    .page-hero .banner-media img {
        width: 100% !important;
        height: auto !important;
    }

    .home-hero-image .banner-media {
        height: auto !important;
        min-height: 0 !important;
        border-radius: 18px;
    }

    .home-hero-image .banner-media img {
        width: 100% !important;
        height: auto !important;
    }


    /* Footer */
    .footer-panel {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }

    .contact-list li {
        gap: 0.5rem;
    }
}
/* =========================================================
   TABLET / 1024PX HERO IMAGE FIX
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .page-hero .banner-media {
        width: 100%;
        height: 420px !important;
        min-height: 420px !important;
        border-radius: 30px;
        overflow: hidden;
    }

    .page-hero .banner-media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block;
    }
}








/* WhatsApp Sticky Button */
.whatsapp-float {
  position: fixed;
  width: 48px;
  height: 48px;
  right: 25px;
  bottom: 77px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
    font-size: 27px;
  }
}











/* =========================================================
  Responsivnes - for all screens
========================================================= */
/* =========================================================
   COMPLETE RESPONSIVE FIX
   ========================================================= */

/* ---------- TABLET / LAPTOP ---------- */

@media (max-width: 1199.98px) {

    .container-xxl {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-grid,
    .split-layout,
    .split-layoutt {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 25px !important;
    }

    .hero-visual {
        min-height: 500px;
        width: 100%;
    }

    .image-stack {
        min-height: 500px;
        width: 100%;
    }

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

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.7rem 0 !important;
    }

    .btn-brand,
    .btn-outline-brand {
        white-space: normal;
    }

    .footer-panel {
        padding: 2.5rem;
    }
}


/* ---------- TABLET ---------- */

@media (max-width: 991.98px) {

    .container-xxl {
        padding-left: 20px;
        padding-right: 20px;
    }

    .premium-navbar {
        padding: 0.7rem 0;
    }

    .navbar-brand img {
        height: 44px;
    }

    .hero {
        padding-top: 20px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        width: 100%;
        padding-top: 10px !important;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        line-height: 1.05;
    }

    .hero p,
    .hero p.lead,
    .hero-wide-text p {
        max-width: 100%;
        width: 100%;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-grid,
    .offer-grid,
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout,
    .split-layoutt {
        display: grid;
        grid-template-columns: 1fr;
    }

    .image-stack {
        min-height: 500px;
        width: 100%;
    }

    .page-hero .banner-media {
        min-height: 350px;
    }

    .footer-panel {
        padding: 2rem;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 767.98px) {

    .container-xxl {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Header */

    .site-header {
        position: sticky;
        top: 0;
        width: 100%;
    }

    .premium-navbar {
        padding: 0.6rem 0;
    }

    .navbar-brand img {
        height: 40px;
        width: auto;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-nav {
        width: 100%;
    }

    .nav-link {
        padding: 0.65rem 0 !important;
    }

    .btn-brand {
        width: auto;
        max-width: 100%;
    }


    /* Hero */

    .hero {
        padding-top: 15px;
        padding-bottom: 30px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-content {
        width: 100%;
        padding-top: 0 !important;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
        word-break: normal;
    }

    .hero p,
    .hero p.lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-wide-text {
        width: 100%;
    }

    .hero-wide-text p {
        width: 100%;
        max-width: 100%;
    }


    /* Hero image cards */

    .hero-visual {
        width: 100%;
        min-height: 390px;
        height: 390px;
    }

    .hero-card-main {
        inset: 0 0 80px 0;
        border-radius: 20px;
    }

    .hero-card-float {
        width: 52%;
        bottom: 0;
        left: 0;
        border-radius: 18px;
    }

    .hero-card-mini {
        width: 48%;
        bottom: 0;
        right: 0;
        padding: 0.8rem;
        border-radius: 18px;
    }

    .metric-pill {
        padding: 0.6rem 0;
        font-size: 0.75rem;
    }

    .metric-pill strong {
        font-size: 1rem;
    }


    /* Buttons */

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-actions .btn-brand,
    .hero-actions .btn-outline-brand {
        width: 100%;
        justify-content: center;
        text-align: center;
    }


    /* Stats */

    .hero-stats,
    .feature-grid,
    .stats-grid,
    .offer-grid,
    .faq-preview,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        padding: 1rem;
    }


    /* Sections */

    main section {
        margin: 20px auto;
        padding-left: 0;
        padding-right: 0;
    }

    .section-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.08;
    }

    .eyebrow {
        font-size: 0.72rem;
        max-width: 100%;
    }


    /* Feature cards */

    .feature-card,
    .offer-card,
    .project-card,
    .faq-card,
    .contact-card,
    .benefit-card {
        padding: 1.2rem;
    }


    /* Split sections */

    .split-layout,
    .split-layoutt {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .image-stack {
        width: 100%;
        min-height: 350px;
    }

    .image-stack .primary-img {
        inset: 0 15% 0 0;
    }

    .image-stack .secondary-img {
        width: 45%;
        height: 48%;
        bottom: 8%;
        border-width: 5px;
    }


    /* Timeline */

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 1.8rem;
    }


   /* Tables */

.table-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-shell table {
    width: 100%;
    min-width: 0;
}

    /* Page hero */

    .page-hero {
        padding: 2rem 0;
    }

    .page-hero .banner-media {
        min-height: 0;
        height: auto;
        border-radius: 20px;
    }

    .page-hero .banner-media img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }


    /* CTA */

    .cta-block {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .cta-block .section-title {
        font-size: clamp(2rem, 8vw, 2.7rem);
    }


    /* FAQ */

    .faq-section {
        padding: 50px 0;
    }

    .faq-question {
        min-height: auto;
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }


    /* Footer */

    .footer-panel {
        padding: 1.5rem;
        border-radius: 22px;
    }

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

    .footer-meta {
        width: 100%;
    }
}


/* ---------- SMALL MOBILE ---------- */

@media (max-width: 575.98px) {

    .container-xxl {
        padding-left: 14px;
        padding-right: 14px;
    }

    .navbar-brand img {
        height: 36px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 10vw, 2.6rem);
    }

    .hero-visual {
        min-height: 300px;
        height: 300px;
    }

    .hero-card-main {
        inset: 0 0 65px 0;
    }

    .hero-card-float {
        width: 55%;
    }

    .hero-card-mini {
        width: 45%;
        padding: 0.6rem;
    }

    .metric-pill {
        font-size: 0.65rem;
        padding: 0.4rem 0;
    }

    .metric-pill strong {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    .feature-card,
    .offer-card,
    .project-card,
    .faq-card,
    .contact-card {
        padding: 1rem;
    }

    .cta-block {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .cta-block p {
        font-size: 0.95rem;
    }

    .footer-panel {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        right: 15px;
        bottom: 75px;
        font-size: 25px;
    }
}






/* Fix for screens 425px and below */
@media (max-width: 425px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .container-xxl {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    /* Make all card grids single column */
    .feature-grid,
    .stats-grid,
    .offer-grid,
    .gallery-grid,
    .faq-preview,
    .contact-cards {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    /* Prevent cards from becoming wider than screen */
    .feature-card,
    .offer-card,
    .project-card,
    .faq-card,
    .contact-card {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Prevent long text from causing overflow */
    .feature-card h3,
    .feature-card p,
    .offer-card h3,
    .offer-card p,
    .project-card h3,
    .project-card p {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .hero-content,
    .hero-visual,
    .hero-wide-text {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    /* Buttons */
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    /* Smaller hero heading */
    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.08;
    }

    /* Smaller section headings */
    .section-title {
        font-size: 2rem !important;
        line-height: 1.1;
    }

    /* FAQ */
    .faq-item {
        width: 100% !important;
        min-width: 0 !important;
    }

    .faq-question {
        width: 100%;
        font-size: 14px;
    }

    /* Footer */
    .footer-panel {
        width: 100% !important;
        box-sizing: border-box;
    }
}
/* Mobile sticky header */
/* Mobile fixed navbar */
@media (max-width: 767px) {

    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    body {
        padding-top: 70px;
    }
}


/* =========================================================
   RESPONSIVE TABLES - ALL PAGES
========================================================= */

/* Desktop / Laptop */
.table-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-shell table {
    width: 100%;
    min-width: 760px;
}


/* Tablet */
@media (max-width: 991px) {

    .table-shell {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }

    .table-shell table {
        min-width: 650px;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .table-shell {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .table-shell table {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed;
    }

    .table-shell th,
    .table-shell td {
        padding: 12px 10px;
        font-size: 14px;
        line-height: 1.5;
        vertical-align: top;
        overflow-wrap: break-word;
        word-break: normal;
    }
}


/* Small Mobile */
@media (max-width: 425px) {

    .table-shell {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
    }

    .table-shell table {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed !important;
    }

    .table-shell th,
    .table-shell td {
        padding: 10px 8px !important;
        font-size: 13px !important;
        line-height: 1.5;
        overflow-wrap: anywhere;
    }
}


/* =========================================
   TABLE FIX - MOBILE 425px AND BELOW ONLY
========================================= */

@media (max-width: 425px) {

    .table-shell {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .table-shell table {
        width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed !important;
    }

    .table-shell th,
    .table-shell td {
        padding: 10px 8px !important;
        font-size: 13px !important;
        line-height: 1.5;
        vertical-align: top;
        overflow-wrap: anywhere;
        word-break: normal;
    }
}