:root {
    --gold: #D9A441;
    --gold-light: #F3CD7E;
    --gold-dark: #A97C25;
    --dark-900: #0A0E13;
    --dark-800: #10161D;
    --dark-700: #171F29;
    --dark-600: #1F2A36;
    --text-light: #F5F3EE;
    --text-muted: #AEB7C2;
    --text-muted-2: #7C8794;
    --white: #FFFFFF;
    --font-display: 'Inter', 'Open Sans', sans-serif;
    --radius: 10px;
    --shadow-gold: 0 10px 30px rgba(217, 164, 65, .18);
    --transition: all .3s ease;
}

* {
    box-sizing: border-box;
}

/* AOS */
/* 

[data-aos]{
    will-change:transform,opacity;
    backface-visibility:hidden;
    transform:translate3d(0,0,0);
}

[data-aos="fade-up"]{
    transform:translate3d(0,22px,0);
    opacity:0;
}

[data-aos="fade-up"].aos-animate{
    transform:translate3d(0,0,0);
    opacity:1;
}

[data-aos="zoom-in"]{
    transform:scale(.96);
    opacity:0;
}

[data-aos="zoom-in"].aos-animate{
    transform:scale(1);
    opacity:1;
}

[data-aos]{
    transition-property:
        transform,
        opacity;
} */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-display);
    color: var(--dark-900);
    background: black !important;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: .2px;
}

p {
    color: var(--text-muted-2);
    line-height: 1.75;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container-xl {
    max-width: 1280px;
}

/* Utility */
.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background: var(--gold) !important;
}

.section-pad {
    padding: 100px 0;
}

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

.section-dark {
    background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
    color: var(--text-light);
}

.section-dark p {
    color: var(--text-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-size: clamp(18px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.mini_subtitle {
    font-size: 20px !important;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: white !important;
}

.section-dark .section-title {
    color: #fff;
}

.section-sub {
    color: var(--text-muted-2);
    max-width: 680px;
}

.section-dark .section-sub {
    color: var(--text-muted);
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
    border: none;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    color: white !important;
    font-weight: 600 !important;
    padding: 9px 40px !important;
    border-radius: 4px !important;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(217, 164, 65, .32);
    color: #1a1305;
}

.btn-outline-gold {
   display: flex !important;
    border: 1.5px solid rgba(255, 255, 255, .55) !important;
    color: #fff !important;
    align-items: center;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
    background: transparent;
    transition: var(--transition);

    
}

.btn-outline-gold:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    padding: 18px 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(10, 14, 19, .75), rgba(10, 14, 19, 0));
}

#mainNav.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 19, .97);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
    backdrop-filter: blur(6px);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.brand-text {
    line-height: 1.15;
}

.brand-text .l1 {
    font-weight: 900;
    font-size: 17px;
    color: #fff;
    letter-spacing: 1px;
}

.brand-text .l2 {
    font-weight: 600;
    font-size: 10.5px;
    color: var(--gold);
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .4px;
    margin: 0 12px;
    padding: 8px 0 !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .4);
}

.navbar-toggler i {
    color: #fff;
    font-size: 22px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
     position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: visible;
    background: url(../images/banner.jpg) center center/cover no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: .6s ease;
}

/* .hero.hero-image-loaded{
    animation:heroZoom 8s ease-out forwards;
}

.hero::before {
  content:"";
    position:absolute;
    inset:0;
       background:rgba(0,0,0,0.4);
    transition: .8s ease;
    z-index:1;
}

.hero.hero-image-loaded::before{
    background:rgba(0,0,0,.10);
} */
.hero[data-aos][data-aos],
.hero[data-aos][data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
}
.hero-content {
    position: static;
    z-index: 2;
}

.hero-kicker {
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(34px, 5.4vw, 64px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: .5px;
    margin-bottom: 22px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 30px 0 36px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.hero-badge i {
    color: var(--gold);
    font-size: 22px;
}

.hero-badge span {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .hero-buttons {
    position: relative;
    z-index: 4;
}

.stats-float {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 5;
    width: min(1280px, calc(100% - 24px));
    margin-top: 0;
    transform: translate(-50%, 50%) !important;
}

.stats-card {
    /* background: rgba(15, 20, 26, .92); */
    background: black;
    border: 1px solid rgba(217, 164, 65, .25);
    border-radius: var(--radius);
    padding: 5px 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    padding: 10px 14px;
}

.stat-item i {
    font-size: 30px;
    color: var(--gold);
    flex-shrink: 0;
}

.stat-item .val {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
}

.stat-item .lbl {
    font-size: 11.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    border-left: 1px solid rgba(255, 255, 255, .12);
    height: 46px;
}


@keyframes heroZoom{

    0%{
        transform:scale(1.12);
        background-position:center center;
    }

    100%{
        transform:scale(1);
        background-position:center center;
    }

}

/* ============================================================
   ABOUT
   ============================================================ */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.about-img-wrap::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 120px;
    height: 120px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    z-index: -1;
}

.about-img-wrap::after {
    content: "";
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 120px;
    height: 120px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    z-index: -1;
}

.vm-card {
    background: #faf8f4;
    border: 1px solid #eee2c9;
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
    transition: all .2s;
}

.vm-card:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
    border-color: var(--gold);
     transition: all .2s;
}


.vm-card i {
    color: var(--gold);
    font-size: 26px;
    /* margin-bottom: 12px; */
    display: block;
     transition: all .2s;
}

.vm-card h5 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
     transition: all .2s;
}

