@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --n: #223d5c;
    --nd: #172d45;
    --nl: #2e5178;
    --g: #efac20;
    --gl: #f7c84a;
    --gd: #c88e10;
    --cr: #faf8f3;
    --mid: #4a6580;
    --lt: #8ca0b5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
     font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: var(--nd);
    overflow-x: hidden;
    background: #fff;
    cursor: none;
}
a{
	text-decoration:none !important;
}
p,
span,
li,
td,
th,
label {
    font-size: 18px;
    line-height: 1.78;
}
h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
}
.h1t .ln {
    display: inline;
    font-size: 75px;
    line-height: 80px;
}
.hck {
   
    padding-left: 0px;
}
/* CURSOR */
#cr1 {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--g);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s,
        background 0.3s;
}
#cr2 {
    position: fixed;
    width: 40px;
    height: 40px;
	
    border: 2px solid var(--g);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s,
        height 0.3s,
        border-color 0.3s;
}
.hvc #cr1 {
    width: 20px;
    height: 20px;
    background: var(--n);
}
.hvc #cr2 {
    width: 60px;
    height: 60px;
    border-color: var(--n);
}
/* SCROLL LINE */
#sline {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--g), var(--gl));
    z-index: 9999;
    width: 0;
}
/* BTT */
#btt {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--g);
    color: var(--n);
    border: none;
    font-size: 20px;
    cursor: none;
    box-shadow: 0 8px 28px rgba(239, 172, 32, 0.45);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#btt.show {
    opacity: 1;
    transform: translateY(0);
}
#btt:hover {
    background: var(--gl);
    transform: translateY(-4px);
}
/* TOP BAR */
#tb {
    background: var(--nd);
    border-bottom: 2px solid var(--g);
    position: relative;
    overflow: hidden;
}
#tb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 80px,
        rgba(239, 172, 32, 0.03) 80px,
        rgba(239, 172, 32, 0.03) 81px
    );
    pointer-events: none;
}
#tb a {
        color: #f4f9ff;
    text-decoration: none;
        font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
}
#tb a:hover {
    color: #efac20;
}
.tba {
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.tba-o {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.tba-o:hover {
    border-color: var(--g);
    color: var(--g);
}
.tba-g {
    background: var(--g);
    color: #f4f9ff;
}
.tba-g:hover {
    background: var(--gl);
    color: var(--n);
}
/* NAVBAR */
#nav {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 30px rgba(34, 61, 92, 0.08);
}
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.lsvg {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}
.lname {
     font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--n);
    line-height: 1;
    letter-spacing: -0.02em;
}
.lname span {
    color: var(--g);
}
.ltag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lt);
    display: block;
}
.nl {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--nd) !important;
    padding: 8px 13px !important;
    position: relative;
    transition: 0.2s !important;
}
.nl::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--g);
    transform: scaleX(0);
    transition: 0.25s;
    border-radius: 2px;
}
.nl:hover::after {
    transform: scaleX(1);
}
.ncta {
    padding: 11px 28px !important;
    background: var(--n);
    color: #fff !important;
    border-radius: 8px;
    font-weight: 800 !important;
    font-size: 14px !important;
    transition: 0.3s !important;
    letter-spacing: 0.02em;
}
.ncta:hover {
    background: var(--g) !important;
    color: var(--n) !important;
}
.ncta::after {
    display: none !important;
}

