/* RESET & SCOPED VARIABLES */
:root {
    --hero-sec-primary: #007bff;
    --hero-sec-primary-hover: #0056b3;
    --hero-sec-text-main: #0f172a;
    --hero-sec-text-muted: #64748b;
    --hero-sec-bg-gradient: radial-gradient(circle at 10% 20%, rgba(0, 123, 255, 0.12) 0%, rgba(255, 255, 255, 1) 80%),
        linear-gradient(180deg, #ffffff 0%, rgba(0, 123, 255, 0.05) 100%);
    --stats-sec-primary: #007bff;
    --stats-sec-dark: #0f172a;
    --stats-sec-muted: #64748b;
    --stats-sec-border: #e2e8f0;
    --stats-sec-bg: #f8fafc;
    --wwdb-sec-primary: #007bff;
    --wwdb-sec-primary-soft: rgba(0, 123, 255, 0.08);
    --wwdb-sec-primary-glow: rgba(0, 123, 255, 0.15);
    --wwdb-sec-accent-orange: #007bff;
    --wwdb-sec-text-dark: #0f172a;
    --wwdb-sec-text-muted: #64748b;
    --wwdb-sec-card-bg: #ffffff;
    --wwdb-sec-border-color: #f1f5f9;
    --wwdb-sec-bg-light: #fafbfd;
    --pmq-sec-bg: #090a0f;
    --pmq-sec-card-bg: #18181c;
    --pmq-sec-card-hover: #222228;
    --pmq-sec-border: #2a2a32;
    --pmq-sec-accent-purple: #8b5cf6;
    --pmq-sec-text: #f1f5f9;
    --ops-sec-primary: #007bff;
    --ops-sec-primary-hover: #0056b3;
    --ops-sec-primary-glow: rgba(0, 123, 255, 0.25);
    --ops-sec-accent-badge: #007bff;
    --ops-sec-text-dark: #0f172a;
    --ops-sec-text-muted: #64748b;
    --ops-sec-bg-light: #f8fafc;
    --ops-sec-card-bg: #111115;
}

/* MAIN CONTAINER */
#hero-sec-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: var(--hero-sec-bg-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 40px 20px 40px 20px; */
    overflow: hidden;
}

/* BACKGROUND GLOWS */
.hero-sec-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(0, 123, 255, 0.18);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-sec-glow-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: rgba(0, 123, 255, 0.08);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-sec-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* LEFT CONTENT AREA */
.hero-sec-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Award Badge */
.hero-sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 123, 255, 0.08);
    color: var(--hero-sec-primary);
    border: 1px solid rgba(0, 123, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.05);
    animation: heroSecFadeIn 0.8s ease-out;
}

.hero-sec-badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--hero-sec-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    animation: heroSecPulse 2s infinite;
}

/* Heading */
.hero-sec-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--hero-sec-text-main);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    animation: heroSecSlideUp 0.8s ease-out 0.2s both;
}

.hero-sec-title-highlight {
    color: var(--hero-sec-primary);
    display: inline-block;
}

/* Description */
.hero-sec-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--hero-sec-text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    animation: heroSecSlideUp 0.8s ease-out 0.4s both;
}

/* Buttons Container */
.hero-sec-btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: heroSecSlideUp 0.8s ease-out 0.6s both;
}

.hero-sec-btn-primary {
    background-color: #0f172a;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    border: 2px solid #0f172a;
}

.hero-sec-btn-primary:hover {
    background-color: var(--hero-sec-primary);
    border-color: var(--hero-sec-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.3);
}

.hero-sec-btn-secondary {
    background: #ffffff;
    color: #334155;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hero-sec-btn-secondary:hover {
    border-color: var(--hero-sec-primary);
    color: var(--hero-sec-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1);
}

/* Social Proof */
.hero-sec-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: heroSecSlideUp 0.8s ease-out 0.8s both;
}

