/* =========================================
   CSS Reset & Base Styles
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-blue: #1c3d70;
    --dark-blue: #0f2444;
    --orange: #B76922;
    --dark-orange: #B76922;
    --light-orange: #F59D4D;
    --orange-light: #fdf3eb;
    --text-dark: #232323;
    --text-muted: #222222;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --font-main: 'Manrope', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================
   Utility Classes
   ========================================= */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-orange {
    color: var(--orange);
}

.text-dark {
    color: var(--text-dark);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.position-relative {
    position: relative;
}

.bg-blue {
    background-color: var(--primary-blue);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-blue-gradient {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.p-left {
    padding-left: 3rem;
}

.rounded {
    border-radius: 12px;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.align-center {
    align-items: center;
}

/* Grid System */
.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gap-small {
    gap: 20px;
}

/* Text-align */


.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}


/* text-justify */

.text-justify {
    text-align: justify;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-pill {
    border-radius: 50px;
}

.btn-primary {
    background: linear-gradient(90deg, #103876 0%, #4372BA 100%);
    border: 1px solid #156A9A;
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #4372BA 0%, #103876 100%);
    border: 1px solid #156A9A;
}

.btn-orange {
    background: linear-gradient(90deg, #D4853B 0%, #BA6B24 100%);
    border: 2px solid #BB6D25;
    color: var(--white);
}

.btn-orange:hover {
    background: linear-gradient(90deg, #BA6B24 0%, #D4853B 100%);
    border-color: #d1651c;
}

.btn-outline-blue {
    background: linear-gradient(90deg, #153D7B 0%, #406EB6 100%);
    border: 2px solid rgba(253, 254, 255, 0.64);
    color: var(--white);
}

.btn-outline-blue:hover {
    background: linear-gradient(90deg, #406EB6 0%, #153D7B 100%);
    border: 2px solid rgba(253, 254, 255, 0.64);
}


.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

.icon-right {
    margin-left: 8px;
}

/* Badges */
.badge {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-outline {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.badge-bg {
    display: inline-block;
    background-color: #F3ECE5;
    color: var(--dark-orange);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.section-title .text-orange {
    color: #C87931;
}

.section-title .text-orange-light {
    color: var(--light-orange);
}

.sub-heading {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* =========================================
   Header & Navigation
   ========================================= */
/* .header {
    background-color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
} */


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 3%;
    border-radius: 100px;
    padding: 10px 20px;
    background: #fff;
    transition: all ease-in-out 0.4s;
}

.header.sticky-header {
    background: #fff;
    margin: 0;
    padding: 12px 5%;
    border-radius: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.19);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 180px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list>li>a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 12px;
    border-radius: 6px;
}

.nav-list>li>a:hover,
.nav-list>li>a.active {
    color: var(--orange);
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.dropdown li a:hover {
    background-color: var(--orange-light);
    color: var(--orange);
}

/* Sub-Dropdown (Flyout Right) */
.has-sub-dropdown {
    position: relative;
}

.sub-dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 101;
}

.has-sub-dropdown:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.has-sub-dropdown:hover>a .sub-dropdown-icon {
    transform: rotate(90deg);
}

.sub-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.sub-dropdown li a:hover {
    background-color: var(--orange-light);
    color: var(--orange);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-close-btn {
    display: none !important;
}

.mobile-overlay {
    display: none !important;
}

/* =========================================
   Hero Slider
   ========================================= */
.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 220px 0 150px;
    min-height: 100vh;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 41.34%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
    color: var(--white);
}

/* =========================================
   Inner Page Hero Banner
   ========================================= */
.inner-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 36, 68, 0.9) 0%, rgba(15, 36, 68, 0.8) 100%);
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
}

.breadcrumbs a {
    color: var(--orange);
    transition: all 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs .separator {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   Inner Page Content
   ========================================= */
.inner-content-section {
    /* padding: 80px 0; */
}

.service-detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.small-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Legal Page */
.legal-intro {
    max-width: 980px;
    margin: 0 auto 36px;
}

.legal-intro p,
.legal-card p,
.legal-contact-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.legal-card,
.legal-contact-card {
    height: 100%;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(21, 61, 123, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(16, 56, 118, 0.08);
}

.legal-card h3,
.legal-contact-card h3 {
    margin-bottom: 14px;
    color: var(--dark-blue);
    font-size: 1.35rem;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.legal-list li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-list li i {
    color: var(--orange);
    margin-top: 6px;
}

.legal-highlight {
    background: linear-gradient(90deg, #153D7B 0%, #406EB6 100%);
}

.legal-highlight .legal-card {
    background: rgba(255, 255, 255, 0.96);
}

.legal-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.legal-contact-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.legal-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.7;
}

.legal-contact-list i {
    color: var(--orange);
    margin-top: 6px;
}

.legal-contact-list a {
    color: var(--dark-blue);
    font-weight: 600;
}

/* Awards And Certificates Page */
.awards-intro {
    max-width: 920px;
    margin: 0 auto 36px;
}

.awards-intro p,
.awards-profile-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.awards-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: start;
}

.award-certificate-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(21, 61, 123, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(16, 56, 118, 0.08);
}

.award-certificate-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.awards-profile-section {
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
}

.awards-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr) minmax(280px, 0.9fr);
    gap: 24px;
}

.awards-profile-card {
    height: 100%;
    padding: 28px;
    background: var(--white);
    border: 1px solid rgba(21, 61, 123, 0.12);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(16, 56, 118, 0.08);
}

.awards-profile-card h3 {
    color: var(--dark-blue);
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.awards-service-list,
.awards-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.awards-service-list li,
.awards-contact-list li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 11px;
}

.awards-service-list i,
.awards-contact-list i {
    color: var(--orange);
    margin-top: 6px;
}

.awards-contact-list a {
    color: var(--dark-blue);
    font-weight: 600;
}

@media (max-width: 991px) {
    .legal-grid,
    .legal-contact-grid,
    .awards-gallery,
    .awards-profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .legal-card,
    .legal-contact-card,
    .award-certificate-card,
    .awards-profile-card {
        padding: 22px;
    }

    .legal-card h3,
    .legal-contact-card h3,
    .awards-profile-card h3 {
        font-size: 1.2rem;
    }
}

/* .service-detail-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
} */

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
}

.service-feature-list.list-3-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .service-feature-list.list-3-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-feature-list.list-3-col.drafting-services-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 34px;
    }

    .schematic-solutions-grid {
        grid-template-columns: 1fr;
    }

    .schematic-solutions-image {
        min-height: 300px;
    }

    .schematic-methodology-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .peb-services-grid,
    .peb-support-grid {
        grid-template-columns: 1fr;
    }

    .peb-image-stack {
        min-height: 460px;
        padding-right: 20px;
    }

    .peb-image-stack img:first-child {
        height: 290px;
    }

    .peb-image-stack img:last-child {
        width: 52%;
        height: 190px;
    }
}

@media (max-width: 768px) {

    .service-feature-list,
    .service-feature-list.list-3-col {
        grid-template-columns: 1fr;
    }

    .service-feature-list.list-3-col.drafting-services-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .schematic-solutions-grid {
        gap: 24px;
    }

    .schematic-solutions-list {
        grid-template-columns: 1fr;
    }

    .schematic-solutions-image {
        min-height: 240px;
    }

    .schematic-methodology-section {
        padding: 45px 0 !important;
    }

    .schematic-methodology-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .schematic-methodology-desc {
        font-size: 16px;
    }

    .peb-intro-section {
        padding-bottom: 20px;
    }

    .peb-services-section {
        padding-top: 20px;
    }

    .peb-services-grid,
    .peb-support-grid {
        gap: 26px;
    }

    .peb-image-stack {
        min-height: auto;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .peb-image-stack::before,
    .peb-image-stack::after {
        display: none;
    }

    .peb-image-stack img:first-child,
    .peb-image-stack img:last-child {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 220px;
        border: 0;
    }

    .peb-methodology-list {
        gap: 12px;
    }

    .peb-support-card {
        padding: 24px 20px;
    }
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-feature-list li i {
    color: #c87931;
    margin-top: 4px;
    font-size: 18px;
}
/* 
.drafting-services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 70px;
    margin-top: 28px;
}

.drafting-services-list li {
    align-items: center;
    gap: 10px;
    font-size: 17px;
    line-height: 1.45;
}

.drafting-services-list li i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    margin-top: 0;
    color: var(--white);
    background: #c87931;
    border-radius: 50%;
    font-size: 9px;
} */

.schematic-solutions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 36px;
    align-items: center;
    margin-top: 24px;
}

.schematic-solutions-content p {
    margin-bottom: 18px;
}

.schematic-solutions-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 0;
}

.schematic-solutions-image {
    height: 100%;
    min-height: 340px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(21, 50, 92, 0.16);
}

.schematic-solutions-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steel-detailing-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.steel-detailing-image-grid img {
    display: block;
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(21, 50, 92, 0.14);
}

.steel-detailing-image-grid img:first-child {
    grid-column: 1 / -1;
    height: 220px;
}

.schematic-solutions-image.steel-detailing-duo-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    height: auto;
    min-height: 0;
    box-shadow: none;
    border-radius: 0;
}

.schematic-solutions-image.steel-detailing-duo-images img {
    height: 210px;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(21, 50, 92, 0.14);
}

.facade-methodology-section {
    background: var(--white);
    padding: 60px 0 !important;
}

.facade-methodology-intro,
.facade-methodology-desc {
    margin: 0;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.facade-methodology-intro {
    margin-top: 18px;
}

.facade-methodology-desc {
    margin-top: 16px;
}

.facade-methodology-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    margin: 18px 0 0;
}

.facade-method-card {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 18px;
    background: var(--white);
    border: 1px solid var(--primary-blue);
    color: var(--text-dark);
    text-align: center;
}

.facade-method-card i {
    color: var(--dark-blue);
    font-size: 36px;
    line-height: 1;
}

.facade-method-card h5 {
    margin: 0;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
}

.facade-method-card-wide {
    min-height: 132px;
}

.peb-intro-section {
    padding-bottom: 30px;
}

.peb-services-section {
    padding-top: 30px;
}

.peb-services-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.peb-image-stack {
    position: relative;
    min-height: 520px;
    padding: 0px 26px 90px 0;
}

.peb-image-stack::before {
    content: '';
    position: absolute;
    inset: 38px 0 0 42px;
    background: linear-gradient(135deg, rgba(15, 36, 68, 0.08), rgba(200, 121, 49, 0.16));
    border-radius: 18px;
}

.peb-image-stack::after {
    content: 'PEB Design + Detailing';
    position: absolute;
    left: 28px;
    bottom: 34px;
    z-index: 3;
    padding: 11px 18px;
    color: var(--white);
    background: var(--dark-blue);
    border-left: 4px solid var(--orange);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(15, 36, 68, 0.22);
}

.peb-image-stack img {
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 44px rgba(21, 50, 92, 0.16);
}

.peb-image-stack img:first-child {
    height: 330px;
}

.peb-image-stack img:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 56%;
    height: 220px;
    border: 2px solid var(--white);
    box-shadow: 0 22px 48px rgba(21, 50, 92, 0.22);
}

.peb-services-content .section-title {
    margin-bottom: 18px;
}

.peb-main-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 0 24px;
}

.peb-services-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.peb-methodology-section {
    background: #f7f9fc;
    border-top: 1px solid rgba(15, 36, 68, 0.08);
    border-bottom: 1px solid rgba(15, 36, 68, 0.08);
}

.peb-methodology-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 54px;
    margin: 0 0 36px;
}

.peb-methodology-desc {
    margin: 0;
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
}

.peb-support-section {
    background: var(--white);
}

.peb-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 34px;
    align-items: center;
}

.peb-support-copy p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.peb-support-cards {
    display: grid;
    gap: 18px;
}

.peb-support-card {
    padding: 28px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-left: 5px solid var(--orange);
    color: var(--white);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(15, 36, 68, 0.18);
}

.peb-support-card i {
    color: var(--light-orange);
    font-size: 30px;
    margin-bottom: 14px;
}

.peb-support-card h5 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.peb-support-card p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.7;
}

