*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background: #18222C; */
    color: #FFFFFF;
    overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #101820;
}

::-webkit-scrollbar-thumb {
    background: #C89B3C;
    border-radius: 3px;
}


/* ─── NAVBAR ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #f6f6f6;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(244, 197, 66, 0.2);
    padding: 0 5%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 128px;
}

/* .logo-mark {
    width: 42px;
    height: 42px;
    background: #c99113;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 18px;
    color: #101820;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 3px;
}

.logo-tagline {
    font-size: 9px;
    letter-spacing: 4px;
    color: #c99113;
    text-transform: uppercase;
} */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #542705;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #c99113;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: #c99113;
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link svg {
    width: 10px;
    height: 10px;
    transition: transform 0.3s;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #582c20;
    border: 1px solid rgba(244, 197, 66, 0.2);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    color: #c99113;
    background: rgba(244, 197, 66, 0.15);
    padding-left: 28px;
}

.nav-cta {
    background: #c99113;
    color: #101820 !important;
    font-weight: 700;
    padding: 9px 22px !important;
    border-radius: 6px;
    letter-spacing: 0.3px;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: #C89B3C !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244, 197, 66, 0.35);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #c99113;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #542705;
    backdrop-filter: blur(20px);
    padding: 40px 5%;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solidd rgba(255, 255, 255, 0.07);
    transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu a:hover {
    color: #c99113;
    padding-left: 10px;
}

.mobile-menu .m-cta {
    margin-top: 20px;
    background: #c99113;
    color: #101820;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    padding: 16px !important;
    border: none;
    letter-spacing: 1px;
}

.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #ffffff;
    padding: 14px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-dropdown-header span {
    font-size: 20px;
    transition: transform 0.3s;
}

.mobile-dropdown.active .mobile-dropdown-header span {
    transform: rotate(45deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-submenu a {
    padding: 10px 0 10px 15px;
    font-size: 15px;
    color: #ddd;
    text-decoration: none;
}

.mobile-submenu a:hover {
    color: #c99113;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgb(65 14 0) 0%, rgb(60 16 4 / 60%) 50%, rgb(77 28 5 / 23%) 100%), url(../img/home-banner.webp) center / cover no-repeat;
}

/* Geometric overlay lines */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-lines svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.06;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(244 197 66 / 30%) 1px, #00000000 1px), linear-gradient(90deg, rgb(244 197 66 / 15%) 1px, #00000000 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 5% 50px;
    max-width: 1000px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 197, 66, 0.15);
    border: 1px solid rgba(244, 197, 66, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c58c14;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: #c58c14;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
    font-style: normal;
    color: #c58c14;
}

.hero h1 .line2 {
    display: block;
}

.hero p {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #ebebeb;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 40px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
    /* margin-bottom: 72px; */
}

.btn-gold {
    background: #c58c14;
    color: #101820;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid #c58c14;
}

.btn-gold:hover {
    background: #C89B3C;
    border-color: #C89B3C;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: #c58c14;
    color: #c58c14;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
}

.stat {
    padding: 20px 40px 20px 0;
    border-right: 1px solid rgba(244, 197, 66, 0.2);
    margin-right: 40px;
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #c58c14;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: #A0A0A0;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
    text-transform: uppercase;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #A0A0A0;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp 1s 0.8s ease both;
    cursor: pointer;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(#c58c14, transparent);
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}




/* ─── MARQUEE ─── */
.marquee-bar {
    background: #c58c14;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #101820;
    padding: 0 40px;
}

.marquee-item::after {
    content: '◆';
    font-size: 8px;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}


/* ─── SECTION COMMON ─── */
/* section {
    padding: 80px 5%;
} */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #c58c14;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: #c58c14;
    display: block;
}

h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
}

h2 em {
    font-style: normal;
    color: #c58c14;
}

.section-intro {
    font-size: 16px;
    color: #A0A0A0;
    line-height: 1.8;
    max-width: 600px;
    margin-top: 16px;
}


/* ─── SECTION SHARED ─── */
section {
    padding: 65px 0;
}

.section-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #F4C542;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.gold-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #F4C542, #A67C2E);
    border-radius: 2px;
    margin-bottom: 28px;
}


