/* =========================================
   CSS Reset & Variables (iConquer IT Services)
   ========================================= */
   @import url('https://fonts.googleapis.com/css2?family=Genos:wght@300;400;500;600&display=swap');
   @import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --color-primary: #001a33;  /* Dark Blue from image gradient */
    --color-accent: #FACA19;    /* Golden/Yellow for logo details */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #f2f2f2;
    --color-sticky-nav: #073D84; 
    --color-text-light: var(--color-white);
    --color-text-dark: var(--color-black);
    
    /* Background Gradient (from image) */
    --header-gradient: linear-gradient(89.81deg, #FFFFFF 15.45%, #9BAABE 25.2%, #0051BB 37.13%, #012859 53.6%, #031A38 78.14%, #011227 96.35%);

    /* Other Variables */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
    width: 94%;
    margin: 0 auto;
}

/* =========================================
   Header & Navigation
   ========================================= */
#main-header {
    width: 100%;
    height: var(--header-height);
    background: var(--header-gradient);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
    height: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a img {
    height: auto; 
    width: 160px;
    
}

/* Navigation Links (Desktop/Tablet) */
.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-menu ul li a {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1 !important;
    text-shadow: 0px 3px 2.4px rgba(0, 0, 0, 0.62);
}

.nav-menu ul li a:hover {
    color: var(--color-accent);
}

/* Desktop Burger Menu Button */
.burger-menu-btn {
    background: var(--color-white);
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.burger-menu-btn svg rect {
    fill: var(--color-primary);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, fill 0.3s ease;
    transform-box: fill-box;
    transform-origin: center;
}

/* Burger to 'X' Animation (Desktop & Mobile) */
.burger-menu-btn.open svg rect:nth-child(1),
.mobile-burger-btn.open svg rect:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.burger-menu-btn.open svg rect:nth-child(2),
.mobile-burger-btn.open svg rect:nth-child(2) {
    opacity: 0;
}
.burger-menu-btn.open svg rect:nth-child(3),
.mobile-burger-btn.open svg rect:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================================
   Sticky Header & Mega Menu Active State
   ========================================= */
#main-header.sticky, 
#main-header.mega-menu-active {
    background: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#main-header.sticky .nav-menu ul li a,
#main-header.mega-menu-active .nav-menu ul li a {
    color: var(--color-sticky-nav);
    text-shadow: none;
}

#main-header.sticky .nav-menu ul li a:hover,
#main-header.mega-menu-active .nav-menu ul li a:hover {
    color: var(--color-accent);
}

#main-header.sticky .burger-menu-btn,
#main-header.mega-menu-active .burger-menu-btn {
    background-color: #f2f2f2; /* Light gray box on white header */
}

#main-header.sticky .burger-menu-btn svg rect,
#main-header.mega-menu-active .burger-menu-btn svg rect {
    fill: var(--color-sticky-nav);
}

/* =========================================
   Mega Menu Container 
   ========================================= */
#mega-menu-container {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-top: 1px solid #f0f0f0;
}
/* 1. Add a smooth transition to your icon */
.service-icon {
    transition: filter 0.01s ease;
}

/* Changed to .service-item to match your HTML! */
.service-item:hover .service-icon {
    filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(2462%) hue-rotate(196deg) brightness(94%) contrast(97%);
}
#mega-menu-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.trustpilot_icon {
    width: 110px;
    height: auto;
}

/* Mega Menu Interior Styling */
.mega-menu-wrapper {
    max-width: 95%;
    margin: 0 auto;
    padding: 40px 0px 60px 0px;
}

.mega-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mega-menu-title {
    color: var(--color-sticky-nav);
    font-size: 35px;
    font-weight: 400;
    font-family: 'Genos', sans-serif;
}

.mega-menu-services {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* SVGs Inherit 'color' property */
.service-item .icon-container {
    color: var(--color-accent); /* Default Yellow */
    transition: color 0.3s ease;
}

.service-item .icon-container svg,
.service-item .icon-container img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.service-item h3 {
    color: var(--color-sticky-nav);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: 'Genos', sans-serif;
}



/* Hover Effect: Turns SVGs to Blue */
.service-item:hover .icon-container {
    color: var(--color-sticky-nav);
}
.service-item:hover h3 {
    color: var(--color-accent);
}

/* =========================================
   Mobile Menu Navigation
   ========================================= */
.mobile-burger-btn {
    display: none; 
    background: #f2f2f2; 
    border: none;
    border-radius: 12px; 
    padding: 12px 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-burger-btn {
    display: none; 
    background: #f2f2f2; 
    border: none;
    border-radius: 12px; 
    padding: 12px 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.mobile-burger-btn svg rect {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform-box: fill-box;
    transform-origin: center;
}

/* =========================================
   Mobile Menu Interior Styles (Applies to ALL mobile sizes)
   ========================================= */

/* Force Mobile Menu to stay off-screen and format correctly */
.mobile-nav {
    position: fixed !important;
    top: var(--header-height);
    left: 100%;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    background: var(--color-white);
    z-index: 998;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 20px 100px 20px !important; /* Heavy bottom padding to clear floating button */
    overflow-y: auto !important; 
}

.mobile-nav.open {
    left: 0 !important;
}

.mobile-nav ul {
    margin-top: 10px; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
    text-align: center;
}

/* Menu Font Updates (Geist Font + Brand Blue) */
.mobile-nav ul li a {
    font-family: 'Geist', sans-serif !important;
    color: var(--color-sticky-nav) !important; 
    font-weight: 500;
    font-size: 1.6rem;
    display: block;
}

/* Bottom Contact & Trustpilot Section */
.mobile-nav-bottom {
    /* FIX: Changed from 'auto' to '40px' so it pulls upwards, right under the menu links! */
    margin-top: 40px !important; 
    margin-bottom: 10px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; 
    padding-top: 20px; 
    border-top: 1px solid #EBEBEB;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.mob-nav-phone {
    font-family: 'Geist', sans-serif;
    color: var(--color-sticky-nav);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
}

.mob-nav-trustpilot {
    width: 130px; 
    height: auto;
    object-fit: contain;
}



.main_container {
    margin-top: 80px;
}



/* =========================================
   Hero Section Styles
   ========================================= */

.hero-section {
    
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    min-height: 70vh; /* Adjust based on preference */
    background-color: var(--color-black);
    overflow: hidden;
}

/* Left Column - Text & Curve */
.first_left_column_hero {
    position: relative;
    width: 68%; /* Covers slightly more than half to overlap the image */
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    z-index: 2; /* Keeps text and curve above the image */
    padding: 5% 22% 5% 3%;
}

.hero-text-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
    color: var(--color-white);
}

.hero-text-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text-content p {
    font-size: 1.1rem;
    font-family: 'Geist', sans-serif;
    margin-bottom: 35px;
    font-width: 300;
    text-align: center;
    line-height: 1.6;
    padding: 0% 10% 0% 10%;
}

/* Primary Button Styling */
.btn-primary {
    display: inline-block;
    margin: 0% 30% 0% 30%;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 12px 20px;
    font-size: 1.1rem;
    align-items: center;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 202, 25, 0.4);
}

/* SVG Background Logic */
.hero-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mobile-only {
    display: none;
}

/* Right Column - Image */
.right_second_column_hero {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%; /* Tucked slightly under the left column curve */
    height: 100%;
    z-index: 1;
}

.right_second_column_hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}












/* =========================================
   Strategic Expertise Section
   ========================================= */

.expertise-section {
    padding: 70px 0;
    text-align: center;
}

/* Header Text Styles */
.expertise-header {
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.expertise-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    line-height: 2rem;
    color: var(--color-sticky-nav); /* Dark blue */
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1;
}

.expertise-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: #4a5568; /* Readable dark grey */
    line-height: 1.6;
}

/* CSS Grid for exactly 5 columns */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: left;
}

/* Default Card Styling (Light Gray) */
.expertise-card {
    background-color: #ebebeb;
    border-radius: 12px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    min-height: 380px; 
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Icon Filter Tricks */
.card-icon {
    width: 45px;
    height: auto;
    margin-bottom: 30px;
    /* Forces standard SVGs to be your exact dark blue */
    filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(2462%) hue-rotate(196deg) brightness(94%) contrast(97%);
}

/* Typography inside cards */
.expertise-card h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.7rem;
    color: var(--color-sticky-nav);
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 500;
}

.expertise-card p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #5A6475;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Bottom Link Box */
.learn-more {
    margin-top: auto; /* Pushes to the exact bottom of the flex card */
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.learn-more .arrow {
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.learn-more:hover .arrow {
    transform: translateX(4px) translateY(-4px); /* Little diagonal pop on hover */
}

/* =========================================
   Active Card Overrides (The Dark Blue One)
   ========================================= */
.expertise-card:hover {
    background: linear-gradient(180deg, #073C83 0%, #020D1D 100%);
    box-shadow: 0 10px 25px rgba(7, 60, 131, 0.3);
}

.expertise-card:hover .card-icon {
    /* Instantly turns the icon stark white */
    filter: brightness(0) invert(1);
}

.expertise-card:hover h3,
.expertise-card:hover p,
.expertise-card:hover .learn-more {
    color: var(--color-white);
}




















/* =========================================
   Why iConquer Section (Full-Width Split)
   ========================================= */

/* Define a specific gradient for this section, matching active card gradient */
:root {
    --why-bg-gradient: linear-gradient(180deg, #073C83 0%, #020D1D 100%);
}



/* Full-Width Split utility class */
.full-width-split {
    display: flex;
    width: 100%;
    align-items: stretch;
    overflow: hidden; /* prevents unwanted scroll on full-height images */
}

/* Left Image Column */
.why-image-column {
    flex: 1; /* width 50% on large screens */
    position: relative;
}

.full-height-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Right Content Column */
.why-content-column {
    flex: 1; /* width 50% on large screens */
    background: var(--why-bg-gradient);
    position: relative;
    padding: 100px 50px 100px 80px; /* High left padding to push content over */
}

/* =========================================
   Why iConquer - SVG Background Decorations
   ========================================= */
.why-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Keeps the SVGs perfectly contained inside the blue box */
    z-index: 1; /* Forces them to stay behind your text */
    pointer-events: none; /* Ensures they don't block you from selecting text */
}

/* Top Left Sketch */
.decor-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%; /* Adjust this percentage to make the sketch bigger/smaller */
    opacity: 0.6; /* Subtle transparency so it doesn't overpower the text */
}

/* Bottom Right Sketch */
.decor-bottom-right {
    position: absolute;
    bottom: -5%; /* Pushing it slightly off the bottom edge looks great */
    right: -5%;  /* Pushing it slightly off the right edge */
    width: 50%; /* Spreads it nice and wide across the bottom */
    opacity: 0.6;
}

.why-content-inner {
    position: relative;
    z-index: 2; /* Text goes above the lineart pseudo-element */
}

/* Header Styling */
.why-iconquer-title {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 400;
    text-align: left;
}

/* Intro description */
.why-iconquer-intro {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85); /* White with low opacity matching the design */
    margin-bottom: 50px;
    max-width: 580px; /* Match max width of title block */
    line-height: 1.6;
    text-align: left;
}

/* Feature Grid (2x2) */
.why-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns matching 2x2 design */
    gap: 30px; /* space between grid items */
    text-align: left;
}

/* Grid Items */
.why-feature-item strong {
    font-family: 'Genos', sans-serif; /* Specified contents font */
    font-size: 2rem;
    color: var(--color-accent); /* Golden yellow accent */
    font-weight: 300;
    margin-bottom: 5px;
    line-height: 1.5rem;
    display: block; /* Make it block level to separate from paragraph */
}

.why-feature-item p {
    font-family: 'Geist', sans-serif;
    width: 70%;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85); /* white with low opacity matching intro text */
    line-height: 1.5;
    margin: 0;
}





















/* =========================================
   Trusted By / Testimonials Section
   ========================================= */

.trusted-section {
    padding: 70px 0;
    background-color: var(--color-white);
    overflow: hidden; /* Prevents the horizontal scrollbar on the main body */
}

/* Header Text */
.trusted-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.trusted-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    line-height: 2.3rem;
    color: var(--color-sticky-nav);
    margin-bottom: 20px;
    font-weight: 400;
}

.trusted-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* =========================================
   Logo Marquee (Infinite Scroll)
   ========================================= */
.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
    position: relative;
    
    /* Adds a sleek fade-out effect on the left and right edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    /* 30s controls the speed. Adjust if you want it faster/slower */
    animation: scroll-marquee 35s linear infinite;
}

.logo-track img {
    height: 44px; /* Standardize logo heights */
    margin: 0 40px;
    object-fit: contain;
    /* Keeps them looking uniform. Remove filter if you want full original colors */
    filter: grayscale(100%) opacity(70%);
    transition: var(--transition);
}

.logo-track img:hover {
    filter: grayscale(0%) opacity(100%);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    /* Moves exactly half the width of the track to seamlessly restart */
    100% { transform: translateX(-50%); } 
}

/* =========================================
   Testimonial Carousel (CSS Scroll Snap)
   ========================================= */
.testimonial-wrapper {
    /* We allow this specific container to stretch a bit wider to show the "bleeding" edge of the next card */
    max-width: 100%;
}

.testimonial-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px; /* Space for a subtle shadow if added later */
    cursor: grab;
    
    /* Smooth scrolling and hidden scrollbars */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonial-carousel:active {
    cursor: grabbing;
}
/* Dragging State for Desktop */
.testimonial-carousel.active-drag {
    cursor: grabbing;
    scroll-snap-type: none; /* Turns off snap while dragging */
    scroll-behavior: auto !important; /* Prevents CSS smooth scrolling from fighting the JS */
}