/* =========================================
   Geo And Civil Engineering Page
   ========================================= */
.geo-civil-hero::before {
    background: linear-gradient(90deg, rgba(15, 36, 68, 0.92) 0%, rgba(28, 61, 112, 0.78) 100%);
}

.geo-civil-overview {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.geo-civil-intro {
    max-width: 980px;
    margin: 0 auto 42px;
    text-align: center;
}

.geo-civil-intro p,
.geo-civil-support-copy p,
.geo-civil-why-box p {
    line-height: 1.85;
    font-size: 16px;
}

.geo-civil-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.geo-civil-feature-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(15, 36, 68, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.geo-civil-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 36, 68, 0.14);
}

.geo-civil-feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.geo-civil-feature-body {
    position: relative;
    padding: 42px 24px 26px;
}

.geo-civil-feature-body i {
    position: absolute;
    top: -28px;
    left: 24px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--orange);
    border: 4px solid var(--white);
    border-radius: 50%;
    font-size: 20px;
}

.geo-civil-feature-body h5,
.geo-civil-service-card h5,
.geo-civil-process-card h5 {
    color: var(--dark-blue);
    font-size: 21px;
    margin-bottom: 10px;
}

.geo-civil-feature-body p,
.geo-civil-service-card p,
.geo-civil-process-card p {
    margin: 0;
    line-height: 1.75;
}