/* ═══ HERO — Full diagonal split ═══ */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
        padding: 0px;
}
.hl {
    background: linear-gradient(155deg, var(--nd), var(--n) 60%, var(--nl));
    display: flex;
    align-items: center;
    padding: 140px 70px 100px;
    position: relative;
    overflow: hidden;
    /*clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);*/
    z-index: 2;
}
.hl::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(239, 172, 32, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 172, 32, 0.07) 1px, transparent 1px);
    background-size: 55px 55px;
    animation: gm 25s linear infinite;
}
@keyframes gm {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 55px 55px;
    }
}
.hl::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(239, 172, 32, 0.12), transparent 65%);
    pointer-events: none;
}
.hr {
    position: relative;
    overflow: hidden;
}
.hr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) saturate(1.1);
}
.hr-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(23, 45, 69, 0.35), transparent 60%);
}
.hflt {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.hf1 {
    bottom: 80px;
    right: 30px;
    animation: hfa 3s ease-in-out infinite alternate;
}
.hf2 {
    top: 60px;
    left: 50px;
    animation: hfa 3s ease-in-out 1.5s infinite alternate;
    background: var(--g);
}
@keyframes hfa {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}
.hfv {
    font-size: 17px;
    font-weight: 800;
    color: var(--n);
    line-height: 1.2;
}
.hfl {
    font-size: 12px;
    color: var(--mid);
    font-weight: 600;
}
.hfi {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.hfi-g {
    background: #e8f8f0;
}
.hfi-b {
    background: rgba(34, 61, 92, 0.1);
}
.hyr {
    position: absolute;
    right: 10px;
    bottom: -30px;
     font-family: "Poppins", sans-serif;
    font-size: 200px;
    font-weight: 900;
    color: rgba(239, 172, 32, 0.1);
    line-height: 1;
    pointer-events: none;
    z-index: 3;
}
.hbp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(239, 172, 32, 0.15);
    border: 1px solid rgba(239, 172, 32, 0.35);
    border-radius: 100px;
    padding: 7px 18px;
    margin-bottom: 26px;
    animation: fsu 0.7s ease both;
}
.bd {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--g);
    animation: pl 2s infinite;
}
@keyframes pl {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.7);
    }
}
.hbp span {
    font-size: 13px;
    font-weight: 700;
    color: var(--g);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.h1t {
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 900;
    color: #fff;
    line-height: 1.04;
    margin-bottom: 22px;
    animation: fsu 0.75s ease 0.1s both;
    letter-spacing: -0.02em;
}
.h1t em {
    font-style: italic;
    color: var(--g);
}
.h1t .ln {
    display: block;
}
.hsb {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    margin-bottom: 32px;
    animation: fsu 0.75s ease 0.2s both;
}
.hck {
    list-style: none;
    margin-bottom: 36px;
    animation: fsu 0.75s ease 0.3s both;
}
.hck li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}
.ci {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--n);
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}
.hb {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fsu 0.75s ease 0.4s both;
}
.bg {
    padding: 16px 36px;
    background: var(--g);
    color: var(--n);
    font-weight: 800;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 36px rgba(239, 172, 32, 0.45);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bg:hover {
    background: var(--gl);
    transform: translateY(-3px);
    color: var(--n);
}
.bw {
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bw:hover {
    border-color: var(--g);
    color: var(--g);
}
@keyframes fsu {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* perf card */
.pc {
    position: absolute;
        bottom: 200px;
    right: 24px;
    z-index: 10;
    background: rgba(23, 45, 69, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px 22px;
    width: 210px;
}
footer .lname {
    color: #fff;
}
.pc-lbl {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 5px;
}
.pc-big {
     font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.pc-big span {
    color: var(--g);
}
.pc-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}
.pcr {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.pcl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    width: 32px;
}
.pct {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.pcf {
    height: 100%;
    background: linear-gradient(90deg, var(--g), var(--gl));
    border-radius: 10px;
}
.pcv {
    font-size: 11px;
    color: var(--g);
    font-weight: 700;
    width: 28px;
    text-align: right;
}

/* ═══ TRUST TICKER ═══ */
#trust {
    background: var(--n);
    overflow: hidden;
    padding: 0;
    position: relative;
}
#trust::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, var(--n), transparent);
    z-index: 2;
    pointer-events: none;
}
#trust::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to left, var(--n), transparent);
    z-index: 2;
    pointer-events: none;
}
.tk {
    display: flex;
    gap: 0;
    width: max-content;
    animation: tk 40s linear infinite;
}
.tk:hover {
    animation-play-state: paused;
}
@keyframes tk {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.ti {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    flex-shrink: 0;
}
.tn {
     font-family: "Poppins", sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
}
.tl {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    letter-spacing: 0.04em;
}
.tdv {
    color: var(--g);
    font-size: 28px;
    opacity: 0.3;
    margin: 0 8px;
}

/* ═══ SECTION UTILS ═══ */
section {
    padding: 110px 0;
}
.slbl {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--g);
    background: rgba(239, 172, 32, 0.1);
    border: 1px solid rgba(239, 172, 32, 0.25);
    padding: 5px 15px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.slbl-d {
    background: rgba(239, 172, 32, 0.15);
    border-color: rgba(239, 172, 32, 0.3);
}
.sh {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 800;
    color: var(--n);
    line-height: 1.15;
    margin-bottom: 12px;
}
.sh em {
    font-style: italic;
    color: var(--g);
}
.sw {
    font-size: 18px;
    color: var(--mid);
    line-height: 1.75;
}
.shw {
    color: #fff;
}
.sww {
    color: rgba(255, 255, 255, 0.6);
}

/* ═══ SERVICES — Horizontal scroll ═══ */
#services {
    background: var(--cr);
    overflow: hidden;
}
.svc-hdr {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    margin-bottom: 60px;
}
.sscroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--g) rgba(34, 61, 92, 0.1);
}
.sscroll::-webkit-scrollbar {
    height: 4px;
}
.sscroll::-webkit-scrollbar-track {
    background: rgba(34, 61, 92, 0.08);
    border-radius: 10px;
}
.sscroll::-webkit-scrollbar-thumb {
    background: var(--g);
    border-radius: 10px;
}
.svc-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border-radius: 24px;
    padding: 36px 30px;
    border: 1px solid rgba(34, 61, 92, 0.07);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}