/* This is the magic part: it stops the browser from highlighting text or grabbing images while you swipe */
.testimonial-carousel.active-drag .testimonial-card {
    user-select: none;
    pointer-events: none; 
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

/* Individual Cards */
.testimonial-card {
    /* Shows exactly 3 cards on desktop, minus the gap */
    flex: 0 0 calc(33.333% - 20px); 
    min-width: 350px;
    background-color: #f2f8ff; /* The crisp light blue-grey from your design */
    border-radius: 20px;
    padding: 40px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.quote-text {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: var(--color-sticky-nav);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Author Section */
.author-info {
    margin-top: auto; /* Pushes the author block to the exact bottom of the card */
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #d1d5db; /* Placeholder grey */
}

.author-details h4 {
    font-family: 'Genos', sans-serif;
    font-size: 1.6rem;
    color: var(--color-sticky-nav);
    margin-bottom: 2px;
    font-weight: 500;
}

.author-details p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #718096; /* Lighter grey for the subtitle */
}
























/* =========================================
   How We Work Section
   ========================================= */

.hww-section {
    display: flex;
    width: 100%;
    min-height: 80vh;
    background-color: #eff6ff; /* The very light blue tint from the design */
    align-items: stretch; /* Ensures both columns are exactly the same height */
}

/* Left Content Column */
.hww-content-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0% 70px 0%;
}

.hww-content-inner {
    max-width: 550px;
}

.hww-title {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
    line-height: 2rem;
    color: var(--color-sticky-nav);
    margin-bottom: 15px;
    font-weight: 400;
}

.hww-intro {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* Steps List */
.hww-steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hww-step {
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
}

.hww-step:hover {
    background-color: rgba(250, 250, 250, 0); /* Subtle hover effect so they know it's clickable */
}

/* Number Circles */
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #E2EBF4; /* Light blue circle */
    color: var(--color-sticky-nav);
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Text inside Steps */
.step-text h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    margin-bottom: 0px;
    margin-top: 0px;
    font-weight: 400;
    line-height: 1.5rem;
    transition: color 0.3s ease;
}

.step-text p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

/* ACTIVE STATE LOGIC */
.hww-step.active .step-number {
    background-color: var(--color-sticky-nav);
    color: var(--color-white);
   
}

/* Right Image Column */
.hww-image-column {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Stacked Images for fading */
.hww-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    z-index: 1;
    transform: scale(1.05); /* Slight zoom for the transition effect */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.hww-image.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1); /* Settles into normal size */
}





















/* =========================================
   Featured Success Story Section
   ========================================= */

.success-section {
    padding: 70px 0;
}

/* Header Text */
.success-header {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.success-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    line-height: 2rem;
    color: var(--color-sticky-nav);
    margin-bottom: 15px;
    font-weight: 400;
}

.success-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Main Card Container */
.success-card {
    background-color: #eff6ff; /* Clean, light base color */
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Keeps the background art strictly inside the rounded corners */
}

/* Background Art */
.success-bg-art {
    position: absolute;
    bottom: -25%;
    right: 13%;
    width: 34%;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Left Content Column */
.success-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding-right: 50px; /* Gives breathing room between text and boxes */
}

.success-logo {
    height: 65px;
    object-fit: contain;
    margin-bottom: 40px;
}

.success-quote {
    font-family: 'Geist', sans-serif;
    font-size: 1.15rem;
    color: var(--color-sticky-nav);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Author Info */
.success-author {
    margin-top: 80px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-author img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.success-author .author-details h4 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-sticky-nav);
    margin-bottom: 2px;
    font-weight: 400;
}

.success-author .author-details p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #718096;
}

/* Right Column: Metrics Area */
.success-metrics {
    flex: 1.7;
    display: flex;
    justify-content: center; /* Centers the locked block inside the flex column */
    align-items: center;
    position: relative;
    z-index: 2;
}

/* 
   THE FIX: A rigid bounding box. 
   Because this box is a fixed size, the absolute coordinates inside it will NEVER warp. 
*/
.metrics-inner-wrapper {
    position: relative;
    width: 720px; 
    height: 420px; 
}




/* Metric Boxes (Hover removed, fixed height/width added) */
.metric-box {
    background: linear-gradient(180deg, #E7F1FE 0%, #D4E7FF 72.61%);
    border-radius: 20px;
    padding: 30px 20px 1px 20px;
    width: 210px; /* Locked width */
    height: 180px; /* Locked height */
    box-shadow: 0 10px 25px rgba(7, 60, 131, 0.06); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: absolute; /* Moved absolute here to clean up the code */
}

.metric-box h3 {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
    color: var(--color-sticky-nav);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 500;
}

.metric-box p {
    font-family: 'Genos', sans-serif;
    font-size: 1.4rem;    
    color: var(--color-sticky-nav);
    line-height: 1;
}

/* 
   STRICT PIXEL POSITIONING
   Using exact px coordinates ensures the gaps remain identical on every screen.
*/
.box-1 {
    bottom: 0;
    left: 0;
    z-index: 3; 
}

.box-2 {
    bottom: 120px; /* Perfectly locked overlap/gap */
    left: 255px;   /* Perfectly locked overlap/gap */
    z-index: 2; 
}

.box-3 {
    top: 0;
    right: 0;
    z-index: 1; 
}

















/* =========================================
   CTA / Contact Section
   ========================================= */

.cta-section {
    background: linear-gradient(116.81deg, #073C83 3.92%, #020D1D 100.32%);
    padding: 60px 0;
    width: 100%;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* Left Text Side */
.cta-text {
    flex: 1;
    max-width: 400px;
}

.cta-text h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    line-height: 0.9;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-text p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    padding-right: 20px;
    color: rgba(255, 255, 255, 0.85); /* Slightly faded white for better readability */
    line-height: 1.6;
}

/* Right Form Side */
.cta-form-wrapper {
    flex: 1.2;
    max-width: 800px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 35px; /* Spacing between the rows */
}

.form-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

/* Input Styling (Minimalist Bottom Border) */
.form-row input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    color: var(--color-white);
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Placeholder Color */
.form-row input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Geist', sans-serif;
}

/* Glow/Solid line effect when typing */
.form-row input:focus {
    border-bottom: 1px solid var(--color-white);
}

/* Submit Button Specifics */
.form-submit-btn {
    align-self: center; /* Centers the button under the form fields */
    margin-top: 15px;
    border: none;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    min-width: 160px; /* Gives the button a nice, clickable width */
}

































/* =========================================
   Footer Section
   ========================================= */

.main-footer {
    background-color: #EBEBEB; /* The solid light gray background */
    padding-top: 80px;
    color: var(--color-sticky-nav);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-right: 5%;
    padding-bottom: 60px;
    flex-wrap: wrap; /* Ensures columns wrap smoothly on smaller screens */
}

/* Column Sizing */
.brand-col {
    flex: 1.5; /* Slightly wider to give the paragraph room to breathe */
    min-width: 40%;
}

.links-col {
    flex: 1;
    min-width: 150px;
}

.contact-col {
    flex: 1;
    min-width: 200px;
}

/* Column 1: Brand */
.footer-logo {
    height: 90px;
    object-fit: contain;
    margin-bottom: 25px;
}

.brand-col p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-sticky-nav);
    max-width: 90%;
    padding-right: 28%;
}

/* Headings */
.footer-col h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-sticky-nav);
}

/* Links Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 18px;
}

.footer-col a {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-accent); /* Golden yellow pop on hover */
}

/* Column 4: Contact Info */
.contact-info {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info strong {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-sticky-nav);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a img {
    height: 22px;
    width: auto;
    transition: transform 0.2s ease;
}

.social-links a:hover img {
    transform: translateY(-3px); /* Subtle bounce up on hover */
}

/* =========================================
   Footer Bottom Bar
   ========================================= */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.04); /* Just a tiny bit darker than the main footer */
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Crisp divider line */
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    color: var(--color-sticky-nav);
}

.bottom-links a {
    color: var(--color-sticky-nav);
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s ease;
}

.bottom-links a:hover {
    color: var(--color-accent);
}













 .about_us {
        width: 100%;
    }
    /* =========================================
   Subpage Hero Section (Independent Component)
   Used for Our Story, Services, Blog, etc.
   ========================================= */

/* Main Container */
.subpage-hero-section {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 380px; /* Shorter fixed height for inner pages */
    min-height: 40vh;
    background-color: var(--color-black); 
    overflow: hidden;
}

/* Left Content Wrapper */
.subpage-hero-left {
    position: relative;
    width: 55%; /* Same overlap percentage as homepage */
    display: flex;
    align-items: flex-end;
    justify-content: flex-start; /* Aligns content to the left */
    z-index: 2; 
    padding: 0 25% 3% 3%; /* Inner page specific padding */
}
.subpage-hero-left-blog {
    position: relative;
    width: 55%; /* Same overlap percentage as homepage */
    display: flex;
    align-items: flex-end;
    justify-content: flex-start; /* Aligns content to the left */
    z-index: 2; 
    padding: 0 25% 3% 3%; /* Inner page specific padding */
}
/* Text Content */
.subpage-hero-text {
    position: relative;
    z-index: 3;
    max-width: 500px;
    color: var(--color-white);
    text-align: left;
}

.subpage-hero-text h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 0px;
    font-weight: 400;
    text-align: left;
}
.subpage-hero-text-blog {
        font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 0px;
    font-weight: 400;
    text-align: left;
}
#subpage-blog-hero-text {
    font-family: 'Genos', sans-serif;
    font-size: 2.6rem !important;
    line-height: 0.9;
    margin-bottom: 0px;
    font-weight: 400;
    text-align: left;
}
.subpage-blog-hero-textp {
    font-family: 'Geist', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85); /* Slightly faded white */
    line-height: 1.6;
    margin: 0;
    text-align: left;
}
.subpage-hero-text p {
    font-family: 'Geist', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85); /* Slightly faded white */
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* SVG Curve Controller */
.subpage-hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Right Image Wrapper */
.subpage-hero-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%; /* Tucked slightly under the left column curve */
    height: 100%;
    z-index: 1;
}

.subpage-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Base utility for swapping SVGs if not already in your CSS */
.mobile-only { display: none !important; }
.desktop-only { display: block !important; }
/* =========================================
   Our Story - "Why iConquer Exists" Section
   ========================================= */
.story-exists-section {
    padding: 70px 5% 70px 0px;
    background-color: var(--color-white); /* Clean white background */
}

.story-exists-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; /* Generous gap matching your design */
}

/* Left Image Column */
.story-exists-image {
    flex: 1.1; /* Gives the image slightly more visual weight than the text */
}

.story-exists-image img {
    width: 95%;
    height: auto;
    border-radius: 24px; /* Premium smooth rounded corners */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06); /* Very subtle depth shadow */
    display: block;
}

/* Right Text Column */
.story-exists-content {
    flex: 1;
    max-width: 550px; /* Prevents the text lines from getting too long to read */
}

.story-exists-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav); /* Uses your brand's dark blue */
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.1;
}

.story-exists-content p {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: #4a5568; /* Readable dark gray */
    line-height: 1.7;
    margin: 0;
}
/* =========================================
   Our Story - The Journey Section
   ========================================= */
.story-journey-section {
    /* Updated: Swapped solid color for the Why iConquer Gradient */
    background: linear-gradient(180deg, #073C83 0%, #020D1D 100%);
    padding: 100px 0;
    color: var(--color-white);
    position: relative;
    overflow: hidden; /* Keeps the background art from spilling out */
}
/* Top Left Sketch */
.decor-top-left-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 12%; /* Adjust this percentage to make the sketch bigger/smaller */
    opacity: 0.6; /* Subtle transparency so it doesn't overpower the text */
}

/* Bottom Right Sketch */
.decor-bottom-right-two {
    position: absolute;
    top: 5%; /* Pushing it slightly off the bottom edge looks great */
    right: -5%;  /* Pushing it slightly off the right edge */
    width: 60%; /* Spreads it nice and wide across the bottom */
    opacity: 0.3;
}

.journey-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2; /* CRITICAL: Forces the text and white boxes to sit ABOVE the background art */
}
.journey-content {
    flex: 1;
    max-width: 500px;
}

.journey-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 0px;
}

.journey-content p {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Staggered Stats Boxes */
.journey-stats {
    flex: 1.2;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.stat-box {
   background: linear-gradient(180deg, #E7F1FE 0%, #D4E7FF 72.61%);
    border-radius: 16px;
    padding: 30px 20px 20px 20px;
    width: 225px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

@media (min-width:1700px) {
    .journey-stats {
    margin-left: 12vw;
    flex: 1.2;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
    
}

.stat-box h3 {
    font-family: 'Genos', sans-serif;
    font-size: 3.8rem;
    color: var(--color-sticky-nav);
    line-height: 0.9;
    margin-bottom: 0px;
    font-weight: 400;
}

.stat-box p {
    font-family: 'Genos', sans-serif;
    font-size: 1.5rem;
    color: #4a5568;
    line-height: 1;
    margin: 0;
}

/* The Stagger Effect */
.box-down { transform: translateY(50%); }
.box-up { transform: translateY(-50%); }

/* =========================================
   Our Story - Philosophy & Values
   ========================================= */
.story-values-section {
    padding: 70px 0;
    background-color: var(--color-white);
    text-align: center;
}

.values-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.values-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
line-height: 1.1;
    margin-bottom: 0px;
}

.values-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-icon {
    width: 7vw;
    height: 7vw;
    margin-bottom: 20px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 400;
}

.value-card p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    padding: 0px 3vw;
    color: #718096;
    line-height: 1.5;
}

/* =========================================
   Our Story - What Makes Us Different
   ========================================= */
.story-different-section {
    padding: 70px 0;
    background-color: #eff6ff; /* Matches the hero grey/blue tone */
}

.different-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 180px;
}

.different-content {
    flex: 1;
    max-width: 500px;
}

.different-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1;
}

.different-content p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.7;
}

.different-image {
    flex: 1.2;
}

.different-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
/* Hide the dots on Desktop */
.mobile-only-flex { display: none; }






















.our_awards {
    width: 100%;
}
/* =========================================
   Our Awards - Recognition Grid Section
   ========================================= */
.awards-recognition-section {
    padding: 70px 0;
    background-color: var(--color-white);
}

.awards-header {
    max-width: 850px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.awards-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 0.9;
}

.awards-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

/* 4-Column Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.award-card {
    background-color: #f8fbff; /* Very soft blue/grey tint */
    border-radius: 0px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.award-card img {
    height: 175px;
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
}

.award-card h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.7rem;
    color: var(--color-sticky-nav);
    line-height: 0.9;
    margin-bottom: 10px;
    font-weight: 500;
}

.award-cat {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 5px;
}

.award-year {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: rgb(122, 122, 122);
    font-weight: 600;
}

