:root{
    --uw-blue:#b9820c;
    --uw-navy:#0B2545;
    --uw-text-muted:#5C677A;
    --uw-border:#E4E8EE;
    --card-1:#34507E;
    --card-1-2:#22385C;
    --card-2:#3E6BA8;
    --card-2-2:#2A4A7C;
    --card-3:#b9820c;
    --card-3-2:#d4870e;
    --card-4:#5E7A9E;
    --card-4-2:#445E80;
    --card-5:#4A6FA5;
    --card-5-2:#33507D;
    --card-6:#3E8E9E;
    --card-6-2:#2A6473;
}

/* ============================================ */
/* HERO */
/* ============================================ */
.about-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #fff 0%, #EAF1FF 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,168,37,0.08) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

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

.about-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero .eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--uw-blue);
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--uw-navy);
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-hero p {
    font-size: 17px;
    color: var(--uw-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-image-box {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #F7F7F7 0%, #E7D8A5 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(249,168,37,0.15);
    border: 1px solid rgba(249,168,37,0.1);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    background: #b9820c;
    color: rgba(0,0,0,0) !important;
    text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #171d28;
    color: rgba(0,0,0,0) !important;
    text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
}

.btn-outline {
    background: transparent;
    color: var(--uw-navy);
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--uw-border);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--uw-blue);
    background: rgba(249,168,37,0.05);
    color: var(--uw-navy);
}

@media (max-width: 1024px) {
    .about-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 640px) {
    .about-hero h1 {
        font-size: 32px;
    }
    .hero-image-box {
        height: 300px;
    }
    .about-cta h2 {
        font-size: 28px;
    }
}

/* ============================================ */
/* CONTRACTOR CATEGORIES - 5 COLUMNS LAYOUT */
/* ============================================ */
.categories-section{
    padding: 50px 0 90px;
    background:#fff;
    position: relative;
    overflow: visible; 
}