.hero-sec-avatars {
    display: flex;
    align-items: center;
}

.hero-sec-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-sec-avatar:first-child {
    margin-left: 0;
}

.hero-sec-proof-text {
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--hero-sec-text-muted);
}

.hero-sec-proof-highlight {
    color: var(--hero-sec-primary);
    font-weight: 700;
    display: block;
}

/* RIGHT COLUMN (IMAGE ONLY) */
.hero-sec-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroSecFloat 6s ease-in-out infinite;
}

.hero-sec-image-wrapper {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.12), 0 0 0 1px rgba(0, 123, 255, 0.08);
    background: #ffffff;
}

.hero-sec-image-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-sec-assets-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

/* SCROLL DOWN INDICATOR */
.hero-sec-scroll-down {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hero-sec-text-muted);
    cursor: pointer;
    z-index: 2;
}

.hero-sec-scroll-line {
    width: 16px;
    height: 2px;
    background-color: var(--hero-sec-primary);
}

/* ANIMATIONS */
@keyframes heroSecSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSecFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroSecPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 123, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@keyframes heroSecFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-sec-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-sec-left {
        align-items: center;
    }

    .hero-sec-title {
        font-size: 2.75rem;
    }

    .hero-sec-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-sec-btn-group {
        justify-content: center;
    }

    .hero-sec-proof {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    #hero-sec-wrapper {
        padding: 50px 16px 30px 16px;
    }

    .hero-sec-title {
        font-size: 2.1rem;
    }

    .hero-sec-description {
        font-size: 0.95rem;
    }

    .hero-sec-btn-group {
        width: 100%;
        flex-direction: column;
    }

    .hero-sec-btn-primary,
    .hero-sec-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

#stats-sec-wrapper {
    width: 100%;
    background-color: var(--stats-sec-bg);
    border-top: 1px solid var(--stats-sec-border);
    border-bottom: 1px solid var(--stats-sec-border);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* INNER CONTAINER Grid */
.stats-sec-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    /* Default desktop: 6 columns */
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* INDIVIDUAL STAT ITEM */
.stats-sec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 8px;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 12px;
}

/* Subtle Hover Effect */
.stats-sec-item:hover {
    transform: translateY(-4px);
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.06);
}

/* Dividers between desktop items */
.stats-sec-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: var(--stats-sec-border);
}

/* NUMERIC / VALUE TEXT */
.stats-sec-number {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--stats-sec-dark);
    letter-spacing: -0.5px;
}

/* Highlight color variations matching design intent */
.stats-sec-accent-primary {
    color: var(--stats-sec-primary);
}

.stats-sec-accent-green {
    color: #10b981;
}

.stats-sec-accent-amber {
    color: #f59e0b;
}

/* LABEL TEXT BELOW NUMBER */
.stats-sec-label {
    font-size: 0.725rem;
    font-weight: 700;
    color: var(--stats-sec-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .stats-sec-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }

    /* Hide Desktop dividers on tablet grid */
    .stats-sec-item::after {
        display: none !important;
    }
}

/* MOBILE: Exactly 2 per row */
@media (max-width: 576px) {
    #stats-sec-wrapper {
        padding: 30px 12px;
    }

    .stats-sec-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items in each row */
        gap: 20px 10px;
    }

    .stats-sec-number {
        font-size: 1.75rem;
    }

    .stats-sec-label {
        font-size: 0.65rem;
    }

    .stats-sec-item {
        padding: 12px 4px;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.8);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    }
}

#wwdb-sec-wrapper {
    width: 100%;
    padding: 90px 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--wwdb-sec-bg-light) 100%);
    position: relative;
}

/* CONTAINER GRID */
.wwdb-sec-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE CONTENT */
.wwdb-sec-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Category Badge */
.wwdb-sec-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wwdb-sec-accent-orange);
    margin-bottom: 16px;
}

/* Section Headline */
.wwdb-sec-heading {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--wwdb-sec-text-dark);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