/* =========================================
   Our Awards - What This Means Section
   ========================================= */
.awards-meaning-section {
    background-color: #eff6ff;
    padding: 100px 0;
}

.meaning-container {
    display: flex;
    align-items: center; /* Aligns items to the vertical center */
    gap: 60px;
}

/* Left Side: Title */
.meaning-title {
    flex: 1;
    max-width: 350px;
}

.meaning-title h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    line-height: 0.9;
    font-weight: 400;
    margin: 0;
}

/* Right Side: 3-Column Grid */
.meaning-grid {
    flex: 2.5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.meaning-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.meaning-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.meaning-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.meaning-item h3 {
    font-family: 'Genos', sans-serif;
    font-size: 2rem;
    color: var(--color-sticky-nav);
    line-height: 0.9;
    margin-bottom: 12px;
    font-weight: 400;
}

.meaning-item p {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.4;
    margin: 0;
    padding: 0px 20px;
}































/* =========================================
   Responsive Breakpoints
   ========================================= */

@media (max-width: 1300px) {
    .metrics-inner-wrapper {
    position: relative;
    width: 620px; 
    height: 420px; 
    }
    .box-1 {
    bottom: 0;
    left: -50px;
    z-index: 3; 
    }

    .box-2 {
        bottom: 120px; /* Perfectly locked overlap/gap */
        left: 180px;   /* Perfectly locked overlap/gap */
        z-index: 2; 
    }

    .box-3 {
        top: 0;
        right: 0;
        z-index: 1; 
    }
    .success-content {
        flex: 1.5;
    }

}



@media (max-width: 1200px) {
    
    /* =========================================
   Strategic Expertise Section
   ========================================= */
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr); /* Drops to 3 per row on tablets */
    }
}

@media (max-width: 1024px) {
    .container { width: 95%; }
    .mega-menu-services { flex-wrap: wrap; justify-content: center; gap: 40px; }
    .service-item { min-width: 30%; }
}


@media (max-width: 1100px) {
    .metric-box {
        background: linear-gradient(180deg, #E7F1FE 0%, #D4E7FF 72.61%);
        border-radius: 20px;
        padding: 30px 10px 18px 13px;
        width: 150px;
        height: 150px;
        box-shadow: 0 10px 25px rgba(7, 60, 131, 0.06);
        display: flex;
        flex-direction: column;
        justify-content: end;
        border: 1px solid rgba(255, 255, 255, 0.8);
        position: absolute;
    }
    .metric-box h3 {
    font-family: 'Genos', sans-serif;
    font-size: 2.5rem;
    color: var(--color-sticky-nav);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 500;
}
    .success-content {
        min-width: 450px;
    }
    .metrics-inner-wrapper {
    position: relative;
    width: 520px; 
    height: 420px; 
    }
    .box-1 {
    bottom: 0;
    left: -50px;
    z-index: 3; 
    }

    .box-2 {
        bottom: 120px; /* Perfectly locked overlap/gap */
        left: 120px;   /* Perfectly locked overlap/gap */
        z-index: 2; 
    }

    .box-3 {
        top: 0;
        right: 80px;
        z-index: 1; 
    }
    .success-content {
        flex: 1.5;
    }













    .our_awards{
        width: 100%;
    }

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


/* =========================================
   Responsive Adjustments (Mobile & Tablet)
   ========================================= */
@media (max-width: 1024px) {
    /* Tablet shifts */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}






@media (max-width: 900px) {
    .main_container {
    margin-top: 80px;
}
   .hero-section {
        
        flex-direction: column;
    }

    .first_left_column_hero {
        width: 100%;
        min-height: 75vh;
        padding: 25px 20px 100px 20px; /* Extra padding at bottom for the curve */
        text-align: center;
    }

    .hero-text-content {
        margin: 0 auto;
    }

    .hero-text-content h2 {
        font-size: 2.5rem;
    }
    .hero-text-content p {
    font-size: 1.1rem;
    font-family: 'Geist', sans-serif;
    margin-bottom: 35px;
    font-width: 300;
    text-align: center;
    line-height: 1.6;
    padding: 0% 2% 0% 2%;
}

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .right_second_column_hero {
        position: relative; /* Push it below the top block */
        width: 100%;
        margin-top: -29vh;
        height: 50vh;
    }


    /* =========================================
   Strategic Expertise Section
   ========================================= */
 @media (max-width: 900px) { /* Updated to 900px to match everything else! */
    .expertise-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab; /* Added for desktop dragging */
    }

    .expertise-grid::-webkit-scrollbar {
        display: none;
    }

    .expertise-card {
        flex: 0 0 85vw; 
        scroll-snap-align: center;
        min-height: 320px;
    }
}

/* Dragging State for Desktop (Applies to both carousels now) */
.expertise-grid.active-drag,
.testimonial-carousel.active-drag {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto !important;
}

/* Stops text highlighting while dragging */
.expertise-grid.active-drag .expertise-card,
.testimonial-carousel.active-drag .testimonial-card {
    user-select: none;
    pointer-events: none; 
}
    .expertise-header h2 {
        font-size: 2.5rem;
    }












    /* =========================================
    How We Work - Mobile Responsive Styles
    ========================================= */

    /* 1. Stack the layout vertically */
    .hww-section {
        flex-direction: column;
    }

    /* 2. Adjust padding and center the inner wrapper */
    .hww-content-column {
        padding: 60px 20px 40px 20px;
        align-items: flex-start; /* Resets alignment for the block */
    }

    .hww-content-inner {
        margin: 0 auto;
        max-width: 100%;
    }

    /* 3. Center the Header and Intro */
    .hww-title {
        text-align: center;
        font-size: 2.8rem;
    }

    .hww-intro {
        text-align: center;
        margin-bottom: 40px;
        padding: 0 10px; /* Slight squeeze to match design */
    }

    /* 4. Tweak the Steps for Mobile */
    .hww-steps-container {
        padding: 0 5%; /* Brings the steps in slightly from the edges */
        gap: 20px; /* Slightly tighter gap on mobile */
    }

    .hww-step {
        padding: 10px 5px; /* Thinner padding for smaller screens */
    }

    .step-number {
        width: 60px; /* Slightly smaller circle */
        height: 60px;
        font-size: 1.6rem;
    }

    .step-text h3 {
        font-size: 1.4rem; /* Scale down heading */
    }

    .step-text p {
        font-size: 0.95rem;
    }

    /* 5. Force a height on the Image Column */
    .hww-image-column {
       width: 100%;
        height: 450px; 
        min-height: 450px; /* Forces the browser to respect the height */
        flex: none; /* Strictly prevents flexbox from squishing this container */
        position: relative;
        display: block;
    }




















    /* =========================================
   Featured Success Story - Mobile Responsive
   ========================================= */
   
        /* 1. Stack the layout vertically */
        .success-card {
            flex-direction: column;
            padding: 40px 20px;
        }

        /* 2. Reset the left column spacing */
        .success-content {
            padding-right: 0;
            padding: 0% 20% 0% 5%;
            margin-bottom: 40px;
        }

        .success-logo {
            margin-bottom: 30px;
        }

        .success-quote {
            max-width: 100%;
            font-size: 1.05rem;
        }

        /* 3. Hide the background art to keep the mobile view clean, as per your design */
        .success-bg-art {
            display: none;
        }

        /* 4. Convert the rigid bounding box into a flexible CSS Grid */
        .metrics-inner-wrapper {
            width: 100%;
            height: auto;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Two columns */
            gap: 15px; /* Spacing between the boxes */
        }

        /* 5. Reset the boxes from absolute to static grid items */
        .metric-box {
            position: static;
            width: 100%;
            height: auto;
            padding: 25px 15px;
        }

        .metric-box h3 {
            font-size: 2.6rem; /* Scaled down for smaller screens */
        }

        .metric-box p {
            font-size: 1.2rem;
        }

        /* 6. Reorder and span to match the mobile image exactly! */
        .box-2 { 
            /* +84% box (Top Left) */
            grid-column: 1;
            grid-row: 1;
        }

        .box-1 { 
            /* +145% box (Top Right) */
            grid-column: 2;
            grid-row: 1;
        }

        .box-3 { 
            /* +38% box (Spans the entire bottom row) */
            grid-column: 1 / -1; 
            grid-row: 2;
        }
        .success-metrics {
            width: 100%;
            flex: 1.7;
            display: flex;
            justify-content: center; /* Centers the locked block inside the flex column */
            align-items: center;
            position: relative;
            z-index: 2;
        }
    





    /* =========================================
   CTA / Contact Section - Mobile Responsive
   ========================================= */
    /* 1. Stack the text and form vertically */
    .cta-container {
        flex-direction: column;
        align-items: flex-start; /* Keeps the text aligned to the left */
        gap: 40px;
        padding: 0 20px;
    }

    /* 2. Adjust padding and text scaling */
    .cta-section {
        padding: 60px 0;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-text h2 {
        font-size: 2.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    /* 3. Allow the form to take full width */
    .cta-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    /* 4. Keep top inputs side-by-side but reduce the gap to fit mobile screens */
    .form-row {
        gap: 15px; 
    }

    .form-row input {
        font-size: 0.95rem; /* Slightly smaller text for mobile inputs */
    }

    /* 5. Keep button centered but adjust top margin */
    .form-submit-btn {
        margin-top: 10px;
        width: 200px; /* Matches the nice wide button look in your mobile design */
    }










    /* =========================================
   Footer Mobile Responsive
   ========================================= */
   .main-footer {
        padding-top: 60px;
    }

    /* 1. Turn the flex container into a Grid to control placement */
    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two equal columns */
        gap: 40px 15px; /* 40px vertical gap, 15px horizontal gap */
        padding-bottom: 20px;
    }
    
    /* 2. Force the Brand text to take up the full width at the top */
    .brand-col {
        grid-column: 1 / -1;
    }
    
    .brand-col p {
        max-width: 100%;
    }

    /* 3. Reorder the Links: Core Services (Left) and Company (Right) */
    /* Targets the 3rd column in your HTML (Core Services) */
    .footer-top .links-col:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    /* Targets the 2nd column in your HTML (Company) */
    .footer-top .links-col:nth-child(2) {
        grid-column: 2;
        grid-row: 2;
    }

    /* 4. Force Contact to full width at the bottom of the grid */
    .contact-col {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    /* 5. Bottom Bar Tricks */
    .footer-bottom {
        background-color: transparent; /* Removes background from the wrapper */
        border-top: none;
        padding: 0;
    }

    .bottom-container {
        flex-direction: column-reverse; /* Magically moves the links ABOVE the copyright */
        align-items: flex-start; /* Left aligns everything */
        gap: 25px;
    }

    .bottom-links {
        padding-bottom: 10px;
    }

    .bottom-links a {
        margin: 0 10px 0 0; /* Adjusts margins for perfect left-alignment */
    }
    
    /* 6. Full-Bleed Copyright Bar */
    /* This breaks the copyright text out of the container to fill the screen width with the dark gray! */
    .bottom-container p {
        background-color: rgba(0, 0, 0, 0.05);
        width: 100vw;
        margin-left: calc(50% - 50vw);
        padding: 25px 20px;
        box-sizing: border-box;
        border-top: 1px solid rgba(0,0,0,0.05);
    }















    .about_us {
        width: 100%;
    }
  /* Swap which curve is visible */
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    /* Stack the layout: text on top, image on bottom */
    .subpage-hero-section {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }
    
    /* Top Text Column */
    .subpage-hero-left {
        width: 100%;
        height: 300px; /* Fixed height so the swooping background curve draws correctly */
        padding: 40px 20px;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    .subpage-hero-left-blog {
        width: 100%;
        height: 300px; /* Fixed height so the swooping background curve draws correctly */
        padding: 40px 20px;
        justify-content: center;
        align-items: center;
        z-index: 2;
    }
    
    /* Bottom Image Column */
    .subpage-hero-right {
        width: 100%;
        height: 470px; 
        position: relative;
        margin-top: -300px; /* Pulls the image up slightly under the curve for a seamless blend */
        z-index: 1;
    }
    
    /* Center the text and adjust spacing from the swoop */
    .subpage-hero-text {
        margin-top: -50px; 
        text-align: center;
    }

    .subpage-hero-text-blog {
                margin-top: -50px; 
        text-align: center;
    }
    .subpage-hero-text h2,
    .subpage-hero-text p {
        text-align: center;
    }
    #subpage-blog-hero-text {
          text-align: center;
    }
     .subpage-hero-text p {
        font-weight: 100;
        font-size: 1rem;
    }
    main.article-main-content-blgart {
        max-width: 95vw;
    }
    /* =========================================
   Our Story - "Why iConquer Exists" Section
   ========================================= */
.story-exists-section {
    padding: 100px 0;
    background-color: var(--color-white); /* Clean white background */
}

.story-exists-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px; /* Generous gap matching your design */
}

/* Left Image Column */
.story-exists-image {
    flex: 1.1; /* Gives the image slightly more visual weight than the text */
}

.story-exists-image img {
    width: 100%;
    height: auto;
    border-radius: 24px; /* Premium smooth rounded corners */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06); /* Very subtle depth shadow */
    display: block;
}

/* Right Text Column */
.story-exists-content {
    flex: 1;
    max-width: 550px; /* Prevents the text lines from getting too long to read */
}

.story-exists-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav); /* Uses your brand's dark blue */
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 0.9;
}

