:root {
    --primary: #f5b400;
    --primary-2: #ffcf33;
    --ink: #111827;
    --ink-2: #1f2937;
    --text: #5b6472;
    --muted: #eef1f5;
    --white: #fff;
    --line: #e4e8ee;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(17, 24, 39, .13)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.7
}

h1,
h2,
h3,
h4 {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--ink);
    line-height: 1.06;
    margin: 0 0 16px
}

h1 {
    font-size: clamp(48px, 7vw, 92px);
    letter-spacing: -2px
}

h2 {
    font-size: clamp(38px, 5vw, 60px);
    letter-spacing: -1px
}

h3 {
    font-size: 28px
}

p {
    margin: 0 0 18px
}

a {
    text-decoration: none;
    color: inherit
}

img {
    width: 100%;
    display: block
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.topbar {
    background: #0b111a;
    color: #d9dee7;
    font-size: 13px
}

.topbar-inner {
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.topbar-left {
    display: flex;
    gap: 28px
}

.topbar a:hover {
    color: var(--primary)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.nav-wrap {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 80px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .brand-logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        width: 80px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 29px
}

.main-nav>a,
.nav-dropdown>a {
    font-weight: 700;
    color: #303947;
    font-size: 14px
}

.main-nav a.active,
.main-nav>a:hover,
.nav-dropdown>a:hover {
    color: #c98f00
}

.nav-cta {
    color: #111 !important
}

.nav-dropdown {
    position: relative;
    padding: 28px 0
}

.dropdown-menu {
    position: absolute;
    top: 78px;
    left: -25px;
    width: 255px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s
}

.dropdown-menu a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600
}

.dropdown-menu a:hover {
    background: #fff8dd;
    color: #a77500
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.nav-toggle {
    display: none;
    background: none;
    border: 0
}

.nav-toggle span {
    display: block;
    width: 27px;
    height: 2px;
    background: #111;
    margin: 6px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 22px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    transition: .25s;
    border: 1px solid transparent
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #111;
    box-shadow: 0 14px 28px rgba(245, 180, 0, .25)
}

.btn-primary:hover {
    transform: translateY(-3px)
}

.btn-dark {
    background: #111827;
    color: #fff
}

.btn-light {
    background: #fff;
    color: #111
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .5);
    color: #fff
}

.hero {
    min-height: 620px;
    padding-bottom: 100px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(8, 13, 20, .95) 0%, rgba(8, 13, 20, .75) 48%, rgba(8, 13, 20, .22) 100%), url('../images/exploreinfra-img.webp') center/cover
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 42px 42px
}

.hero-content {
    position: relative;
    max-width: 840px;
    /* padding: 90px 0 */
}

.hero h1 {
    color: #fff;
    max-width: 850px
}

.hero h1 span {
    color: var(--primary)
}

.hero p {
    font-size: 19px;
    color: #d7dce3;
    max-width: 680px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a77700;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 17px
}

.eyebrow:before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.eyebrow.light {
    color: var(--primary-2)
}


.eyebrow2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 17px
}

.eyebrow2:before {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--white);
}

.eyebrow2.light {
    color: var(--ink-2)
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px
}

.hero-stats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 17, 26, .75);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, .1)
}

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

.stat {
    padding: 26px 0;
    border-right: 1px solid rgba(255, 255, 255, .1);
    margin-left: 10px;
}

.stat:last-child {
    border-right: 0
}

.stat strong {
    display: block;
    font: 800 35px 'Barlow Condensed';
    color: #fff
}

.stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aeb6c1
}

.section {
    padding: 50px 0
}

.section-soft {
    background: #f6f7f9
}

.section-dark {
    background: #111827;
    color: #cfd5de
}

.section-head {
    /* display: flex;
    justify-content: space-between; */
    align-items: end;
    margin-bottom: 44px
}

.section-head2{
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 44px
}


/* .section-head>div {
    max-width: 690px
} */
/* 
.section-head p {
    max-width: 460px
} */

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center
}

.image-stack {
    position: relative;
    padding: 0 0 55px 55px
}

.image-stack .main-img {
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius)
}

.image-stack .small-img {
    position: absolute;
    width: 260px;
    height: 210px;
    object-fit: cover;
    bottom: 0;
    left: 0;
    border: 9px solid #fff;
    border-radius: 20px;
    box-shadow: var(--shadow)
}