/* about */
/* ─── ABOUT ─── */
.about-section {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/abt-2.webp') center/cover no-repeat;
    opacity: 0.8;
}

.about-badge-float {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: #F4C542;
    border-radius: 8px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-badge-float strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.about-badge-float span {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
    color: #111;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff8e1;
    border: 1px solid #f4e2a1;
    border-radius: 8px;
    transition: 0.3s ease;
}

.value-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #111;
}

.value-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ─── SERVICES ─── */
.services {
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.service-row-item {
    padding: 28px 0;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
    width: 80%;
    margin: 0 auto;
}

.service-row-item:first-child {
    border-top: 1px solid #eeeeee;
}

.service-row-item:hover {
    background: #fffdf5;
}

.service-row-item:hover .service-title {
    color: #F4C542;
}

.service-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    min-width: 36px;
}

.service-icon-sm {
    color: #F4C542;
    font-size: 1.2rem;
    min-width: 28px;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.service-desc {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-top: 4px;
}

.service-arrow {
    color: rgba(0, 0, 0, 0.25);
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s;
}

.service-row-item:hover .service-arrow {
    color: #F4C542;
    transform: translateX(6px);
}

/* why us */
/* ─── ALTERNATING ZIGZAG SECTION ─── */
/* ─── PERFECTED INDUSTRIAL SECTION ─── */
.why-section {
    position: relative;
    padding: 65px 0;
    background-size: cover;
    background-attachment: fixed;
    color: #141414;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background-color: #ffe498;
}

/* Refined Overlay */
/* .why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(7, 10, 13, 1) 0%,
            rgba(7, 10, 13, 0.8) 50%,
            rgba(7, 10, 13, 1) 100%);
    z-index: 1;
} */

.container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    color: #F4C542;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0;
}

/* Grid Layout Enhancements */
.feature-item {
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    background: rgb(255 255 255);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 10px;
}

/* Interactive Hover Effect */
.feature-item:hover {
    backdrop-filter: blur(8px);
    transform: translateY(-10px);
    z-index: 5;
}

.icon-wrap {
    font-size: 2.2rem;
    color: #F4C542;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(244, 197, 66, 0.2));
}

.feature-item:hover .icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-content p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    transition: color 0.3s ease;
}


/* Perfectly Sized Image Accents */
.image-accent {
    width: 100%;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s ease;
    border-top: 3px solid #F4C542;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
}

.feature-item:hover .image-accent {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* capability */
/* ─── ENG CAPABILITIES SECTION ─── */
.eng-capabilities-section {
    padding: 65px 5%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #ffffff;
    color: #222222;
    font-family: 'Poppins', sans-serif;
}

.eng-section-header {
    margin-bottom: 80px;
    max-width: 700px;
}

.eng-section-label {
    color: #F4C542;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.eng-capabilities-section h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-weight: 700;
    color: #222222;
}

.eng-capabilities-section h2 em {
    font-style: italic;
    color: #F4C542;
    font-weight: 400;
}

.eng-section-intro {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.7;
    font-weight: 300;
}

/* ─── INTERACTIVE LAYOUT ─── */
.eng-caps-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    min-height: 600px;
}

/* Sidebar Navigation */
.eng-caps-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.eng-cap-trigger {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.eng-cap-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #F4C542;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.eng-cap-trigger.active {
    background: #fffdf5;
    border-color: rgba(244, 197, 66, 0.4);
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.eng-cap-trigger.active::after {
    transform: scaleY(1);
}

.eng-cap-trigger-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.35);
    transition: color 0.3s;
}

.eng-cap-trigger.active .eng-cap-trigger-num {
    color: #F4C542;
}

.eng-cap-trigger-info h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222222;
}

.eng-cap-trigger-info p {
    margin: 5px 0 0 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: #666666;
}

