:root{
    --uw-purple:#7C3AED;
    --uw-orange:#FF6B4A;
    --uw-green:#10B981;
    --uw-yellow:#F2B544;
    --uw-blue:#b9820c;
    --uw-teal:#19B6C9;
    --uw-navy:#0B2545;
    --uw-text-muted:#5C677A;
    --uw-border:#E4E8EE;

    /* muted, complementary card palette (blues/navy/slate family) */
    --card-1:#34507E;
    --card-1-2:#22385C;
    --card-2:#3E6BA8;
    --card-2-2:#2A4A7C;
    --card-3:#C9A227;
    --card-3-2:#8E6D10;
    --card-4:#5E7A9E;
    --card-4-2:#445E80;
    --card-5:#4A6FA5;
    --card-5-2:#33507D;
    --card-6:#3E8E9E;
    --card-6-2:#2A6473;
}

/* ===== 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;
}

/* HERO SECTION */
.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;
}

/* Button styles for About Us hero compatibility */
.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;
    }
}

/* ============================================ */
/* CORE FEATURES - VERTICAL STAGGERED CARD PATTERN */
/* ============================================ */
.core-features-section{
    padding: 50px 0 50px;
    background:#fff;
}

.core-features-head {
    text-align:center;
    max-width: 880px; 
    margin: 0 auto 30px;
}

.core-features-head h2 {
    font-size: clamp(22px, 3.2vw, 30px); 
    line-height: 1.3;
}
.core-features-head h2 .hl{ color:#b9820c; }

/* Why Choose Us – force golden separator text */
.section-full .wt-small-separator div,
.section-full .wt-small-separator {
    color: #b9820c !important;
}

.core-features-row{
    display: grid;
    /* Forces 4 cards into a single row */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px !important; 
    padding: 0 0 10px !important;
}

.core-feature-card {
    border-radius: 20px;
    padding: 36px 32px;
    cursor: pointer !important;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    text-decoration: none;
    min-height: 348px;
    height: 348px;
    color: #fff;
    box-shadow: 0 20px 35px -12px rgba(20,30,60,.25);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    height: 100%; 
   
}

.core-feature-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 24px 45px -15px rgba(20,30,60,.32);
}

.core-feature-card h3{
    font-family:'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color:#fff;
    margin-bottom: 10px;
}

.core-feature-card > p{
    font-size: 12.5px;
    line-height: 1.5;
    color: rgba(255,255,255,.92);
    margin-bottom: 24px; /* Pushed the list down slightly */
}

.core-feature-list{
    list-style:none;
    padding:0;
    margin:0;
   
}

.core-feature-list li{
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display:flex;
    align-items:flex-start;
    gap: 6px;
    margin-bottom: 10px;
    line-height:1.35;
}

.core-feature-list li i{
    font-size: 11px;
    margin-top: 2px;
    flex-shrink:0;
    opacity:.9;
}

/* Gradients for the 4 remaining cards */
.core-feature-card.card-purple{ background: linear-gradient(160deg, var(--card-1) 0%, var(--card-1-2) 100%); }
.core-feature-card.card-green{ background: #b9820c; }
.core-feature-card.card-yellow{ background: linear-gradient(160deg, var(--card-4) 0%, var(--card-4-2) 100%); }
.core-feature-card.card-blue{ background: linear-gradient(160deg, var(--card-5) 0%, var(--card-5-2) 100%); }


/* --- Responsiveness --- */
@media (max-width: 1300px){
    /* Breaks down to 2x2 grid on standard laptops to prevent text squishing */
    .core-features-row{ grid-template-columns: repeat(2, 1fr); gap:18px !important; }
    .core-feature-card{ padding:36px 32px; min-height: 348px !important; height: 348px; }
    .core-feature-card h3{ font-size:18px; }
    .core-feature-card > p{ font-size:14px; }
    .core-feature-list li{ font-size:13px; }
}

@media (max-width: 760px){
    /* Stacks completely vertically on mobile */
    .core-features-row{ grid-template-columns: 1fr; }
    .core-feature-card{ padding:36px 32px; min-height: 348px !important; height: 348px; }
}

/* --- Infrastructure Section Specifics --- */
.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;
}

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

.hr-why-title .brand-nowrap {
    display: block;
    white-space: nowrap;
}

.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;
}

.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%);
}

.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;
}

.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;
}

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

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