.svc-card-n {
    position: absolute;
    top: 0px;
    right: 20px;
     font-family: "Poppins", sans-serif;
    font-size: 100px;
    font-weight: 900;
    color: rgba(34, 61, 92, 0.04);
    line-height: 1;
    pointer-events: none;
}
.svc-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--g), var(--gd));
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}
.svc-card:hover {
    transform: translateY(-12px) rotate(-1.5deg);
    box-shadow: 0 32px 80px rgba(34, 61, 92, 0.15);
}
.svc-card:hover::before {
    transform: scaleX(1);
}
.sic {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(34, 61, 92, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}
.svc-card:hover .sic {
    background: var(--g);
    transform: rotate(-8deg) scale(1.1);
}
.stit {
    font-size: 22px;
    font-weight: 700;
    color: var(--n);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.sdesc {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.slnk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--n);
    text-decoration: none;
    transition: 0.25s;
    position: relative;
    z-index: 1;
}
.slnk:hover {
    gap: 12px;
    color: var(--gd);
}
.vab {
    padding: 14px 30px;
    background: var(--n);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.vab:hover {
    background: var(--g);
    color: var(--n);
}

/* ═══ HOW IT WORKS — Full-bleed split ═══ */
#hiw {
    padding: 0;
    overflow: hidden;
}
.hiw-g {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.hiw-l {
    position: relative;
    overflow: hidden;
}
.hiw-l img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    display: block;
}
.hiw-l-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(23, 45, 69, 0.7), rgba(23, 45, 69, 0.2));
}
.hiw-cap {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hs {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 18px 22px;
}
.hs-n {
     font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
}
.hs-l {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}
.hiw-r {
    background: var(--cr);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: 0.35s;
    position: relative;
    margin-bottom: 12px;
}
.step:hover {
    background: #fff;
    border-color: rgba(239, 172, 32, 0.35);
    box-shadow: 0 10px 40px rgba(34, 61, 92, 0.09);
    transform: translateX(8px);
}
.step::before {
    content: attr(data-n);
    position: absolute;
    right: 20px;
    top: 10px;
     font-family: "Poppins", sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(34, 61, 92, 0.04);
    line-height: 1;
}
.snum {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid rgba(34, 61, 92, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
     font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--n);
    transition: 0.35s;
    box-shadow: 0 4px 16px rgba(34, 61, 92, 0.08);
}
.step:hover .snum {
    background: var(--n);
    color: var(--g);
    border-color: var(--n);
}
.s-tit {
    font-size: 19px;
    font-weight: 700;
    color: var(--n);
    margin-bottom: 5px;
}
.s-dsc {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.65;
}

/* ═══ INDUSTRIES — Masonry image grid ═══ */
#industries {
    background: var(--nd);
    padding: 110px 0;
}
.ind-mas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 16px;
}
.ic {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
}
.ic:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.ic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}
.ic:hover img {
    transform: scale(1.1);
}
.ic-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23, 45, 69, 0.85), rgba(23, 45, 69, 0.2));
    transition: 0.3s;
}
.ic:hover .ic-ov {
    background: linear-gradient(to top, rgba(23, 45, 69, 0.75), rgba(239, 172, 32, 0.15) 100%);
}
.ic-c {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}
.ic-em {
    font-size: 28px;
    margin-bottom: 6px;
    display: block;
}
.ic-n {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.ic-ct {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}
.ic-lg {
    grid-column: span 2;
    grid-row: span 2;
}
.ic-w {
    grid-column: span 2;
}

/* ═══ WHY — Two panel ═══ */
#why {
    background: var(--cr);
    padding: 110px 0;
}
.why-lay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(34, 61, 92, 0.15);
}
.wl {
    background: var(--n);
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}
.wl::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(239, 172, 32, 0.12), transparent 70%);
    pointer-events: none;
}
.wl-img {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 28px;
    position: relative;
}
.wl-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}
.wl-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 61, 92, 0.4), transparent);
}
.ws-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}
.ws {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
}
.ws-n {
     font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
    margin-bottom: 4px;
}
.ws-l {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}
.wr {
    background: #fff;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wcard {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 24px;
    border-radius: 14px;
    border-bottom: 1px solid rgba(34, 61, 92, 0.07);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.wcard:last-child {
    border-bottom: none;
}
.wcard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--g);
    transform: scaleY(0);
    transition: 0.3s;
    transform-origin: bottom;
}
.wcard:hover {
    background: var(--cr);
    transform: translateX(6px);
}
.wcard:hover::before {
    transform: scaleY(1);
}
.wic {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--n), var(--nl));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(34, 61, 92, 0.25);
}
.wic i {
    color: #fff;
    font-size: 20px;
}
.w-tit {
    font-size: 18px;
    font-weight: 700;
    color: var(--n);
    margin-bottom: 5px;
}
.w-dsc {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.65;
}