/* Main Display Area */
.eng-caps-display {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.eng-cap-view {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
}

.eng-cap-view.active {
    opacity: 1;
    visibility: visible;
}

.eng-cap-hero-image {
    height: 50%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.eng-cap-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
}

.eng-cap-details {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.eng-cap-details h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #222222;
}

.eng-cap-details p {
    color: #666666;
    font-weight: 300;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 30px;
}

.eng-cap-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.eng-feature-chip {
    background: #fffdf7;
    border: 1px solid #f1e3a8;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 400;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.eng-feature-chip:hover {
    border-color: #F4C542;
    background: #fff7dc;
}

.eng-feature-chip span {
    color: #F4C542;
    font-weight: bold;
}

/* vission mission */
.cc-corporate-section {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111111;
    font-weight: 300;
    letter-spacing: 0.02em;
    background-image:
        linear-gradient(rgb(224 224 224 / 96%), rgb(255 255 255 / 96%)), url(../img/vm-bg.webp);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 80px 0;
    width: 100%;
    position: relative;
}

.cc-category-tag {
    color: #F4C542;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.cc-vision-statement {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333333;
    font-weight: 300;
}

.cc-highlight-gold {
    color: #F4C542;
    border-bottom: 1px solid rgba(244, 197, 66, 0.4);
}

.cc-media-interstitial {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 6px;
    filter: grayscale(0.2) contrast(1.05) brightness(0.95);
    opacity: 0.9;
    transition: all 0.5s ease;
    margin: 40px 0;
}

.cc-media-interstitial:hover {
    opacity: 1;
    filter: grayscale(0) contrast(1.1) brightness(1);
}

.cc-media-interstitial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-mission-row {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
    height: 100%;
}

.cc-mission-counter {
    width: 35px;
    font-size: 16px;
    color: #F4C542;
    margin-top: 4px;
    flex-shrink: 0;
    font-weight: 600;
}

.cc-mission-description {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    font-weight: 300;
}

.cc-service-summary {
    font-size: 0.95rem;
    font-weight: 300;
    color: #555555;
    line-height: 1.7;
    border-left: 2px solid #F4C542;
    padding-left: 20px;
}

/* our work */
/* Portfolio Section Specific Styles */
.civil-gallery-container {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #222222;
    padding: 65px 0;
}

.civil-header {
    margin-bottom: 60px;
}

.civil-label {
    color: #F4C542;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.civil-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #222222;
}

/* Gallery Item Styling */
.civil-gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #f8f8f8;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.civil-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: all 0.7s ease;
}

/* Hover States */
.civil-gallery-item:hover .civil-gallery-img {
    filter: grayscale(0);
    transform: scale(1.08);
}

.civil-gallery-item:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.civil-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.08) 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.civil-gallery-item:hover .civil-overlay {
    opacity: 1;
}

.civil-proj-cat {
    color: #2E1001;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 5px;
}

.civil-proj-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    color: #222222;
}

/* ─── FOOTER ─── */
footer {
    background: #2e1001;
    border-top: 1px solid rgba(244, 197, 66, 0.12);
    padding: 60px 0 0;
    font-family: 'Barlow', sans-serif;
}

.footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-brand span {
    color: #F4C542;
}

.footer-desc {
    color: #A0A0A0;
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 12px;
}

.footer-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F4C542;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #F4C542;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #A0A0A0;
    font-size: 0.82rem;
    font-family: 'Barlow', sans-serif;
}

.footer-bottom span {
    color: #F4C542;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(244, 197, 66, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0A0A0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #F4C542;
    color: #101820;
    border-color: #F4C542;
}

/* ─── BACK TO TOP ─── */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #F4C542;
    color: #101820;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}

#backToTop.visible {
    opacity: 1;
    pointer-events: all;
}

#backToTop:hover {
    transform: translateY(-4px);
    color: #101820;
}

/* about us */
.civil-about-banner {
    font-family: 'Poppins', sans-serif;
    position: relative;
    background: linear-gradient(rgba(18, 15, 13, 0.92), rgba(18, 15, 13, 0.92)),
        url('../img/common-banner.webp') center/cover no-repeat;
    padding: 140px 0 100px 0;
    margin-top: 85px;
    color: #FFFFFF;
    overflow: hidden;
}