.vm-card p {
    font-size: 14.5px;
    margin-bottom: 0;
    transition: all .2s;
    color: var(--dark-900);
}

.vm-card:hover i,
.vm-card:hover h5,
.vm-card:hover p {
    color: white;
    transition: all .2s;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #12181f;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.chip i {
    color: var(--gold);
}

/* ============================================================
   WHY CHOOSE (dark icon grid)
   ============================================================ */
.why-card {
    text-align: center;
    padding: 34px 18px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    height: 100%;
}

.why-card i {
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 18px;
    display: inline-block;
}

.why-card h5 {
    color: #fff;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: .6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.why-card p {
    font-size: 13.5px;
    margin-bottom: 0;
}

@media (max-width:991px) {
    .why-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }
}

/* ============================================================
   CORE SERVICES
   ============================================================ */
#services {
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
    color: #221704;
}

#services .eyebrow {
    color: #2b1b02;
}

#services .eyebrow::before {
    background: #2b1b02;
}

#services .section-title {
    color: #1f1504;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .24);
}

.services_new_grid {
    align-items: stretch;
}

.services_new_card {
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(43, 27, 2, .12);
    box-shadow: 0 18px 42px rgba(49, 31, 4, .18);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.services_new_card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .55);
    box-shadow: 0 26px 58px rgba(49, 31, 4, .28);
}

.services_new_img {
    /* min-height: 130px;
    padding: 42px 24px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(10, 14, 19, .92), rgba(31, 42, 54, .84)),
        radial-gradient(circle at 80% 15%, rgba(243, 205, 126, .32), transparent 32%);
}

.services_new_img img {
  width: 100%;
    height: 146px;
    /* object-fit: cover; */
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .22));
    transition: transform .45s ease, filter .45s ease;
}

.services_new_card:hover .services_new_img img {
    transform: scale(1.12);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .28)) brightness(1.08);
}

.services_new_body {
    padding: 15px;
}

.services_new_body h5 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: 0px !important;
}

.services_new_body p {
    font-size: 14.5px;
    color: var(--dark-900);
    margin-bottom: 0;
    line-height: 1.3;
    margin-top: 4px;



}

@media (max-width: 575px) {
    .services_new_img {
        min-height: 158px;
        padding: 34px 20px;
    }

    .services_new_img img {
        width: 78px;
        height: 78px;
    }

    .services_new_body {
        padding: 24px 22px 26px;
    }
}
/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 11, .98) 0%, rgba(10, 12, 14, .94) 48%, rgba(10, 12, 14, -1.67) 68%, rgba(10, 12, 14, .48) 100%),
        url("../images/industry.jpeg") right center / cover no-repeat;
}

.industries-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .22)),
        radial-gradient(circle at 28% 48%, rgba(217, 164, 65, .16), transparent 34%);
    pointer-events: none;
}

.industries-section>.container-xl {
    position: relative;
    z-index: 2;
}

.industries_new_wrap {
    min-height: 142px;
}

.industries_new_content {
    max-width: 760px;
    margin: 0 0 34px;
    text-align: left;
}

.industries_new_content .eyebrow {
    justify-content: flex-start;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.industries_new_content .eyebrow::before {
    background: var(--gold-light);
}

.industries_new_content .section-title {
    max-width: 760px;
    margin: 0;
    color: #fff;
}

.industries_new_items {
    max-width: 100%;
    margin: 0;
    justify-content: flex-start;
}

.industries_new_bg_space {
    min-height: 360px;
}

.industry-item {
    height: 100%;
    text-align: center;
    padding: 26px 16px 24px;
    min-width: 0;
    border-radius: 8px;
    border: 1px solid rgba(243, 205, 126, .18);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
    backdrop-filter: blur(3px);
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

.industry-item:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 205, 126, .5);
    background: linear-gradient(180deg, rgba(217, 164, 65, .16), rgba(255, 255, 255, .05));
    box-shadow: 0 24px 56px rgba(0, 0, 0, .34), 0 0 34px rgba(217, 164, 65, .14);
}