.geo-civil-services {
    background: var(--white);
}

.geo-civil-section-head {
    max-width: 850px;
    margin: 0 auto 38px;
}

.geo-civil-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.geo-civil-civil-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.geo-civil-civil-card {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px;
    min-height: auto;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fb 100%);
    border: 1px solid rgba(15, 36, 68, 0.08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 36, 68, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.geo-civil-civil-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--primary-blue));
}

.geo-civil-civil-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 36, 68, 0.13);
}

.geo-civil-civil-icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 8px;
    font-size: 28px;
}

.geo-civil-civil-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0;
}

.geo-civil-civil-card h5 {
    color: var(--dark-blue);
    font-size: 22px;
    margin-bottom: 10px;
}

.geo-civil-civil-card p {
    margin: 0;
    line-height: 1.75;
}

.geo-civil-service-card {
    position: relative;
    min-height: 280px;
    padding: 34px 26px 28px;
    background: #f6f9fc;
    border: 1px solid rgba(15, 36, 68, 0.08);
    border-top: 4px solid var(--orange);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.geo-civil-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(15, 36, 68, 0.12);
}

.geo-civil-service-card span {
    position: absolute;
    top: 16px;
    right: 20px;
    color: rgba(28, 61, 112, 0.12);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.geo-civil-service-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 8px;
    font-size: 23px;
}

.geo-civil-support {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.geo-civil-support-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    gap: 44px;
    align-items: center;
}

.geo-civil-support-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.geo-civil-support-copy .section-title,
.geo-civil-support-copy p,
.geo-civil-support-copy .service-feature-list li {
    color: var(--white);
}

.geo-civil-support-copy .badge-bg {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-orange);
}

.geo-civil-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.geo-civil-check-list li i {
    color: var(--light-orange);
}

.geo-civil-process-section {
    background: #f7f9fc;
}

.geo-civil-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.geo-civil-process-card {
    position: relative;
    padding: 30px 24px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 36, 68, 0.08);
}

.geo-civil-process-card strong {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
    background: #c87931;
    border-radius: 50%;
    font-size: 16px;
}

.geo-civil-why-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #15325c 100%);
    text-align: center;
}

.geo-civil-why-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.geo-civil-why-section::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    background: rgba(200, 121, 49, 0.08);
    border-radius: 50%;
}

.geo-civil-why-box {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.geo-civil-why-box .section-title {
    color: var(--white);
}

.geo-civil-why-box p {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.8);
}

.geo-civil-why-box .badge-bg {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-orange);
}

/* =========================================
   Electrical Engineering Page
   ========================================= */
.electrical-hero::before {
    background: linear-gradient(90deg, rgba(15, 36, 68, 0.94) 0%, rgba(28, 61, 112, 0.68) 100%);
}

.electrical-overview-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.electrical-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 48px;
    align-items: center;
}

.electrical-overview-copy p,
.electrical-deliverables-copy p {
    margin-bottom: 16px;
    line-height: 1.85;
}

.electrical-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.electrical-highlight-row div {
    padding: 18px;
    background: var(--white);
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 36, 68, 0.08);
}

.electrical-highlight-row strong {
    display: block;
    color: var(--dark-blue);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 30px;
    line-height: 1;
}

.electrical-highlight-row span {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
}

.electrical-overview-media {
    position: relative;
    padding: 0 0 34px 34px;
}

.electrical-overview-media::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 78%;
    height: 78%;
    background: var(--orange);
    border-radius: 8px;
}

.electrical-overview-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 22px 50px rgba(15, 36, 68, 0.16);
}

.electrical-media-note {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 14px;
    align-items: center;
    max-width: 88%;
    margin: -52px 22px 0 auto;
    padding: 18px;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(15, 36, 68, 0.18);
}

.electrical-media-note i {
    color: var(--light-orange);
    font-size: 26px;
}

.electrical-services-section {
    background: var(--white);
}

.electrical-section-head {
    max-width: 880px;
    margin: 0 auto 38px;
}

.electrical-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.electrical-service-card {
    position: relative;
    min-height: 270px;
    padding: 30px 24px;
    background: #f6f9fc;
    border: 1px solid rgba(15, 36, 68, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.electrical-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--primary-blue));
}

.electrical-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(15, 36, 68, 0.12);
}

.electrical-service-card i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 8px;
    font-size: 22px;
}

.electrical-service-card h5,
.electrical-process-card h5 {
    color: var(--dark-blue);
    font-size: 20px;
    margin-bottom: 10px;
}

.electrical-service-card p,
.electrical-process-card p {
    margin: 0;
    line-height: 1.72;
}

