:root {
    --navy: #0b1c2d;
    --navy2: #101f30;
    --gold: #d4af37;
    --light: #f8f9fa;
    --white: #fff;
    --text: #35404d;
    --muted: #6f7780;
    --border: #dfe4e8;
    --shadow: 0 14px 38px rgba(11, 28, 45, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

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

h1,
h2,
h3,
h4 {
    font-family: Poppins, Inter, sans-serif;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--navy);
    text-transform: uppercase
}

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

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

.section {
    padding: 82px 0
}

.section-sm {
    padding: 48px 0
}

.center {
    text-align: center
}

.topbar {
    background: #071625;
    color: #dbe1e7;
    font-size: 12px
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.topbar-contact,
.topbar-right,
.socials {
    display: flex;
    align-items: center;
    gap: 22px
}

.topbar a {
    transition: .25s
}

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

.socials {
    gap: 8px
}

.socials a {
    width: 24px;
    height: 24px;
    border: 1px solid #6f7b86;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700
}

.nav-wrap {
    background: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 10
}

.navbar {
    height: 92px;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 215px
}

.brand-mark {
    font-size: 44px;
    line-height: .8;
    color: var(--gold);
    font-weight: 800
}

.brand strong {
    display: block;
    letter-spacing: 1.7px;
    font-size: 20px;
    color: #243342;
    line-height: 1
}

.brand small {
    display: block;
    letter-spacing: 2px;
    font-size: 10px;
    font-weight: 700;
    color: #4d5864;
    margin-top: 5px
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px
}

.main-nav>a,
.has-dropdown>a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding: 35px 0
}

.main-nav>a:after,
.has-dropdown>a:after {
    content: "";
    position: absolute;
    height: 2px;
    background: var(--gold);
    left: 0;
    right: 0;
    bottom: 22px;
    transform: scaleX(0);
    transition: .25s
}

.main-nav .active:after,
.main-nav>a:hover:after,
.has-dropdown>a:hover:after {
    transform: scaleX(1)
}

.has-dropdown {
    position: relative
}

.dropdown {
    display: none;
    position: absolute;
    top: 58px;
    left: -18px;
    background: #fff;
    min-width: 210px;
    padding: 12px;
    box-shadow: var(--shadow)
}

.has-dropdown:hover .dropdown {
    display: block
}

.dropdown a {
    display: block;
    padding: 8px 10px;
    font-size: 12px
}

.dropdown a:hover {
    background: var(--light);
    color: var(--gold)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .3px;
    padding: 13px 22px;
    border: 1px solid transparent;
    transition: .3s;
    cursor: pointer
}

.btn-gold {
    background: var(--gold);
    color: #fff
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, .35);
    background: #b8901f
}

.btn-outline {
    border-color: #c7a153;
    color: #9e7623
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff
}

.nav-quote {
    padding: 13px 20px;
    white-space: nowrap
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    margin-left: auto
}

.hero {
    height: 90vh ;
    background: linear-gradient(90deg, rgba(7, 21, 35, .96) 0%, rgba(7, 21, 35, .78) 38%, rgba(7, 21, 35, .12) 75%), url('../images/mian.webp') center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center
}



.hero-copy {
    max-width: 575px
}

.eyebrow {
    font: 800 29px Poppins;
    margin: 0;
    letter-spacing: .5px
}

.hero h1 {
    font-size: 36px;
    color: #fff;
    margin: 0 0 10px
}

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

.hero-copy>p:not(.eyebrow) {
    max-width: 430px;
    color: #e1e5e9;
    margin: 0 0 10px
}

.hero-line {
    height: 3px;
    width: 65px;
    background: var(--gold);
    margin: 18px 0
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 18px 0 25px
}

.hero-features div {
    min-height: 82px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    padding-right: 8px
}

.hero-features i {
    display: block;
    color: var(--gold);
    font-size: 27px;
    font-style: normal;
    float: left;
    margin-right: 10px
}

.hero-features b {
    display: block;
    font-size: 8px
}

.hero-features small {
    display: block;
    font-size: 9px;
    line-height: 1.45;
    color: #cdd3da
}

.about {
    background: #fff
}

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

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.about-images img {
    width: 100%;
    height: 180px;
    object-fit: cover
}

.about-images img:first-child {
    grid-column: span 2;
    height: 450px;
}

.section-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    color: #9b772c;
    margin: 0 0 4px
}

.section-kicker:after {
    content: "";
    display: inline-block;
    width: 45px;
    height: 1px;
    background: #b99a53;
    vertical-align: middle;
    margin-left: 8px
}

.about h2,
.section-heading h2 {
    font-size: 25px
}

.about h2 span {
    color: var(--gold)
}

.about-copy p {
    font-size: 12px;
    line-height: 1.9
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 22px
}