.experience-badge {
    position: absolute;
    right: -25px;
    top: 55px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    text-align: center;
    color: #111;
    font-weight: 800;
    box-shadow: 0 20px 60px rgba(245, 180, 0, .35)
}

.experience-badge strong {
    font: 800 46px/1 'Barlow Condensed'
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 26px 0 30px
}

.check-grid span {
    font-weight: 700;
    color: #2d3745
}

.check-grid i {
    color: #d39a00;
    margin-right: 8px
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px;
    overflow: hidden;
    transition: .3s
}

.service-card:after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    border-radius: 50%;
    opacity: .12;
    transition: .3s
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.service-card:hover:after {
    transform: scale(1.8)
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff5d2;
    color: #a87500;
    display: grid;
    place-items: center;
    font-size: 23px;
    margin-bottom: 24px
}

.service-card a {
    font-weight: 800;
    color: #9b6e00
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #303946
}

.feature {
    padding: 38px;
    background: #171f2b
}

.feature .num {
    color: var(--primary);
    font: 700 18px 'Barlow Condensed'
}

.feature h3 {
    color: #fff
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.project-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 400px
}

.project-card img {
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.project-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(10, 15, 23, .95))
}

.project-card:hover img {
    transform: scale(1.08)
}

.project-info {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 22px;
    color: #fff
}

.project-info h3 {
    color: #fff
}

.project-info span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.process-item {
    text-align: center;
    position: relative
}

.process-item:not(:last-child):after {
    content: "";
    position: absolute;
    top: 36px;
    left: 70%;
    width: 65%;
    height: 1px;
    background: #d9dee4
}

.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 23px;
    color: #ae7a00;
    position: relative;
    z-index: 1
}

.process-item h4 {
    font-size: 20px
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.split img {
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius)
}

.quote-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.blog-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: .3s
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.blog-card img {
    height: 230px;
    object-fit: cover
}

.blog-content {
    padding: 26px
}

.blog-meta {
    font-size: 12px;
    color: #9a7b22;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800
}

.inner-hero {
    padding: 120px 0 95px;
    background: linear-gradient(90deg, rgba(10, 15, 23, .95), rgba(10, 15, 23, .58)), url('../images/exploreinfra-pagebg.webp') center/cover;
    color: #fff
}

.inner-hero h1 {
    color: #fff;
    font-size: 64px
}

.breadcrumb {
    color: #d3d8df
}

.content-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 55px
}

.contact-card {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line)
}

.contact-card i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff4cf;
    color: #a87500;
    display: grid;
    place-items: center
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px
}

.form-group.full {
    grid-column: 1/-1
}

.form-control {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    font: inherit;
    outline: none
}

.form-control:focus {
    border-color: #e5ad17;
    box-shadow: 0 0 0 4px rgba(245, 180, 0, .12)
}

textarea.form-control {
    min-height: 140px;
    resize: vertical
}

.cta-band {
    padding: 70px 0;
    background: linear-gradient(135deg, #e9a900, #ffc928);
    position: relative;
    overflow: hidden
}

.cta-band:after {
    content: "";
    position: absolute;
    right: -120px;
    top: -140px;
    width: 430px;
    height: 430px;
    border: 60px solid rgba(255, 255, 255, .16);
    border-radius: 50%
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1
}

.cta-band h2 {
    font-size: 48px
}

.cta-actions {
    display: flex;
    gap: 12px
}

.site-footer {
    background: #0b111a;
    color: #aeb6c1;
    padding: 80px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .7fr .9fr 1.2fr;
    gap: 55px
}

.site-footer h4 {
    color: #fff;
    font-size: 22px
}

.site-footer a {
    display: block;
    margin: 9px 0
}

.brand-footer {
    margin-bottom: 22px
}

.brand-footer strong {
    color: #fff
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid #283140;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.footer-bottom {
    border-top: 1px solid #202937;
    margin-top: 55px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 12px
}

.floating {
    position: fixed;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 990;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25)
}

.floating.whatsapp {
    bottom: 88px;
    background: #25d366
}

.floating.call {
    bottom: 26px;
    background: #111827
}