.industry-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold-light);
    background: radial-gradient(circle at 35% 25%, rgba(243, 205, 126, .2), rgba(217, 164, 65, .08) 52%, rgba(217, 164, 65, .03));
    border: 1px solid rgba(243, 205, 126, .48);
    box-shadow: 0 0 0 8px rgba(217, 164, 65, .06), 0 14px 30px rgba(217, 164, 65, .18);
    transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
}

.industry-icon i {
    font-size: 34px;
    line-height: 1;
}

.industry-item:hover .industry-icon {
    transform: scale(1.06);
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 62%, var(--gold-dark));
    color: #151006;
    box-shadow: 0 0 0 10px rgba(217, 164, 65, .1), 0 18px 38px rgba(217, 164, 65, .28);
}

.industry-item h6 {
    color: var(--gold-light);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .7px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .industries-section {
        padding: 64px 0;
        background:
            linear-gradient(90deg, rgba(7, 9, 11, .96) 0%, rgba(10, 12, 14, .88) 100%),
            url("../images/industry.jpeg") center / cover no-repeat;
    }

    .industries_new_wrap {
        min-height: auto;
    }

    .industries_new_content {
        text-align: center;
        margin: 0 auto 34px;
    }

    .industries_new_content .eyebrow {
        justify-content: center;
    }

    .industries_new_content .section-title {
        margin: 0 auto;
    }

    .industries_new_items {
        justify-content: center;
    }

    .industries_new_bg_space {
        display: none;
    }
}

@media (max-width: 575px) {
    .industries-section {
        padding: 54px 0;
    }

    .industry-item {
        padding: 24px 14px 22px;
    }

    .industry-icon {
        width: 66px;
        height: 66px;
    }

    .industry-icon i {
        font-size: 30px;
    }
}
/* ============================================================
   VALUE PROPOSITION / TOTAL LOGISTICS CONTROL
   ============================================================ */
.control-panel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
    background: url("../images/globe.jpg") center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.control-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 19, .15), rgba(10, 14, 19, .72) 100%);
}

.control-panel-inner {
    position: relative;
    z-index: 2;
    padding: 36px;
    width: 100%;
}

.control-panel-inner h4 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.control-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.control-list li {
    color: #e7e7e7;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.control-list li i {
    color: var(--gold);
    margin-top: 3px;
}

.value-tag {
  display: block;
    padding: 20px !important;
    align-items: center;
    gap: 8px;
    border: 1px solid #eadfc4;
    background: #fbf6ea;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #3a2f10;
    margin: 4px 8px 8px 0;
}

.value-tag i {
    color: var(--gold-dark);
}

/* ============================================================
   SUPPLY CHAIN TIMELINE
   ============================================================ */
.timeline-wrap {
    position: relative;
    overflow: hidden;
    padding: 70px 0 56px;
}

.timeline-wrap>.row {
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

.timeline-wrap>.row>[class*="col-"] {
    display: flex;
}

.timeline-wrap>.row>[class*="col-"]:nth-child(even) {
    padding-top: 104px;
}

.timeline-line {
    position: absolute;
    top: 78px;
    left: 9%;
    right: 9%;
    height: 176px;
    background: none;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.timeline-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 176' preserveAspectRatio='none'%3E%3Cpath d='M0 35 L200 147 L400 35 L600 147 L800 35 L1000 147' fill='none' stroke='%23D9A441' stroke-width='3' stroke-dasharray='13 13' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    clip-path: inset(0 100% 0 0);
    opacity: .9;
    animation: timelineDraw 1.6s ease-out .8s forwards;
}

@keyframes timelineDraw {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.timeline-step {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 0 10px;
    margin-bottom: 30px;
}

.timeline-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--dark-800);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    box-shadow: 0 0 0 8px rgba(217, 164, 65, .06), 0 18px 34px rgba(0, 0, 0, .28);
}

.timeline-step h6 {
    min-height: 34px;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    font-size: 15.5px;
    text-transform: uppercase;
    letter-spacing: .6px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.timeline-step h6 .step-no {
    background: var(--gold);
    color: #1a1305;
    font-size: 11px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    box-shadow: 0 8px 18px rgba(217, 164, 65, .22);
}

.timeline-step p {
   font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0;
    color: #ebebeb;
}

@media (max-width:991px) {
    .timeline-wrap {
        padding: 20px 0 0;
    }

    .timeline-wrap>.row>[class*="col-"]:nth-child(even) {
        padding-top: 0;
    }

    .timeline-line {
        display: none;
    }
}

/* ============================================================
   WAREHOUSE / FLEET / OPERATIONS CARDS
   ============================================================ */
#operations {
    background: var(--white);
    color: var(--dark-900);
}

