/* AMVIZ Digi Park - Homepage specific styles */

:root {
    --accent-lime: #1359D6; /* Reference image's signature neon lime-yellow */
    --accent-lime-hover: #d65b47;
    --bg-page-soft: #fafaf8; /* Premium off-white background */
    --border-soft: rgba(15, 23, 42, 0.08);
}

.page-container {
    background-color: var(--bg-page-soft);
    padding: 0; /* removed bottom padding to allow full-width footer to connect seamlessly */
    max-width: 100%;
    overflow-x: hidden;
}

/* 1. PREMIUM ANIMATED SILK HERO SECTION */
.premium-silk-hero {
    position: relative;
    background-color: #080c14;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* full viewport height */
    padding: 7.5rem 2rem 5.5rem 2rem;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}

/* Animated Silk Satin Background */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

.hero-bg-video-el {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 1.0; /* high quality visibility */
}

/* Translucent overlay for text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 12, 20, 0.35);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content layouts */
.hero-container-v3 {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Reviews row with gold stars */
.hero-reviews-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.45rem 1.25rem 0.45rem 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fade-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.review-avatar-stack {
    display: flex;
    align-items: center;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.review-avatar:first-child {
    margin-left: 0;
}

.review-stars-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars i.star-filled,
.review-stars svg.star-filled {
    width: 13px;
    height: 13px;
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

.review-count-text {
    font-family: var(--font-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

/* Badges capsule */
.hero-badge-capsule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fade-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-lime);
    stroke-width: 2.5;
}

/* Brand Name Emblem Styles */
.hero-brand-emblem-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    animation: fade-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.hero-brand-emblem {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 7vw, 4.75rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.8em;
    padding-left: 0.8em; /* centers the text precisely */
    line-height: 1;
    text-shadow: none; /* Removed shine completely */
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .hero-brand-emblem {
        letter-spacing: 0.45em;
        padding-left: 0.45em;
    }
}

/* Headings & Descriptions */
.hero-title-giant {
    font-family: var(--font-primary);
    font-weight: 800;
    color: #ffffff;
    font-size: clamp(2.25rem, 5.8vw, 4.25rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 840px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: fade-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.hero-desc-large {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 680px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: fade-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

/* Button columns */
.hero-cta-button-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    opacity: 0;
    animation: fade-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.btn-outline-white-custom {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline-white-custom:hover {
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Slide Up Animation Definition */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-icon-blue {
    width: 16px;
    height: 16px;
    color: #ffffff;
    stroke-width: 2.5;
    transition: color 0.3s ease;
}

.btn-outline-white-custom:hover .btn-icon-blue {
    color: #1359D6;
}

.btn-vibrant-blue-custom {
    background: #1359D6;
    color: #ffffff;
    text-decoration: none;
    padding: 0.85rem 1rem 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(19, 89, 214, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-vibrant-blue-custom:hover {
    background: #d65b47;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 89, 214, 0.25);
}

.btn-vibrant-tag {
    background: #ef4444;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
}

@media (max-width: 768px) {
    .premium-silk-hero {
        padding: 6rem 1.5rem 4rem 1.5rem;
    }
    .hero-badge-capsule {
        margin-bottom: 1.5rem;
    }
    .hero-cta-button-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    .btn-outline-white-custom, .btn-vibrant-blue-custom {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}




/* 4. SOLUTIONS TABLE SECTION */
.solutions-table-section {
    max-width: 1400px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.table-section-header {
    margin-bottom: 3rem;
}

.table-section-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.table-section-desc {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.solutions-table-container {
    display: flex;
    flex-direction: column;
}

.table-row-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 40px;
    align-items: center;
    padding: 1.75rem 1rem;
    border-bottom: 1.5px solid rgba(15, 23, 42, 0.08);
    position: relative;
    transition: background-color var(--transition-fast);
}

.table-row-item:first-child {
    border-top: 1.5px solid rgba(15, 23, 42, 0.08);
}

.table-row-item:hover {
    background-color: rgba(15, 23, 42, 0.01);
}

.table-row-title {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
}

.table-row-tag {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #475569;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    justify-self: start;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Lime accent tags */
.table-row-item:nth-child(2) .table-row-tag {
    background: var(--accent-lime);
    color: #0f172a;
}

.table-row-date {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.table-row-arrow {
    font-size: 1.35rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.table-row-item:hover .table-row-arrow {
    color: #0f172a;
    transform: translateX(4px);
}

/* Floating Hover Preview Card (Row 2 specific showcase) */
.floating-hover-preview {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translateY(-50%) scale(0.9) rotate(3deg);
    width: 200px;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 50;
    transition: opacity 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.table-row-item:hover .floating-hover-preview {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(-5deg);
}

/* Dynamic Hover Preview Card for JS functionality */
.dynamic-row-preview {
    position: fixed;
    width: 220px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transform: scale(0.9) rotate(2deg);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.dynamic-row-preview.visible {
    opacity: 1;
    transform: scale(1) rotate(-3deg);
}

.dynamic-row-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 5. VERTICAL CARDS GRID (4 COLUMNS) */
.verticals-grid-section {
    max-width: 1400px;
    margin: 0 auto 6rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.verticals-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vertical-service-card {
    border-radius: 32px;
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vertical-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.1);
    z-index: 1;
    transition: background var(--transition-fast);
}

.vertical-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.vertical-service-card:hover::after {
    background: rgba(15, 23, 42, 0.25);
}

.card-top-tags {
    position: relative;
    z-index: 5;
}

.service-card-tag {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Match the first tag with lime bg like reference image */
.vertical-service-card:first-child .service-card-tag {
    background: var(--accent-lime);
}

.card-bottom-content {
    position: relative;
    z-index: 5;
    color: #ffffff;
}

.service-card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card-desc {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.service-card-btn:hover {
    background: var(--accent-lime);
    transform: scale(1.02);
}

.btn-chevron {
    font-size: 1.1rem;
    line-height: 1;
}

/* 6. NEWSLETTER BANNER */
.newsletter-banner-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.newsletter-banner-container {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 32px;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.newsletter-pill-tag {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #475569;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.newsletter-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 3rem;
}

.newsletter-banner-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    max-width: 650px;
}

.newsletter-banner-form {
    display: flex;
    border: 1px solid var(--border-soft);
    background: #f8fafc;
    border-radius: var(--radius-full);
    padding: 0.35rem;
    width: 100%;
    max-width: 450px;
}

.newsletter-input-field {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    outline: none;
    color: #0f172a;
}

.newsletter-input-field::placeholder {
    color: #94a3b8;
}

.newsletter-btn-submit {
    background: #0f172a;
    color: #ffffff;
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background var(--transition-fast);
}

.newsletter-btn-submit:hover {
    background: #1e293b;
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1200px) {
    .verticals-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .vertical-service-card {
        height: 420px;
    }
    .curved-carousel-container {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        gap: 1rem;
        padding: 1.5rem 1rem 2rem 1rem;
        -webkit-overflow-scrolling: touch;
    }
    .curved-card {
        width: 140px;
        height: 200px;
        border-radius: 1rem;
    }
    .card-overlay-title {
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .card-overlay-title span {
        font-size: 0.72rem;
    }
}

@media (max-width: 992px) {
    .split-hero-container {
        grid-template-columns: 1fr;
    }
    .hero-card-left {
        min-height: auto;
        padding: 3rem 2rem;
    }
    .hero-card-right {
        min-height: 400px;
    }
    .capsule-row-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .newsletter-banner-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 4.5rem 1rem 2rem 1rem;
    }
    .floating-circle-screen {
        display: none; /* Hide floating screens to keep clean mobile view */
    }
    .table-row-item {
        grid-template-columns: 1.5fr 1fr;
        gap: 1rem;
        padding: 1.25rem 0.5rem;
    }
    .table-row-date, .table-row-arrow {
        display: none; /* Hide secondary fields on small screens */
    }
    .table-row-tag {
        justify-self: end;
    }
    .floating-hover-preview {
        display: none !important; /* Disable hover preview on mobile touch */
    }
    .curved-carousel-container {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        gap: 0.75rem;
        padding: 1rem 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .curved-card {
        width: 110px;
        height: 160px;
        border-radius: 0.85rem;
    }
    .card-overlay-title {
        padding: 0.75rem 0.5rem 0.5rem 0.5rem;
    }
    .card-overlay-title span {
        font-size: 0.68rem;
    }
}

@media (max-width: 576px) {
    .capsule-row-container {
        grid-template-columns: 1fr;
    }
    .verticals-grid-container {
        grid-template-columns: 1fr;
    }
    .hero-main-title {
        font-size: 2.2rem;
    }
    .hero-brand-tag {
        margin-bottom: 1.5rem;
    }
    .hero-main-title .arrow-inline {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 1rem;
    }
    .hero-subscribe-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 0.75rem;
        padding: 0;
    }
    .hero-input-email {
        background: #ffffff;
        border-radius: var(--radius-full);
        padding: 0.85rem 1.5rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
    }
    .hero-btn-submit {
        justify-content: center;
        padding: 0.85rem;
    }
    .right-card-overlay {
        padding: 0.5rem 1rem;
    }
    .right-card-overlay.top-left {
        top: 1rem;
        left: 1rem;
    }
    .right-card-overlay.bottom-right {
        bottom: 1rem;
        right: 1rem;
    }
    .curved-carousel-container {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        gap: 0.5rem;
        padding: 0.75rem 0.25rem;
        -webkit-overflow-scrolling: touch;
    }
    .curved-card {
        width: 95px;
        height: 140px;
        border-radius: 0.75rem;
    }
    .card-overlay-title {
        padding: 0.5rem 0.25rem 0.25rem 0.25rem;
    }
    .card-overlay-title span {
        font-size: 0.62rem;
        line-height: 1.1;
    }
}

/* Scroll Animation Reveal Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered transition delays for bento cards */
.bento-grid-layout .bento-card:nth-child(1) {
    transition-delay: 0.05s;
}
.bento-grid-layout .bento-card:nth-child(2) {
    transition-delay: 0.15s;
}
.bento-grid-layout .bento-card:nth-child(3) {
    transition-delay: 0.25s;
}
.bento-grid-layout .bento-card:nth-child(4) {
    transition-delay: 0.35s;
}

/* Removed Lime Watermark CTA Section Styles */



/* ==========================================
   HOMEPAGE COMPANIES SECTION
   ========================================== */
.home-brands-section {
    position: relative;
    background-color: var(--bg-primary);
    padding: 3.5rem 0;
    margin-top: 50px;
    width: 100%;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-sizing: border-box;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.brands-trust-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.brands-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-logo-card {
    width: 180px;
    height: 80px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-logo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(19, 89, 214, 0.3);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-card:hover .brand-logo-img {
    transform: scale(1.04);
}

/* ==========================================
   HOMEPAGE SERVICES SECTION (GRID LAYOUT WITH HOVER OVERLAY)
   ========================================== */
.home-services-section {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    background-color: var(--bg-primary);
    box-sizing: border-box;
}

.services-container-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Header Text Card spanning 2 columns */
.service-text-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 2rem;
    box-sizing: border-box;
    text-align: left;
}

.service-badge {
    color: var(--priority-low, #1359D6);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.service-main-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-description {
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.service-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #312152; /* Deep Indigo matching button in screenshot */
    color: #ffffff;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(49, 33, 82, 0.15);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-action-btn:hover {
    background: #1e1236;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 33, 82, 0.25);
}

.service-action-btn svg {
    transition: transform 0.25s ease;
}

.service-action-btn:hover svg {
    transform: translateX(4px);
}

/* Service Illustration Card (Base Styles) */
.service-illustration-card {
    grid-column: span 1;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 330px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Card Default Content */
.card-default-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1;
}

/* Card Hover Overlay (Slides up from the bottom) */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(18, 89, 214, 0.97) 0%, rgba(6, 43, 128, 0.97) 100%); /* Blue palette gradient */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 24px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15); /* Premium glass border */
}

.service-illustration-card:hover .card-hover-overlay {
    transform: translateY(0);
}

.service-illustration-card:hover .card-default-content {
    transform: scale(0.95);
    opacity: 0.1;
}

.overlay-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff; /* White title for dark blue background */
    margin-bottom: 0.5rem;
}

.overlay-desc {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9); /* Soft white description */
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.overlay-btn-primary {
    background: #ffffff; /* White background for main button */
    color: #062b80; /* Dark blue text */
    padding: 8px 16px;
    border-radius: 9999px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    text-align: center;
}

.overlay-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.overlay-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4); /* White outline border */
    color: #ffffff; /* White text */
    padding: 7px 16px;
    border-radius: 9999px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
    text-align: center;
}

.overlay-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Pastes Color Background Classes */
.card-purple-bg { background-color: #ECE9FE; }
.card-pink-bg { background-color: #FFEBF0; }
.card-blue-bg { background-color: #E0F2FE; }
.card-orange-bg { background-color: #FFEBE5; }
.card-purple-dark-bg { background-color: #E8E5FF; }
.card-cream-bg { background-color: #FFF2E6; }
.card-green-bg { background-color: #E6FDF4; }
.card-teal-bg { background-color: #E0FDF8; }

/* Image Styling */
.illustration-img-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.illustration-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.06));
    transition: transform 0.35s ease;
}

.service-illustration-card:hover .illustration-img {
    transform: scale(1.06) translateY(-4px);
}

/* Card Footer and Title */
.illustration-card-footer {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

.illustration-card-title {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 750;
    color: #1e293b;
    margin: 0;
}

.illustration-card-desc {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.35rem;
    line-height: 1.35;
    font-weight: 500;
}

/* ==========================================
   Responsive Breakpoints for Grid Layout
   ========================================== */
@media (max-width: 1024px) {
    .services-container-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .service-text-card {
        grid-column: span 3;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    .brands-logo-row {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-container-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 1.5rem;
    }
    .service-text-card {
        grid-column: span 2;
    }
    .brands-logo-row {
        gap: 2rem;
    }
    .brand-logo-text {
        font-size: 1.15rem;
    }
    .home-services-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .services-container-grid {
        grid-template-columns: 1fr;
    }
    .service-text-card {
        grid-column: span 1;
    }
    .service-illustration-card {
        grid-column: span 1;
        height: 290px;
    }
    .illustration-img-wrapper {
        height: 150px;
    }
    .brands-logo-row {
        gap: 1rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .brand-logo-card {
        width: 140px;
        height: 70px;
        padding: 0.5rem;
        border-radius: 10px;
    }
}

/* Infinite Moving Services Ticker Styling */
.services-marquee-section {
    width: 100%;
    overflow: hidden;
    background: #080c14; /* Match dark hero background theme */
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-item {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 2rem;
}

.marquee-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.marquee-item a:hover {
    color: var(--accent-lime, #1359D6); /* hover color matches the neon accent */
    text-shadow: 0 0 10px rgba(19, 89, 214, 0.5);
}

.marquee-separator {
    color: var(--accent-lime, #1359D6);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Pause scroll on hover to allow interactive clicking */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================
   Home FAQ Section
   ========================================== */
.home-faq-section {
    padding: 3rem 0;
    background-color: #FFFFFF; /* Premium soft clean cream background - no white bg */
    border-top: 1px solid var(--border-soft);
    position: relative;
    z-index: 5;
}

.home-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.home-faq-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}

.home-faq-main-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.home-faq-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    margin: 0;
    margin-top: 0.75rem;
    max-width: 640px;
    line-height: 1.5;
}

.home-faq-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    width: 100%;
}

.faq-grid-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.faq-grid-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.faq-item-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: rgba(19, 89, 214, 0.08); /* Light Coral Orange tint */
    border: 1px solid rgba(19, 89, 214, 0.15);
    color: var(--accent-indigo, #1359D6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item-icon-wrapper svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.faq-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item-question {
    font-family: var(--font-primary);
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

.faq-item-answer {
    font-family: var(--font-secondary);
    font-size: 0.92rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .home-faq-grid-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .faq-grid-column {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .home-faq-section {
        padding: 4rem 0;
    }
    
    .home-faq-container {
        padding: 0 1.5rem;
    }
    
    .home-faq-main-title {
        font-size: 2rem;
    }
}

/* Trust Numbers Section Styles */
.home-trust-section {
    background-color: rgba(150, 185, 238, 0.15); /* Soft, clean 15% Cream Beige tint */
    padding: 3.5rem 2rem 3rem 2rem; /* Reduced top and bottom padding */
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    z-index: 10;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.trust-main-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem; /* Reduced margin-bottom */
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
}

.trust-stat-card {
    transition: transform 0.3s ease;
}

.trust-stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 800;
    color: #1e1b4b; /* Deep Indigo Navy */
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.stat-label.purple {
    color: #8b5cf6; /* Vibrant violet/purple */
}

.stat-label.pink {
    color: #ec4899; /* Vibrant pink */
}

.stat-desc {
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .home-trust-section {
        padding: 5rem 1.5rem;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .trust-main-heading {
        margin-bottom: 3.5rem;
    }
    .stat-desc {
        max-width: 320px;
    }
}

/* ==========================================
   HOMEPAGE CLIENT REVIEWS SECTION
   ========================================== */
.home-reviews-section {
    position: relative;
    width: 100%;
    padding: 4.5rem 0; /* Reduced vertical padding */
    background: #ffffff;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

.home-reviews-section .reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.home-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem; /* Reduced spacing to compact the height */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.home-reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569; /* Slate-600 */
    background: #e2e8f0; /* Solid light background */
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.home-reviews-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem 0;
}

.home-reviews-lead {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 680px;
}

/* ==========================================================================
   CUSTOM CLIENT REVIEWS SLIDER (AMVIZ Brand Color Palette Only)
   ========================================================================== */
.home-reviews-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .home-reviews-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.reviews-slider-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(19, 89, 214, 0.15);
    background-color: #ffffff;
    color: #1359D6; /* Brand Royal Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-arrow-btn:hover:not(:disabled) {
    background-color: #1359D6;
    color: #ffffff;
    border-color: #1359D6;
    transform: translateY(-2px);
}

.slider-arrow-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.reviews-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.custom-reviews-grid {
    display: flex;
}

.trust-stat-card {
    transition: transform 0.3s ease;
}

.trust-stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 800;
    color: #1e1b4b; /* Deep Indigo Navy */
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.stat-label.purple {
    color: #8b5cf6; /* Vibrant violet/purple */
}

.stat-label.pink {
    color: #ec4899; /* Vibrant pink */
}

.stat-desc {
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .home-trust-section {
        padding: 5rem 1.5rem;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .trust-main-heading {
        margin-bottom: 3.5rem;
    }
    .stat-desc {
        max-width: 320px;
    }
}

/* ==========================================
   HOMEPAGE CLIENT REVIEWS SECTION
   ========================================== */
.home-reviews-section {
    position: relative;
    width: 100%;
    padding: 4.5rem 0; /* Reduced vertical padding */
    background: #ffffff;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

.home-reviews-section .reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.home-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem; /* Reduced spacing to compact the height */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.home-reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569; /* Slate-600 */
    background: #e2e8f0; /* Solid light background */
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.home-reviews-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem 0;
}

.home-reviews-lead {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 680px;
}

/* ==========================================================================
   CUSTOM CLIENT REVIEWS SLIDER (AMVIZ Brand Color Palette Only)
   ========================================================================== */
.home-reviews-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .home-reviews-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.reviews-slider-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(19, 89, 214, 0.15);
    background-color: #ffffff;
    color: #1359D6; /* Brand Royal Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slider-arrow-btn:hover:not(:disabled) {
    background-color: #1359D6;
    color: #ffffff;
    border-color: #1359D6;
    transform: translateY(-2px);
}

.slider-arrow-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.reviews-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1rem 0;
}

.custom-reviews-grid {
    display: flex;
    gap: 1.75rem;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-review-card {
    width: calc(25% - 1.3125rem); /* 4 cards on desktop */
    flex-shrink: 0;
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 310px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.custom-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Card 1: Beige style with overlapping top avatar */
.card-style-beige {
    background-color: #FDF9F0; /* Cream background */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card-style-beige .card-header-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-style-beige .avatar-quote-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
}

.card-style-beige .card-avatar-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.card-style-beige .card-mini-quote-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #1359D6; /* Brand Blue instead of pink */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(19, 89, 214, 0.3);
}

.card-style-beige .meta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.card-style-beige .meta-name {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.card-style-beige .meta-platform {
    font-family: var(--font-secondary);
    font-size: 0.82rem;
    color: #64748b;
}

.card-style-beige .meta-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
    color: #FBBF24; /* Gold stars */
    font-size: 0.78rem;
}

/* Card Content typography */
.custom-review-card .card-content-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.85rem 0;
    color: #0f172a;
}

.custom-review-card .card-content-text {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}

/* Card 2: Simple white card */
.card-style-white {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.card-style-white .blue-quote-bubble {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(19, 89, 214, 0.1); /* Light Blue tint */
    color: #1359D6; /* Brand Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-style-white .card-footer-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.75rem;
}

.card-style-white .author-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.card-style-white .author-meta {
    display: flex;
    flex-direction: column;
}

.card-style-white .author-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.card-style-white .author-company {
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    color: #64748b;
}

/* Card 3: Image Background card */
.card-style-image {
    background-size: cover;
    background-position: center;
    border: none;
}

.card-style-image .header-split-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    width: 100%;
}

.card-style-image .blue-quote-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1359D6; /* Brand Blue */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-style-image .yellow-rating-pill {
    background-color: rgba(251, 191, 36, 0.95);
    color: #000000;
    padding: 0.35rem 0.8rem;
    border-radius: 99px;
    font-family: var(--font-secondary);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-style-image .card-content-title {
    color: #ffffff !important;
}

.card-style-image .card-content-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

.card-style-image .card-footer-simple {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.75rem;
}

.card-style-image .author-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.card-style-image .author-company {
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Card 4: Brand Blue card (replaces pink) */
.card-style-blue {
    background-color: #1359D6; /* Brand Blue */
    border: none;
}

.card-style-blue .header-split-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

.card-style-blue .white-quote-bubble {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1359D6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-style-blue .rating-text-top {
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

.card-style-blue .card-content-title {
    color: #ffffff !important;
}

.card-style-blue .card-content-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card-style-blue .card-footer-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.25rem;
}

.card-style-blue .author-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-style-blue .author-meta {
    display: flex;
    flex-direction: column;
}

.card-style-blue .author-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.card-style-blue .author-company {
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive grid layout */
@media (max-width: 1200px) {
    .custom-review-card {
        width: calc(50% - 0.875rem); /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .custom-review-card {
        width: 100%; /* 1 card on mobile */
    }
}

/* Serif Italic Dark Container Overrides */
.hero-title-giant .serif-italic,
.cta-box .serif-italic,
.about-cta-section .serif-italic {
    color: var(--accent-lime, #1359D6) !important;
}

/* Responsive grid overrides */
@media (max-width: 1024px) {
    .home-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card.tall-card {
        grid-row: span 1;
        gap: 1.5rem;
    }
    .review-card.tall-card .review-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .home-reviews-section {
        padding: 3rem 0; /* Compact mobile padding */
    }
    .home-reviews-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .review-card {
        padding: 1.75rem;
    }
}

/* ==========================================
   HOMEPAGE INDUSTRIES SECTION
   ========================================== */
.home-industries-section {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    background-color: rgba(150, 185, 238, 0.15); /* Soft blue reference section tint */
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

.home-industries-section .industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.home-industries-header-centered {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.home-industries-title-centered {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}


/* Tabs Selector */
.industries-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    width: 100%;
}

.industries-tabs {
    display: inline-flex;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 9999px;
    padding: 0.35rem;
    gap: 0.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    flex-wrap: wrap;
    justify-content: center;
}

.industry-tab-btn {
    background: transparent;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b; /* Slate-500 */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-tab-btn:hover {
    color: #0f172a; /* Slate-900 */
}

.industry-tab-btn.active {
    background: #1359D6; /* Royal blue active */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(19, 89, 214, 0.2);
}

/* Content Card */
.industries-content-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
    padding: 4rem;
    min-height: 520px;
    box-sizing: border-box;
    position: relative;
}

.industry-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.industry-tab-content.active {
    display: flex;
}

.industry-tab-content.show {
    opacity: 1;
    transform: translateY(0);
}

.industry-details {
    flex: 1.25;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-image-wrapper {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    height: 420px;
}

.industry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-tab-content:hover .industry-image-wrapper img {
    transform: scale(1.03);
}

.industry-eyebrow {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    color: #1359D6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.industry-card-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.15;
}

.industry-description {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Features Box */
.popular-features-box {
    background: #fafbfd;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 1.75rem 2.25rem;
    position: relative;
    overflow: hidden;
}

.features-box-title {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sparkle-icon {
    color: #1359D6; /* Neon lime sparkle */
    fill: #1359D6;
    flex-shrink: 0;
    margin-top: 0.15rem;
    filter: drop-shadow(0 0 4px rgba(19, 89, 214, 0.4));
}

.feature-item span {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

/* Footer Section */
.industry-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    margin-top: 1rem;
}

.footer-note {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 440px;
    margin: 0;
}

.industry-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1.5px solid #0f172a;
    color: #0f172a;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-cta-btn:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.1);
}

.industry-cta-btn svg {
    transition: transform var(--transition-fast);
}

.industry-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive breakdowns */
@media (max-width: 1024px) {
    .industries-content-card {
        padding: 3rem;
    }
    .industry-tab-content {
        gap: 3rem;
    }
    .industry-image-wrapper {
        height: 360px;
    }
}

@media (max-width: 900px) {
    .industry-tab-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }
    .industry-image-wrapper {
        order: -1;
        height: 320px;
    }
    .industry-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .industry-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .home-industries-section {
        padding: 5rem 0;
        overflow-x: hidden;
    }
    .industries-content-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .industries-tabs-wrapper {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 0 1.5rem 1rem 1.5rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .industries-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .industries-tabs {
        display: flex;
        flex-wrap: nowrap;
        background: #f1f5f9;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 9999px;
        padding: 0.35rem;
        gap: 0.35rem;
        width: max-content;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    .industry-tab-btn {
        width: auto !important;
        flex-shrink: 0;
        white-space: nowrap !important;
        padding: 0.65rem 1.4rem;
        font-size: 0.88rem;
        text-align: center;
    }
}

.delivered-work-section {
    margin-top: 4rem;
    position: relative;
}

.portfolio-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

/* Row heights on desktop */
.row-1 { height: 200px; }
.row-2 { height: 220px; }
.row-3 { height: 220px; }

/* Item flex ratios */
.row-1 .item-1 { flex: 166; }
.row-1 .item-2 { flex: 135; }
.row-1 .item-3 { flex: 89; }
.row-1 .item-4 { flex: 183; }

.row-2 .item-5 { flex: 426; }
.row-2 .item-6 { flex: 210; }
.row-2 .item-7 { flex: 250; }

.row-3 .item-8 { flex: 247; }
.row-3 .item-9 { flex: 306; }
.row-3 .item-10 { flex: 285; }

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f3f4f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.portfolio-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item img.active {
    opacity: 1;
    z-index: 2;
}

.portfolio-item:hover img.active {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 65%, transparent 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.25rem;
    pointer-events: none;
    z-index: 10;
}

.portfolio-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.item-tag {
    font-family: var(--font-secondary);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #96B9EE;
}

.portfolio-item .item-title {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .portfolio-row {
        flex-wrap: wrap;
        height: auto !important;
        gap: 0.75rem;
    }
    .portfolio-item {
        flex: 1 1 calc(50% - 0.375rem) !important;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .portfolio-item {
        flex: 1 1 100% !important;
        height: 200px;
    }
}

/* Portfolio CTA Section */
.home-cta-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.portfolio-cta-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1359D6;
    border: none;
    border-radius: 0;
    padding: 4.5rem 8%;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    gap: 40px;
}

.portfolio-cta-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.portfolio-cta-wrap::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.portfolio-cta-wrap:hover {
    transform: none;
}

.portfolio-cta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
    text-align: left;
}

.portfolio-cta-badge {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    font-family: var(--font-primary);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.portfolio-cta-heading {
    font-family: var(--font-primary);
    font-size: 2.1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.portfolio-cta-subheading {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    margin: 0;
}

.portfolio-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

.portfolio-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-btn-primary {
    background-color: #FFFFFF;
    color: #1359D6;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-btn-primary:hover {
    background-color: #F4F8FD;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn-primary .arrow-icon {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

.cta-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.portfolio-cta-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #1359D6;
    margin-left: -8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-img:hover {
    transform: scale(1.15) translateY(-2px);
    z-index: 10;
}

.rating-text {
    font-family: var(--font-secondary);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Responsive adjustments for Portfolio CTA */
@media (max-width: 991px) {
    .portfolio-cta-wrap {
        flex-direction: column;
        gap: 30px;
        padding: 3.5rem 8%;
        text-align: center;
        margin: 0;
    }
    
    .portfolio-cta-left {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .portfolio-cta-right {
        align-items: center;
    }
    
    .portfolio-cta-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Coaching / strategy advisors section */
.home-coaching-section {
    padding: 3.5rem 0;
    background: radial-gradient(circle at 50% -20%, #4da4ff 0%, #1259d6 50%, #062b80 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.coaching-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
    box-sizing: border-box;
}

.coaching-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.coaching-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coaching-glass-card {
    position: relative;
    width: 85%;
    height: 90%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

.coaching-glass-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 30px 60px -10px rgba(19, 89, 214, 0.35);
    transform: translateY(-4px);
}

.glass-card-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 2;
}

.coaching-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.coaching-glass-card:hover .coaching-portrait {
    transform: scale(1.04);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 10;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #96B9EE;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.badge-title {
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.badge-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-secondary);
}

.badge-top-right {
    top: 15%;
    right: -2%;
    animation: float-badge-up 6s infinite alternate ease-in-out;
}

.badge-bottom-left {
    bottom: 12%;
    left: -2%;
    animation: float-badge-down 6s infinite alternate ease-in-out;
}

@keyframes float-badge-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@keyframes float-badge-down {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}

.coaching-content-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.coaching-simple-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: #96B9EE; /* Accent Ice Blue for high contrast */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    display: inline-block;
    font-family: var(--font-primary);
}

.coaching-title {
    font-size: 2.6rem;
    font-family: var(--font-primary);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 12px 0 20px 0;
    letter-spacing: -0.02em;
}

.coaching-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-secondary);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.coaching-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.coaching-feat-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md, 14px);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.coaching-feat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feat-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #96B9EE;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.coaching-feat-item:hover .feat-icon-wrap {
    background: #FFFFFF;
    color: #1259d6;
    border-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.feat-text {
    display: flex;
    flex-direction: column;
}

.feat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    font-family: var(--font-primary);
}

.feat-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.45;
    font-family: var(--font-secondary);
}

.coaching-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #1259d6;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full, 9999px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    font-family: var(--font-primary);
}

.coaching-btn-primary:hover {
    background-color: #FF7A59; /* Brand Coral Orange */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 122, 89, 0.35);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.coaching-btn-primary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive styles for Coaching Section */
@media (max-width: 992px) {
    .home-coaching-section {
        padding: 3rem 0;
    }
    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .coaching-image-wrapper {
        max-width: 420px;
        height: 420px;
    }
    .coaching-content-block {
        align-items: center;
        text-align: center;
    }
    .coaching-features-grid {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .coaching-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .coaching-container {
        padding: 0 1.5rem;
    }
    .coaching-title {
        font-size: 2.1rem;
    }
}


/* =============================================================
   MERGED FROM TEST-HOME.CSS
   ============================================================= */
/* Custom Styles for Test Home Page */
:root {
    --lime-accent: #D2FC38; /* Bright lime green/yellow from screenshot */
    --royal-blue: #1359D6;
    --sky-blue-bg: #1e90ff;
}

/* =============================================================
   AMVIZ ANNOUNCEMENT TICKER BAR (top strip like Anurag Uni)
   ============================================================= */
.amviz-ticker-bar {
    width: 100%;
    background: #1359D6; /* AMVIZ Royal Blue */
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: ticker-scroll 35s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.02em;
    padding: 0 28px;
    flex-shrink: 0;
}

.ticker-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    opacity: 0.95;
}

.ticker-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.amviz-ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}

/* =============================================================
   AMVIZ FULL-WIDTH PHOTO HERO (Anurag University style)
   ============================================================= */
/* =============================================================
   AMVIZ FULL-WIDTH PHOTO HERO (Exact Reference Split Layout)
   ============================================================= */
.amviz-photo-hero {
    position: relative;
    width: 100%;
    height: calc(96vh - 40px);
    min-height: 640px;
    max-height: 920px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background photo layer — center aligned matching full room view in reference */
.amviz-photo-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Soft dark blue left-gradient overlay matching reference exactly */
.amviz-photo-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(10, 20, 40, 0.88) 0%, 
        rgba(10, 20, 40, 0.72) 32%, 
        rgba(10, 20, 40, 0.40) 58%, 
        rgba(10, 20, 40, 0.12) 82%, 
        transparent 100%
    );
    z-index: 1;
}

/* Content wrapper — left aligned */
.amviz-photo-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 54px;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    animation: amviz-hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-left-col {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

@keyframes amviz-hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headline — strictly 2 lines */
.amviz-photo-hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.amviz-photo-hero-headline .hero-line {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .amviz-photo-hero-headline .hero-line {
        display: inline;
        white-space: normal;
    }
}

/* Subtitle */
.amviz-photo-hero-sub {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.98rem, 1.6vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 36px 0;
    max-width: 580px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Button group */
.amviz-photo-hero-btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

/* Primary CTA — Solid Blue */
.amviz-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: #1359d6;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(19, 89, 214, 0.4);
    cursor: pointer;
}

.amviz-hero-btn-primary:hover {
    background: #0d47b0;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(19, 89, 214, 0.55);
}

/* Secondary CTA — Glass Outline */
.amviz-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    cursor: pointer;
}

.amviz-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Glassy Customer Brand Box */
.hero-brand-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px 28px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-brand-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hero-brand-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-brand-logos::-webkit-scrollbar {
    display: none;
}

.hero-brand-logo-img {
    height: 32px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
    filter: brightness(0) invert(1) contrast(1.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-brand-logo-img.logo-tall {
    height: 48px;
    max-width: 140px;
}

.hero-brand-logo-img:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* =============================================================
   CLIENT LOGO WALL STRIP (Premium Dark Transition Banner)
   ============================================================= */
.logo-wall-strip {
    width: 100%;
    background: #090d16; /* Deep luxury dark background */
    padding: 32px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.logo-wall-header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-wall-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.logo-wall-marquee {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
}

/* Subtle side fade gradients for smooth infinite marquee effect */
.logo-wall-marquee::before,
.logo-wall-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-wall-marquee::before {
    left: 0;
    background: linear-gradient(to right, #090d16 0%, transparent 100%);
}

.logo-wall-marquee::after {
    right: 0;
    background: linear-gradient(to left, #090d16 0%, transparent 100%);
}

.logo-wall-track {
    display: flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: logo-wall-scroll 25s linear infinite;
    will-change: transform;
}

.logo-wall-track:hover {
    animation-play-state: paused;
}

.logo-wall-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 24px;
    height: 54px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-wall-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(19, 89, 214, 0.25);
}

.logo-wall-img {
    max-height: 32px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: grayscale(10%) opacity(0.88);
    transition: all 0.3s ease;
}

.logo-wall-item:hover .logo-wall-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.04);
}

@keyframes logo-wall-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}




/* =============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================= */
@media (max-width: 768px) {
    .amviz-photo-hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .amviz-photo-hero-content {
        margin-top: 0;
        padding: 0 20px;
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .hero-left-col {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .amviz-photo-hero-headline {
        font-size: clamp(1.5rem, 6.5vw, 2.1rem) !important;
        text-align: left;
        width: 100%;
        line-height: 1.2;
    }

    .amviz-photo-hero-headline br {
        display: none !important; /* Hide line breaks for natural wrapping */
    }

    .amviz-photo-hero-headline .hero-line {
        white-space: normal !important;
        display: inline !important;
    }

    .amviz-photo-hero-sub {
        text-align: left;
        margin: 0 0 30px 0;
        font-size: 0.92rem;
        max-width: 100%;
        line-height: 1.5;
    }

    .amviz-photo-hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 35px;
        align-items: flex-start;
    }

    .amviz-hero-btn-primary,
    .amviz-hero-btn-outline {
        width: 100% !important;
        max-width: 290px !important;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-brand-card {
        padding: 16px 20px;
    }

    .ticker-item {
        font-size: 0.72rem;
        padding: 0 18px;
    }
}

/* -------------------------------------------------------------
   HERO SECTION & VIDEO BACKGROUND
   ------------------------------------------------------------- */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    /* Sky blue gradient matching the screenshot background */
    background: linear-gradient(180deg, #106ad8 0%, #1e8bf1 40%, #5ca9fb 75%, #a8d5ff 100%);
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45; /* Blended with the sky-blue gradient behind it */
}

/* Semi-transparent clouds mask or bottom fade */
.hero-overlay-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at center, transparent 30%, rgba(16, 106, 216, 0.2) 80%),
                linear-gradient(to bottom, rgba(16, 106, 216, 0.4) 0%, transparent 40%, rgba(255, 255, 255, 0.1) 85%, #ffffff 100%);
    pointer-events: none;
}

/* Hero Content Area */
.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-tagline {
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1.5px;
    max-width: 1050px;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-subdesc {
    font-family: var(--font-secondary);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 35px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Button Group */
.hero-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.btn-demo {
    padding: 14px 28px;
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 9999px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.btn-demo:hover {
    background: rgba(15, 23, 42, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 24px;
    background-color: var(--lime-accent);
    color: #0f172a;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.3s, filter 0.3s;
    box-shadow: 0 4px 15px rgba(210, 252, 56, 0.25);
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(210, 252, 56, 0.4);
    filter: brightness(1.05);
}

.btn-get-started .arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.btn-get-started:hover .arrow-circle {
    transform: rotate(45deg);
}

/* -------------------------------------------------------------
   3D CAROUSEL & CARDS
   ------------------------------------------------------------- */
.carousel-view {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 285px; /* Increased from 230px to prevent 3D vertical perspective clipping */
    perspective: 2000px; /* Flat perspective for a clean, premium panoramic arc */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.carousel-stage {
    width: 135px;  /* Increased width for more spacious cards */
    height: 165px; /* Proportional height */
    position: relative;
    transform-style: preserve-3d;
}

/* Disable transitions when dragging for instant mouse tracking responsiveness */
.carousel-stage.dragging .card-item {
    transition: none !important;
}

/* Responsive carousel stage sizing on mobile */
@media (max-width: 480px) {
    .carousel-stage {
        width: 95px;
        height: 125px;
    }
}

/* Individual Card Styling */
.card-item {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 8px; /* Smooth compact rounded corners */
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 8px; /* Very compact padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    cursor: pointer;
    user-select: none;
    backface-visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.3s, 
                border-color 0.3s;
}

.card-item:hover {
    box-shadow: 0 8px 18px rgba(19, 89, 214, 0.08), 
                0 0 1px 1px rgba(19, 89, 214, 0.08);
    border-color: rgba(19, 89, 214, 0.15);
}

.card-item.front-active {
    border-color: rgba(19, 89, 214, 0.3);
    box-shadow: 0 10px 22px rgba(19, 89, 214, 0.1), 
                0 0 1px 1px rgba(19, 89, 214, 0.1);
}

/* Card Contents Styles */
.card-title {
    font-size: 0.52rem; /* Clean typography fitting the width */
    font-weight: 700;
    color: #475569;
    font-family: var(--font-secondary);
    line-height: 1.25;
}

.card-metric-large {
    font-size: 1.1rem; /* Proportional metric size */
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1;
    margin: 4px 0 1px;
}

.card-subtitle-small {
    font-size: 0.45rem; /* Clean subtitle size */
    font-family: var(--font-secondary);
    color: #64748b;
    font-weight: 500;
}

/* Bar Chart Card specific */
.bar-chart-visual {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 45px; /* Highly compact height */
    margin-top: 5px;
    gap: 3px;
}

.chart-bar-col {
    flex: 1;
    background: linear-gradient(180deg, rgba(87, 143, 229, 0.3) 0%, var(--royal-blue) 100%);
    border-radius: 2px;
    min-height: 4px;
    transition: height 0.5s ease-out;
}

/* Pricing Card specific */
.pricing-tiers-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.pricing-tier-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.48rem; /* Highly compact font */
    font-family: var(--font-secondary);
    padding: 2px 4px;
    background: rgba(15, 23, 42, 0.03);
    border-radius: 4px;
    border: 1px solid rgba(19, 89, 214, 0.04);
}

.tier-name {
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 3px;
}

.tier-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--royal-blue);
}

.tier-price {
    font-weight: 700;
    color: #0f172a;
}

/* Photo Card specific */
.card-item.photo-card {
    padding: 0;
    overflow: hidden;
}

.photo-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-overlay-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    background: #ffffff;
    border-radius: 5px;
    padding: 3px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.badge-val-green {
    font-size: 0.52rem;
    font-weight: 700;
    color: #10B981;
}

.badge-val-dark {
    font-size: 0.52rem;
    font-weight: 700;
    color: #0f172a;
}

/* Line Chart Card specific */
.line-chart-visual {
    margin-top: 5px;
    height: 45px; /* Highly compact height */
    width: 100%;
}

/* Dark Card specific */
.card-item.dark-card {
    background: #0b0f19 !important;
    border-color: rgba(99, 102, 241, 0.25) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-item.dark-card .card-title {
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.45;
}

.card-item.dark-card .highlight-word {
    color: #ffffff;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.card-item.dark-card .highlight-word::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--lime-accent);
    border-radius: 1px;
}

.card-item.dark-card .badge-row {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.dark-tag-pill {
    font-size: 0.45rem; /* Highly compact font */
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border-radius: 999px;
    font-family: var(--font-secondary);
}

/* Glowing Plus Card specific */
.card-item.glow-plus-card {
    background: linear-gradient(135deg, #1359d6 0%, #578fe5 100%) !important;
    border-color: #ffffff !important;
    color: #ffffff;
}

.card-item.glow-plus-card .card-title {
    color: rgba(255, 255, 255, 0.9);
}

.plus-icon-container {
    width: 32px; /* Adjusted size */
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.card-item.glow-plus-card:hover .plus-icon-container {
    transform: scale(1.1) rotate(90deg);
}

.plus-icon-svg {
    width: 14px; /* Adjusted size */
    height: 14px;
    stroke: #ffffff;
}

.card-item.glow-plus-card .upload-text-lbl {
    font-size: 0.52rem; /* Adjusted font size */
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 4px;
}

/* App Mockup Card specific */
.card-item.app-mockup-card {
    background: #111827 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding: 0;
    overflow: hidden;
}

.mockup-inner-frame {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #090d16;
}

.mockup-top-bar {
    height: 20px;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    gap: 4px;
}

.mockup-dot-item {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ef4444;
}

.mockup-dot-item:nth-child(2) { background: #f59e0b; }
.mockup-dot-item:nth-child(3) { background: #10b981; }

.mockup-body-wrap {
    flex: 1;
    padding: 8px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mockup-screen-title {
    font-size: 0.48rem; /* Reduced size */
    color: #9ca3af;
    font-family: var(--font-secondary);
}

.mockup-val-lbl {
    font-size: 0.9rem; /* Reduced size */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.mockup-chart-box {
    height: 30px; /* Reduced height */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-top: 4px;
    display: flex;
    align-items: flex-end;
    padding: 3px;
    gap: 2px;
}

.mockup-chart-col {
    flex: 1;
    background: #6366f1;
    border-radius: 1px;
    min-height: 2px;
}

/* Ratings Badge */
.hero-ratings-note {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-stars-list {
    display: flex;
    gap: 3px;
    color: #FBBF24; /* Golden yellow stars */
}

/* Cleaned up duplicate logo wall block */

/* -------------------------------------------------------------
   ABOUT US SECTION
   ------------------------------------------------------------- */
.about-section-wrap {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.about-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-eyebrow {
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--royal-blue);
    border-radius: 50%;
}

.about-headline-txt {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    text-align: center;
    max-width: 900px;
    letter-spacing: -1px;
    margin-bottom: 70px;
}

.about-icon-inline {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 4px;
    justify-content: center;
}

.icon-bg-blue {
    background-color: #e0f2fe;
    color: #0ea5e9;
}

.icon-bg-lime {
    background-color: #f0fdf4;
    color: #22c55e;
}

.about-icon-inline svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* 4-Card Grid system */
.about-cards-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Grid card bases */
.about-grid-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Card 1: Blue Collaborating Card */
.collab-blue-card {
    grid-column: span 4;
    background: var(--royal-blue);
    min-height: 400px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.collab-header-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.collab-header-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.collab-card-image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.collab-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    mix-blend-mode: multiply;
}

.collab-white-badge {
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: #0f172a;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.collab-count-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}

.collab-badge-desc {
    font-family: var(--font-secondary);
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.45;
}

/* Card 2: Commitment Testimonial Card */
.commitment-card {
    grid-column: span 4;
    background-color: #f8fafc;
    border: 1px solid rgba(19, 89, 214, 0.05);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.commit-card-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    font-family: var(--font-secondary);
}

.commit-card-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -2px;
    line-height: 1;
    margin: 15px 0 25px;
}

.commit-avatar-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.commit-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -8px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.commit-avatar-img:first-child {
    margin-left: 0;
}

.commit-quote-text {
    font-family: var(--font-secondary);
    font-size: 0.86rem;
    line-height: 1.5;
    color: #334155;
    font-style: italic;
}

/* Card 3: Data Points Lime Card */
.datapoints-lime-card {
    grid-column: span 4;
    background-color: var(--lime-accent);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
}

.lime-card-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    font-family: var(--font-secondary);
}

.lime-card-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -2px;
    line-height: 1;
    margin: 15px 0 25px;
}

.lime-card-desc {
    font-family: var(--font-secondary);
    font-size: 0.86rem;
    line-height: 1.5;
    color: #1e293b;
    font-weight: 600;
}

/* Card 4: Continents Black Card */
.continents-black-card {
    grid-column: span 4;
    grid-row: 2;
    background-color: #0f172a;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    min-height: 106px;
    border-radius: 20px;
}

.continents-title {
    font-size: 0.85rem;
    font-family: var(--font-secondary);
    color: #94a3b8;
    font-weight: 600;
}

.continents-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

/* Adjust card 3 span when card 4 is on row 2 */
/* In our grid, we want cards to fill exactly like the mockup:
   Card 1: Collab (Blue) spans columns 1-4, rows 1-2.
   Card 2: Commitment spans columns 5-8, rows 1-2.
   Card 3: Data Points spans columns 9-12, row 1.
   Card 4: Continents spans columns 9-12, row 2.
*/
.collab-blue-card {
    grid-column: span 4;
    grid-row: span 2;
}

.commitment-card {
    grid-column: span 4;
    grid-row: span 2;
}

.datapoints-lime-card {
    grid-column: span 4;
    grid-row: span 1;
}

.continents-black-card {
    grid-column: span 4;
    grid-row: span 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .about-cards-grid {
        gap: 20px;
    }
}

@media (max-width: 850px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .collab-blue-card, .commitment-card, .datapoints-lime-card, .continents-black-card {
        grid-column: span 12 !important;
        grid-row: auto !important;
        min-height: auto;
    }
    
    .collab-blue-card {
        min-height: 380px;
    }
}

/* -------------------------------------------------------------
   INTERACTIVE ZOOM MODAL (CLICKED FRONT CARD ACTION)
   ------------------------------------------------------------- */
.modal-overlay-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay-wrap.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window-box {
    background: #ffffff;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(19, 89, 214, 0.08);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.modal-overlay-wrap.active .modal-window-box {
    transform: scale(1) translateY(0);
}

.modal-close-btn-top {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    border: none;
    color: #475569;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.modal-close-btn-top:hover {
    background: rgba(15, 23, 42, 0.1);
    color: #0f172a;
}

.modal-body-content {
    padding: 35px;
}

.modal-badge-pill {
    display: inline-block;
    font-size: 0.72rem;
    padding: 4px 10px;
    background-color: rgba(19, 89, 214, 0.06);
    color: var(--royal-blue);
    font-family: var(--font-secondary);
    font-weight: 700;
    border-radius: 99px;
    margin-bottom: 15px;
}

.modal-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 12px;
}

.modal-card-text {
    font-family: var(--font-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 25px;
}

.modal-demo-interactive-pane {
    background-color: #f8fafc;
    border: 1px dashed rgba(19, 89, 214, 0.15);
    border-radius: 16px;
    padding: 20px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.interactive-pane-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 10px;
}

/* -------------------------------------------------------------
   SERVICE CARDS CAROUSEL STYLING
   ------------------------------------------------------------- */
.card-item.service-card {
    background: #ffffff !important;
    border: 1px solid rgba(19, 89, 214, 0.08) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    padding: 8px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Dark themed service cards */
.card-item.service-card.dark-theme {
    background: #0b0f19 !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.service-card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 6px;
    position: relative;
    border-radius: 8px;
    background: rgba(19, 89, 214, 0.02);
    min-height: 80px;
}

.card-item.service-card.dark-theme .service-card-visual {
    background: rgba(255, 255, 255, 0.02);
}

.service-card-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-item.service-card:hover .service-card-img {
    transform: scale(1.08) translateY(-2px);
}

.service-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px 2px 4px;
}

.service-card-badge {
    font-size: 0.4rem;
    font-weight: 700;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: var(--font-secondary);
}

.card-item.service-card.dark-theme .service-card-badge {
    color: var(--lime-accent);
}

.service-card-name {
    font-size: 0.52rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    font-family: var(--font-secondary);
}

.card-item.service-card.dark-theme .service-card-name {
    color: #ffffff;
}

/* Hover overlay badge showing view action */
.service-card-action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 89, 214, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: 8px;
    padding: 6px;
    pointer-events: none;
}

.card-item.service-card.dark-theme .service-card-action-overlay {
    background: rgba(11, 15, 25, 0.9);
}

/* Show action overlay only on the active front card when hovered */
.card-item.service-card.front-active:hover .service-card-action-overlay {
    opacity: 1;
}

.action-overlay-text {
    color: #ffffff;
    font-size: 0.45rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.action-overlay-text svg {
    stroke: currentColor;
    width: 10px;
    height: 10px;
}

/* Custom highlight styling for AMVIZ inside the 3D Video Hero */
.hero-wrapper .title-highlight-amviz {
    color: var(--lime-accent);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
    text-decoration-color: var(--lime-accent);
}

/* =============================================================
   NEW DIGITAL SOLUTIONS & SERVICES SHOWCASE SECTION (Image 2 UI)
   ============================================================= */
.new-services-showcase-section {
    width: 100%;
    background: #ffffff;
    padding: 60px 0 80px;
    position: relative;
    z-index: 5;
}

.showcase-container {
    max-width: 1320px;
    width: calc(100% - 3rem);
    margin: 0 auto;
    padding: 0;
}

/* Single Unified Card Container */
.showcase-unified-box {
    background: linear-gradient(135deg, #f4f8ff 0%, #ebf3fe 60%, #ffffff 100%);
    border-radius: 28px;
    padding: 56px 52px;
    border: 1px solid #e2edfd;
    box-shadow: 0 16px 48px rgba(19, 89, 214, 0.06);
    position: relative;
    overflow: hidden;
}

/* Unified Header Row */
.showcase-unified-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(19, 89, 214, 0.1);
}

.showcase-header-left {
    flex: 1;
    max-width: 680px;
}

.showcase-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1359d6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.showcase-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
}

.showcase-title .text-highlight-blue {
    color: #1359d6;
}

.showcase-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

.showcase-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.showcase-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: #1359d6;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(19, 89, 214, 0.35);
}

.showcase-btn-primary:hover {
    background: #0d47b0;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(19, 89, 214, 0.5);
}

/* Social Links Row */
.showcase-social-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
}

.social-icons-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-icon-circle.fb { color: #1877f2; }
.social-icon-circle.ig { color: #e4405f; }
.social-icon-circle.li { color: #0a66c2; }
.social-icon-circle.tw { color: #1da1f2; }
.social-icon-circle.yt { color: #ff0000; }

.social-icon-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* 3x2 Service Features Grid */
.showcase-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.showcase-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 24px 22px;
    border-radius: 18px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.showcase-feature-card:hover {
    background: #ffffff;
    border-color: #1359d6;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(19, 89, 214, 0.12);
}

.feature-icon-badge {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0edff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(19, 89, 214, 0.08);
}

.feature-3d-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.showcase-feature-card:hover .feature-icon-badge {
    background: linear-gradient(135deg, #e4efff 0%, #d0e3ff 100%);
    transform: scale(1.05);
}

.showcase-feature-card:hover .feature-3d-img {
    transform: scale(1.1) rotate(3deg);
}

.feature-info {
    flex: 1;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.feature-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.feature-arrow-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid #dbeafe;
    color: #1359d6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: 4px;
}

.showcase-feature-card:hover .feature-arrow-link {
    background: #1359d6;
    color: #ffffff;
    border-color: #1359d6;
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .showcase-unified-box {
        padding: 40px 32px;
    }
    .showcase-unified-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .showcase-header-right {
        align-items: flex-start;
    }
    .showcase-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .showcase-services-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   HOME PORTFOLIO SECTION (Non-white modern UI)
   ============================================================= */
.home-portfolio-section {
    width: 100%;
    background: linear-gradient(180deg, #edf3fa 0%, #f4f8fc 50%, #eaf1f9 100%);
    padding: 90px 0 100px;
    position: relative;
    z-index: 5;
    border-top: 1px solid #e2edfd;
    border-bottom: 1px solid #e2edfd;
}

.portfolio-section-header {
    max-width: 820px;
    margin: 0 auto 56px auto;
    text-align: center;
    padding: 0 24px;
}

.portfolio-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #1359d6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.portfolio-main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
}

.portfolio-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* 3x2 Client Brands Portfolio Grid Layout */
.client-brands-grid .portfolio-row {
    height: 280px;
    gap: 20px;
    margin-bottom: 20px;
}

.client-brands-grid .portfolio-item {
    flex: 1 !important;
    height: 100%;
}

@media (max-width: 992px) {
    .client-brands-grid .portfolio-row {
        flex-direction: column;
        height: auto;
    }
    .client-brands-grid .portfolio-item {
        height: 250px;
    }
}

/* ==========================================================================
   FLOATING GIFT SURPRISE RIBBON & REWARD MODAL
   ========================================================================== */
.gift-ribbon-container {
    position: fixed;
    top: -280px;
    right: 5%;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: top 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gift-ribbon-container.reveal-gift {
    top: 0;
}

.gift-ribbon-line {
    width: 4px;
    height: 140px;
    background: linear-gradient(to bottom, #1359D6 20%, #FBBF24 100%); /* Blue to Gold */
    box-shadow: 0 0 8px rgba(19, 89, 214, 0.3);
}

.gift-box-wrapper {
    position: relative;
    animation: swing-gift 4s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes swing-gift {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.gift-box-tooltip {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background-color: #0f172a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.gift-ribbon-container:hover .gift-box-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.gift-box {
    width: 64px;
    height: 60px;
    background: #1359D6; /* Royal Blue */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 25px rgba(19, 89, 214, 0.3);
    transition: transform 0.3s ease;
}

.gift-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 100%;
    background: #FBBF24; /* Gold ribbon */
}

.gift-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 12px;
    background: #FBBF24; /* Gold ribbon */
}

.gift-box-lid {
    position: absolute;
    top: -8px;
    left: -4px;
    width: 72px;
    height: 16px;
    background: #578FE5; /* Sky Blue lid */
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.gift-box-lid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 100%;
    background: #FBBF24;
}

.gift-box-bow {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 18px;
    z-index: 1;
}

.gift-box-bow::before, .gift-box-bow::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 4px solid #FBBF24;
    border-radius: 50% 50% 0 50%;
    background: transparent;
}

.gift-box-bow::before {
    left: -8px;
    transform: rotate(-45deg);
}

.gift-box-bow::after {
    right: -8px;
    transform: rotate(135deg) scaleX(-1);
}

.gift-ribbon-container:hover .gift-box {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(19, 89, 214, 0.45);
}

.gift-ribbon-container.opening {
    animation: explode-gift 0.8s forwards ease-out;
}

@keyframes explode-gift {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.8; filter: brightness(1.5); }
    100% { transform: scale(0); opacity: 0; }
}

.gift-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.gift-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.gift-modal-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 3.5rem 3rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(19, 89, 214, 0.25);
    border: 1px solid rgba(19, 89, 214, 0.1);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gift-modal-overlay.active .gift-modal-card {
    transform: scale(1) translateY(0);
}

.gift-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.gift-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.gift-modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    animation: bounce-reward 1.5s infinite ease-in-out;
}

@keyframes bounce-reward {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.gift-modal-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.gift-modal-offer {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.gift-discount-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1359D6 0%, #578FE5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    animation: pulse-discount 2s infinite ease-in-out;
}

@keyframes pulse-discount {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.illustration-card-desc {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.35rem;
    line-height: 1.35;
    font-weight: 500;
}

@media (min-width: 1025px) {
    .service-span-2 {
        grid-column: span 2 !important;
    }
}

.gift-modal-desc {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.55;
    color: #334155;
    max-width: 340px;
    margin: 0 auto 2rem auto;
    font-weight: 600;
}

.gift-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.gift-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 999px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gift-action-btn i {
    font-size: 1.15rem;
}

.gift-action-btn.whatsapp-btn {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

.gift-action-btn.whatsapp-btn:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.gift-action-btn.call-btn {
    background-color: #1359D6;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(19, 89, 214, 0.25);
}

.gift-action-btn.call-btn:hover {
    background-color: #0b45ab;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 89, 214, 0.35);
}

.gift-expiry-note {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
}

@media (max-width: 576px) {
    .gift-modal-card {
        padding: 2.5rem 1.75rem;
    }
    .gift-modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .gift-discount-badge {
        font-size: 2.5rem;
    }
    .gift-ribbon-container {
        right: 3%;
    }
    .gift-ribbon-line {
    }
}

/* Confetti animation styles */
.gift-modal-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 5;
    border-radius: 28px;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0.85;
    border-radius: 2px;
}

@keyframes fall-confetti {
    0% {
        transform: translateY(-20px) rotate(0deg);
    transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(450px) rotate(720deg);
        opacity: 0;
    }
}

/* =============================================================
   HOME TRUSTED PARTNERS & CAROUSEL SECTION (YELLOW THEME)
   ============================================================= */
.home-partners-cta-section {
    width: 100%;
    background: #1359D6; /* Same Royal Blue as the footer */
    padding: 90px 0;
    position: relative;
    z-index: 4;
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.partners-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.partners-badge {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.partners-main-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.partners-subheading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Carousel wrapper */
.partners-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.partners-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 5px;
}

.partners-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Card Style */
.partner-card {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 0 240px;
    height: 130px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.partner-logo-wrap {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.partner-logo-img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-logo-img {
    transform: scale(1.05);
}

.partner-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: #1359D6;
}

/* Nav button styles */
.carousel-nav-btn {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    color: #0f172a;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: #0f172a;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.carousel-nav-btn.prev-btn {
    margin-right: 15px;
}

.carousel-nav-btn.next-btn {
    margin-left: 15px;
}

/* Unified CTA Block inside Partners Section */
.partners-cta-block {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    gap: 40px;
}

.partners-cta-block .portfolio-cta-left {
    max-width: 58%;
    text-align: left;
}

.partners-cta-block .portfolio-cta-left .portfolio-cta-heading {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.partners-cta-block .portfolio-cta-left .portfolio-cta-subheading {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0;
}

.partners-cta-block .portfolio-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    text-align: right;
}

.partners-cta-block .portfolio-cta-right .portfolio-cta-actions {
    display: flex;
    gap: 16px;
}

.partners-cta-block .portfolio-cta-right .cta-btn-primary {
    background: #ffffff;
    color: #1359D6;
}

.partners-cta-block .portfolio-cta-right .cta-btn-primary:hover {
    background: #f8fafc;
    color: #1359D6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partners-cta-block .portfolio-cta-right .cta-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.partners-cta-block .portfolio-cta-right .cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.partners-cta-block .portfolio-cta-right .portfolio-cta-social .rating-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .partners-cta-block {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding-top: 50px;
        margin-top: 50px;
    }
    .partners-cta-block .portfolio-cta-left {
        max-width: 100%;
        text-align: center;
    }
    .partners-cta-block .portfolio-cta-right {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .partners-main-heading {
        font-size: 2.5rem;
    }
    .home-partners-cta-section {
        padding: 60px 0;
    }
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
    .carousel-nav-btn.prev-btn {
        margin-right: 8px;
    }
    .carousel-nav-btn.next-btn {
        margin-left: 8px;
    }
}

/* ==========================================================================
   HOMEPAGE VIDEOS & WORK SHOWCASE SECTION
   ========================================================================== */
.home-videos-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}

.videos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.home-videos-header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 35px;
    gap: 25px;
}

.home-videos-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.videos-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(19, 89, 214, 0.08);
    color: var(--accent-indigo, #1359D6);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.home-videos-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.home-videos-lead {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Controls Row */
.home-videos-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

/* Toggle Switch */
.showcase-toggle-wrapper {
    display: flex;
    align-items: center;
}

.showcase-toggle-pill {
    display: flex;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 6px;
    position: relative;
}

.showcase-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569; /* Slate 600 */
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

.showcase-toggle-btn svg {
    transition: transform 0.3s ease;
}

.showcase-toggle-btn:hover svg {
    transform: scale(1.1);
}

.showcase-toggle-btn.active {
    color: #ffffff;
}

.toggle-active-bg {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #1359D6; /* Royal Blue */
    border-radius: 50px;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(19, 89, 214, 0.3);
}

/* Navigation Arrows */
.videos-slider-controls {
    display: flex;
    gap: 12px;
}

.video-arrow-btn {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    color: #0f172a;
    transition: all 0.3s ease;
}

.video-arrow-btn:hover {
    background: #1359D6;
    color: #ffffff;
    border-color: #1359D6;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(19, 89, 214, 0.25);
}

.video-arrow-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.06);
    color: #94a3b8;
}

/* Slider Track and Viewport */
.videos-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 5px 25px 5px;
}

.videos-slider-track {
    display: none;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.videos-slider-track:active {
    cursor: grabbing;
}

.videos-slider-track * {
    user-drag: none;
    -webkit-user-drag: none;
}

.videos-slider-track.active-track {
    display: flex;
}

/* Video Card Layout */
.video-card {
    flex: 0 0 310px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.video-preview-box {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    background-color: #080c14;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.video-preview-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-preview-el {
    transform: scale(1.04);
}

/* Play button and overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 20, 0.15);
    transition: background-color 0.4s ease;
}

.video-card:hover .video-play-overlay {
    background: rgba(8, 12, 20, 0.25);
}

.play-button-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-button-icon svg {
    margin-left: 4px; /* visually center play triangle */
    transition: transform 0.3s ease;
}

.video-card:hover .play-button-icon {
    transform: scale(1.14);
    background: #ffffff;
    color: #1359D6;
    border-color: #ffffff;
    box-shadow: 0 12px 30px rgba(19, 89, 214, 0.3);
}

.video-card:hover .play-button-icon svg {
    transform: scale(1.08);
}

/* Author Details below video */
.video-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 0 4px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.author-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 3px;
    display: block;
}

/* =============================================================
   VIDEO LIGHTBOX MODAL (Premium Frosted Glass Layer)
   ============================================================= */
.video-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lightbox-content-box {
    position: relative;
    width: 90%;
    max-width: 450px;
    aspect-ratio: 9/16;
    z-index: 10;
    border-radius: 24px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox-modal.active .lightbox-content-box {
    transform: scale(1);
}

.lightbox-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.lightbox-close-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: rotate(90deg);
}

.lightbox-video-wrapper {
    width: 100%;
    height: 100%;
}

#lightbox-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 991px) {
    .home-videos-title {
        font-size: 2.75rem;
    }
    .video-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .home-videos-section {
        padding: 40px 0; /* Tightened mobile padding */
    }
    .home-videos-header-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    .home-videos-controls-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }
    .showcase-toggle-wrapper {
        width: 100%;
        justify-content: center;
    }
    .showcase-toggle-pill {
        width: 100%;
    }
    .showcase-toggle-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.88rem;
        gap: 6px;
    }
    .videos-slider-controls {
        align-self: center;
        justify-content: center;
        width: 100%;
    }
    .home-videos-title {
        font-size: 2.25rem;
    }
    .videos-container {
        padding: 0 1.5rem;
    }
}

/* ==========================================================================
   HOMEPAGE STATIC IMAGES GRID
   ========================================================================== */
.images-grid-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin-top: 10px;
    padding: 10px 5px 25px 5px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-sizing: border-box;
}

.images-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.images-grid-container .video-card {
    flex: none; /* Override flex-shrink for horizontal slider layout */
    width: 100%;
}

.image-card-item .video-preview-box {
    aspect-ratio: 4 / 3; /* Landscape layout for showcasing websites/brochures */
}

@media (max-width: 991px) {
    .images-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .images-grid-container {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .images-grid-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .images-grid-container {
        gap: 24px;
    }
}