.electrical-deliverables-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.electrical-deliverables-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: center;
}

.electrical-deliverables-media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.electrical-deliverables-copy .section-title,
.electrical-deliverables-copy p {
    color: var(--white);
}

.electrical-deliverables-copy .badge-bg {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-orange);
}

.electrical-deliverable-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.electrical-deliverable-list div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.electrical-deliverable-list i {
    color: var(--light-orange);
    margin-top: 4px;
}

.electrical-process-section {
    background: #f7f9fc;
}

.electrical-sectors-section {
    background: var(--white);
}

.electrical-sectors-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 16px;
}

.electrical-sector-card {
    min-height: 170px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    background: #f6f9fc;
    border: 1px solid rgba(15, 36, 68, 0.08);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.electrical-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(15, 36, 68, 0.1);
}

.electrical-sector-card i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 50%;
    font-size: 22px;
}

.electrical-sector-card h5 {
    color: var(--dark-blue);
    font-size: 18px;
    margin: 0;
}

.electrical-facts-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    padding-top: 52px;
    padding-bottom: 52px;
}

.electrical-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.electrical-fact-card {
    padding: 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
}

.electrical-fact-card strong {
    display: block;
    color: var(--light-orange);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
}

.electrical-fact-card span {
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
}

.electrical-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.electrical-process-card {
    padding: 30px 24px;
    background: var(--white);
    border-bottom: 4px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 36, 68, 0.08);
}

.electrical-process-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    font-weight: 800;
}

/* =========================================
   Drafting Services Page
   ========================================= */
.drafting-hero::before {
    background: linear-gradient(90deg, rgba(15, 36, 68, 0.92) 0%, rgba(28, 61, 112, 0.72) 100%);
}

.drafting-overview-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.drafting-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 44px;
    align-items: center;
}

.drafting-overview-copy p,
.drafting-quality-copy p {
    margin-bottom: 16px;
    line-height: 1.85;
}

.drafting-overview-panel {
    padding: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-left: 6px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(15, 36, 68, 0.18);
}

.drafting-panel-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--orange);
    border-radius: 8px;
    font-size: 28px;
}

.drafting-overview-panel h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 14px;
}

.drafting-overview-panel p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.drafting-overview-panel ul {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.drafting-overview-panel li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--white);
    font-weight: 700;
}

.drafting-overview-panel li i {
    color: var(--light-orange);
    margin-top: 4px;
}

.drafting-services-section {
    background: var(--white);
}

.drafting-section-head {
    max-width: 880px;
    margin: 0 auto 38px;
}

.drafting-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.drafting-detail-card {
    min-height: 285px;
    padding: 30px 22px;
    background: #f6f9fc;
    border: 1px solid rgba(15, 36, 68, 0.08);
    border-top: 4px solid var(--orange);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drafting-detail-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(15, 36, 68, 0.12);
}

.drafting-detail-card i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 8px;
    font-size: 22px;
}

.drafting-detail-card h5 {
    color: var(--dark-blue);
    font-size: 20px;
    margin-bottom: 10px;
}

.drafting-detail-card p {
    margin: 0;
    line-height: 1.72;
}

.drafting-quality-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.drafting-quality-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: center;
}

.drafting-quality-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.drafting-quality-copy .section-title,
.drafting-quality-copy p {
    color: var(--white);
}

.drafting-quality-copy .badge-bg {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-orange);
}

.drafting-quality-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.drafting-quality-list div {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.drafting-quality-list i {
    color: var(--light-orange);
    margin-top: 4px;
}

.drafting-why-services-section {
    background: #f7f9fc;
}

.drafting-why-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.drafting-why-pill {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 22px;
    color: var(--dark-blue);
    background: var(--white);
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 36, 68, 0.08);
    font-weight: 800;
}

.drafting-why-pill i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 50%;
}

.drafting-facts-section {
    background: var(--white);
    padding-top: 52px;
    padding-bottom: 52px;
}

.drafting-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.drafting-fact-card {
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%);
    border: 1px solid rgba(15, 36, 68, 0.08);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 36, 68, 0.08);
}

.drafting-fact-card strong {
    display: block;
    color: var(--orange);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 10px;
}

.drafting-fact-card span {
    color: var(--dark-blue);
    font-weight: 800;
    text-transform: uppercase;
}

.about-page-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.about-page-media {
    position: relative;
}

.about-page-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 22px 50px rgba(15, 36, 68, 0.16);
}

.about-page-badge {
    position: absolute;
    right: -22px;
    bottom: 34px;
    width: 190px;
    padding: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-left: 5px solid var(--orange);
    border-radius: 10px;
    box-shadow: 0 18px 36px rgba(15, 36, 68, 0.25);
}

.about-page-badge strong {
    display: block;
    color: var(--light-orange);
    font-size: 42px;
    line-height: 1;
}

.about-page-badge span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    line-height: 1.4;
}

.about-page-copy p,
.about-expertise-copy p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-values-section {
    background: #f7f9fc;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.about-value-card {
    padding: 32px 28px;
    background: var(--white);
    border-top: 4px solid var(--orange);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(15, 36, 68, 0.08);
}

.about-value-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    background: rgba(200, 121, 49, 0.1);
    border-radius: 10px;
    font-size: 24px;
    margin-bottom: 18px;
}

.about-value-card h5 {
    color: var(--dark-blue);
    font-size: 22px;
    margin-bottom: 10px;
}

.about-value-card p {
    margin: 0;
    line-height: 1.7;
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 42px;
    align-items: center;
}

.about-facts-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-radius: 14px;
}

.about-facts-panel div {
    padding: 24px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
}

.about-facts-panel strong {
    display: block;
    color: var(--light-orange);
    font-size: 34px;
    line-height: 1;
}

.about-facts-panel span {
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.4;
}

/* Meet The Team Page */
.team-intro {
    max-width: 980px;
    margin: 0 auto;
}

.team-intro p,
.team-profile-card p,
.team-leadership-copy p {
    color: var(--text-muted);
    line-height: 1.8;
}

.team-leadership-section {
    background-color: var(--bg-light);
}