.stats>div {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid #d9dee3
}

.stats>div:last-child {
    border: 0
}

.stats i {
    display: block;
    color: var(--gold);
    font-size: 26px;
    font-style: normal
}

.stats strong {
    display: block;
    font-size: 17px;
    color: #38434d
}

.stats strong:not(:last-child):after {
    content: '+'
}

.stats span {
    display: block;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.4
}

.services-dark {
    background: linear-gradient(rgba(9, 24, 39, .96), rgba(9, 24, 39, .96)), url('../images/pattern.svg');
    background-size: cover;
    color: #fff
}

.services-dark h2,
.services-dark .section-kicker {
    color: #fff
}

.services-dark .section-kicker {
    color: var(--gold)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin: 20px 0 25px
}

.service-card {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);
    padding: 26px 13px;
    text-align: center;
    min-height: 200px;
    transition: .3s
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2)
}

.service-card i {
    font-size: 36px;
    color: var(--gold);
    font-style: normal
}

.service-card h3 {
    font-size: 13px;
    color: #fff;
    margin: 12px 0
}

.service-card p {
    font-size: 10px;
    color: #d5dce2;
    line-height: 1.6
}

.section-heading.split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    display: block
}

.project-card img {
    display: block;
    width: 100%;
    height: 175px;
    object-fit: cover;
    transition: .5s
}

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

.project-card span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    color: #fff;
    background: linear-gradient(transparent, rgba(7, 18, 30, .95));
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800
}

.project-card small {
    display: block;
    text-transform: none;
    font-weight: 400;
    font-size: 8px
}

.why {
    background: #f7f7f5
}

.why-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(5, 1fr);
    gap: 18px;
    align-items: start
}

.why-title {
    border-right: 1px solid #bca367
}

.why-title h2 {
    font-size: 21px
}

.why-title span {
    color: var(--gold)
}

.why-grid>div:not(.why-title) {
    text-align: center
}

.why-grid i {
    display: block;
    color: var(--gold);
    font-size: 26px;
    font-style: normal
}

.why-grid b {
    font-size: 9px;
    line-height: 1.3;
    display: block
}

.why-grid p {
    font-size: 8px;
    line-height: 1.5;
    margin: 8px 0
}

.process {
    background: linear-gradient(#0e263b, rgb(0 0 0 / 96%));
    color: #fff;
}

.process h2 {
    color: #fff
}

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

.step {
    text-align: center;
    position: relative
}

.step:not(:last-child):after {
    content: '·······›';
    position: absolute;
    top: 30px;
    left: 68%;
    width: 60%;
    letter-spacing: 2px;
    color: #fff
}

.step i {
    width: 62px;
    height: 62px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    color: var(--gold);
    font-style: normal;
    font-size: 25px
}

.step b {
    display: block;
    text-transform: uppercase;
    font-size: 10px
}

.step p {
    font-size: 8px;
    line-height: 1.5;
    color: #d9dfe5;
    margin: 7px auto;
    max-width: 120px
}

.partners {
    background: #fff
}

.partners h3 {
    font-size: 17px
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    text-align: center;
    gap: 10px
}

.partner-logos b {
    font-size: 21px;
    color: #66707a;
    border-right: 1px solid #d8dde2
}

.partner-logos b:last-child {
    border: 0
}

.partner-logos small {
    display: block;
    font-size: 8px;
    letter-spacing: .8px
}

.testimonials {
    background: linear-gradient(90deg, #0a1b2c, #102b43);
    color: #fff;
    padding: 38px 0;
    position: relative
}

.testimonial-wrap {
    position: relative;
    text-align: center
}

.testimonial-wrap h3 {
    color: #fff;
    font-size: 14px
}

.testimonial-slider {
    max-width: 720px;
    margin: 10px auto;
    overflow: hidden
}

.testimonial {
    display: none
}

.testimonial.active {
    display: block
}

.testimonial span {
    font-size: 38px;
    color: var(--gold);
    line-height: 1
}

.testimonial p {
    margin: 0;
    font-size: 13px
}

.testimonial b {
    font-size: 10px
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 42px;
    cursor: pointer
}

.testimonial-prev {
    left: 8%
}

.testimonial-next {
    right: 8%
}

.dots i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #798491;
    margin: 3px
}

.dots i.active {
    background: var(--gold)
}

.footer-cta {
    background: linear-gradient(90deg, #c08b26 0%, #d4af37 42%, #d4af37  42%);
    color: #fff
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.4fr 1.4fr;
    align-items: center;
    min-height: 105px
}

.footer-cta-title {
    display: flex;
    align-items: center;
    gap: 15px
}

.footer-cta h2 {
    color: #fff;
    font-size: 19px;
    margin: 0;
    text-transform: none
}

.footer-cta small {
    font-size: 8px;
    display: block
}

.footer-cta a,
.footer-cta-grid>span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    font-size: 24px
}

.footer-cta a span,
.footer-cta-grid>span b {
    font-size: 11px;
    font-weight: 500
}

.site-footer {
    background: #091827;
    color: #b8c1ca
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr) 1.05fr;
    gap: 28px;
    padding: 42px 0
}