.to-top {
    position: fixed;
    left: 22px;
    bottom: 26px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    display: none
}

.to-top.show {
    display: block
}

@media(max-width:991px) {
    .topbar-right {
        display: none
    }

    .main-nav {
        position: fixed;
        top: 126px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 22px 30px;
        box-shadow: var(--shadow)
    }

    .main-nav.open {
        display: flex
    }

    .nav-toggle {
        display: block
    }

    .nav-dropdown {
        padding: 0
    }

    .dropdown-menu {
        position: static;
        width: auto;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block
    }

    .hero {
        min-height: 700px
    }

    .about-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .cards-3,
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .process-item:after {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-band-inner {
        display: block
    }

    .cta-actions {
        margin-top: 20px
    }
}

@media(max-width:640px) {
    .container {
        width: min(100% - 26px, 1180px)
    }

    .topbar {
        display: none
    }

    .nav-wrap {
        height: 74px
    }

    .main-nav {
        top: 74px
    }

    .hero {
        min-height: 750px
    }

    .hero-content {
        padding: 70px 0 160px
    }

    .hero h1 {
        font-size: 53px
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start
    }

    .stats-inner {
        grid-template-columns: 1fr
    }

    .stat {
        padding: 11px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .stat strong {
        font-size: 27px
    }

    .section {
        padding: 40px 0
    }

    .section-head {
        display: block
    }

    .about-grid {
        gap: 42px
    }

    .image-stack {
        padding: 0
    }

    .image-stack .main-img {
        height: 410px
    }

    .image-stack .small-img,
    .experience-badge {
        display: none
    }

    .check-grid,
    .cards-3,
    .projects-grid,
    .blog-grid,
    .feature-grid,
    .process-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .project-card {
        height: 340px
    }

    .split img {
        height: 390px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        display: block
    }

    .cta-actions {
        flex-direction: column
    }

    .inner-hero h1 {
        font-size: 48px
    }
}


/* About Page */

.about-introduction-section {
    position: relative;
    overflow: hidden;
}

.about-introduction-section:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: 80px;
    border: 70px solid rgba(245, 180, 0, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.about-introduction-content {
    position: relative;
    z-index: 1;
}

.about-introduction-content h2 {
    max-width: 650px;
}

.about-subheading {
    max-width: 620px;
    margin: 25px 0 20px;
    color: #9d7000;
    font-size: 27px;
    line-height: 1.25;
}

.about-highlight-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    margin-top: 30px;
}

.about-highlight-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-2);
    font-weight: 700;
    font-size: 14px;
}

.about-highlight-list i {
    color: #d39a00;
    margin-top: 5px;
}

.about-corporate-image {
    position: relative;
    padding: 0 0 30px 30px;
}

.about-corporate-image:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75%;
    height: 78%;
    border-radius: 24px;
    background: var(--primary);
}

.about-corporate-image img {
    position: relative;
    z-index: 1;
    height: 570px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.about-image-caption {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 65px;
    width: 245px;
    padding: 24px;
    border-radius: 0 16px 16px 0;
    background: #111827;
    color: #fff;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.25);
}

.about-image-caption span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-image-caption strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    line-height: 1.1;
}

.about-company-image {
    position: relative;
    padding: 0 45px 45px 0;
}

.about-company-image img {
    height: 570px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.company-experience-box {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 220px;
    padding: 26px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-2));
    color: #111827;
    box-shadow: 0 20px 50px rgba(245, 180, 0, 0.3);
}

.company-experience-box strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    line-height: 1;
}

.company-experience-box span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.company-principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.company-principles>div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.company-principles i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff4cf;
    color: #aa7700;
}

.company-principles span {
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 25px;
}

.purpose-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    transition: 0.3s;
}

.purpose-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.purpose-card-featured {
    background: linear-gradient(145deg, #111827, #202a38);
    border-color: transparent;
}

.purpose-card-featured h3 {
    color: #fff;
}

.purpose-card-featured p {
    color: #cdd4de;
}

.purpose-card-featured .icon-box {
    background: rgba(245, 180, 0, 0.14);
    color: var(--primary);
}

.purpose-card-number {
    position: absolute;
    right: 25px;
    top: 12px;
    color: rgba(17, 24, 39, 0.06);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 105px;
    font-weight: 800;
    line-height: 1;
}

.purpose-card-featured .purpose-card-number {
    color: rgba(255, 255, 255, 0.06);
}

.mission-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.mission-list li {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2);
    font-weight: 700;
}