.story-exists-content p {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: #4a5568; /* Readable dark gray */
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   Why iConquer Exists - Mobile Responsive
   ========================================= */

    .story-exists-section {
        padding: 70px 5%;
    }

    .story-exists-container {
        flex-direction: column-reverse;
        gap: 45px;
    }

    .story-exists-image {
        width: 100%;
    }

    .story-exists-content {
        max-width: 100%;
        text-align: center; /* Centers the text beautifully under the stacked image */
        padding: 0 15px; /* Extra safe zone padding for narrow phones */
    }
    
    .story-exists-content h2 {
        font-size: 2.8rem;
    }
    
    .story-exists-content p {
        font-size: 1rem;
    }
      .story-journey-section,
    .story-values-section,
    .story-different-section {
        padding: 60px 0;
    }

  /* Show the dots as flex on mobile */
    .mobile-only-flex { display: flex; }

    .story-journey-section,
    .story-values-section,
    .story-different-section {
        padding: 70px 5%;
    }
 .story-journey-section
    {
        background: linear-gradient(130deg, #073C83 0%, #020D1D 100%);
    }

    /* ------------------------------
       1. The Journey Mobile Layout
       ------------------------------ */
    .journey-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .journey-content {
        min-width: 90%;
    }
    .journey-content h2 { font-size: 2.8rem; }
    .journey-content p { font-size: 1.05rem; }
    
    /* The Interlocking Grid Magic for Mobile */
    .journey-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 15px;
        width: 100%;
        max-width: 80%; /* Keeps the grid tight and centered */
        margin: 0 auto;
    }

    /* Reset desktop sizes and staggers */
    .stat-box { 
        width: 40vw !important; 
        height: auto !important; 
        align-items: flex-start;
        aspect-ratio: 1 / 1; /* Forces perfect squares */
        padding: 20px 5px 20px 16px !important; 
    }
    .stat-box p {
    font-family: 'Genos', sans-serif;
    font-size: 1.4rem !important;
    color: #4a5568;
    line-height: 0.9;
    text-align: left;
    margin: 0;
}
    .box-down, .box-up { transform: none !important; }
    .stat-box h3 { font-size: 3rem; }
    .stat-box p { font-size: 1.85rem; }

    .why-decorations {
    display: none;
   
}
    /* Map the boxes to their exact positions */
    .journey-stats .stat-box:nth-child(1) { grid-column: 1; grid-row: 1; } /* Top Left */
    .journey-stats .stat-box:nth-child(2) { grid-column: 2; grid-row: 1 / 3; align-self: center; } /* Right Middle */
    .journey-stats .stat-box:nth-child(3) { grid-column: 1; grid-row: 2; } /* Bottom Left */

    /* ------------------------------
       2. Philosophy Carousel Layout
       ------------------------------ */
       .values-header h2 {
        padding: 0px 12vw;
        font-size: 2.8rem;
        line-height: 0.9;
        margin-bottom: 10px;
    }
    .value-icon {
    width: 20vw;
    height: 20vw;
    margin-bottom: 20px;
}
.value-card p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    padding: 0px 15vw;
    color: #718096;
    line-height: 1.5;
}
.value-card h3 {
    font-family: 'Genos', sans-serif;
    font-size: 2rem;
    color: var(--color-sticky-nav);
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 400;
}
    
    .values-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE */
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 10px;
        margin-left: -20px; /* Allows bleeding to the edge */
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .values-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */

    .value-card {
        flex: 0 0 100%; /* Shows one card at a time */
        scroll-snap-align: center;
        text-align: center;
        padding: 0 10%; /* Shrinks text width to match design */
    }

    /* Carousel Dots Styling */
    .carousel-dots {
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
        background-color: #D1D5DB; /* Light grey */
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 25px; /* The pill shape */
        background-color: var(--color-sticky-nav); /* Brand Blue */
        border-radius: 4px;
    }

    /* ------------------------------
       3. What Makes Us Different
       ------------------------------ */
    .different-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .different-content h2 { 
        font-size: 2.8rem; 
        max-width: 300px; /* Forces wrap */
        margin: 0 auto 20px auto; 
    }
















    .our_awards {
        width: 100%;
    }
   .awards-recognition-section,
    .awards-meaning-section {
        padding: 60px 0;
    }

    .awards-header h2 {
        font-size: 2.8rem;
    }

    /* Stack meaning section */
    .meaning-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .meaning-title {
        max-width: 100%;
    }

    .meaning-title h2 {
        font-size: 2.8rem;
        text-align: center;
        margin: 0 auto;
    }

    /* ------------------------------
       Meaning Section - Carousel Logic
       ------------------------------ */
    .meaning-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE */
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 10px;
        margin-left: -20px; /* Allows bleeding to the edge */
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .meaning-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */

    .meaning-item {
        flex: 0 0 100%; /* Shows one card at a time */
        scroll-snap-align: center;
        text-align: center;
        padding: 0 10%; /* Matches your text wrapping */
    }


}





@media (max-width: 768px) {
    .main_container {
    margin-top: 80px !important;
}
    #main-header {
        background: var(--color-white); 
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    .nav-menu { display: none; } 
    .burger-menu-btn { display: none; } 
    .mobile-burger-btn { display: flex; } 
    #mega-menu-container { display: none !important; } /* Mega menu hidden on mobile entirely */

    
    
    /* Primary Button Styling */
    .btn-primary {
    display: inline-block;
    margin: 0% 20% 0% 20%;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 12px 20px;
    font-size: 1.1rem;
    align-items: center;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}
    
    
    
    
    
    /* =========================================
   Strategic Expertise Section
   ========================================= */
   /* Turn the grid into a horizontal scroll container */
    .expertise-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-top: 20px;
        padding-bottom: 20px; /* Gives a little breathing room at the bottom */
        
        /* Smooth scrolling for touch devices */
        -webkit-overflow-scrolling: touch;
        
        /* Hide the ugly default scrollbar but keep the functionality */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }

    .expertise-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }

    /* Adjust the cards for the carousel */
    .expertise-card {
        /* Forces the card to be 85% of the screen width, leaving 15% for the next card to peek in */
        flex: 0 0 55vw; 
        scroll-snap-align: center; /* Snaps the card perfectly to the center when swiping */
        min-height: 320px; /* Slightly shorter on mobile if desired */
    }
    .expertise-header p {
        padding: 0% 5% 0% 5%;
    }

    .burger-menu-btn.open svg rect:nth-child(1), .mobile-burger-btn.open svg rect:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
    

    /* =========================================
    Why iConquer - Mobile Responsive Styles
    ========================================= */


    /* 1. Stack the columns vertically */
    .full-width-split {
        flex-direction: column;
    }

    /* 2. Give the top image a set height so it doesn't take up the whole screen */
    .why-image-column {
        height: 350px; /* You can tweak this up or down based on preference */
        width: 100%;
    }

    /* 3. Center content and reduce padding for mobile screens */
    .why-content-column {
        margin-top: -5%;
        padding: 60px 20px;
        text-align: center;
    }

    .why-iconquer-title {
        text-align: center;
        font-size: 2.8rem; /* Slightly smaller for mobile */
    }

    .why-iconquer-intro {
        text-align: center;
        margin: 0 auto 40px auto;
        padding: 0% 5% 0% 5%;
    }

    /* 4. Turn the 2x2 grid into a single 1x4 column */
    .why-feature-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Extra breathing room between stacked items */
        text-align: center;
    }

    /* 5. Adjust the SVG Decorations for mobile */
    .decor-top-left {
        width: 60%; /* Make it wider to span across the top of the mobile screen */
        opacity: 0;
    }

    .decor-bottom-right {
        width: 80%; /* Scale it up massively to fill the background */
        bottom: -5%;
        right: -10%;
        opacity: 0.6;
    }
    .why-feature-item p {
    font-family: 'Geist', sans-serif;
    width: 100%;
    padding: 0% 25% 0% 25%;
    }


}




/* =========================================
   Ultrawide Displays (1600px and above)
   This stylesheet acts as a "cap" for massive monitors, 
   ensuring the layout stops stretching and remains centered.
   ========================================= */

@media (min-width: 1800px) {
    .nav-menu ul li a {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.7;
    text-shadow: 0px 3px 2.4px rgba(0, 0, 0, 0.62);
}
    
   .hero-section {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    min-height: 70vh;
    
    overflow: hidden;
}

.hero-text-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 4rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-text-content p {
    font-size: 1.3rem;
    font-family: 'Geist', sans-serif;
    margin-bottom: 35px;
    font-width: 300;
    text-align: center;
    line-height: 1.6;
    padding: 0% 5% 0% 5%;
}
.btn-primary {
    display: inline-block;
    margin: 0% 30% 0% 30%;
 
    padding: 12px 20px;
    font-size: 1.2rem;
    align-items: center;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
}
.why-iconquer-title {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
   
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 400;
    text-align: left;
}
.expertise-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.6;
}
.expertise-card h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
  
    line-height: 1;
    margin-bottom: 15px;
    font-weight: 500;
}
.expertise-card p {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;

    line-height: 1.5;
    margin-bottom: 30px;
}
.why-iconquer-intro {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;

    margin-bottom: 50px;
    max-width: 622px;
    line-height: 1.6;
    text-align: left;
}
.why-feature-item strong {
    font-family: 'Genos', sans-serif;
    font-size: 2.5rem;
   
    font-weight: 300;
    margin-bottom: 5px;
    line-height: 1.5rem;
    display: block;
}
.why-feature-item p {
    font-family: 'Geist', sans-serif;
    width: 70%;
    font-size: 1.2rem;
   
    line-height: 1.5;
    margin: 0;
}
.why-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 51px;
    text-align: left;
}
.expertise-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
    line-height: 2rem;
   
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1;
}
.trusted-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
    line-height: 2.3rem;
    
    margin-bottom: 20px;
    font-weight: 400;
}
.trusted-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;
  
    line-height: 1.6;
}
.logo-track img {
    height: 50px;
    margin: 0 40px;
    object-fit: contain;
    filter: grayscale(100%) opacity(70%);
    transition: var(--transition);
}
.quote-text {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;
   
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 40px;
}
.author-details h4 {
    font-family: 'Genos', sans-serif;
    font-size: 2rem;

    margin-bottom: 2px;
    line-height: 1;
    font-weight: 500;
}
.author-details p {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
  
}
.trusted-header {
    max-width: 800px;
    margin: 0 auto 16px auto;
    text-align: center;
}
.logo-marquee-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 46px;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.testimonial-carousel {
    display: flex;
    gap: 45px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hww-content-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 70px 0% 70px 6%;
}
.hww-intro {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;
   
    line-height: 1.6;
    margin-bottom: 50px;
}
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
  

    font-family: 'Genos', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.step-text h3 {
    font-family: 'Genos', sans-serif;
    font-size: 2.4rem;

    margin-bottom: 0px;
    margin-top: 0px;
    font-weight: 400;
    line-height: 1.5rem;
    transition: color 0.3s ease;
}
.step-text p {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
    margin-top: 10px;
   
    line-height: 1.5;
}
.success-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
    line-height: 2rem;

    margin-bottom: 15px;
    font-weight: 400;
}
.success-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;

    line-height: 1.6;
}
.success-quote {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;

    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}
.success-logo {
    height: 75px;
    object-fit: contain;
    margin-bottom: 40px;
}
.success-author .author-details h4 {
    font-family: 'Genos', sans-serif;
    font-size: 2.4rem;
    line-height: 1;

    margin-bottom: 2px;
    font-weight: 400;
}
.success-author .author-details p {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;

}
.metric-box h3 {
    font-family: 'Genos', sans-serif;
    font-size: 3.7rem;

    line-height: 1;
    margin-bottom: 8px;
    font-weight: 500;
}
.metric-box {
    background: linear-gradient(180deg, #E7F1FE 0%, #D4E7FF 72.61%);
    border-radius: 20px;
    padding: 30px 20px 1px 20px;
    width: 223px;
    height: 190px;
    box-shadow: 0 10px 25px rgba(7, 60, 131, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: absolute;
}
.success-metrics {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.box-2 {
    bottom: 120px;
    left: 249px;
    z-index: 2;
}
.cta-text h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
    line-height: 0.9;
    line-height: 1;
   
    margin-bottom: 20px;
    font-weight: 400;
}
.cta-text p {
    font-family: 'Geist', sans-serif;
    font-size: 1.3rem;
    padding-right: 20px;
    
    line-height: 1.6;
}
.cta-form-wrapper {
    flex: 2.2;
    max-width: 915px;
}
.form-row input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 0;
    color: var(--color-white);
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.footer-logo {
    height: 115px;
    object-fit: contain;
    margin-bottom: 25px;
}
.brand-col p {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-sticky-nav);
    max-width: 90%;
    padding-right: 28%;
}
.footer-col h3 {
    font-family: 'Genos', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-sticky-nav);
}
.footer-col a {
    font-family: 'Geist', sans-serif;
    font-size: 1.2rem;
    color: var(--color-sticky-nav);
    text-decoration: none;
    transition: color 0.2s ease;
}
p {
    font-size: 1.1rem;
}
}




















/* =========================================
   Mobile Floating Service Menu
   ========================================= */

/* Hide everything completely on Desktop */
.mobile-service-btn,
.mobile-mega-overlay {
    display: none;
}

@media (max-width: 900px) {
    /* 1. Floating Action Button */
    .mobile-service-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        position: fixed;
        bottom: 25px;
        right: 20px;
        background-color: var(--color-accent); /* Golden Yellow */
        color: var(--color-primary); /* Dark Blue */
        border: none;
        border-radius: 50px;
        padding: 14px 22px;
        font-family: 'Geist', sans-serif;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.25);
        z-index: 999;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mobile-service-btn:active {
        transform: scale(0.95); /* Nice click effect */
    }

    /* 2. Dark Background Overlay */
    .mobile-mega-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(2, 13, 29, 0.6); /* Dark blue tint */
        backdrop-filter: blur(4px); /* Premium iOS blur effect */
        z-index: 10000; /* Highest z-index on the page */
        opacity: 0;
        visibility: hidden;
        align-content: center;
        justify-items: center;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }


    .mobile-mega-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    /* 3. The Bottom Sheet (Slides up) */
      .mobile-mega-content {
        width: 90% !important;
        max-width: 400px !important;
        background: rgba(245, 245, 245, 0.608) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        border-radius: 24px !important;
        padding: 25px 20px !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
        transform: scale(0.95) !important;
        transition: transform 0.4s !important;
    }

    /* Trigger the slide up */
    .mobile-mega-overlay.open .mobile-mega-content {
        bottom: 0;
    }

    /* 4. Menu Header */
    .mobile-mega-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .mobile-mega-header h3 {
        font-family: 'Genos', sans-serif;
        font-size: 2.4rem;
        color: var(--color-sticky-nav);
        margin: 0;
        line-height: 1;
        font-weight: 500;
    }

    .close-mobile-mega {
       background: #e5e5e587;
    border: none;
    cursor: pointer;
    padding: 4px 4px 0px 4px;
    margin-top: 2px;
    border-radius: 12px;
    }

    /* 5. Mobile Service Grid */
    .mobile-service-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 buttons per row */
        gap: 15px;
    }

    .mob-service-item {
        background-color: #F4F8FA;
        border-radius: 16px;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    .mob-service-item:active {
        background-color: #E2EBF4;
    }

    .mob-service-item .mob-icon {
        width: 45px;
        height: 45px;
        color: var(--color-accent);
    }
    
    .mob-service-item .mob-icon img,
    .mob-service-item .mob-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Same filter used in your desktop cards to color SVGs */
        filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(2462%) hue-rotate(196deg) brightness(94%) contrast(97%);
    }

    .mob-service-item span {
        font-family: 'Geist', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--color-sticky-nav);
    }







}



    /* =========================================
   Welcome / Onboarding Popup Modal
   ========================================= */