#operations .eyebrow {
    color: var(--gold-dark);
}

#operations .eyebrow::before {
    background: var(--gold-dark);
}

#operations .section-title {
    color: var(--dark-900);
}

.ops-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
    box-shadow: 0 20px 46px rgba(10, 14, 19, .18);
    height: 100%;
    border: 1px solid rgba(217, 164, 65, .22);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.ops-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 164, 65, .46);
    box-shadow: 0 28px 64px rgba(10, 14, 19, .28), 0 0 30px rgba(217, 164, 65, .12);
}

.ops-card .ops-img {
    height: 190px;
    overflow: hidden;
    border-bottom: 1px solid rgba(217, 164, 65, .18);
}

.ops-card .ops-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .86;
    transition: var(--transition);
}

.ops-card:hover .ops-img img {
    transform: scale(1.06);
    opacity: 1;
}

.ops-card-body {
    padding: 26px;
}

.ops-card-body i.ops-icon {
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}

.ops-card-body h5 {
    color: var(--text-light);
    font-size: 16.5px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ops-card-body p {
    color: var(--text-muted);
}

.ops-card-body ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.ops-card-body ul li {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.ops-card-body ul li::marker {
    color: var(--gold);
}

/* ============================================================
   BUILT FOR PERFORMANCE
   ============================================================ */
.value-item {
    text-align: center;
    padding: 20px 8px;
}

.value-item .circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1.5px solid rgba(217, 164, 65, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    font-size: 28px;
    transition: var(--transition);
}

.value-item:hover .circle {
    background: var(--gold);
    color: #1a1305;
}

.value-item h6 {
    color: #fff;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leader-card {
    text-align: center;
    margin-bottom: 36px;
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 3px solid var(--gold);
    padding: 4px;
    box-shadow: 0 12px 30px rgba(217, 164, 65, .2);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.leader-card h6 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: .3px;
}

.leader-card span {
   font-size: 15px;
    color: var(--gold);
    /* text-transform: uppercase; */
    font-weight: 700;
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.cred-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 26px 22px;
    height: 100%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.cred-card i {
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 12px;
    display: block;
}

.cred-card .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-2);
    font-weight: 700;
}

.cred-card .val {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark-900);
    margin-top: 4px;
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section {
    background: var(--white);
    color: var(--dark-900);
}

.clients-section .eyebrow {
    color: var(--gold-dark);
}

.clients-section .eyebrow::before {
    background: var(--gold-dark);
}

.clients-section .section-title {
    color: var(--dark-900) !important;
}

.clients-section p {
    color: var(--gold-dark) !important;
}

.client-logo-box {
    /* background: var(--white); */
    border-radius: 8px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin: 0 auto;
    /* border: 1px solid rgba(217, 164, 65, .18); */
    /* box-shadow: 0 14px 34px rgba(10, 14, 19, .08); */
}

.client-logo-box img {
    /* max-height: 70px; */
    width: auto;
    object-fit: contain;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border: 2px solid var(--gold);
    border-radius: 4px;
}

#clientsCarousel .carousel-indicators {
    position: static;
    margin-top: 30px;
}

#clientsCarousel .carousel-indicators button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--gold);
    opacity: .35;
    border: none;
}

#clientsCarousel .carousel-indicators button.active {
    opacity: 1;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
    position: relative;
    background: url(../images/slide12.png) center right/cover no-repeat;
}

.contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(69deg, rgba(8, 10, 13, 0.73), rgba(8, 10, 13, -3.45));
}

.contact-cta>.container-xl {
    position: relative;
    z-index: 2;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.contact-detail i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(217, 164, 65, .15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.contact-detail .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail .val {
    color: #fff;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--dark-900);
    color: var(--white);
    padding: 70px 0 0;
}

footer a {
    text-decoration: none;
}

footer h6 {
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-links li {
    color: var(--white);
    margin-bottom: 12px;
}

footer .footer-links a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

footer .footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

footer p {
    color: var(--white);
    font-size: 14px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 50px;
    padding: 22px 0;
    color: var(--white);
    font-size: 13px;
}

.design-credit span {
    color: var(--white);
    font-weight: 500;
}

.design-credit a {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: capitalize;
}

.design-credit a:hover {
    color: transparent;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 15px;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #1a1305;
}

/* Back to top */
#backToTop {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1305;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .3);
    border: none;
    transition: var(--transition);
}

#backToTop:hover {
    transform: translateY(-4px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}