.mission-list li:last-child {
    border-bottom: 0;
}

.mission-list i {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    margin-top: 2px;
    border-radius: 50%;
    background: #fff4cf;
    color: #a87500;
    font-size: 11px;
}

.why-choose-section {
    position: relative;
    overflow: hidden;
}

.why-choose-section:before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -300px;
    top: -200px;
    border: 80px solid rgba(245, 180, 0, 0.06);
    border-radius: 50%;
}

.why-choose-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 48px;
}

.why-choose-heading h2 {
    max-width: 700px;
    color: #fff;
}

.why-choose-heading p {
    margin-bottom: 7px;
    color: #cfd5de;
}

.why-choose-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #303946;
    border-radius: 20px;
    background: #303946;
}

.why-choose-card {
    position: relative;
    min-height: 320px;
    padding: 36px;
    background: #171f2b;
    transition: 0.3s;
}

.why-choose-card:hover {
    background: #1d2735;
}

.why-choose-card:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--primary);
    transition: 0.35s;
}

.why-choose-card:hover:after {
    width: 100%;
}

.why-card-number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(255, 255, 255, 0.08);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    font-weight: 800;
}

.why-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 27px;
    border: 1px solid rgba(245, 180, 0, 0.3);
    border-radius: 14px;
    background: rgba(245, 180, 0, 0.1);
    color: var(--primary);
    font-size: 23px;
}

.why-choose-card h3 {
    max-width: 260px;
    color: #fff;
    font-size: 26px;
}

.why-choose-card p {
    margin-bottom: 0;
    color: #aeb6c1;
    font-size: 14px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 110px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: 0.3s;
}

.capability-item:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 180, 0, 0.6);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.1);
}

.capability-item i {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff4cf;
    color: #a87500;
    font-size: 23px;
}

.capability-item h3 {
    margin: 0;
    font-size: 23px;
}

.about-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(17, 24, 39, 0.08);
}

.about-statistic {
    position: relative;
    padding: 40px 28px;
    text-align: center;
}

.about-statistic:not(:last-child):after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 30px;
    width: 1px;
    background: var(--line);
}

.about-statistic strong {
    display: block;
    margin-bottom: 8px;
    color: #b27d00;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 45px;
    line-height: 1;
}

.about-statistic span {
    color: var(--ink-2);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

@media (max-width: 991px) {

    .about-corporate-image img,
    .about-company-image img {
        height: 500px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

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

    .about-statistic:nth-child(2):after {
        display: none;
    }

    .about-statistic:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 640px) {

    .about-highlight-list,
    .company-principles,
    .why-choose-grid,
    .capability-grid,
    .about-statistics-grid {
        grid-template-columns: 1fr;
    }

    .about-corporate-image {
        padding: 0 0 20px 16px;
    }

    .about-corporate-image img {
        height: 430px;
    }

    .about-image-caption {
        left: 0;
        bottom: 45px;
        width: 220px;
    }

    .about-company-image {
        padding: 0 15px 60px 0;
    }

    .about-company-image img {
        height: 420px;
    }

    .company-experience-box {
        right: 0;
        min-width: 200px;
    }

    .purpose-card {
        padding: 30px 24px;
    }

    .why-choose-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .about-statistic {
        border-bottom: 1px solid var(--line);
    }

    .about-statistic:after {
        display: none;
    }

    .about-statistic:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   BOARD OF DIRECTORS
========================================================= */

.directors-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.directors-section:before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    left: -280px;
    bottom: -180px;
    border: 70px solid rgba(245, 180, 0, 0.055);
    border-radius: 50%;
    pointer-events: none;
}

.directors-heading {
    position: relative;
    z-index: 1;
    /* display: grid; */
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.directors-heading h2 {
    /* max-width: 720px; */
    margin-bottom: 0;
}

.directors-heading>p {
    /* max-width: 470px; */
    margin: 0 0 7px;
}


/* Directors Grid */

.directors-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* Director Card */

.director-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.director-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: var(--shadow);
}


/* Director Image */

.director-photo {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #111827;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.director-card:hover .director-photo img {
    transform: scale(1.045);
}

.director-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(17, 24, 39, 0.03) 25%,
            rgba(17, 24, 39, 0.15) 55%,
            rgba(17, 24, 39, 0.95) 100%);
}