/* Dark Blurred Overlay */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(2, 13, 29, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001; /* Highest z-index to sit above everything */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.welcome-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.welcome-popup-modal {
    background: linear-gradient(150deg, #073C83 0%, #020D1D 100%);
    width: 90%;
    max-width: 650px;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* For smaller mobile screens */
    max-height: 90vh;
    overflow-y: auto;
}

.welcome-popup-overlay.show .welcome-popup-modal {
    transform: translateY(0) scale(1);
}

/* Header & Close Button */
.welcome-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.welcome-popup-header h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-white);
    font-weight: 400;
}

.close-popup-btn {
    background: var(--color-white);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-sticky-nav);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.close-popup-btn:hover {
    background: #E2EBF4;
    transform: scale(1.05);
}

/* Service List Items */
.welcome-popup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welcome-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Prevents layout shift on hover if border added */
}

/* Left side (Icon + Text) */
.ws-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ws-left span {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: var(--color-white);
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Icons (Default White) */
.ws-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    /* Forces SVG to be stark white */
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Right side (Explore link) */
.ws-right {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.ws-arrow {
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Hover & Active States (The Yellow Magic) */
.welcome-service-item:hover,
.welcome-service-item.active {
    background-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(250, 202, 25, 0.2);
}

.welcome-service-item:hover .ws-left span,
.welcome-service-item.active .ws-left span,
.welcome-service-item:hover .ws-right,
.welcome-service-item.active .ws-right {
    color: var(--color-primary);
    opacity: 1;
}

.welcome-service-item:hover .ws-icon,
.welcome-service-item.active .ws-icon {
    /* Turns icon to Dark Blue */
    filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(2462%) hue-rotate(196deg) brightness(94%) contrast(97%);
}

.welcome-service-item:hover .ws-arrow {
    transform: translate(2px, -2px); /* Little arrow pop */
}
/* 1. Size the arrow image and add a smooth transition */
.ws-arrow img {
    width: 12px; /* Tweak this if the arrow is too big or small */
    height: auto;
    object-fit: contain;
    transition: filter 0s ease;
    
    /* NOTE: If your raw SVG file is black instead of white, 
       uncomment the line below to force it to be white by default */
    /* filter: brightness(0) invert(1); */
}

/* 2. Hover & Active State: Turn the arrow Dark Blue */
.welcome-service-item:hover .ws-arrow img,
.welcome-service-item.active .ws-arrow img {
    /* This exact filter perfectly matches your dark blue brand color */
    filter: brightness(0) saturate(100%) invert(15%) sepia(97%) saturate(2462%) hue-rotate(196deg) brightness(94%) contrast(97%);
}

/* Mobile Tweaks */
@media (max-width: 600px) {
    .welcome-popup-modal {
        padding: 25px 20px;
    }
    .welcome-service-item {
        padding: 14px 15px;
    }
    .ws-left span {
        font-size: 0.95rem;
    }
    .ws-right {
        font-size: 0.75rem;
    }
       .awards-header h2 { font-size: 2.8rem; }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }

    .award-card {
        padding: 25px 15px;
    }

    .award-card img {
        height: 120px; /* Smaller trophies on mobile */
    }

    .award-card h3 {
        font-size: 1.3rem;
    }
    
    .award-cat, .award-year {
        font-size: 0.85rem;
    }
}













@media (max-width: 600px) {
    /* Tighten up the Awards Grid for phones */
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Tighter gap to match mockup */
    }

    .award-card {
        padding: 20px 10px; /* Tighter padding inside cards */
    }

    .award-card img {
        height: 120px;
        margin-bottom: 15px;
    }

    .award-card h3 {
        font-size: 1.15rem; /* Slightly smaller to fit perfectly */
    }
    
    .award-cat {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .award-year {
        font-size: 0.85rem;
    }
}


















/* =========================================
   Micro-Mobile Displays (Under 470px)
   Fixes layout breaks on narrow phones like Samsung A14
   ========================================= */

@media (max-width: 470px) {

    /* 1. Global Overflow Fix */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
    }

    /* 2. Header & Burger Button Fix */
    .header-inner {
        padding: 0 15px !important; 
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }

    .logo a img {
        max-width: 160px !important; 
        height: auto;
    }
    
    .mobile-burger-btn {
        display: flex !important; 
        flex-shrink: 0;
        /* FIX: Give the button a fixed square size to prevent the 'X' from clipping */
        width: 46px; 
        height: 46px;
        padding: 0 !important; 
        justify-content: center;
        align-items: center;
    }

    /* Fix for the 'X' corners getting clipped on Android */
    .mobile-burger-btn svg {
        overflow: visible !important; 
    }

    /* 3. Welcome Popup Shrinking */
    .welcome-popup-modal {
        width: 95%;
        padding: 20px 15px;
    }

    .welcome-popup-header h3 {
        font-size: 1.3rem; 
    }

    .welcome-service-item {
        padding: 12px 10px;
    }

    .ws-left {
        gap: 10px;
        flex: 1; 
    }

    .ws-left span {
        font-size: 0.85rem; 
        line-height: 1.2;
        white-space: normal; 
    }

    .ws-right {
        font-size: 0.75rem;
    }

    .ws-icon {
        width: 20px;
        height: 20px;
    }

    /* 4. Why iConquer Alignment Fix */
    .why-feature-item p {
        padding: 0 5%; 
    }
    
    .btn-primary {
        margin: 0 5%;
    }

    /* 5. Floating Service Menu Button Tweaks */
    .mobile-service-btn {
        right: 15px; 
        bottom: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    /* =========================================
       User's Added Fixes (Expertise, Trusted, Success)
       ========================================= */
    .expertise-card {
        flex: 0 0 72vw;
    }
    
    .trusted-header h2 {
        font-family: 'Genos', sans-serif;
        font-size: 2.8rem;
        line-height: 2.3rem;
        color: var(--color-sticky-nav);
        margin-bottom: 20px;
        font-weight: 400;
    }
    
    .logo-track img {
        height: 56px;
        margin: 0 23px;
    }
    
    .success-header h2 {
        font-family: 'Genos', sans-serif;
        font-size: 2.8rem;
    }
    
    .success-content {
        padding-right: 0;
        padding: 0% 20% 0% 20%;
        margin-bottom: 40px;
    }
    .burger-menu-btn.open svg rect:nth-child(1), .mobile-burger-btn.open svg rect:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
}

/* Fix for extremely narrow devices like Galaxy Fold front screen */
@media (max-width: 360px) {
    .success-content {
        padding-right: 0;
        padding: 0% 20% 0% 28%;
        margin-bottom: 40px;
    }
    .burger-menu-btn.open svg rect:nth-child(1), .mobile-burger-btn.open svg rect:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
   


.about_us {
    width: 100%;
}
    .stat-box h3 { font-size: 2.7rem; }
    .stat-box p { font-size: 1rem; }
}

















/* =========================================
   1. The People Behind Section
   ========================================= */
.people-behind-section {
    padding: 70px 0;
    background-color: var(--color-white);
}

.people-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.people-text {
    flex: 1;
    max-width: 500px;
}

.people-text h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
}

.people-text p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Staggered Images Grid */
.people-images {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.img-side {
    flex: 1;
    height: 320px;
    object-fit: cover;
    border-radius: 8px; /* Slight rounding based on mockup */
}

.img-center {
    flex: 1.2; /* Slightly wider */
    height: 420px; /* Taller */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); /* Gives it depth above the others */
    z-index: 2;
}

/* =========================================
   2. Our Team Grid Section
   ========================================= */
.our-team-section {
    padding: 0px 0 100px 0;
    background-color: var(--color-white);
}

.team-heading {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces a perfect square */
    object-fit: cover;
    height: auto;
    background-color: #D1D5DB; /* Grey placeholder color */
    margin-bottom: 20px;
}

.team-member h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2px;
}

.team-role {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
    margin-bottom: 0;
}

.team-spec {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    color: #A0AEC0;
}

/* =========================================
   3. Leadership Section (The 3-Layer Breakout)
   ========================================= */
.leadership-section {
    background-color: #eff6ff; /* Light crisp blue */
    padding-top: 80px; 
    position: relative;
    
    /* THE FIX PART 1: Kills horizontal scrolling completely, but allows vertical pop-outs! */
    overflow-x: clip; 
    
    /* THE FIX PART 2: 
       We changed the X-axis values from -50%/150% to 0%/100%. 
       This perfectly cuts off the massive 800px lion art at the edge of the screen,
       but keeps the top at -50% so Craig's head still breaks out! */
    -webkit-clip-path: polygon(0% -50%, 100% -50%, 100% 100%, 0% 100%);
    clip-path: polygon(0% -50%, 100% -50%, 100% 100%, 0% 100%);
}

.leadership-container {
    display: flex;
    align-items: stretch;
}

/* Left Content */
.leadership-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px; 
    padding-right: 40px;
}

.leadership-text h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 20px;
}

.leadership-text p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Desktop Name Plate */
.leader-name-desktop h3 {
    font-family: 'Genos', sans-serif;
    font-size: 2rem;
    color: var(--color-sticky-nav);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}

.leader-name-desktop p {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: #718096;
    margin: 0;
}

.leader-name-mobile {
    display: none; 
}

/* Right Visual Area */
.leadership-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Anchors Craig to the absolute bottom */
    position: relative;
}

/* Layer 1: The Circle */
.leadership-blue-shape {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: linear-gradient(180deg, #073D83 0%, #042148 100%);
    bottom: 0; 
    z-index: 1;
}

/* Layer 2: The Lion Line Art */
.leadership-line-art {
    position: absolute;
    width: 800px; /* Massive size to spill outside the blue circle */
    height: auto;
    top: -19vh; /* Shifts it slightly down to center it */
    z-index: 2; /* ABOVE the circle, BELOW Craig */
    opacity: 0.5; /* Makes it blend subtly into the background */
    pointer-events: none; /* Stops it from blocking clicks */
}

/* Layer 3: Craig's Photo */
.leader-image {
    position: relative;
    z-index: 3; /* Top Layer */
    width: 85%;
    max-width: 450px;
    display: block;
    /* This negative margin pulls his head UP, breaking out of the section! */
    margin-top: -120px; 
}
.team-page-wrapper {
    display: flex;
    flex-direction: column;
}


/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 900px) {
    
  /* --- MAGIC REORDERING --- */
    .people-behind-section { order: 1; }
    .leadership-section { order: 2; }
    .our-team-section { order: 3; }

    /* Add some top padding to Our Team since it's now at the bottom */
    .our-team-section {
        padding-top: 60px; 
    }

    /* --- 1. People Section Mobile --- */
    .people-split {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .people-text h2 { font-size: 2.8rem; }
    .people-images { width: 100%; gap: 10px; }
    .img-side { 
        width: 30%;
        height: 200px; }
    .img-center { 
        width: 50%;
        height: 260px; }

    /* --- 2. Our Team Mobile --- */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* --- 3. Leadership Mobile Fixes --- */
    .leadership-section {
        padding-top: 60px;
        padding-bottom: 0; /* Let the image sit flush at the bottom */
        /* Disable the desktop clip-path to prevent weird mobile bugs */
        -webkit-clip-path: none;
        clip-path: none;
        overflow: hidden; /* Safe to clip normally on mobile */
    }

    .leadership-container {
        flex-direction: column;
        padding: 0; 
    }

    .leadership-text {
        padding-bottom: 30px;
        padding-right: 0;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        position: relative;
        z-index: 5; /* Forces the text to stay ABOVE the blue arch */
    }

    .leadership-text h2 { font-size: 2.8rem; }

    /* Swap the Name Plates */
    .leader-name-desktop { display: none; }
    
    .leader-name-mobile {
        display: block;
        position: absolute;
        left: 5%; /* Pushes it in slightly from the edge */
        bottom: 25px; 
        z-index: 4; 
        top: 52%;
        text-align: left;
    }
    
    .leader-name-mobile h3 {
        font-family: 'Genos', sans-serif;
        font-size: 2.6rem;
        color: var(--color-white);
        margin-bottom: 0;
        line-height: 1;
        font-weight: 400;
    }

    .leader-name-mobile p {
        font-family: 'Geist', sans-serif;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
    }

    /* Fix the Visual Container Height Collapse */
    .leadership-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
         /* Gives Craig space to breathe above his head */
    }

    /* Flatten the Arch */
    .leadership-blue-shape {
        width: 120vw; /* Extra wide */
        height: 70vw; /* Half height creates a flattened, smooth arch */
        border-radius: 50% 50% 0 0; 
        bottom: 0;
        left: 50%;
        transform: translateX(-50%); 
    }

    .leadership-line-art {
    display: none;
    }

    /* Reset Craig's Position */
    .leader-image {
        width: auto;
        max-width: 550px !important;
        left: 18%;
        margin-top: 0; /* Disables the negative margin breakout from desktop */
        position: relative;
        z-index: 3;
    }
    .team-member img {
    width: 90%;
    aspect-ratio: 1 / 1; /* Forces a perfect square */
    object-fit: cover;
    height: auto;
    background-color: #D1D5DB; /* Grey placeholder color */
    margin-bottom: 20px;
}
}