.team-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.team-profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(21, 61, 123, 0.12);
    border-radius: 8px;
    overflow: visible;
    padding-top: 30px;
    box-shadow: 0 12px 34px rgba(16, 56, 118, 0.08);
}

.team-profile-media {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background: #f7f9fc;
    border: 6px solid var(--white);
    box-shadow: 0 12px 30px rgba(16, 56, 118, 0.18);
}

.team-profile-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.team-profile-media::after {
    display: none;
}

.team-profile-copy {
    padding: 28px;
    text-align: center;
}

.team-profile-copy h3 {
    color: var(--dark-blue);
    font-size: 1.55rem;
    margin-bottom: 6px;
}

.team-profile-role {
    display: block;
    color: var(--dark-orange);
    font-weight: 700;
    margin-bottom: 14px;
}

.team-skills-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.team-skills-list li {
    display: flex;
    gap: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.team-skills-list i {
    color: var(--orange);
    margin-top: 5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.team-grid.team-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	/* max-width: 1080px; */
	margin: 0 auto;
	gap: 30px;
}

.team-member-card {
    background: var(--white);
    border: 1px solid rgba(21, 61, 123, 0.12);
    border-radius: 8px;
    overflow: visible;
    padding-top: 28px;
    box-shadow: 0 10px 30px rgba(16, 56, 118, 0.08);
}

.team-member-img {
    width: 210px;
    height: 210px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: #f7f9fc;
    border: 6px solid var(--white);
    box-shadow: 0 12px 28px rgba(16, 56, 118, 0.16);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.team-member-content {
    padding: 22px;
    text-align: center;
}

.team-member-content h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-member-content span {
    display: block;
    color: var(--dark-orange);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}

.team-member-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.team-capability-strip {
    background: linear-gradient(90deg, #153D7B 0%, #406EB6 100%);
}

.team-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.team-capability-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: var(--white);
}

.team-capability-card i {
    color: var(--light-orange);
    font-size: 32px;
    margin-bottom: 16px;
}

.team-capability-card h4 {
    margin-bottom: 10px;
}

.team-capability-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .team-grid,
    .team-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-leadership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-profile-media {
        width: 200px;
        height: 200px;
    }

    .team-profile-copy {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .team-grid,
    .team-grid.team-grid-2,
    .team-capability-grid {
        grid-template-columns: 1fr;
    }

    .team-member-img {
        width: 190px;
        height: 190px;
    }
}

.contact-page-section {
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: start;
}

.contact-info-panel p {
    margin-bottom: 22px;
    line-height: 1.8;
}

.contact-method-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-method-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border-left: 4px solid var(--orange);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(15, 36, 68, 0.08);
}

.contact-method-card-full {
    grid-column: 1 / -1;
}

.contact-method-card-half {
    min-width: 0;
}

.contact-method-card i {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    color: var(--white);
    background: var(--dark-blue);
    border-radius: 50%;
    font-size: 18px;
}

.contact-method-card h5 {
    color: var(--dark-blue);
    font-size: 20px;
    margin-bottom: 4px;
}

.contact-method-card p,
.contact-method-card a {
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
    overflow-wrap: anywhere;
}

.contact-form-panel {
    padding: 34px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(15, 36, 68, 0.12);
}

.contact-form-panel h3 {
    color: var(--dark-blue);
    font-size: 28px;
    margin-bottom: 22px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    color: var(--text-dark);
    background: #f7f9fc;
    border: 1px solid rgba(15, 36, 68, 0.12);
    border-radius: 8px;
    font: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(200, 121, 49, 0.12);
}

.contact-support-section {
    background: var(--white);
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-support-card {
    padding: 30px 26px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-radius: 10px;
    color: var(--white);
}

.contact-support-card i {
    color: var(--light-orange);
    font-size: 30px;
    margin-bottom: 16px;
}

.contact-support-card h5 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-support-card p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.7;
}

.hero-title {
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-title .text-orange {
    color: var(--light-orange);
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 500;
    line-height: 34px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--orange);
    color: #FFF;
}

.hero-slider.owl-theme .owl-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
    margin: 0;
}

.hero-slider.owl-theme .owl-dots .owl-dot {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
}

.hero-slider.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.hero-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.hero-slider.owl-theme .owl-dots .owl-dot.active span {
    width: 32px;
    border-radius: 6px;
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 12px rgba(229, 116, 36, 0.6);
}

/* =========================================
   About Section
   ========================================= */
.about-images {
    padding: 0 100px 100px 0px;
}

.about-images .inner-big-img-div {
    background: #224558;
    border: 5px solid #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.about-images .inner-big-img-div img {
    width: 100%;
    height: 100%;
}


.about-images .floating-img {
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 280px;
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.about-images .floating-img img {
    width: 100%;
    height: 100%;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 500;
}

p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 14px;
    font-weight: 500;
}

/* =========================================
   Services Section
   ========================================= */