/* Director Number */

.director-number {
    position: absolute;
    z-index: 3;
    top: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #111827;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}


/* Name Over Image */

.director-photo-title {
    position: absolute;
    z-index: 3;
    left: 30px;
    right: 30px;
    bottom: 28px;
}

.director-photo-title span {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.director-photo-title strong {
    display: block;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    line-height: 1.1;
}


/* Director Content */

.director-content {
    position: relative;
    padding: 34px;
}

.director-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    width: 65px;
    height: 4px;
    background: var(--primary);
}

.director-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.director-label {
    display: block;
    margin-bottom: 6px;
    color: #a87500;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.director-title-row h3 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 31px;
}

.director-designation {
    color: #8b6500;
    font-size: 13px;
    font-weight: 800;
}

.director-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff4cf;
    color: #a87500;
    font-size: 21px;
}

.director-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}


/* Expertise */

.director-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.director-expertise span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 8px;
    background: #f7f8fa;
    color: var(--ink-2);
    font-size: 11px;
    font-weight: 700;
}

.director-expertise i {
    color: #b27d00;
    font-size: 10px;
}


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

@media (max-width: 991px) {

    .directors-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .directors-heading>p {
        max-width: 650px;
    }

    .director-photo {
        height: 380px;
    }

    .director-content {
        padding: 28px;
    }

    .director-content:before {
        left: 28px;
    }
}


@media (max-width: 767px) {

    .directors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .director-photo {
        height: 440px;
    }
}


@media (max-width: 480px) {

    .director-photo {
        height: 360px;
    }

    .director-number {
        top: 18px;
        right: 18px;
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .director-photo-title {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .director-photo-title strong {
        font-size: 30px;
    }

    .director-content {
        padding: 27px 22px;
    }

    .director-content:before {
        left: 22px;
    }

    .director-title-row h3 {
        font-size: 28px;
    }

    .director-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .director-expertise {
        align-items: flex-start;
    }
}

/* Dynamic Service Details Page */

.service-featured-image {
    position: relative;
    padding: 0 0 35px 35px;
}

.service-featured-image:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    border-radius: 24px;
    background: var(--primary);
}

.service-featured-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-image-badge {
    position: absolute;
    z-index: 2;
    right: -20px;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 25px;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.3);
}

.service-image-badge i {
    color: var(--primary);
    font-size: 30px;
}

.service-image-badge span {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.service-tagline {
    max-width: 630px;
    margin-bottom: 22px;
    color: #9d7000;
    font-size: 28px;
    line-height: 1.25;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-detail-card {
    position: relative;
    display: flex;
    gap: 20px;
    min-height: 190px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    transition: 0.3s;
}

.service-detail-card:after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.08;
    transition: 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.service-detail-card:hover:after {
    transform: scale(1.7);
}

.service-detail-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #fff4cf;
    color: #a87500;
    font-size: 24px;
}

.service-detail-card h3 {
    margin-bottom: 10px;
    font-size: 25px;
}

.service-detail-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    font-size: 14px;
}

.service-scope-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 30px;
}

.service-scope-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 65px;
    padding: 12px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink-2);
    font-size: 14px;
    font-weight: 700;
}

.scope-number {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: #fff4cf;
    color: #9e7000;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.service-quality-panel {
    position: relative;
    overflow: hidden;
    padding: 50px;
    border-radius: 24px;
    background: linear-gradient(145deg, #111827, #202a38);
    color: #cfd5de;
}

.service-quality-panel:after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -190px;
    width: 380px;
    height: 380px;
    border: 55px solid rgba(245, 180, 0, 0.08);
    border-radius: 50%;
}

.service-quality-panel h2 {
    position: relative;
    z-index: 1;
    color: #fff;
}

.service-quality-panel>p {
    position: relative;
    z-index: 1;
}

.quality-points {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.quality-points>div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
}

.quality-points i {
    display: block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 23px;
}

.quality-points span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.industries-heading h2 {
    color: #fff;
}