@media (max-width: 470px) {
    /* For very small screens, stack the team grid into 1 column */
        .team-grid {
        max-width: 100%;
        margin: 0 2vw;
    }
        .leader-image {
        width: auto;
        max-width: 99% !important;
        left: 24%;
        margin-top: 0;
        position: relative;
        z-index: 3;
    }
        .leader-name-mobile h3 {
        font-family: 'Genos', sans-serif;
        font-size: 1.9rem;
        color: var(--color-white);
        margin-bottom: 0;
        line-height: 1;
        font-weight: 400;
    }
}







































/* =========================================
   Service Page - Intro Section
   ========================================= */
.service-intro-section {
    padding: 70px 0;
    background-color: var(--color-white);
}

.service-intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

/* Left Image Column */
.service-intro-image {
    flex: 1.1;
}

.service-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: block;
}

/* Right Text Column */
.service-intro-content {
    flex: 1;
    max-width: 550px;
}

.service-intro-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    color: var(--color-sticky-nav); /* Dark blue */
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 0.8;
}

.service-subtitle {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: #1a202c; /* Slightly darker and bolder to stand out */
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 5vw;
}

.service-intro-content p:not(.service-subtitle) {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-right: 7vw;
}

/* Action Link with Yellow Arrow */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: var(--color-sticky-nav); 
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.8;
}

.service-link svg {
    transition: transform 0.3s ease;
}

/* Slick animation: The arrow pops up and right when you hover the link! */
.service-link:hover svg {
    transform: translate(3px, -3px); 
}

/* =========================================
   Mobile Responsive
   ========================================= */
@media (max-width: 900px) {
    .service-intro-section {
        padding: 60px 0;
    }

    .service-intro-container {
        /* MAGIC: Stacks the content with the text on top of the image */
        flex-direction: column-reverse; 
        gap: 40px;
    }

    .service-intro-image {
        width: 85vw;
    }

    .service-intro-content {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .service-intro-content h2 {
        font-size: 2.8rem;
        max-width: 350px;
        margin: 0 auto 20px auto; /* Centers the heading naturally */
    }

    .service-subtitle, 
    .service-intro-content p:not(.service-subtitle) {
        font-size: 1.05rem;
        padding: 0 5%; /* Brings the edges in slightly for better reading */
    }
    
    .service-link {
        justify-content: center; /* Centers the link text and arrow */
    }
}
/* =========================================
   Service Page - What it Delivers Section
   ========================================= */
.service-delivers-section {
    padding: 70px 0;
    background-color: #eff6ff; /* The crisp, soft light blue */
}

.delivers-header {
    margin-bottom: 50px;
}

.delivers-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.8;
}

/* The 5-Column Grid setup */
.delivers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.deliver-item {
    display: flex;
    flex-direction: column;
}

.deliver-item h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    font-weight: 500;
    line-height: 0.8;
    margin-bottom: 15px;
}

.deliver-item p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   Responsive Adjustments (Tablet & Mobile)
   ========================================= */
@media (max-width: 1100px) {
    /* On smaller screens/tablets, 5 columns is too squished. Let's wrap to 3. */
    .delivers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .service-delivers-section {
        padding: 70px 0;
    }

    /* Center the main title on mobile */
    .delivers-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .delivers-header h2 {
        font-size: 2.8rem;
    }

    /* Stack into a single centered column on mobile */
    .delivers-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }
    
    .deliver-item {
        align-items: center; /* Ensures text blocks are fully centered */
    }

    .deliver-item h3 {
        font-size: 2rem; /* Slightly larger on mobile for emphasis */
        margin-bottom: 5px;
        font-weight: 400;
    }

    .deliver-item p {
        font-size: 1.05rem;
        max-width: 350px; /* Prevents text from stretching all the way to the edges */
        margin: 0 auto;
    }
}
/* =========================================
   Service Page - Capabilities Grid
   ========================================= */
.seo-capabilities-section {
    padding: 70px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden; /* Contains the background art */
}

/* Background Lion SVG */
.capabilities-bg-art {
    position: absolute;
    right: -5%; /* Change to left: -5% if you prefer it on the left! */
    top: 50%;
    transform: translateY(-50%);
    width: 33%;
    opacity: 0.2; /* Keeps it subtle */
    z-index: 1;
    pointer-events: none;
}

.capabilities-container {
    position: relative;
    z-index: 2; /* Keeps cards above the lion art */
}

.capabilities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.capabilities-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 15px;
}

.capabilities-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

/* 5-Column Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* =========================================
   The Base Card
   ========================================= */