/* Subtle Grid Overlay */
.civil-about-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(244, 197, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 197, 66, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

/* Technical Bracket Element */
.civil-struct-bracket {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    border-top: 1px solid rgba(244, 197, 66, 0.3);
    border-left: 1px solid rgba(244, 197, 66, 0.3);
    z-index: 2;
}

/* GPS Coordinates / Technical Label */
.civil-tech-coord {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(244, 197, 66, 0.4);
    letter-spacing: 2px;
    z-index: 2;
}

/* Ghost Background Text */
.civil-ghost-bg {
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-size: 15rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.civil-banner-content {
    position: relative;
    z-index: 5;
}

.civil-banner-title {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 25px;
}

.civil-banner-title span {
    color: #F4C542;
}

/* Minimalist Breadcrumbs */
.civil-breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.civil-breadcrumb-item {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.civil-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.civil-breadcrumb-item a:hover {
    color: #F4C542;
}

.civil-breadcrumb-item.active {
    color: #F4C542;
    font-weight: 600;
}

.civil-sep {
    width: 25px;
    height: 1px;
    background: rgba(244, 197, 66, 0.5);
}

/* key strength */
.civil-hub-infographic {
    font-family: 'Poppins', sans-serif;
    background-color: #ffe498;
    /* Deep industrial brown/charcoal background */
    color: #FFFFFF;
    padding: 65px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.civil-hub-infographic::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(244, 197, 66, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.civil-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Central Hub Styling */
.civil-central-hub {
    background: #25211E;
    /* Slightly lighter brown for the hub */
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(244, 197, 66, 0.2);
}

.civil-hub-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #F4C542;
    font-weight: 700;
    margin-bottom: 5px;
}

.civil-hub-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

/* Content Blocks */
.civil-infographic-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -110px;
    position: relative;
}

.civil-strength-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 5;
}

.civil-strength-column-left {
    align-items: flex-end;
    padding-right: 60px;
}

.civil-strength-column-right {
    align-items: flex-start;
    padding-left: 60px;
}

/* Rounded Rectangle Card - Dark Mode Variation */
.civil-corporate-card {
    background: #211D1B;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.civil-corporate-card:hover {
    transform: translateY(-5px);
    background: #2A2522;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border-color: rgba(244, 197, 66, 0.3);
}

/* Symmetrical Alignment Fix */
.civil-strength-column-left .civil-corporate-card {
    flex-direction: row-reverse;
    text-align: right;
}

/* Icon Circle */
.civil-icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(244, 197, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4C542;
    transition: all 0.3s ease;
}

.civil-icon-circle i {
    font-size: 20px;
}

.civil-corporate-card:hover .civil-icon-circle {
    background: #F4C542;
    color: #1A1614;
    box-shadow: 0 0 15px rgba(244, 197, 66, 0.4);
}

.civil-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.civil-card-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* project */
.civil-projects-section {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F5EF;
    color: #2B2B2B;
    padding: 100px 0;
    position: relative;
}

.civil-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.civil-header {
    text-align: center;
    margin-bottom: 60px;
}

.civil-tag {
    color: #C89B1D;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.civil-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #2B2B2B;
}

/* Grid Layout */
.civil-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Project Card */
.civil-project-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.civil-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 197, 66, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.civil-project-card img {
    height: 100%;
}

.civil-proj-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.civil-proj-id {
    font-family: monospace;
    color: rgba(0, 0, 0, 0.25);
    font-size: 1.2rem;
    font-weight: 700;
}

.civil-status-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.civil-proj-title {
    font-size: 16px;
    font-weight: 600;
    /* margin-bottom: 20px; */
    line-height: 1.4;
    color: #1F1F1F;
    /* min-height: 3.5rem; */
    margin: 0;
    margin-top: 24px;
}

.civil-proj-info {
    margin-bottom: 25px;
}

.civil-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.civil-info-item i {
    color: #C89B1D;
    width: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.civil-info-value {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.civil-info-value strong {
    color: #1F1F1F;
    font-weight: 500;
}

/* Highlighted Project Value Section */
.civil-proj-footer {
    background: rgba(244, 197, 66, 0.06);
    margin: 0 -30px -30px;
    padding: 20px 30px;
    border-top: 1px solid rgba(244, 197, 66, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.civil-project-card:hover .civil-proj-footer {
    background: rgba(244, 197, 66, 0.12);
}

.civil-value-box {
    display: flex;
    flex-direction: column;
}

.civil-value-label {
    font-size: 0.65rem;
    color: #C89B1D;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.civil-value-amount {
    /* font-size: 1.4rem; */
    font-weight: 800;
    color: #C89B1D;
    text-shadow: none;
}

.civil-footer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.civil-project-card:hover .civil-footer-icon {
    background: #F4C542;
    color: #1A1614;
}


/* projects page */
.civil-connect-wrap {
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Shared Components */
.section-padding {
    padding: 100px 0;
}

.cc-label {
    display: inline-block;
    background: #F4C542;
    color: #3D352F;
    padding: 6px 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-radius: 2px;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #2A2420;
}

/* 1. Expertise Section Styling */
.expertise-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 0 100px 0 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.expertise-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(61, 53, 47, 0.3), transparent);
}

.expertise-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.expertise-img-container:hover .expertise-img-main {
    transform: scale(1.08);
}

.expertise-card-overlay {
    background: #ffffff;
    padding: 60px;
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-left: 10px solid #F4C542;
    box-shadow: 30px 30px 0 #F9F7F2;
    color: #3D352F;
    top: 50px;
    left: -30px;
}

/* 2. Services Section Styling */
.service-card {
    background: #ffffff;
    border-left: 2px solid #f0f0f0;
    padding: 45px 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #3D352F;
}

.service-card:hover {
    border-left: 10px solid #F4C542;
    background: #FFF9E6;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: #F4C542;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

/* 3. Project Categories Styling */
.project-type-tag {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #3D352F;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    border-radius: 6px;
}

.project-type-tag:hover {
    background: #2A2420;
    color: #ffffff;
    border-color: #2A2420;
    padding-left: 40px;
}

.project-type-tag i {
    color: #F4C542;
    transform: translateX(-10px);
    opacity: 0;
    transition: 0.3s;
}

.project-type-tag:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* 4. CTA Section Styling */
.cta-container {
    background: #2A2420;
    color: #ffffff;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    z-index: 1;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: #F4C542;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.btn-cc {
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-yellow {
    background: #F4C542;
    color: #2A2420;
    border: 2px solid #F4C542;
}

.btn-yellow:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline-white:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.text-yellow {
    color: #F4C542;
}

.tracking-wider {
    letter-spacing: 1.5px;
}


/* services pages */
/* --- 1. Global Utilities --- */
.cc-section-py {
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.cc-text-yellow {
    color: #FFC107;
}

/* --- 2. Expertise Block (Hero-style) --- */
.cc-exp-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0 100px 0 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cc-exp-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(78, 52, 46, 0.2), transparent);
}

.cc-exp-img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.cc-exp-img-wrapper:hover .cc-exp-img {
    transform: scale(1.08);
}

.cc-exp-card {
    background: #ffffff;
    padding: 60px;
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-left: 10px solid #FFC107;
    box-shadow: 30px 30px 0 #F9F7F2;
    color: #3D352F;
    top: 50px;
    left: -40px;
}

.cc-tag {
    background-color: #FFC107;
    color: #211A17;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.cc-title-xl {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
}

/* --- 3. End-to-End Control Grid --- */
.cc-ctrl-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.cc-ctrl-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #211A17;
}

.cc-ctrl-line {
    width: 60px;
    height: 5px;
    background: #FFC107;
    margin: 20px auto 50px;
}

.cc-ctrl-card {
    padding: 40px 25px;
    background: #F9F7F4;
    border-bottom: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cc-ctrl-card:hover {
    background: #ffffff;
    border-bottom-color: #FFC107;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}

.cc-ctrl-icon {
    width: 70px;
    height: 70px;
    background: #4E342E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.cc-ctrl-card:hover .cc-ctrl-icon {
    background: #FFC107;
}

.cc-ctrl-icon i {
    font-size: 1.8rem;
    color: #FFC107;
    transition: 0.3s;
}

.cc-ctrl-card:hover .cc-ctrl-icon i {
    color: #4E342E;
}

.cc-ctrl-label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #211A17;
    margin: 0;
    line-height: 1.4;
}

/* --- 4. Scope & Why Us --- */
.cc-scope-section {
    padding: 100px 0;
    background-color: #F9F7F4;
    font-family: 'Poppins', sans-serif;
}

.cc-scope-section h2,
h5 {
    color: #4E342E;
}

.cc-scope-row {
    margin-bottom: 40px;
    display: flex;
}

.cc-scope-count {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #FFC107;
    font-size: 1.5rem;
    margin-right: 25px;
    opacity: 0.6;
}

.cc-why-panel {
    background: #4E342E;
    color: #fff;
    padding: 60px;
    height: auto;
    position: relative;
}

.cc-why-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background: #FFC107;
    width: 10px;
    height: 100%;
}

.cc-check-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.cc-check-item i {
    color: #FFC107;
    margin-right: 15px;
}

/* --- 5. Project Types Footer --- */
.cc-types-footer {
    background: #211A17;
    padding: 80px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.cc-type-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}

.cc-type-box:hover {
    background: #FFC107;
    color: #211A17;
    border-color: #FFC107;
}

.cc-btn {
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    font-size: 0.85rem;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 991px) {
    .cc-exp-card {
        position: relative;
        width: 100%;
        margin-top: -60px;
        left: 0;
        top: 0;
        padding: 40px 25px;
        box-shadow: 15px 15px 0 #F9F7F2;
    }

    .cc-exp-img-wrapper {
        border-radius: 0 40px 0 0;
    }

    .cc-exp-img {
        height: 400px;
    }

    .cc-title-xl {
        font-size: 2.4rem;
    }
}

/* project on going */
.op-status-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #3b2b00;
    color: #fbbf24;
}

/* client */
.clients-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    margin-bottom: 70px;
}

.section-title {
    font-weight: 700;
    font-size: 2.8rem;
    color: #2E1001;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #5e4d44;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern White Card Design */
.client-card {
    background: #ffffff;
    border: 1px solid #ececec;
    padding: 45px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(46, 16, 1, 0.02);
    position: relative;
    overflow: hidden;
}

.client-card:hover {
    border-color: #F4C542;
    box-shadow: 0 15px 40px rgba(46, 16, 1, 0.08);
    transform: translateY(-8px);
}

/* Yellow Accent Line on Hover */
.client-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #F4C542;
    transform: scaleX(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: left;
}

.client-card:hover::before {
    transform: scaleX(1);
}

.logo-area {
    width: 75px;
    height: 75px;
    background-color: #fcfaf5;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    padding: 10px;
}

.logo-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-card:hover .logo-area {
    background-color: #fff;
    border-color: #F4C542;
}

.client-card:hover .logo-area img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-id {
    font-size: 0.75rem;
    font-weight: 700;
    color: #F4C542;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.client-name {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #2E1001;
}

.industry-tag {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid #f5f5f5;
}

.industry-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #F4C542;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.industry-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E1001;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .client-card {
        padding: 35px 25px;
    }
}

/* gallery */
.gallery-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-weight: 700;
    font-size: 2.8rem;
    color: #2E1001;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #5e4d44;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery Card Design */
.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background-color: #fcfaf5;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #ececec;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 16, 1, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.view-icon {
    width: 50px;
    height: 50px;
    background: #F4C542;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #2E1001;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.item-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.item-category {
    color: #F4C542;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.gallery-item:hover .view-icon,
.gallery-item:hover .item-title,
.gallery-item:hover .item-category {
    transform: translateY(0);
}

/* Lightbox Customization */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 16, 1, 0.98);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content-container {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Lightbox Navigation */
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(244, 197, 66, 0.1);
    color: #F4C542;
    border: 2px solid #F4C542;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10001;
}

.lb-nav:hover {
    background: #F4C542;
    color: #2E1001;
}

.lb-prev {
    left: -80px;
}

.lb-next {
    right: -80px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #F4C542;
    font-size: 40px;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.3s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #F4C542;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.lightbox-caption {
    color: white;
    margin-top: 20px;
    text-align: center;
}

.lightbox-caption h4 {
    color: #F4C542;
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .lb-prev {
        left: 10px;
        background: rgba(46, 16, 1, 0.6);
    }

    .lb-next {
        right: 10px;
        background: rgba(46, 16, 1, 0.6);
    }

    .lb-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .gallery-section {
        padding: 60px 0;
    }
}

/* contact */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #2E1001;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-weight: 700;
    font-size: 2.8rem;
    color: #2E1001;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #5e4d44;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Info Cards */
.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #ececec;
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #F4C542;
    box-shadow: 0 10px 30px rgba(46, 16, 1, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fcfaf5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #F4C542;
    margin-bottom: 20px;
}

.info-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #2E1001;
}