/* Paragraph */
.wwdb-sec-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--wwdb-sec-text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

/* Client Outcome Box (With Vertical Line) */
.wwdb-sec-outcomes-box {
    border-left: 3px solid var(--wwdb-sec-accent-orange);
    padding-left: 20px;
}

.wwdb-sec-outcomes-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wwdb-sec-text-muted);
    margin-bottom: 14px;
}

.wwdb-sec-outcomes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wwdb-sec-outcomes-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--wwdb-sec-text-dark);
}

.wwdb-sec-dot {
    width: 7px;
    height: 7px;
    background-color: #007bff;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* RIGHT SIDE CARDS GRID */
.wwdb-sec-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* INDIVIDUAL CARD */
.wwdb-sec-card {
    background: var(--wwdb-sec-card-bg);
    border: 1px solid var(--wwdb-sec-border-color);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.wwdb-sec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 20px 40px var(--wwdb-sec-primary-glow);
}

/* Card Icon Container */
.wwdb-sec-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background-color: var(--wwdb-sec-primary-soft);
    color: var(--wwdb-sec-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.wwdb-sec-card:hover .wwdb-sec-icon-box {
    background-color: var(--wwdb-sec-primary);
    color: #ffffff;
    transform: scale(1.05);
}

/* Card Content */
.wwdb-sec-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wwdb-sec-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.wwdb-sec-card-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--wwdb-sec-text-muted);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .wwdb-sec-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .wwdb-sec-left {
        max-width: 600px;
    }

    .wwdb-sec-heading {
        font-size: 2.5rem;
    }
}

/* MOBILE VIEW: Cards 2 per row */
@media (max-width: 576px) {
    #wwdb-sec-wrapper {
        padding: 60px 16px;
    }

    .wwdb-sec-heading {
        font-size: 2rem;
    }

    .wwdb-sec-desc {
        font-size: 0.95rem;
    }

    .wwdb-sec-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Exactly 2 cards per row */
        gap: 12px;
    }

    .wwdb-sec-card {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .wwdb-sec-icon-box {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .wwdb-sec-card-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .wwdb-sec-card-desc {
        font-size: 0.725rem;
        line-height: 1.4;
    }
}

#pmq-sec-wrapper {
    width: 100%;
    background-color: var(--pmq-sec-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* GRADIENT FADE OVERLAYS AT EDGES */
#pmq-sec-wrapper::before,
#pmq-sec-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#pmq-sec-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--pmq-sec-bg) 0%, transparent 100%);
}

#pmq-sec-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--pmq-sec-bg) 0%, transparent 100%);
}

/* MARQUEE TRACK CONTAINER */
.pmq-sec-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.pmq-sec-track {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    align-items: center;
    padding-right: 20px;
    will-change: transform;
}

/* ROW ANIMATIONS */
.pmq-sec-track-left {
    animation: pmqSecScrollLeft 35s linear infinite;
}

.pmq-sec-track-right {
    animation: pmqSecScrollRight 35s linear infinite;
}

/* Pause animation on hover */
.pmq-sec-row:hover .pmq-sec-track {
    animation-play-state: paused;
}

/* PILL CARD STYLING */
.pmq-sec-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: var(--pmq-sec-card-bg);
    border: 1px solid var(--pmq-sec-border);
    padding: 18px 28px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pmq-sec-pill:hover {
    background-color: var(--pmq-sec-card-hover);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
}

/* CHECKMARK ICON */
.pmq-sec-check {
    color: var(--pmq-sec-accent-purple);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* TEXT STYLING */
.pmq-sec-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pmq-sec-text);
    letter-spacing: -0.2px;
}