.services-section {
    background: linear-gradient(180deg, rgba(15, 29, 53, 0.88) 37.23%, rgba(58, 103, 173, 0.88) 100%), url(../img/services-section-bg.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.service-card {
    background: linear-gradient(180deg, #F1F5F9 0%, #F1F6F9 100%);
    border: 5px solid #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #1A4382;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

/* .service-card .icon-box i {
    font-size: 28px;
    color: var(--orange);
    transition: all 0.3s ease;
} */

/* .service-card:hover .icon-box {
    background-color: var(--orange);
} */

/* .service-card:hover .icon-box i {
    color: var(--white);
} */

.card-title {
    margin-bottom: 15px;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-desc {
    margin-bottom: 0;
}

.bim-sector-card {
    min-height: 160px;
    padding: 28px 20px 24px;
    background: var(--white);
    border: 1px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bim-sector-card:nth-child(odd) {
    border-color: var(--orange);
}

.bim-sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.bim-sector-card i {
    color: #111111;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 18px;
}

.bim-sector-card .card-title {
    margin-bottom: 0;
    font-size: 1.35rem;
    font-weight: 500;
}

/* =========================================
   Projects Section
   ========================================= */

.projects-section {
    background: url(../img/projects-section-bg.jpg), #FFFFFF;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.project-item {
    background: #F1F6F9;
    border-radius: 20px;
    padding: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-item:hover {
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.project-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

.project-info {
    padding: 15px 0 0 0;
    background: #f1f6f9;
}

.project-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-main);
    color: var(--dark-orange);
    font-weight: 700;
}

.project-desc {
    font-size: 18px;
    margin-bottom: 0;
    color: var(--text-muted);
    font-weight: 500;
}

.projects-slider .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.projects-slider .owl-nav button {
    width: 40px;
    height: 40px;
    background: var(--primary-blue) !important;
    color: white !important;
    border-radius: 50% !important;
    margin: 0 5px;
}

.projects-slider .owl-nav button:hover {
    background: var(--orange) !important;
}

.projects-slider.owl-theme .owl-dots {
    text-align: center;
    margin: 30px 0 0px 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.projects-slider.owl-theme .owl-dots .owl-dot {
    outline: none;
}

.projects-slider.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(28, 61, 112, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.projects-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: rgba(28, 61, 112, 0.5);
    transform: scale(1.15);
}

.projects-slider.owl-theme .owl-dots .owl-dot.active span {
    width: 32px;
    border-radius: 6px;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(229, 116, 36, 0.4);
}

/* =========================================
   Facts Section
   ========================================= */
.facts-section {
    margin-top: 30px;
    position: relative;
    z-index: 5;
}




.facts-box {
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: url(../img/some-facts-about-us-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background: #1F4177;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 25px;
}

.counter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #E59E5E 0%, #B25400 100%);
    border: 2px solid #C87931;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon i {
    font-size: 24px;
    color: var(--orange);
}

.counter-number {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0;
    font-family: var(--font-main);
    font-weight: 800;
    text-align: left;
}

.counter-label {
    color: rgba(255, 255, 255);
    font-size: 18px;
    text-transform: none;
    font-weight: 500;
    margin: 0;
}

/* =========================================
   Why Choose Us Section
   ========================================= */

.why-choose-section {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url(../img/why-choose-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.why-choose-section .why-choose-grid-2-col {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1.5fr;
}

@media (min-width: 992px) {
    .why-choose-section {
        padding: 0 !important;
    }

    .why-choose-section .why-choose-grid-2-col {
        display: grid;
        gap: 40px;
        grid-template-columns: 1fr 2fr;
    }

    .why-choose-section .why-choose-text {
        padding-top: 60px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 0;
    }
}

@media (min-width: 992px) and (max-width: 1599.98px) {
    .why-choose-section .why-choose-img {
        margin-left: -20px;
        width: calc(100% + 20px);
    }

    .why-choose-section .why-choose-img img {
        width: 100%;
        height: 100% !important;
        border-radius: 0 0px 0px 0 !important;
    }
}

@media (min-width: 1600px) {
    .why-choose-section .why-choose-img {
        margin-left: calc(-50vw + 780px);
        width: calc(100% + 50vw - 780px);
    }

    .why-choose-section .why-choose-img img {
        width: 100%;
        height: 100% !important;
        border-radius: 0 0px 0px 0 !important;
    }
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    border-radius: 100px;
}

.feature-icon i {
    font-size: 20px;
    color: var(--orange);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-main);
    color: var(--text-muted);
}

.feature-desc {
    font-size: 16px;
    margin: 0;
}

.drafting-why-section {
    background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 52%, #fff7f0 100%);
    padding: 60px 0 !important;
}

.drafting-why-section .container {
    position: relative;
    z-index: 1;
}

.drafting-why-header {
    max-width: 820px;
    margin: 0 auto 42px;
}

.drafting-why-header .section-title {
    margin-bottom: 14px;
}

.drafting-why-header p {
    margin: 0 auto;
    font-size: 17px;
}

.drafting-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.drafting-why-card {
    position: relative;
    min-height: 100%;
    padding: 30px 26px;
    background: var(--white);
    border: 1px solid rgba(21, 50, 92, 0.1);
    border-top: 4px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(21, 50, 92, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drafting-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(21, 50, 92, 0.13);
}

.drafting-why-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--orange);
    background: rgba(200, 121, 49, 0.1);
    border-radius: 8px;
    font-size: 24px;
}

.drafting-why-card h5 {
    margin: 0 0 12px;
    color: var(--dark-blue);
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.25;
}

.drafting-why-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.schematic-methodology-section {
    background: var(--white);
    padding: 60px 0 !important;
}

.schematic-methodology-list {
    margin-bottom: 40px;
}

.schematic-methodology-desc {
    margin: 0;
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
}

.object-fit-cover {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* =========================================
   Clients Section
   ========================================= */
.client-logo {
    /* filter: grayscale(100%);
    opacity: 0.6; */
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
}

/* .client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
} */

/* =========================================
   Footer
   ========================================= */
.footer {
    padding: 60px 0 20px;
    color: rgba(255, 255, 255);
    background: url(../img/footer-bg.png), linear-gradient(90deg, #175ECC 0%, #153D7B 50.48%, #175ECC 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 16px;
    margin-bottom: 20px;
    padding-right: 20px;
    color: #fff;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.footer-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.footer-links li,
.contact-info li {
    margin-bottom: 12px;
}


.contact-info li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.footer-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #fff;
}

.footer-links a i {
    font-size: 10px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover i {
    transform: translateX(5px);
    color: var(--orange);
}

.contact-info li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.contact-info li i {
    color: #fff;
    font-size: 24px;
    margin-top: 5px;
    margin-right: 15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, #1F4177 0%, #365E9E 100%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}


/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1399px) {
    .header {
        margin: 20px 2%;
        padding: 8px 15px;
    }

    .logo img {
        max-width: 135px;
    }

    .nav-list {
        gap: 0;
    }

    .nav-list>li>a {
        font-size: 15px;
        padding: 8px 10px;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .header-action .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (min-width: 992px) and (max-width: 1450px) {
    .contact-page-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 26px;
    }

    .contact-method-list {
        gap: 14px;
    }

    .contact-method-card {
        gap: 12px;
        padding: 18px;
    }

    .contact-method-card i {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 16px;
    }

    .contact-method-card h5 {
        font-size: 18px;
    }

    .contact-method-card p,
    .contact-method-card a {
        font-size: 14px;
    }

    .contact-form-panel {
        padding: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .contact-method-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 14px;
        margin: 0;
    }

    .counter-box {
        gap: 10px;
        padding: 10px;
        flex-direction: column;
    }

    .counter-icon {
        width: 70px;
        height: 70px;
        border-radius: 5px;
        padding: 10px;
    }

    .counter-number {
        font-size: 2rem;
        margin-bottom: 0;
        text-align: center;
    }

    .counter-label {
        font-size: 16px;
    }

    .why-choose-section .why-choose-grid-2-col {
        display: grid;
        gap: 40px;
        grid-template-columns: 1fr 2fr;
    }

    .why-choose-section .why-choose-text {
        padding-top: 60px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 0;
    }


}

@media (max-width: 991px) {

    .grid-2-col,
    .grid-3-col,
    .grid-4-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .drafting-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .p-left {
        padding-left: 0;
        margin-top: 30px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        padding: 80px 20px 30px;
        z-index: 9999;
        overflow-y: auto;
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .nav-list>li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-list>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
    }

    .dropdown-icon,
    .sub-dropdown-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        margin: -8px 0 -8px 10px;
        border-radius: 50%;
        background: rgba(212, 133, 59, 0.12);
        color: var(--orange);
        cursor: pointer;
    }

    .header-action {
        display: none;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
        border-radius: 0;
    }

    /* Remove hover - use click only on mobile */
    .has-dropdown:hover .dropdown {
        display: none;
    }

    .has-dropdown.active>.dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sub-dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 15px;
        min-width: auto;
    }

    /* Remove hover - use click only on mobile */
    .has-sub-dropdown:hover>.sub-dropdown {
        display: none;
    }

    .has-sub-dropdown.active>.sub-dropdown {
        display: block;
    }

    /* Mobile menu overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        display: none;
    }

    .mobile-overlay.active {
        display: block;
    }

    /* Mobile close button inside nav */
    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-dark);
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .mobile-close-btn:hover {
        background: #f0f0f0;
    }

    .about-images .floating-img {
        width: 40%;
        border-radius: 10px;
    }


    .facts-box {
        padding: 30px;
    }

    .hero-slide {
        padding: 120px 0 100px;
    }

    .why-choose-section .why-choose-grid-2-col {
        display: flex;
        gap: 0px;
        flex-direction: column;
    }

    .why-choose-img img {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 768px) {

    .grid-2-col,
    .grid-3-col,
    .grid-4-col {
        grid-template-columns: 1fr;
    }

    .drafting-why-header {
        margin-bottom: 30px;
    }

    .drafting-why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .drafting-why-card {
        padding: 24px 20px;
    }

    .drafting-why-card h5 {
        font-size: 20px;
    }

    .badge,
    .badge-bg {
        padding: 8px 25px;
        border-radius: 50px;
        font-size: 14px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: normal;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .object-fit-cover {
        height: 350px;
    }

    .facts-box {
        text-align: center;
    }

    .counter-box {
        flex-direction: column;
        gap: 10px;
    }

    .about-images {
        padding: 0 0px 20px 0px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 479px) {
    .hero-buttons {
        display: flex;
        gap: 15px;
        flex-direction: column;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 30px;
    }
}

/* =========================================
   Inner Pages Responsive Refinements
   ========================================= */
@media (max-width: 1200px) {
    .inner-hero {
        padding: 150px 0 80px;
    }

    .inner-hero-title {
        font-size: 2.6rem;
    }

    .service-detail-text h3,
    .small-title {
        font-size: 1.45rem;
    }

    .schematic-solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schematic-solutions-image {
        min-height: 320px;
    }

    .steel-detailing-image-grid img:first-child {
        height: 260px;
    }

    .steel-detailing-image-grid img {
        height: 200px;
    }

    .schematic-solutions-image.steel-detailing-duo-images img {
        height: 220px;
    }

    .facade-methodology-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .facade-method-card-wide {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 50px 0;
    }

    .inner-hero {
        padding: 135px 0 70px;
    }

    .inner-hero-title {
        font-size: 2.25rem;
    }

    .breadcrumbs {
        flex-wrap: wrap;
        row-gap: 6px;
        line-height: 1.5;
    }

    .service-feature-list,
    .service-feature-list.list-3-col,
    .schematic-solutions-list,
    .schematic-methodology-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .drafting-services-list {
        gap: 16px 34px;
    }

    .facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 42px 0;
    }

    .inner-hero {
        padding: 120px 0 58px;
    }

    .inner-hero-title {
        font-size: 1.85rem;
        line-height: 1.25;
    }

    .breadcrumbs {
        gap: 7px;
        font-size: 13px;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .service-detail-text p,
    .card-desc,
    .schematic-methodology-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-feature-list,
    .service-feature-list.list-3-col,
    .schematic-solutions-list,
    .schematic-methodology-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .drafting-services-list {
        gap: 12px;
    }

    .service-feature-list li {
        font-size: 15px;
        line-height: 1.5;
    }

    .schematic-solutions-grid {
        gap: 22px;
    }

    .schematic-solutions-image {
        min-height: 230px;
    }

    .steel-detailing-image-grid {
        grid-template-columns: 1fr;
    }

    .steel-detailing-image-grid img,
    .steel-detailing-image-grid img:first-child {
        height: 220px;
    }

    .schematic-solutions-image.steel-detailing-duo-images img {
        height: 220px;
    }

    .facade-methodology-section {
        padding: 45px 0 !important;
    }

    .facade-methodology-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .facade-method-card {
        min-height: 118px;
    }

    .facts-box {
        padding: 28px 18px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cta-section {
        padding: 42px 16px;
    }

    .cta-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 479px) {
    .inner-hero {
        padding: 105px 0 48px;
    }

    .inner-hero-title {
        font-size: 1.55rem;
    }

    .breadcrumbs {
        font-size: 12px;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .small-title {
        font-size: 1.25rem;
    }

    .service-card,
    .drafting-why-card {
        padding: 24px 18px;
    }

    .schematic-solutions-image {
        min-height: 200px;
    }

    .steel-detailing-image-grid img,
    .steel-detailing-image-grid img:first-child {
        height: 190px;
    }

    .schematic-solutions-image.steel-detailing-duo-images img {
        height: 190px;
    }

    .facade-methodology-intro,
    .facade-methodology-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .facade-method-card h5 {
        font-size: 18px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 11px 18px;
        font-size: 15px;
    }
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #15325c 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(200, 121, 49, 0.08);
    border-radius: 50%;
}

.cta-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 2;
}

.cta-btn-wrapper {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 42px 16px;
    }

    .cta-title {
        font-size: 1.55rem;
        line-height: 1.3;
    }

    .cta-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* =========================================
   Pre Engineered Building Responsive
   ========================================= */
@media (max-width: 1200px) {
    .peb-services-grid {
        grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
        gap: 36px;
    }

    .peb-image-stack {
        min-height: 470px;
    }

    .peb-image-stack img:first-child {
        height: 290px;
    }

    .peb-image-stack img:last-child {
        width: 58%;
        height: 190px;
    }

    .peb-methodology-list {
        gap: 12px 32px;
    }

    .about-page-grid,
    .about-expertise-grid,
    .contact-page-grid {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .peb-services-grid,
    .peb-support-grid,
    .geo-civil-support-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .geo-civil-feature-grid,
    .geo-civil-service-grid,
    .geo-civil-civil-grid,
    .geo-civil-process-grid,
    .electrical-services-grid,
    .electrical-process-grid,
    .electrical-sectors-grid,
    .drafting-services-grid,
    .drafting-why-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .geo-civil-support-media img {
        height: 360px;
    }

    .electrical-overview-grid,
    .electrical-deliverables-grid,
    .drafting-overview-grid,
    .drafting-quality-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .electrical-overview-media {
        max-width: 760px;
        margin: 0 auto;
    }

    .electrical-deliverables-media img {
        height: 360px;
    }

    .peb-image-stack {
        max-width: 760px;
        min-height: 440px;
        margin: 0 auto;
        padding: 20px 20px 74px 0;
    }

    .peb-image-stack::after {
        bottom: 24px;
    }

    .peb-image-stack img:first-child {
        height: 300px;
    }

    .peb-image-stack img:last-child {
        width: 48%;
        height: 180px;
    }

    .peb-main-list,
    .peb-methodology-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-page-grid,
    .about-expertise-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .about-page-media img {
        height: 420px;
    }

    .about-values-grid,
    .contact-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .peb-intro-section,
    .peb-services-section,
    .peb-methodology-section,
    .peb-support-section,
    .geo-civil-overview,
    .geo-civil-services,
    .geo-civil-support,
    .geo-civil-process-section,
    .geo-civil-why-section,
    .electrical-overview-section,
    .electrical-services-section,
    .electrical-deliverables-section,
    .electrical-sectors-section,
    .electrical-facts-section,
    .electrical-process-section,
    .drafting-overview-section,
    .drafting-services-section,
    .drafting-quality-section,
    .drafting-why-services-section,
    .drafting-facts-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .peb-services-grid,
    .peb-support-grid,
    .geo-civil-feature-grid,
    .geo-civil-service-grid,
    .geo-civil-civil-grid,
    .geo-civil-process-grid,
    .electrical-services-grid,
    .electrical-process-grid,
    .electrical-sectors-grid,
    .electrical-facts-grid,
    .electrical-highlight-row,
    .electrical-deliverable-list,
    .drafting-services-grid,
    .drafting-quality-list,
    .drafting-why-strip,
    .drafting-facts-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .geo-civil-intro,
    .geo-civil-section-head {
        margin-bottom: 28px;
    }

    .geo-civil-feature-card img,
    .geo-civil-support-media img,
    .electrical-overview-media img,
    .electrical-deliverables-media img,
    .drafting-quality-media img {
        height: 240px;
    }

    .electrical-overview-media {
        padding: 0 0 24px 24px;
    }

    .electrical-media-note {
        max-width: none;
        margin: 16px 0 0;
    }

    .electrical-service-card {
        min-height: 0;
        padding: 28px 22px;
    }

    .drafting-overview-panel {
        padding: 26px 22px;
    }

    .drafting-detail-card {
        min-height: 0;
        padding: 28px 22px;
    }

    .geo-civil-service-card {
        min-height: 0;
        padding: 28px 22px 24px;
    }

    .geo-civil-civil-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 26px 22px;
    }

    .geo-civil-check-list {
        grid-template-columns: 1fr;
    }

    .geo-civil-why-box {
        padding: 28px 20px;
    }

    .peb-image-stack {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
        min-height: 0;
        padding: 0;
    }

    .peb-image-stack::before,
    .peb-image-stack::after {
        display: none;
    }

    .peb-image-stack img:first-child,
    .peb-image-stack img:last-child {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 230px;
        border: 0;
        border-radius: 10px;
    }

    .peb-main-list,
    .peb-methodology-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .peb-methodology-desc,
    .peb-services-content p,
    .peb-support-copy p,
    .peb-support-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .peb-support-card {
        padding: 24px 20px;
    }

    .about-page-media img {
        height: 320px;
    }

    .about-page-badge {
        right: 16px;
        bottom: 16px;
        width: 165px;
        padding: 18px;
    }

    .about-values-grid,
    .about-facts-panel,
    .contact-support-grid,
    .contact-method-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card,
    .contact-form-panel,
    .contact-support-card {
        padding: 24px 20px;
    }

    .contact-page-grid {
        gap: 26px;
    }
}

@media (max-width: 479px) {
    .peb-image-stack img:first-child,
    .peb-image-stack img:last-child {
        height: 190px;
    }

    .peb-support-card h5 {
        font-size: 19px;
    }

    .about-page-media img {
        height: 260px;
    }

    .about-page-badge {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .contact-method-card {
        flex-direction: column;
    }
}