.capability-card {
    position: relative;
    background-color: #F0F4F8; 
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Keeps the backgrounds inside the rounded corners */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Layer 1: The Image Div */
.cap-bg-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Layer 2: The Gradient Div */
.cap-grad-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(7, 61, 131, 0.85) 0%, rgba(2, 13, 29, 0.95) 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Layer 3: Content Wrapper */
.cap-content {
    position: relative;
    z-index: 3; /* Always sits on top */
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Text and Icon Default Styling */
.cap-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

.cap-icon img {
    width: 100%; height: 100%;
    transition: filter 0.3s ease;
}

.capability-card h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.capability-card p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 52px;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.capability-card .learn-more {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

/* =========================================
   Hover & Active States (The Magic!)
   ========================================= */

/* 1. Lift the card */
.capability-card:hover, .capability-card.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* 2. Fade in the Backgrounds */
.capability-card:hover .cap-bg-layer, .capability-card.active .cap-bg-layer {
    opacity: 1; 
}
.capability-card:hover .cap-grad-layer, .capability-card.active .cap-grad-layer {
    opacity: 1; 
}

/* 3. Turn text white */
.capability-card:hover h3, .capability-card:hover p, .capability-card:hover .learn-more,
.capability-card.active h3, .capability-card.active p, .capability-card.active .learn-more {
    color: var(--color-white);
}

/* 4. Turn the SVG Icon white */
.capability-card:hover .cap-icon img, .capability-card.active .cap-icon img {
    filter: brightness(0) invert(1);
}

/* 5. Animate the arrow */
.capability-card:hover .learn-more svg, .capability-card.active .learn-more svg {
    transform: translate(2px, -2px);
}
/* =========================================
   Responsive Adjustments (Mobile Carousel)
   ========================================= */
@media (max-width: 1100px) {
    .capabilities-grid { gap: 15px; }
    .capability-card { padding: 30px 20px; }
}

@media (max-width: 900px) {
    .seo-capabilities-section { padding: 60px 0; }
    
    .capabilities-header h2 { font-size: 2.8rem; }
    .capabilities-header p { padding: 0 10px; }
.cap-content {
    position: relative;
    z-index: 3; /* Always sits on top */
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.capability-card:hover, .capability-card.active {
    transform: translateY(-5px);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}
    /* Convert Grid to Flex Carousel */
    .capabilities-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .capabilities-header {
        margin-bottom: 40px;
    }

    .capabilities-grid::-webkit-scrollbar { display: none; }

    .capability-card {
        flex: 0 0 75%; /* Cards take up 75% of screen width */
        scroll-snap-align: center;
        min-height: 380px; /* Gives them a nice tall presence */
    }
}
.capability-card .cap-icon img {
    /* Turns the yellow icon into your deep brand blue (#073C83) */
    filter: brightness(0) saturate(100%) invert(14%) sepia(80%) saturate(2857%) hue-rotate(199deg) brightness(94%) contrast(99%);
    
    /* Smooth transition when it changes color on hover */
    transition: filter 0.3s ease;
}
/* =========================================
   Service Page - Approach Section (-stemp)
   ========================================= */
.approach-section-stemp {
    display: flex;
    background: linear-gradient(129.65deg, #073C83 -4.91%, #020D1D 102.04%);
    color: var(--color-white);
}

/* Left Content Area */
.approach-content-stemp {
    flex: 1.1; /* Gives slightly more room to the text */
    padding: 70px 3% 100px 3%; /* 10% left padding aligns it perfectly with your main container */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-header-stemp {
    margin-bottom: 60px;
}

.approach-header-stemp h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 0.8;
    margin-bottom: 20px;
}

.approach-header-stemp p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 450px;
}

/* 2x2 Grid */
.approach-grid-stemp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px; /* Row gap, Column gap */
    max-width: 700px;
}

.step-card-stemp {
    display: flex;
    flex-direction: column;
}

.step-num-stemp {
    font-family: 'Genos', sans-serif;
    font-size: 3.5rem;
    color: #61A5FF; /* The bright blue number color */
    line-height: 0.8;
    font-weight: 300;
    margin-bottom: 0px;
}

.step-title-stemp {
    font-family: 'Genos', sans-serif;
    font-size: 2rem;
    color: #FACA19; /* Brand Yellow */
    font-weight: 400;
    line-height: 1;
    margin-bottom: 15px;
}

.step-desc-stemp {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    padding-right: 3vw;
}

/* Right Image Area */
.approach-image-stemp {
    flex: 1;
}

.approach-image-stemp img {
    align-content: center;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space without stretching */
    display: block;
}

/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 900px) {
    .approach-section-stemp {
        flex-direction: column;
        /* Mobile gets the nice gradient background! */
        background: linear-gradient(129.65deg, #073C83 -4.91%, #020D1D 102.04%);
    }

    /* Hide the image completely on mobile to match the mockup */
    .approach-image-stemp {
        display: none;
    }

    .step-desc-stemp {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    padding-right: 30vw;
}
    .approach-content-stemp {
        padding: 70px 20px; /* Standardize padding for mobile */
    }

    .approach-header-stemp h2 {
        font-size: 2.8rem;
    }

    .approach-grid-stemp {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 40px;
    }
}
@media (min-width: 1800px){
    .capabilities-grid{
        padding: 0px 5vw;
    }
}
/* =========================================
   Service Page - Who This Is For
   ========================================= */
.who-for-section {
    padding: 70px 0;
    background-color: var(--color-white);
}

.who-for-header {
    text-align: center;
    margin-bottom: 50px;
}

.who-for-header h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 1.1;
}

.who-for-header p {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Desktop Layout (3 Top, 2 Centered Bottom) */
.who-for-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This is the magic that centers the bottom row! */
    gap: 25px;
    max-width: 75vw;
    margin: 0 auto;
}

.who-card {
    flex: 0 0 calc(33.333% - 17px); /* 3 Columns minus gap */
    background-color: #DEEBFF; /* The specific light blue */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.who-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.who-card-content {
    padding: 25px 20px;
    flex-grow: 1; /* Pushes content to fill the remaining height */
    display: flex;
    align-items: flex-start; 
}

.who-card-content h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.6rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

/* Pagination Dots (Hidden on Desktop) */
.carousel-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #B0C4DE; /* Inactive light blue */
    transition: all 0.3s ease;
}

/* Active Pill Shape */
.carousel-dots .dot.active {
    background-color: #073C83; /* Dark brand blue */
    width: 35px; /* Stretches it into a pill */
    border-radius: 5px;
}

/* =========================================
   Responsive Adjustments
   ========================================= */
@media (max-width: 1024px) and (min-width: 901px) {
    /* Tablet: Switch to a 2-column grid to avoid squishing */
    .who-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 900px) {
    .who-for-section {
        padding: 60px 0;
        padding-top: 60px;
        padding-bottom: 0px !important;
    }

    .who-for-header h2 {
        font-size: 2.8rem;
    }
    .who-for-header {
        margin-bottom: 15px;
    }
    /* Mobile Carousel Setup */
    .who-for-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hides scrollbar in Firefox */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        max-width: 100vw;
        /* Bleed to the edges of the screen */
        margin-left: 0px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .who-for-grid::-webkit-scrollbar {
        display: none; /* Hides scrollbar in Safari/Chrome */
    }

    .who-card {
        flex: 0 0 85%; /* Card takes up 85% of screen so the next one peeks in */
        scroll-snap-align: center;
    }

    /* Show the pagination dots on mobile */
    .carousel-dots {
        display: flex;
    }
}
/* =========================================
   Service Page - What's Included (-sst)
   ========================================= */
.whats-included-section-sst {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden; 
}

/* Background Lion SVG */
.included-bg-art-sst {
    position: absolute;
    right: -5%; 
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.1; 
    z-index: 1;
    pointer-events: none;
}

.included-container-sst {
    position: relative;
    z-index: 2; 
}

.included-header-sst {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.included-header-sst h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 15px;
}

.included-header-sst p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

/* 5-Column Grid */
.included-grid-sst {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* The Base Card */
.included-card-sst {
    background-color: #F0F4F8; /* Light grey/blue default */
    border-radius: 16px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.inc-icon-sst {
    width: 35px;
    height: 35px;
    margin-bottom: 25px;
}

.inc-icon-sst img {
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease;
}

.included-card-sst h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.included-card-sst p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

/* =========================================
   Hover & Active States (Solid Gradient)
   ========================================= */
.included-card-sst:hover, .included-card-sst.active {
    transform: translateY(-5px);
    background: linear-gradient(180deg, #073C83 0%, #020D1D 100%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Turn text white */
.included-card-sst:hover h3, .included-card-sst:hover p,
.included-card-sst.active h3, .included-card-sst.active p {
    color: var(--color-white);
}

/* Turn the SVG Icon white using CSS Filter! */
.included-card-sst:hover .inc-icon-sst img,
.included-card-sst.active .inc-icon-sst img {
    filter: brightness(0) invert(1);
}

/* =========================================
   Responsive Adjustments (Mobile Carousel)
   ========================================= */
@media (max-width: 1100px) {
    .included-grid-sst { gap: 15px; }
    .included-card-sst { padding: 30px 20px; }
}

@media (max-width: 900px) {
    .whats-included-section-sst { padding: 60px 0; }
    
    .included-header-sst h2 { font-size: 2.8rem; }
    .included-header-sst p { padding: 0 10px; }

    /* Convert Grid to Flex Carousel */
    .included-grid-sst {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .included-grid-sst::-webkit-scrollbar { display: none; }

    .included-card-sst {
        flex: 0 0 75%; /* Cards take up 75% of screen width */
        scroll-snap-align: center;
        min-height: 340px; 
    }
}

/* =========================================
   Call To Action Section (-sscta)
   ========================================= */
.cta-section-sscta {
    /* Deep blue gradient matching the mockup */
        background: linear-gradient(116.81deg, #073C83 3.92%, #020D1D 100.32%);
    padding: 60px 0;
    color: var(--color-white);
}

.cta-container-sscta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 95vw;
    margin: 0 auto;
}

/* --- Left Side: Content --- */
.cta-content-sscta {
    flex: 1;
}

.cta-content-sscta h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 25px;
}

.cta-content-sscta p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    padding-right: 15vw;
}

.cta-highlight-sscta {
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 0 !important;
}

/* --- Right Side: Form --- */
.cta-form-wrapper-sscta {
    flex: 1;
    width: 100%;
}

.cta-form-sscta {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row-sscta {
    display: flex;
    gap: 30px;
    width: 100%;
}

.input-group-sscta {
    flex: 1;
    width: 100%;
}

/* Sleek Bottom-Border Inputs */
.cta-form-sscta input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 0;
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: var(--color-white);
    transition: border-color 0.3s ease;
}

.cta-form-sscta input:focus {
    outline: none;
    border-bottom-color: #FACA19; /* Highlights yellow on focus */
}

/* Placeholder styling */
.cta-form-sscta input::placeholder {
    color: rgba(255, 255, 255, 0.9);
}

.cta-form-sscta input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.9);
}

/* Submit Button */
.cta-submit-btn-sscta {
    background-color: #FACA19; /* Brand Yellow */
    color: #1a202c; /* Dark text */
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 16px 30px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: fit-content;
}

.cta-submit-btn-sscta:hover {
    background-color: #e5b816;
    transform: translateY(-2px);
}

/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 900px) {
    .cta-section-sscta {
        padding: 70px 0;
    }

    .cta-container-sscta {
        flex-direction: column;
        gap: 50px;
    }

    .cta-content-sscta h2 {
        font-size: 2.8rem;
    }

    /* Stack form rows on mobile */
    .form-row-sscta {
        flex-direction: flex;
        gap: 30px;
    }

    /* Make button full width on mobile */
    .cta-submit-btn-sscta {
        width: 100%;
        margin-top: 20px;
    }
}
/* =========================================
   Solid Gradient Capabilities Grid (-sg)
   ========================================= */
.seo-capabilities-section-sg {
    padding: 70px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden; 
}

/* Background Lion SVG */
.capabilities-bg-art-sg {
    position: absolute;
    right: -5%; 
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.1; 
    z-index: 1;
    pointer-events: none;
}

.capabilities-container-sg {
    position: relative;
    z-index: 2; 
}

.capabilities-header-sg {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.capabilities-header-sg h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 15px;
}

.capabilities-header-sg p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

/* 5-Column Grid */
.capabilities-grid-sg {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* The Base Card */
.capability-card-sg {
    position: relative;
    background-color: #F0F4F8; 
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* The Gradient Layer (Fades in on hover) */
.cap-grad-layer-sg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Clean, solid dark blue gradient */
    background: linear-gradient(180deg, #073C83 0%, #020D1D 100%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Content Wrapper */
.cap-content-sg {
    position: relative;
    z-index: 2; 
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Text and Icon Styling */
.cap-icon-sg {
    width: 35px;
    height: 35px;
    margin-bottom: 10px;
}

.cap-icon-sg img {
    width: 100%; height: 100%;
    /* Re-using your blue filter logic here just in case */
    filter: brightness(0) saturate(100%) invert(14%) sepia(80%) saturate(2857%) hue-rotate(199deg) brightness(94%) contrast(99%);
    transition: filter 0.3s ease;
}

.capability-card-sg h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.capability-card-sg p {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 22px;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.capability-card-sg .learn-more-sg {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

/* =========================================
   Hover & Active States (The Magic!)
   ========================================= */

/* Lift the card */
.capability-card-sg:hover, .capability-card-sg.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Fade in the Solid Gradient */
.capability-card-sg:hover .cap-grad-layer-sg, .capability-card-sg.active .cap-grad-layer-sg {
    opacity: 1; 
}

/* Turn text white */
.capability-card-sg:hover h3, .capability-card-sg:hover p, .capability-card-sg:hover .learn-more-sg,
.capability-card-sg.active h3, .capability-card-sg.active p, .capability-card-sg.active .learn-more-sg {
    color: var(--color-white);
}

/* Turn the SVG Icon white */
.capability-card-sg:hover .cap-icon-sg img, .capability-card-sg.active .cap-icon-sg img {
    filter: brightness(0) invert(1);
}

/* Animate the arrow */
.capability-card-sg:hover .learn-more-sg svg, .capability-card-sg.active .learn-more-sg svg {
    transform: translate(2px, -2px);
}

/* =========================================
   Responsive Adjustments (Mobile Carousel)
   ========================================= */
@media (max-width: 1100px) {
    .capabilities-grid-sg { gap: 15px; }
    .cap-content-sg { padding: 30px 20px; }
}

@media (max-width: 900px) {
    .seo-capabilities-section-sg { padding: 60px 0; }
    
    .capabilities-header-sg h2 { font-size: 2.8rem; }
    .capabilities-header-sg p { padding: 0 10px; }

    /* Convert Grid to Flex Carousel */
    .capabilities-grid-sg {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-top: 10px;
        padding-bottom: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 35px;
        padding-right: 20px;
    }

    .capabilities-grid-sg::-webkit-scrollbar { display: none; }

    .capability-card-sg {
        flex: 0 0 75%; 
        scroll-snap-align: center;
        min-height: 380px; 
    }
}













































/* =========================================
   Blog Article Page (-blgart)
   ========================================= */
.blog-article-section-blgart {
    padding: 50px 0;
    background-color: var(--color-white);
}

.blog-article-container-blgart {
    display: grid;
    grid-template-columns: 2.2fr 1fr; /* Main content takes up roughly 68%, sidebar 32% */
    gap: 60px;
    align-items: start; /* Prevents sidebar from stretching full height */
}

/* --- MAIN ARTICLE CONTENT --- */
.article-text-blgart p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.article-text-blgart img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    display: block;
}

/* Bottom Recent Blogs Section */
.article-recent-cards-blgart {
    margin-top: 60px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

.article-recent-cards-blgart h2 {
    font-family: 'Genos', sans-serif;
    font-size: 2.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 30px;
}

.recent-cards-grid-blgart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card-blgart {
    background-color: #DEEBFF; /* Light blue */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card-blgart img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.blog-card-content-blgart {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content-blgart h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.5rem;
    color: var(--color-sticky-nav);
    font-weight: 500;
    line-height: 0.9;
    margin-bottom: 0px;
}

.blog-category-blgart {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.blog-card-content-blgart p {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-blgart {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more-blgart:hover svg {
    transform: translate(2px, -2px);
    transition: transform 0.2s;
}

/* Dots (Hidden on Desktop) */
.carousel-dots-blgart {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.dot-blgart {
    width: 10px; height: 10px; border-radius: 50%; background-color: #B0C4DE; transition: all 0.3s;
}
.dot-blgart.active {
    background-color: #073C83; width: 30px; border-radius: 5px;
}

/* --- SIDEBAR --- */
.article-sidebar-blgart {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Search */
.sidebar-search-blgart {
    display: flex;
    height: 45px;
}

.sidebar-search-blgart input {
    flex-grow: 1;
    background-color: #F0F4F8;
    border: none;
    padding: 0 15px;
    border-radius: 6px 0 0 6px;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
}

.sidebar-search-blgart input:focus { outline: none; }

.sidebar-search-blgart button {
    background-color: #073C83;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Widgets Base */
.sidebar-widget-blgart h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 20px;
}

/* Sidebar Recent List */
.sidebar-recent-list-blgart {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-recent-list-blgart li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sidebar-recent-list-blgart img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.sidebar-recent-text-blgart {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-recent-text-blgart a {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.3;
}

.sidebar-recent-text-blgart .date-blgart {
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    color: #a0aec0;
}

/* Sidebar Links (Categories, Archives) */
.sidebar-link-list-blgart {
    list-style: none;
    padding: 0; margin: 0;
}

.sidebar-link-list-blgart li {
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-link-list-blgart li:last-child {
    border-bottom: none;
}

.sidebar-link-list-blgart a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-link-list-blgart a:hover {
    color: var(--color-sticky-nav);
}

.sidebar-link-list-blgart a strong {
    color: var(--color-sticky-nav);
    font-weight: 600;
}

/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 900px) {
    .blog-article-container-blgart {
        grid-template-columns: 1fr; /* Stacks main content on top of sidebar */
        gap: 50px;
    }

    .article-recent-cards-blgart h2 {
        text-align: center;
    }

    /* Convert Grid to Flex Carousel for Mobile */
    .recent-cards-grid-blgart {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px;
        margin-left: -20px; margin-right: -20px;
        padding-left: 50px; padding-right: 20px;
    }

    .recent-cards-grid-blgart::-webkit-scrollbar { display: none; }

    .blog-card-blgart {
        flex: 0 0 85%; /* Cards take 85% width on mobile */
        scroll-snap-align: center;
    }

    .carousel-dots-blgart {
        display: flex; /* Show dots on mobile */
    }
}






















/* =========================================
   Blog Grid Page (-blggrid)
   ========================================= */
.blog-grid-section-blggrid {
    padding: 80px 0;
    background-color: var(--color-white);
}

.blog-grid-container-blggrid {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Wider main area for the 3-column grid */
    gap: 50px;
    align-items: start;
}

/* --- MAIN BLOG GRID --- */
.articles-grid-blggrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card-blggrid {
    background-color: #DEEBFF; /* Signature light blue */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.blog-card-blggrid:hover {
    transform: translateY(-5px);
}

.blog-card-blggrid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-content-blggrid {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content-blggrid h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.5rem;
    color: var(--color-sticky-nav);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
}

.blog-category-blggrid {
    font-family: 'Geist', sans-serif;
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.blog-card-content-blggrid p {
    font-family: 'Geist', sans-serif;
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-blggrid {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more-blggrid:hover svg {
    transform: translate(2px, -2px);
    transition: transform 0.2s ease;
}

/* Load More Button */
.load-more-btn-blggrid {
    display: block;
    margin: 50px auto 0 auto;
    background-color: #DEEBFF;
    color: var(--color-sticky-nav);
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.load-more-btn-blggrid:hover {
    background-color: #c7defa; /* Slightly darker on hover */
}

/* --- SIDEBAR --- */
.grid-sidebar-blggrid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Search */
.sidebar-search-blggrid {
    display: flex;
    height: 45px;
}

.sidebar-search-blggrid input {
    flex-grow: 1;
    background-color: #F0F4F8;
    border: none;
    padding: 0 15px;
    border-radius: 6px 0 0 6px;
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
}

.sidebar-search-blggrid input:focus { outline: none; }

.sidebar-search-blggrid button {
    background-color: #073C83;
    border: none;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Widgets Base */
.sidebar-widget-blggrid h3 {
    font-family: 'Genos', sans-serif;
    font-size: 1.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 20px;
}

/* Sidebar Recent List */
.sidebar-recent-list-blggrid {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-recent-list-blggrid li {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sidebar-recent-list-blggrid img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.sidebar-recent-text-blggrid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-recent-text-blggrid a {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: var(--color-sticky-nav);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.3;
}

.sidebar-recent-text-blggrid .date-blggrid {
    font-family: 'Geist', sans-serif;
    font-size: 0.75rem;
    color: #a0aec0;
}

/* Sidebar Links (Categories, Archives) */
.sidebar-link-list-blggrid {
    list-style: none;
    padding: 0; margin: 0;
}

.sidebar-link-list-blggrid li {
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-link-list-blggrid li:last-child {
    border-bottom: none;
}

.sidebar-link-list-blggrid a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-link-list-blggrid a:hover {
    color: var(--color-sticky-nav);
}

.sidebar-link-list-blggrid a strong {
    color: var(--color-sticky-nav);
    font-weight: 600;
}

/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 1024px) and (min-width: 901px) {
    /* Tablet: Reduce grid to 2 columns */
    .articles-grid-blggrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .blog-grid-container-blggrid {
        grid-template-columns: 1fr; /* Stacks main content on top of sidebar */
        gap: 60px;
    }

    .articles-grid-blggrid {
        grid-template-columns: 1fr; /* Cards stack vertically on mobile */
        gap: 30px;
    }

    .blog-card-blggrid img {
        height: 220px; /* Slightly taller images for the full-width mobile cards */
    }

    .load-more-btn-blggrid {
        width: 100%; /* Full width button on mobile */
        max-width: 300px;
    }
}








































/* =========================================
   Terms & Conditions Page (-tc)
   ========================================= */

/* --- Hero Section --- */
.page-hero-tc {
    /* Replicating that deep, rich blue gradient from your mockup */
    background: rgb(242, 242, 242);
    padding: 60px 0 60px 0;
    text-align: center;
}

.page-title-tc {
    font-family: 'Genos', sans-serif;
    font-size: 4rem;
    color: rgb(1, 24, 75);
    font-weight: 400;
    line-height: 0.9;
    margin: 0;
}

/* --- Content Section --- */
.legal-content-section-tc {
    padding: 80px 0 100px 0;
    background-color: var(--color-white);
}

.legal-container-tc {
    /* Constrain the width for optimal reading experience */
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Typography */
.legal-container-tc p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Headings (e.g., "1. General Provisions") */
.legal-heading-tc {
    font-family: 'Geist', sans-serif;
    font-size: 1.15rem;
    color: var(--color-sticky-nav);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Standard Bullet List */
.legal-list-tc {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-list-tc li {
    margin-bottom: 10px;
}

/* Alphabetical Ordered List (a, b, c) */
.legal-list-alpha-tc {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: lower-alpha; /* Changes 1, 2, 3 to a, b, c */
}

.legal-list-alpha-tc li {
    margin-bottom: 10px;
}

/* Last Updated Text */
.legal-updated-tc {
    margin-top: 50px;
    font-style: italic;
    color: #718096;
}

/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 900px) {
    .page-hero-tc {
        padding: 90px 0 70px 0;
    }

    .page-title-tc {
        font-size: 3rem;
    }

    .legal-content-section-tc {
        padding: 50px 0;
    }

    .legal-container-tc p,
    .legal-list-tc,
    .legal-list-alpha-tc {
        font-size: 1rem; /* Slightly smaller text for mobile */
    }

    .legal-heading-tc {
        margin-top: 35px;
    }
}
































/* =========================================
   FAQ Section (-faq)
   ========================================= */
.faq-section-faq {
    padding: 70px 0;
    background-color: var(--color-white);
}

.faq-container-faq {
    max-width: 950px; /* Constrains the width for readability */
    margin: 0 auto;
}

.faq-header-faq {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header-faq h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 15px;
}

.faq-header-faq p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Container Borders */
.faq-accordion-faq {
    border-top: 1px solid #CBD5E0; /* Top border of the whole block */
}

.faq-item-faq {
    border-bottom: 1px solid #CBD5E0; /* Divider between items */
}

/* Question Button */
.faq-question-faq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Genos', sans-serif;
    font-size: 1.6rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 1.3;
    gap: 30px; /* Space between text and icon */
    transition: color 0.3s ease;
}

/* Icon Animation */
.faq-icon-faq {
    color: #1a202c;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Active State Styles */
.faq-item-faq.active .faq-icon-faq {
    transform: rotate(180deg); /* Flips the chevron UP */
}

/* Answer Container (Hidden by default using max-height) */
.faq-answer-faq {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner-faq {
    padding-bottom: 30px; /* Space before the border line */
}

.faq-answer-inner-faq p {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   Responsive Adjustments (Mobile)
   ========================================= */
@media (max-width: 900px) {
    .faq-section-faq {
        padding: 60px 5vw;
    }

    .faq-header-faq h2 {
        font-size: 2.8rem;
    }

    .faq-question-faq {
        font-size: 1.4rem;
        padding: 20px 0;
        gap: 15px;
    }

    .faq-answer-inner-faq {
        padding-bottom: 25px;
    }
}






























































































































































/* =========================================
   Contact Us Page
   ========================================= */
.contact-page-section {
    padding: 70px 0;
    background-color: var(--color-white);
}

/* Desktop Grid Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: auto 1fr;
    gap: 40px 80px; /* Row gap, Column gap */
    align-items: start;
}

/* Left Column Elements */
.contact-intro {
    grid-column: 1;
    grid-row: 1;
    max-width: 450px;
}

.contact-info-cnt {
    grid-column: 1;
    grid-row: 2;
    align-self: end; /* Pushes it to the bottom of the left column */
    max-width: 100%;
}

/* Right Column Element (Spans both rows) */
.contact-right {
    grid-column: 2;
    grid-row: 1 / 3;
    background-color: #E8F0F8; 
    padding: 70px 60px;
    position: relative;
    min-height: 580px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; 
}

/* Typography */
.contact-intro h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.8;
    margin-bottom: 25px;
}
.contact-intro_secondtrl h2 {
    font-family: 'Genos', sans-serif;
    font-size: 3.2rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.8;
    margin-bottom: 25px;
}
.contact-intro_secondtrl {
    display: none;
}
.contact-intro p, .contact-info-cnt p, .contact-intro_secondtrl p {
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-cnt h3 {
    font-family: 'Genos', sans-serif;
    font-size: 2.6rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.8;
    margin-bottom: 15px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item.full-width { grid-column: 1 / -1; }

.info-item h4 {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item a, .info-item p {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    text-decoration: none;
    margin: 0;
}

/* Base states for the animated blocks */
.form-content, .contact-success-msg {
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.form-content { opacity: 1; transform: translateX(0); visibility: visible; }

/* Renamed to .contact-success-msg */
.contact-success-msg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 60px;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    opacity: 0; transform: translateX(60px); visibility: hidden;
}

/* THE MAGIC ANIMATION TRIGGER */
.contact-right.submitted .form-content { opacity: 0; transform: translateX(-60px); visibility: hidden; }
/* Renamed here too */
.contact-right.submitted .contact-success-msg { opacity: 1; transform: translateX(0); visibility: visible; }

/* Form Styles */
.form-content h2 {
    font-family: 'Genos', sans-serif;
    font-size: 2.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.input-group { margin-bottom: 35px; }
.input-row { display: flex; gap: 40px; }
.input-row .half { flex: 1; }

.contact-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-sticky-nav);
    padding: 10px 0;
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    color: var(--color-sticky-nav);
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder { color: var(--color-sticky-nav); opacity: 0.9; }
.contact-form input:focus { outline: none; border-bottom: 2px solid var(--color-accent); }

.form-submit-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.contact-form .btn-primary {
    border: none;
    cursor: pointer;
}

/* Renamed Success Message Styles */
.contact-success-icon { width: 100px; height: 100px; margin-bottom: 30px; }

.contact-success-msg h2 {
    font-family: 'Genos', sans-serif;
    font-size: 2.8rem;
    color: var(--color-sticky-nav);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 20px;
}

.contact-success-msg p {
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    color: var(--color-sticky-nav);
    line-height: 1.6;
    max-width: 450px;
}
/* --- FIX: Independent Contact Button Styling --- */
.form-submit-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.btn-contact {
    background-color: #FACA19; /* Your brand yellow */
    color: var(--color-sticky-nav); /* Dark blue text */
    font-family: 'Geist', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 14px 40px;
    border: none;
    border-radius: 8px; /* Slight rounding to match inputs */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-contact:hover {
    background-color: #e5b816; /* Slightly darker yellow on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
/* =========================================
   Mobile Responsive (Contact Page Fix)
   ========================================= */
@media (max-width: 900px) {
    /* Switch from Grid to Flex to enable strict top-to-bottom reordering */
    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    /* 1. Intro Section (Top) */
    .contact-intro { 
        order: 1; 
        text-align: center; 
        max-width: 100%;
        margin: 0 auto;
    }
    .contact-intro h2 { font-size: 2.8rem; }
    
    /* Hide the duplicate hacky class if it's lingering in the HTML */
    .contact-intro_secondtrl { display: none !important; }

    /* 2. Form Box (Middle) */
    .contact-right { 
        order: 2; 
        border-radius: 16px; /* Softer corners matching your mockup */
        padding: 40px 25px; 
        width: 100%; 
        min-height: auto;
    }
    
    .form-content h2 { 
        text-align: center; /* Centers "Get in touch" */
        font-size: 2.4rem; 
        margin-bottom: 30px;
    }

    .input-row {
        flex-direction: column;
        gap: 0; /* Let margin-bottom handle stacking */
    }

    /* 3. Contact Info Section (Bottom) */
    .contact-info-cnt { 
        order: 3; 
        text-align: center; /* Centers the "Other ways..." heading & paragraph */
        min-width: 80vw;
        max-width: 100%;
        margin: 0 10vw;
    }
    .contact-info-cnt h3 { font-size: 2.4rem; }

    /* The Details Grid (Email, Phone, Office) */
    .info-grid {
        text-align: left; /* Forces the actual details to stay left-aligned */
        max-width: 450px; /* Constrains the width so it looks neat */
        margin: 0 auto;   /* Centers the entire block under the paragraph */
        gap: 25px 15px;   /* Row gap, Column gap */
    }

    .contact-success-msg { padding: 50px 20px; }
}
























/* =========================================
   Mobile Navigation - Burger Icon (Header)
   ========================================= */


/* Hide the burger button on Desktop */
@media (min-width: 901px) {
   
}

/* =========================================
   Mobile Navigation - Glassmorphism Modal
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Darkens the rest of the website */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Animation defaults */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active State to show the menu */
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* The Modal Box Itself */
.mobile-menu-modal {
    width: 90% !important;
    max-width: 400px !important;
    background: rgba(245, 245, 245, 0.608) !important; /* Highly transparent white/grey */
    backdrop-filter: blur(20px) !important; /* The Frosted Glass Magic */
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important; /* Subtle white shine on edges */
    border-radius: 24px !important;
    padding: 25px 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    
    /* Slide up animation default */
    transform: translateY(30px) scale(0.95) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Bouncy pop-in */
}

.mobile-menu-overlay.active .mobile-menu-modal {
    transform: translateY(0) scale(1);
}

/* --- Top Bar: Logo & Close --- */
.mobile-modal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-modal-logo {
    height: 75px;
    width: auto;
}

.close-menu-btn {
    
    background: #e5e5e587;
    border: none;
    cursor: pointer;
    padding: 4px 4px 0px 4px;
    margin-top: 2px;
    border-radius: 12px;
}

/* --- Navigation Links --- */
.mobile-modal-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: center;
}

.mobile-modal-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-modal-nav li:last-child {
    border-bottom: none;
}

.mobile-modal-nav a {
    display: inline-block; /* Inline block so the yellow border fits the text width */
    font-family: 'Geist', sans-serif;
    font-size: 1.15rem;
    color: #1a202c;
    text-decoration: none;
    padding: 12px 0;
    font-weight: 500;
}
.mobile-modal-nav a:hover,
.mobile-modal-nav a.active {
    border-bottom: 3px solid #FACA19; /* The yellow active underline */
}

.mobile-modal-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 20px 25px 20px;
}

/* --- Contact Info section --- */
.mobile-modal-contact {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the block */
    gap: 15px;
    margin-bottom: 25px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 220px; /* Forces alignment of the icons */
}

.icon-circle {
    width: 35px;
    height: 35px;
    background-color: #073C83; /* Dark brand blue */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-row span {
    font-family: 'Geist', sans-serif;
    font-size: 1rem;
    color: #1a202c;
    font-weight: 500;
}

/* --- Trustpilot Badge --- */
.mobile-modal-trustpilot {
    text-align: center;
    margin-bottom: 25px;
}

.mobile-modal-trustpilot img {
    height: 80px;
    width: auto;
}

/* --- Internal Service Menu Button --- */
.menu-inner-service-btn {
    width: 100%;
    background-color: #FACA19; /* Brand Yellow */
    color: #1a202c;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-family: 'Geist', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.menu-inner-service-btn:active {
    background-color: #e5b816; /* Slight darken when tapped */
}























/* WP Pagination Styles */
.pagination-wrapper { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pagination-wrapper .page-numbers { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: #f0f4f8; color: #073C83; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.3s ease; border: 1px solid transparent; }
.pagination-wrapper .page-numbers:hover { background-color: #FACA19; color: #020D1D; }
.pagination-wrapper .page-numbers.current { background-color: #073C83; color: #ffffff; }
.pagination-wrapper .page-numbers.next, .pagination-wrapper .page-numbers.prev { width: auto; padding: 0 16px; }

/* =========================================
   WordPress Core Image Alignment Styles
   ========================================= */
img.alignleft, figure.alignleft, .alignleft {
    float: left;
    margin: 10px 40px 20px 0 !important;
    max-width: 50%;
}
img.alignright, figure.alignright, .alignright {
    float: right;
    margin: 10px 0 20px 40px !important;
    max-width: 50%;
}
img.aligncenter, figure.aligncenter, .aligncenter {
    display: block;
    margin: 20px auto !important;
}
figure.aligncenter, 
figure.alignleft, 
figure.alignright, 
figure.alignnone {
    margin-bottom: 1.5em;
}
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
    font-family: 'Geist', sans-serif;
    font-size: 0.85em;
    color: #718096;
    text-align: center;
}
/* Disable floats on mobile for better reading */
@media (max-width: 768px) {
    .alignleft, .alignright {
        float: none;
        margin: 1.5em auto;
        max-width: 100%;
        display: block;
    }
}

/* =========================================
   Content Link Colors (page.php & single.php)
   ========================================= */
.article-text-blgart a,
.page-content a,
.legal-container-tc p a,
.legal-list-tc a {
    color: #073d84;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.article-text-blgart a:hover,
.page-content a:hover,
.legal-container-tc p a:hover,
.legal-list-tc a:hover {
    color: #FACA19; /* Brand Yellow on hover */
}


/* Headings styling for standard page and blog article content */
.article-text-blgart h1,
.article-text-blgart h2,
.article-text-blgart h3,
.article-text-blgart h4,
.article-text-blgart h5,
.article-text-blgart h6 {
    color: #073D84;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* Standard list styling for standard page and blog article content */
.article-text-blgart ul {
    list-style-type: disc;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.article-text-blgart ol {
    list-style-type: decimal;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.article-text-blgart li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* Update list indent and bullet/number color */
.article-text-blgart ul,
.article-text-blgart ol {
    margin-left: 2.5em;
}

.article-text-blgart ul li::marker,
.article-text-blgart ol li::marker {
    color: #073D84;
}

/* Ensure proper padding on mobile for standard pages and blog articles */
@media (max-width: 768px) {
    .article-text-blgart {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Dynamic Legal Content Styles (Maps static classes to standard tags for the WordPress editor) */
.dynamic-legal-content h2 {
    font-family: 'Geist', sans-serif;
    font-size: 1.15rem;
    color: #073d84;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.dynamic-legal-content ul,
.dynamic-legal-content ol {
    margin-left: 20px;
    margin-bottom: 25px;
    color: #4A5568;
    line-height: 1.6;
}

.dynamic-legal-content ul {
    list-style-type: disc;
}

.dynamic-legal-content ol {
    list-style-type: lower-alpha;
}

.dynamic-legal-content li {
    margin-bottom: 10px;
}

/* Style for the "Last Updated" text if placed at the end */
.dynamic-legal-content p:last-child {
    font-style: italic;
    color: #718096;
    margin-top: 40px;
}



/* 1. Limit the overall form width to 900px and center it */
.cta-form-wrapper {
    max-width: 900px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* 2. Make the rows flex containers and ALWAYS keep them in a row */
.cta-form .form-row {
    display: flex !important;
    flex-direction: row !important; /* Forces items to stay side-by-side */
    gap: 20px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

/* 3. Make the CF7 wrappers grow to fill available space */
.cta-form .form-row .wpcf7-form-control-wrap {
    flex: 1 !important;
    display: block !important;
    min-width: 0 !important; /* Prevents long text from breaking the 50% split */
}

/* 4. Force the actual inputs to fill 100% of their wrapper */
.cta-form .form-row input.wpcf7-form-control {
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 5. Adjust gaps for mobile screens but KEEP the row layout */
@media (max-width: 900px) {
    .cta-form .form-row {
        gap: 10px !important; /* Slightly smaller gap so they don't squish too much on phones */
        margin-bottom: 15px !important;
    }
}



@media (max-width: 450px) {
    /* Bottom Recent Blogs Section */
.article-recent-cards-blgart {
    margin-top: 10px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

}
/* Enable Smooth Scrolling for Anchor Links */
html { scroll-behavior: smooth; }