/* ═══ CASES — Creative grid ═══ */
#cases {
    background: #fff;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}
.cases-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}
.cgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.cc {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(34, 61, 92, 0.07);
    transition: 0.4s;
}
.cc:hover {
    transform: translateY(-12px);
    box-shadow: 0 36px 90px rgba(34, 61, 92, 0.16);
}
.cc-big {
    grid-row: span 2;
}
.cim {
    position: relative;
    overflow: hidden;
}
.cc-big .cim img {
    height: 220px;
}
.cc:not(.cc-big) .cim img {
    height: 220px;
}
.cim img {
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
    display: block;
}
.cc:hover .cim img {
    transform: scale(1.08);
}
.cov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(23, 45, 69, 0.2), rgba(23, 45, 69, 0.78));
}
.ctg {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(239, 172, 32, 0.2);
    border: 1px solid rgba(239, 172, 32, 0.5);
    color: var(--g);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.cam {
    position: absolute;
    bottom: 16px;
    left: 16px;
     font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.ctm {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}
.cb {
    padding: 22px 26px;
    background: #fff;
}
.cd- {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 14px;
}
.cm {
    font-size: 14px;
    color: var(--lt);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}
.cdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g);
    flex-shrink: 0;
}

/* ═══ TESTIMONIALS — Dark bg image ═══ */
#testi {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
}
.tb-img {
    position: absolute;
    inset: 0;
}
.tb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.12) saturate(0.5);
}
.tb-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(23, 45, 69, 0.96), rgba(34, 61, 92, 0.9));
}
.tc {
    position: relative;
    z-index: 2;
}
.tcard {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 36px 32px;
    height: 100%;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}