/* ANIMATION KEYFRAMES */
@keyframes pmqSecScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes pmqSecScrollRight {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    #pmq-sec-wrapper {
        padding: 40px 0;
        gap: 14px;
    }

    #pmq-sec-wrapper::before,
    #pmq-sec-wrapper::after {
        width: 80px;
    }

    .pmq-sec-track {
        gap: 12px;
        padding-right: 12px;
    }

    .pmq-sec-track-left {
        animation-duration: 25s;
    }

    .pmq-sec-track-right {
        animation-duration: 25s;
    }

    .pmq-sec-pill {
        padding: 12px 18px;
        border-radius: 14px;
        gap: 10px;
    }

    .pmq-sec-check {
        font-size: 0.9rem;
    }

    .pmq-sec-text {
        font-size: 0.875rem;
    }
}

#ops-sec-wrapper {
    width: 100%;
    padding: 90px 20px;
    background-color: var(--ops-sec-bg-light);
    position: relative;
}

/* CONTAINER & HEADER */
.ops-sec-container {
    max-width: 1280px;
    margin: 0 auto;
}

.ops-sec-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

/* Top Badge */
.ops-sec-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    background-color: rgba(245, 158, 11, 0.08);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ops-sec-accent-badge);
    margin-bottom: 16px;
}

.ops-sec-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ops-sec-text-dark);
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.ops-sec-subtitle {
    font-size: 1.05rem;
    color: var(--ops-sec-text-muted);
    line-height: 1.6;
}

/* SLIDER WRAPPER & CAROUSEL TRACK */
.ops-sec-slider-outer {
    position: relative;
    width: 100%;
}

.ops-sec-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 5px 30px 5px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.ops-sec-slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* SHOWCASE CARD STYLING */
.ops-sec-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: var(--ops-sec-card-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ops-sec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px var(--ops-sec-primary-glow);
    border-color: rgba(0, 123, 255, 0.4);
}

/* Image Wrapper & Overlay */
.ops-sec-card-media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ops-sec-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ops-sec-card:hover .ops-sec-card-img {
    transform: scale(1.05);
}

/* Card Content Gradient Overlay */
.ops-sec-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(10, 10, 12, 0.7) 50%, rgba(10, 10, 12, 0.98) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
}

/* Tag Pill */
.ops-sec-tag {
    align-self: flex-start;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--ops-sec-text-dark);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ops-sec-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.25;
}

.ops-sec-card-desc {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
    font-weight: 500;
}

/* SLIDER NAVIGATION & CONTROLS */
.ops-sec-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 0 10px;
}

/* Progress Line */
.ops-sec-progress-bar {
    flex: 1;
    max-width: 250px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.ops-sec-progress-fill {
    height: 100%;
    width: 33.33%;
    background-color: var(--ops-sec-primary);
    border-radius: 4px;
    transition: width 0.3s ease, transform 0.3s ease;
}

/* Navigation Buttons */
.ops-sec-nav-buttons {
    display: flex;
    gap: 12px;
}

.ops-sec-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--ops-sec-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ops-sec-nav-btn:hover {
    background-color: var(--ops-sec-primary);
    border-color: var(--ops-sec-primary);
    color: #ffffff;
    box-shadow: 0 6px 18px var(--ops-sec-primary-glow);
}

.ops-sec-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #ffffff;
    color: var(--ops-sec-text-dark);
    box-shadow: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .ops-sec-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 640px) {
    #ops-sec-wrapper {
        padding: 60px 16px;
    }

    .ops-sec-title {
        font-size: 2.1rem;
    }

    .ops-sec-card {
        flex: 0 0 85%;
        height: 380px;
    }

    .ops-sec-card-title {
        font-size: 1.15rem;
    }

    .ops-sec-card-desc {
        font-size: 0.8rem;
    }

    .ops-sec-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .wwdb-sec-icon-3d {
        height: 40px !important;
        width: 40px !important;
        object-fit: cover !important;
        object-position: center !important;
        margin: 10px !important;
    }
}

.wwdb-sec-icon-3d {
    height: 50px;
    width: 50px;
    object-fit: cover;
    object-position: center;
}