.categories-head{
    text-align:center;
    max-width:760px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.categories-head .wt-small-separator{ 
    justify-content:center;
}

.categories-head h2{
    font-size:32px;
    font-weight:700;
    color:var(--uw-navy);
    margin-top:12px;
    line-height:1.3;
}

.categories-head h2 .hl{ 
    color:#b9820c;
}

/* 5 columns grid */
.category-grid{
    display:grid;
    grid-template-columns: repeat(5, minmax(0,1fr));
    gap:18px;
    position: relative;
    z-index: 2;
}

.category-card{
    background:#fff;
    border:1.5px solid var(--uw-border);
    border-radius:16px;
    padding:32px 20px;
    text-align:center;
    cursor:pointer;
    transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

/* Default state with subtle shadow */
.category-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Hover state - blue border highlight */
.category-card:hover{
    border-color: #2F6FED;
    box-shadow: 0 12px 32px rgba(47, 111, 237, 0.15);
    transform: translateY(-4px);
    background: linear-gradient(135deg, #fff 0%, #F9FBFF 100%);
}

.category-icon{
    width:52px;
    height:52px;
    background: linear-gradient(135deg, #EAF1FF 0%, #D5E3FF 100%);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 16px;
    transition: all .3s ease;
}

.category-icon svg{ 
    width:26px;
    height:26px;
    stroke:#2F6FED;
    stroke-width: 1.5;
}

.category-card:hover .category-icon {
    transform: scale(1.12) rotate(2deg);
    background: linear-gradient(135deg, #D5E3FF 0%, #B8CEFF 100%);
}

.category-card h4{ 
    font-size:14px;
    font-weight:700;
    color:var(--uw-navy);
    margin:0;
    letter-spacing: -0.4px;
    line-height: 1.4;
}



@media (max-width: 1200px){
    .category-grid{ 
        grid-template-columns: repeat(4, minmax(0,1fr));
        gap: 16px;
    }
}

@media (max-width: 900px){
    .category-grid{ 
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 14px;
    }
}

@media (max-width: 640px){
    .category-grid{ 
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 12px;
    }
    .categories-section::before {
        width: 200px;
        height: 300px;
        left: -20%;
    }
    .categories-head h2 {
        font-size: 24px;
    }
}
/* ============================================ */
/* UNIQUE FEATURES */
/* ============================================ */
.unique-features-section{
    padding: 90px 0;
    background: #1C1C1C;
    position: relative;
    overflow: hidden;
}
.unique-features-section::before{
    content:'';
    position:absolute; top:-30%; right:-10%;
    width:400px; height:400px;
    background: rgba(47,111,237,0.06);
    border-radius:50%;
}

.unique-features-section::after{
    content:'';
    position:absolute;
    left:-8%;
    bottom:-32%;
    width:420px;
    height:420px;
    background: rgba(47,111,237,0.04);
    border-radius:50%;
}
.unique-features-section .wrap-relative{ position:relative; z-index:1; }
.unique-features-head{
    max-width:640px;
    margin-bottom:40px;
}
.unique-features-head .wt-small-separator div{ color:#b9820c; }
.unique-features-head h2{
    color:#fff;
    font-size:30px;
    font-weight:600;
    margin-top:10px;
    line-height:1.4;
}
.unique-features-head p{
    color:#D0D0D0;
    font-size:15px;
    margin-top:10px;
}

.uf-swiper{ overflow:hidden; padding: 6px 6px 46px; }
.uf-swiper .swiper-wrapper{
    align-items: stretch;
}

.uf-swiper .swiper-slide{
    height: auto;
    display: flex;
}

.uf-card{
    background: #2A2A2A;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    height:100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: .25s;
    position: relative;
    overflow: hidden;
}

.uf-card::before{
    content: none;
}
.uf-card:hover{
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0,0,0,.32);
}
.uf-icon{
    width:46px; height:46px;
    background: rgba(47,111,237,0.28);
    border: 1px solid rgba(47,111,237,0.5);
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px;
}
.uf-icon svg{ width:22px; height:22px; stroke:#B8CEFF; }
.uf-card h4{ color:#fff; font-size:17px; margin-bottom:8px; font-weight:600; }
.uf-card p{ color:#E5E5E5; font-size:13.5px; line-height:1.7; margin:0; }

.uf-swiper .swiper-pagination{ bottom:0; }
.uf-swiper .swiper-pagination-bullet{ background:#fff; opacity:.28; }
.uf-swiper .swiper-pagination-bullet-active{ opacity:1; background:#2F6FED; }

.uf-nav{
    display:flex; gap:10px; margin-top: -10px; margin-bottom: 24px;
}
.uf-nav-btn{
    width:42px; height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    display:flex; align-items:center; justify-content:center;
    color:#fff; cursor:pointer; transition:.2s;
    background:transparent;
}
.uf-nav-btn:hover{ background:#2F6FED; border-color:#2F6FED; color:#fff; }

/* ============================================ */
/* TRUSTED COMPANIES */
/* ============================================ */
.companies-strip-section{
    padding: 70px 0;
    background: #F7F8FA;
}
.companies-strip-head{
    text-align:center;
    max-width:640px;
    margin: 0 auto 40px;
}
.companies-strip-head .wt-small-separator{ justify-content:center; }
.companies-strip-head h2{
    font-size:26px;
    font-weight:600;
    color:var(--uw-navy);
    margin-top:10px;
}
.companies-strip .client-logo-media{
    background:transparent;
    border:none;
    border-radius:0;
    padding:12px 16px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:72px;
    transition:.2s;
}
.companies-strip .client-logo-media:hover{
    border:none;
    box-shadow:none;
}
.companies-strip .client-logo-media img{ max-height:42px; width:auto; filter:none; opacity:1; transition:.2s; }
.companies-strip .client-logo-media:hover img{ filter:none; opacity:1; }
.companies-strip .item{ padding: 0 10px; }

/* ============================================ */
/* STATS SECTION — INTERACTIVE RECT CARDS */
/* ============================================ */
.stats-rect-section{
    padding: 80px 0 90px;
    background: #fff;
}
.stats-rect-head{
    text-align:center;
    max-width:600px;
    margin:0 auto 52px;
}
.stats-rect-head .wt-small-separator{ justify-content:center; }
.stats-rect-head h2{
    font-size:28px;
    font-weight:600;
    color:var(--uw-navy);
    margin-top:10px;
    line-height:1.4;
}

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

.stat-rect-card{
    border-radius:20px;
    padding:36px 32px;
    cursor:pointer !important;
    position:relative;
    overflow:hidden;
    transition:transform .25s, box-shadow .25s;
    border:1px solid transparent;
    text-decoration:none;
}
.stat-rect-card::after{
    content:'';
    position:absolute;
    top:-60px; right:-60px;
    width:160px; height:160px;
    border-radius:50%;
    background:rgba(255,255,255,.07);
    transition:.3s;
}
.stat-rect-card:hover{ transform:translateY(-6px); box-shadow:0 20px 48px rgba(0,0,0,.18); }
.stat-rect-card:hover::after{ transform:scale(1.3); }

/* Card 1 — dark navy */
.src-1{
    background: linear-gradient(140deg, #0D1B3E 0%, #132244 100%);
    border-color:rgba(255,255,255,.18);
}
/* Card 2 — blue */
.src-2{
    background: linear-gradient(140deg, #2F6FED 0%, #1E4FB8 100%);
    border-color:rgba(255,255,255,.18);
}
/* Card 3 — golden */
.src-3{
    background: #b9820c;
    border-color:rgba(255,255,255,.18);
}

.src-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.07em;
    text-transform:uppercase;
    padding:5px 12px;
    border-radius:20px;
    background:rgba(255,255,255,.12);
    color:rgba(255,255,255,.75);
    margin-bottom:22px;
    align-self:flex-start;
    width:fit-content;
}
.src-tag svg{ width:13px; height:13px; stroke:rgba(255,255,255,.75); }

.src-number{
    font-size:52px;
    font-weight:700;
    color:#fff;
    line-height:1;
    margin-bottom:10px;
    font-family:'Sora',sans-serif;
    letter-spacing:-.02em;
}
.src-number span.src-suffix{
    font-size:32px;
    font-weight:700;
}
.src-label{
    font-size:14px;
    color:rgba(255,255,255,.78);
    font-weight:400;
    line-height:1.5;
}

/* Accessibility hardening: prevent global overrides from reducing contrast */
.stats-rect-section .stat-rect-card {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.stats-rect-section .src-tag {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.14) !important;
}

.stats-rect-section .src-tag svg {
    stroke: rgba(255, 255, 255, 0.9) !important;
}

.stats-rect-section .src-number,
.stats-rect-section .src-number span.src-suffix {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.38);
}

.stats-rect-section .src-label {
    color: rgba(255,255,255,.65) !important;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
}

.stats-rect-section .src-1,
.stats-rect-section .src-2,
.stats-rect-section .src-3 {
    border-color: rgba(255,255,255,0.18) !important;
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.2);
}

.stats-rect-section .src-1 {
    background: linear-gradient(140deg, #0D1B3E 0%, #132244 100%) !important;
}

.stats-rect-section .src-2 {
    background: linear-gradient(140deg, #2F6FED 0%, #1E4FB8 100%) !important;
}

.stats-rect-section .src-3 {
    background: #b9820c !important;
}

.src-arrow{
    position:absolute;
    top:28px; right:28px;
    width:34px; height:34px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex; align-items:center; justify-content:center;
    transition:.25s;
}
.src-arrow svg{ width:15px; height:15px; stroke:#fff; }
.stat-rect-card:hover .src-arrow{
    background:rgba(255,255,255,.22);
    transform:translate(2px,-2px);
}

/* sparkline mini chart inside card */
.src-sparkline{
    margin-top:24px;
    height:48px;
    opacity:.5;
}
.src-sparkline svg{ width:100%; height:100%; }

/* Active / click pulse */
.stat-rect-card:active{
    transform:scale(0.98) translateY(-2px);
}
/* ===== CTA BANNER (From About Us) ===== */
.about-cta {
    padding: 100px 0;
    background: var(--uw-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(185,130,12,0.10) 0%, transparent 70%);
}

.about-cta .inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.about-cta p {
    color: #D0D0D0;
    font-size: 16px;
    margin-bottom: 32px;
}

.about-cta .btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-cta .btn-outline {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.about-cta .btn-outline:hover,
.about-cta .btn-outline:focus,
.about-cta .btn-outline:active {
    background: rgba(249,168,37,0.10);
    border-color: #b9820c !important;
    color: #fff !important;
}

@media (max-width: 640px) {
    .about-cta h2 {
        font-size: 28px;
    }
}
/* tooltip pop-up */
.src-tooltip{
    position:absolute;
    bottom:20px; right:20px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(4px);
    border-radius:10px;
    padding:8px 14px;
    font-size:12px;
    color:#fff;
    opacity:0;
    transform:translateY(6px);
    transition:.25s;
    pointer-events:none;
}
.stat-rect-card:hover .src-tooltip{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:860px){
    .stats-rect-grid{ grid-template-columns:1fr; }
    .src-number{ font-size:44px; }
}
/* ================================== */
/* INFRASTRUCTURE MOCKUP SECTION      */
/* ================================== */
.uw-infrastructure-section {
    background-color: #fff;
    overflow: hidden;
}

.uw-infra-content {
    padding-left: 50px; 
}

.uw-eyebrow-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b9820c; 
    margin-bottom: 15px;
}

.uw-infra-content .wt-title {
    font-family: "Rubik", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #171d28;
    line-height: 1.25;
    margin-bottom: 25px;
}

.uw-infra-content p {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    color: #3c3c3c;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- Pure CSS Mockup --- */
.uw-infra-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Fading graph paper background */
.uw-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(249, 168, 37, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(249, 168, 37, 0.04) 1px, transparent 1px);
    z-index: 0;
    border-radius: 20px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Floating UI Card */
.uw-ui-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.08);
    border: 1px solid #edf2f9;
    z-index: 2;
    animation: floatUpDown 6s ease-in-out infinite;
}

.uw-ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f4f9;
}

.uw-ui-title {
    font-size: 16px;
    font-weight: 600;
    color: #171d28;
}

.uw-ui-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.uw-ui-row {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin-bottom: 12px;
    color: #555;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 991px) {
    .uw-infra-content {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    .uw-ui-card { width: 90% !important; }
}