.tcard:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: rgba(239, 172, 32, 0.3);
}
.tqm {
     font-family: "Poppins", sans-serif;
    font-size: 90px;
    color: var(--g);
    opacity: 0.25;
    line-height: 0.6;
    margin-bottom: 16px;
    display: block;
}
.tst {
    color: var(--g);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.ttx {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.78;
    font-style: italic;
    margin-bottom: 22px;
}
.tau {
    display: flex;
    align-items: center;
    gap: 14px;
}
.tav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--g);
}
.tnm {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.trl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* ═══ COMPARISON ═══ */
#comparison {
    background: var(--cr);
    padding: 110px 0;
}
.comp {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(34, 61, 92, 0.12);
}
.cth {
    padding: 24px 28px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cth.f {
    background: var(--cr);
    color: var(--mid);
}
.cth.b {
    background: var(--n);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}
.cth.c {
    background: var(--nd);
    color: var(--g);
    text-align: center;
}
.ctd {
    padding: 18px 28px;
    border-bottom: 1px solid rgba(34, 61, 92, 0.08);
    font-size: 17px;
    vertical-align: middle;
}
.ctd.f {
    background: #fff;
    font-weight: 600;
    color: var(--nd);
}
.ctd.b {
    background: rgba(255, 255, 255, 0.97);
    text-align: center;
    color: var(--mid);
}
.ctd.c {
    background: rgba(34, 61, 92, 0.03);
    text-align: center;
}
.tbad {
    color: #e05252;
    font-weight: 500;
}
.tgd {
    color: #2a9d5c;
    font-weight: 700;
}
.tick {
    color: #2a9d5c;
    font-size: 22px;
}
.cross {
    color: #e05252;
    font-size: 22px;
}

/* ═══ GLOBAL — Full-bleed ═══ */
#global {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 600px;
}
.gb {
    position: absolute;
    inset: 0;
}
.gb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.4) saturate(1.2);
}
.gb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(23, 45, 69, 0.96) 0%,
        rgba(23, 45, 69, 0.65) 55%,
        rgba(23, 45, 69, 0.25) 100%
    );
}
.gc {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: 0.25s;
    cursor: pointer;
    margin: 4px;
    align-items: flex-end;
}
.chip:hover {
    background: rgba(239, 172, 32, 0.15);
    border-color: rgba(239, 172, 32, 0.4);
    color: var(--g);
}
.chip .fl {
    font-size: 18px;
}
.grings {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
}
.gr {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(239, 172, 32, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: gs 20s linear infinite;
}
.gr:nth-child(1) {
    width: 400px;
    height: 400px;
}
.gr:nth-child(2) {
    width: 290px;
    height: 290px;
    animation-duration: 15s;
    animation-direction: reverse;
}
.gr:nth-child(3) {
    width: 180px;
    height: 180px;
    animation-duration: 10s;
}
@keyframes gs {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.gctr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--g), var(--gd));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 0 60px rgba(239, 172, 32, 0.5);
}
.gd {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 10px rgba(239, 172, 32, 0.8);
}
.gd1 {
    top: 10%;
    left: 50%;
}
.gd2 {
    top: 50%;
    right: 8%;
}
.gd3 {
    bottom: 15%;
    left: 30%;
}
.gd4 {
    top: 30%;
    left: 15%;
}
.gd5 {
    bottom: 30%;
    right: 20%;
}

/* ═══ RESOURCES — Magazine ═══ */
#resources {
    background: var(--cr);
    padding: 110px 0;
}
.rmag {
    display: grid;
       grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.rcard {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(34, 61, 92, 0.07);
    transition: 0.35s;
}
.rcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(34, 61, 92, 0.12);
}
.rcard-big {
    grid-row: span 2;
}
.rim {
    overflow: hidden;
    position: relative;
}
/*.rcard-big .rim {
    height: 480px;
}*/
.rcard:not(.rcard-big) .rim {
    height: 180px;
}
.rim img {
    width: 100%;
   height: 180px;
    object-fit: cover;
    transition: 0.5s;
    display: block;
}
.rcard:hover .rim img {
    transform: scale(1.07);
}
.rtg {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--g);
    color: var(--n);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    z-index: 1;
}
.rb {
    padding: 24px 26px;
}
.rt {
    font-size: 21px;
    font-weight: 700;
    color: var(--n);
    margin-bottom: 8px;
    line-height: 1.3;
}
.rd {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.65;
}
.rm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(34, 61, 92, 0.07);
    font-size: 13px;
    color: var(--lt);
}
.rl {
    color: var(--n);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.25s;
}
.rl:hover {
    color: var(--gd);
    gap: 10px;
}