.footer-brand strong {
    color: #fff;
    font-size: 16px
}

.footer-brand small {
    color: #d5dce2
}

.site-footer p,
.site-footer a {
    font-size: 10px;
    line-height: 1.7
}

.site-footer>div>div>a:not(.brand):not(.socials a):not(.btn) {
    display: block;
    margin: 4px 0
}

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

.footer-grid>div {
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding-right: 20px
}

.footer-grid>div:last-child {
    border: 0
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 9px
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    padding: 11px 0
}

.page-hero {
    background: linear-gradient(rgba(7, 22, 36, .85), rgba(7, 22, 36, .85)), url('../images/hero-building.svg') center/cover;
    padding: 100px 0;
    color: #fff;
    text-align: center
}

.page-hero h1 {
    color: #fff;
    font-size: 44px
}

.page-hero p:last-child {
    max-width: 700px;
    margin: auto
}

.page-content h2 {
    font-size: 34px
}

.two-col,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.content-img {
    width: 100%;
    box-shadow: var(--shadow)
}

.light-grid .service-card {
    border-color: var(--border);
    background: #fff
}

.light-grid .service-card h3 {
    color: var(--navy)
}

.light-grid .service-card p {
    color: var(--muted)
}

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

.gallery-grid .project-card img {
    height: 245px
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 28px;
    background: var(--light);
    box-shadow: var(--shadow)
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid var(--border);
    font: inherit;
    font-size: 13px
}

.quote-form textarea {
    grid-column: span 2;
    min-height: 130px
}

.quote-form .btn {
    justify-self: start
}

.reveal {
    opacity: 1;
    transform: none
}

@media(max-width:1000px) {
    .main-nav {
        gap: 15px
    }

    .main-nav>a,
    .has-dropdown>a {
        font-size: 10px
    }

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

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

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

    .why-title {
        grid-column: span 3;
        border-right: 0;
        border-bottom: 1px solid #bca367;
        padding-bottom: 15px
    }

    .process-flow {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px
    }

    .step:after {
        display: none
    }

    .footer-cta {
        background: var(--navy)
    }

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

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

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

    .topbar-inner {
        justify-content: center
    }

    .navbar {
        height: 75px
    }

    .brand {
        min-width: 0
    }

    .brand strong {
        font-size: 16px
    }

    .brand-mark {
        font-size: 35px
    }

    .nav-toggle {
        display: block
    }

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--navy);
        margin: 5px
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 75px;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px;
        box-shadow: var(--shadow);
        gap: 0
    }

    .main-nav.open {
        display: flex
    }

    .main-nav>a,
    .has-dropdown>a {
        display: block;
        padding: 12px 0
    }

    .has-dropdown:hover .dropdown {
        display: none
    }

    .nav-quote {
        display: none
    }

    .hero {
        min-height: 650px;
        background-position: 65% center
    }

    .hero h1 {
        font-size: 29px
    }

    .hero-features {
        grid-template-columns: 1fr
    }

    .hero-features div {
        min-height: auto;
        border-right: 0
    }

    .about-grid,
    .two-col,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .about-images img {
        height: 140px
    }

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

    .stats>div:nth-child(2) {
        border-right: 0
    }

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

    .section-heading.split {
        align-items: start;
        gap: 15px
    }

    .project-grid,
    .gallery-grid {
        grid-template-columns: 1fr
    }

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

    .why-title {
        grid-column: span 2
    }

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

    .partner-logos {
        grid-template-columns: repeat(2, 1fr)
    }

    .partner-logos b {
        border-right: 0
    }

    .testimonial-prev {
        left: 0
    }

    .testimonial-next {
        right: 0
    }

    .footer-cta-grid {
        grid-template-columns: 1fr;
        padding: 22px 0;
        gap: 10px
    }

    .footer-cta a,
    .footer-cta-grid>span {
        border-left: 0;
        padding-left: 0
    }

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

    .footer-grid>div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 18px
    }

    .copyright .container {
        flex-direction: column;
        gap: 6px
    }

    .page-hero {
        padding: 70px 0
    }

    .page-hero h1 {
        font-size: 31px
    }

    .quote-form {
        grid-template-columns: 1fr
    }

    .quote-form textarea {
        grid-column: span 1
    }

    .quote-form .btn {
        width: 100%
    }
}