.industries-heading p {
    color: #cfd5de;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #303946;
    border-radius: 18px;
    background: #303946;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 95px;
    padding: 20px;
    background: #171f2b;
    transition: 0.3s;
}

.industry-item:hover {
    background: #202a38;
}

.industry-item i {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(245, 180, 0, 0.1);
    color: var(--primary);
    font-size: 19px;
}

.industry-item span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strength-item {
    position: relative;
    min-height: 140px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: 0.3s;
}

.strength-item:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 180, 0, 0.7);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.09);
}

.strength-item span {
    display: block;
    margin-bottom: 16px;
    color: #b17d00;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.strength-item h3 {
    margin-bottom: 0;
    font-size: 25px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.achievement-card {
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    text-align: center;
    transition: 0.3s;
}

.achievement-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.achievement-card>i {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 17px;
    background: #fff4cf;
    color: #a87500;
    font-size: 27px;
}

.achievement-card strong {
    display: block;
    margin-bottom: 8px;
    color: #b07c00;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 45px;
    line-height: 1;
}

.achievement-card h3 {
    font-size: 25px;
}

.legacy-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.legacy-feature-grid>div {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: 0.3s;
}

.legacy-feature-grid>div:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.09);
}

.legacy-feature-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #fff4cf;
    color: #a87500;
    font-size: 20px;
}

.legacy-feature-grid h3 {
    font-size: 23px;
}

.legacy-feature-grid p {
    margin-bottom: 0;
    font-size: 13px;
}

@media (max-width: 991px) {
    .service-featured-image {
        max-width: 750px;
    }

    .service-details-grid,
    .industries-grid,
    .strengths-grid,
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image-badge {
        right: 0;
    }
}

@media (max-width: 640px) {
    .service-featured-image {
        padding: 0 0 20px 15px;
    }

    .service-featured-image img {
        height: 420px;
    }

    .service-image-badge {
        right: 0;
        bottom: 42px;
        padding: 17px;
    }

    .service-details-grid,
    .service-scope-list,
    .quality-points,
    .industries-grid,
    .strengths-grid,
    .achievement-grid,
    .legacy-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        display: block;
        min-height: auto;
        padding: 25px;
    }

    .service-detail-icon {
        margin-bottom: 20px;
    }

    .service-quality-panel {
        padding: 34px 25px;
    }

    .industry-item {
        min-height: 80px;
    }

    .achievement-card {
        padding: 30px 24px;
    }
}


.floating {
    position: fixed;
    right: 24px;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    z-index: 999;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.floating i {
    font-size: 21px;
}


.floating:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .28);
}


/* WhatsApp */

.floating.whatsapp {
    bottom: 24px;
    background: #25d366;
}


/* Call */

.floating.call {
    bottom: 90px;
    background: #014687;
}


/* Brochure */

.floating.brochure {
    bottom: 156px;

    background:
        linear-gradient(135deg,
            #f80001,
            #b90000);
}


.floating.brochure::after {
    content: "Brochure";

    position: absolute;
    right: 66px;

    padding: 7px 11px;

    background: #111;

    color: #fff;

    border-radius: 5px;

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translateX(8px);

    transition: .25s ease;
}


.floating.brochure:hover::after {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}

@media (max-width: 767px) {

    .floating {
        right: 15px;

        width: 48px;
        height: 48px;
    }


    .floating i {
        font-size: 18px;
    }


    .floating.whatsapp {
        bottom: 18px;
    }


    .floating.call {
        bottom: 76px;
    }


    .floating.brochure {
        bottom: 134px;
    }


    .floating.brochure::after {
        display: none;
    }

}


.page-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 46px;
    height: 46px;
    border: 4px solid #e5e5e5;
    border-top-color: #111;
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}



@media (max-width: 640px) {

    .nav-dropdown .dropdown-menu {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-dropdown > a i {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.open > a i {
        transform: rotate(180deg);
    }

}

@media (max-width: 640px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    /* 1st section - full row */
    .footer-grid > :nth-child(1) {
        grid-column: 1 / -1;
    }

    /* 2nd and 3rd - same row */
    .footer-grid > :nth-child(2),
    .footer-grid > :nth-child(3) {
        grid-column: auto;
    }

    /* 4th section - full row */
    .footer-grid > :nth-child(4) {
        grid-column: 1 / -1;
    }

}