/* ═══ CTA — Diagonal ═══ */
#cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}
.cta-bg-l {
    position: absolute;
    inset: 0;
    background: var(--nd);
}
.cta-bg-r {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    bottom: 0;
    background: var(--g);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.cta-over {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1568992688065-536aad8a12f6?w=1400&q=80") center/cover;
    opacity: 0.06;
    mix-blend-mode: overlay;
}
.cc2 {
    position: relative;
    z-index: 2;
}
.cth2 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}
.cth2 em {
    font-style: italic;
    color: var(--g);
}
.csub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.78;
    margin-bottom: 36px;
}
.btn-cta {
    padding: 18px 44px;
    background: var(--g);
    color: var(--n);
    font-weight: 800;
    font-size: 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 12px 44px rgba(239, 172, 32, 0.45);
    display: inline-block;
	max-width: 350px;
    text-align: center;
}
.btn-cta:hover {
    background: var(--gl);
    transform: translateY(-3px);
    color: var(--n);
}
.btn-cta-o {
    padding: 16px 44px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.btn-cta-o:hover {
    border-color: var(--g);
    color: var(--g);
}
.cdc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cdc-c {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 20px 24px;
    transition: 0.3s;
}
.cdc-c:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}
.cdc-ic {
    font-size: 28px;
    margin-bottom: 8px;
}
.cdc-v {
     font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.cdc-l {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 3px;
}

/* ═══ CONTACT ═══ */
#contact {
    padding: 110px 0;
    background: #fff;
}
.contact-lay {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}
.ci-t {
    font-size: 42px;
    font-weight: 800;
    color: var(--n);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.ci-t em {
    font-style: italic;
    color: var(--g);
}
.cdet2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--cr);
    border-radius: 14px;
    border-left: 4px solid var(--g);
    margin-bottom: 14px;
    transition: 0.25s;
}
.cdet2:hover {
    background: #fff;
    box-shadow: 0 8px 28px rgba(34, 61, 92, 0.09);
    transform: translateX(4px);
}
.cdic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--n);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cdic i {
    color: var(--g);
    font-size: 20px;
}
.cdl {
    font-size: 12px;
    color: var(--lt);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cdv {
    font-size: 17px;
    color: var(--n);
    font-weight: 700;
}
.cis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.cis img {
    border-radius: 12px;
    height: 120px;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}
.cis img:hover {
    transform: scale(1.03);
}
.fcard {
    background: var(--cr);
    border-radius: 24px;
    padding: 50px 46px;
    box-shadow: 0 28px 90px rgba(34, 61, 92, 0.1);
}
.flbl {
    font-size: 13px;
    font-weight: 700;
    color: var(--n);
    margin-bottom: 7px;
    display: block;
    letter-spacing: 0.02em;
}
.finp,
.fsel {
    border: 2px solid rgba(34, 61, 92, 0.09);
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--nd);
    padding: 13px 16px;
    transition: 0.25s;
    background: #fff;
    width: 100%;
}
.finp:focus,
.fsel:focus {
    border-color: var(--n);
    box-shadow: 0 0 0 4px rgba(34, 61, 92, 0.07);
    outline: none;
}
textarea.finp {
    min-height: 110px;
    resize: vertical;
}
.fsub {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--n), var(--nl));
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: none;
    transition: 0.3s;
}
.fsub:hover {
    background: linear-gradient(135deg, var(--g), var(--gd));
    color: var(--n);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239, 172, 32, 0.4);
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--nd);
    border-top: 3px solid var(--g);
    padding: 70px 0 0;
}
.ftx {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.78;
}
.fttl {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 18px;
    display: block;
}
.fls {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fls li {
    margin-bottom: 9px;
}
.fls a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.fls a::before {
    content: "›";
    color: var(--g);
    font-size: 18px;
}
.fls a:hover {
    color: #fff;
}
.fci {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 12px;
}
.fci i {
    color: var(--g);
    font-size: 15px;
    margin-top: 4px;
}
.fci span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}
.soc {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: 0.25s;
}
.soc:hover {
    background: var(--g);
    border-color: var(--g);
    color: var(--n);
    transform: translateY(-3px);
}
.fbtm {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fcp {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
}
.fleg a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: 0.2s;
    margin-left: 20px;
}
.fleg a:hover {
    color: var(--g);
}