.info-card p {
    color: #5e4d44;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #ececec;
    box-shadow: 0 20px 50px rgba(46, 16, 1, 0.03);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #2E1001;
}

.form-control {
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    background-color: #fff;
    border-color: #F4C542;
    box-shadow: 0 0 0 4px rgba(244, 197, 66, 0.1);
    outline: none;
}

.submit-btn {
    background-color: #F4C542;
    color: #2E1001;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background-color: #2E1001;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 16, 1, 0.2);
}

/* Map Styling */
.map-container {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    border: 1px solid #ececec;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1) sepia(10%);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .map-container {
        min-height: 350px;
        margin-top: 30px;
    }
}



/* capability */
.pmc-section-spacing {
    padding: 80px 0;
}

/* Hero Styling */
.pmc-hero-wrapper {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Card & Icon Styling */
.pmc-approach-card {
    padding: 30px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    height: 100%;
    background: #fff;
    transition: transform 0.3s ease;
}

.pmc-icon-container {
    width: 50px;
    height: 50px;
    background: #F4C542;
    color: #2E1001;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.exp-3 {
    background: #ffe396 !important;
}

.exp-3 .exp-last {
    color: #24201d !important;
}

/* Scope Grid */
.pmc-scope-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eeeeee;
}

.pmc-scope-row i {
    color: #F4C542;
    font-size: 1.2rem;
}

/* Differentiator Strip */
.pmc-transparency-strip {
    background-color: #f4c542;
    color: #2e1001;
    padding: 60px 0;
}

/* Image styling */
.pmc-feature-img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.pmc-value-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
}

/* Typography Override */
.pmc-hero-wrapper,
.pmc-section-spacing,
.pmc-transparency-strip {
    font-family: 'Poppins', sans-serif;
}

.ser-title {
    color: #4E342E;
}

.pmc-section-spacing p,
span,
li {
    color: #000000;
}

/* scroll to top button */


.experience {
    padding: 46px;
    background: #fff;
    border-radius: 14px;
}

.experience .section-title {
    font-size: 34px;
}

.experience .exp-last {
    text-align: center;
    font-size: 22px;
    margin: 0;
    color: #ba8900;
    font-style: italic;
}





/* Floating call btn */

a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 15px;
    right: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}



.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 138px;
    right: 34px;
    background-color: #197bff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float i {
    font-size: 24px;
}

.my-float {
    margin-top: 16px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    25%,
    50%,
    75%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-12px);
    }
}

.safe-about{
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}

.safe-about p{
    margin: 0 !important;
}

.fr-app{
    text-transform: capitalize;
    color: #fff;
}

.fr-app-ctc{
    color: #2e1001;
    font-weight: 600;
}