/* ═══ SCROLL REVEAL ═══ */
.rv {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.rv.s {
    opacity: 1;
    transform: translateY(0);
}
.rvl {
    opacity: 0;
    transform: translateX(-36px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.rvl.s {
    opacity: 1;
    transform: translateX(0);
}
.rvr {
    opacity: 0;
    transform: translateX(36px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.rvr.s {
    opacity: 1;
    transform: translateX(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1199px) {
    #hero {
        grid-template-columns: 1fr;
    }
    .hl {
        clip-path: none;
        padding: 130px 40px 80px;
        min-height: 80vh;
    }
    .hr {
        display: none;
    }
    .hiw-g {
        grid-template-columns: 1fr;
    }
    .hiw-l img {
        min-height: 360px;
    }
    .why-lay {
        grid-template-columns: 1fr;
    }
    .cgrid {
        grid-template-columns: 1fr 1fr;
    }
    .cc-big {
        grid-row: span 1;
    }
    .cc-big .cim img {
        height: 220px;
    }
    .ind-mas {
        grid-template-columns: repeat(2, 1fr);
    }
    .ic-lg {
        grid-column: span 1;
        grid-row: span 1;
    }
    .ic-w {
        grid-column: span 1;
    }
    .rmag {
        grid-template-columns: 1fr 1fr;
    }
    .rcard-big {
        grid-row: span 1;
    }
    .rcard-big .rim {
        height: 180px;
    }
    .contact-lay {
        grid-template-columns: 1fr;
    }
    .cases-intro {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .cgrid {
        grid-template-columns: 1fr;
    }
    .rmag {
        grid-template-columns: 1fr;
    }
    .fcard {
        padding: 28px 20px;
    }
    .hiw-r {
        padding: 40px 24px;
    }
    .wl,
    .wr {
        padding: 40px 28px;
    }
    .cta-bg-r {
        display: none;
    }
    .svc-hdr {
        grid-template-columns: 1fr;
    }
    .cis {
        grid-template-columns: 1fr;
    }
    .ind-mas {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .h1t .ln {
   
    font-size: 47px;
    line-height: 62px;
}
    .hl {
       
        display:block;
    }
    .h1t .ln {
    display: block !important;
}
.sscroll {
   
    flex-direction: column;
}
.svc-card {
    min-width: 100%;
}
.gc.container-xl {
    padding: 100px 20px;
}
.rv {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
}

.comp {
    display: inline-grid !important; /* IMPORTANT */
    grid-template-columns: 220px 220px 260px !important;
    min-width: max-content !important; /* IMPORTANT */
}

.cth, .ctd {
    padding: 14px;
    white-space: nowrap;
}
}
.rcard span {
    font-size: 16px;
}
/* ─── HCM EXTRAS ─── */
.wic {
    font-size: 26px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rcb { padding: 24px 26px; }
.rh { font-size: 21px; font-weight: 700; color: var(--n); margin-bottom: 8px; line-height: 1.3; }
.rp { font-size: 16px; color: var(--mid); line-height: 1.65; }
.rft { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(34,61,92,0.07); font-size: 13px; color: var(--lt); }
.hck li
{
    color: var(--mid) !important;
}
section#hero .hl ul.hck li {
  color: rgba(255, 255, 255, 0.72) !important;
}
.ncta {
   
    display: none;
}
nav#nav div#nm ul.navbar-nav.mx-auto {
    margin-right: 0px !important;
}

@media(max-width:768px)
{
	.g-5, .gx-5 {
    --bs-gutter-x: 0rem !important;
}
}
.custom-pagination .page-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--cr);
  transition: all 0.3s ease;
}

.custom-pagination .page-link {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
}

/* Active */
.custom-pagination .active {
  background: var(--n);
  color: #fff;
  font-weight: 700;
}

/* Hover */
.custom-pagination .page-item:hover {
  background: var(--n);
  transform: translateY(-3px);
}

.custom-pagination .page-item:hover .page-link {
  color: #fff;
}