/* index7.css - Enterprise/SaaS Theme */
:root {
    --primary-color: #0b1120; /* Deep blue-black */
    --accent-color: #ffc107; /* Yellow Accent */
    --gradient-base: linear-gradient(45deg, #01bdf1 0%, #02beef 20%, #00529e 50%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Header */
.premium-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.premium-header .navbar-brand img {
    height: 72px; /* Increased 20% from 60px */
    transition: var(--transition-fast);
}

.premium-header .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 12px;
    position: relative;
    padding-bottom: 5px;
}

.premium-header .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--accent-color);
    transition: var(--transition-fast);
}

.premium-header .nav-link:hover::after, 
.premium-header .nav-link.active::after {
    width: 100%;
}

.navbar-toggler .fa-bars {
    color: var(--primary-color) !important;
}

/* Hero Carousel */
.hero-section {
    padding: 0;
    margin-top: 100px;
    height: calc(100vh - 100px);
    min-height: 600px;
    position: relative;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(11, 17, 32, 0.75) 0%, rgba(0, 82, 158, 0.4) 100%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Buttons */
.btn-premium {
    background: var(--gradient-base);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    border: none;
    display: inline-block;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transition: opacity var(--transition-fast);
    opacity: 0;
}

.btn-premium:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-outline-premium {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-premium:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-talk {
    background: #00529e;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: none;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 82, 158, 0.3);
}

.btn-talk:hover {
    background: #003e78;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 82, 158, 0.45);
}

/* Cards & Layout */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h6 {
    color: #00529e;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Intro Content */
.intro-section {
    background: var(--light-bg);
    border-bottom: 1px solid #e2e8f0;
}

/* Products Section */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #00529e;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-base);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.product-icon {
    font-size: 2.5rem;
    background: var(--gradient-base);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-card p {
    flex-grow: 1;
}

.product-card .btn-link {
    color: #00529e;
    margin-top: 15px;
    padding: 0;
    text-align: left;
}

.product-card .btn-link:hover {
    color: var(--accent-color);
}

/* =========================================================================
   2026 Enterprise Showcase Grid (Scoped to #products & #our-products)
   ========================================================================= */
#products,
#our-products {
    position: relative;
    padding-bottom: 90px;
}

#products .row > div,
#our-products .row > div {
    display: flex;
    flex-direction: column;
}

/* Content Cards Design */
#products .content-card-2026,
#our-products .content-card-2026 {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 30px 25px;
    border: 1px solid rgba(0, 82, 158, 0.14);
    box-shadow: 0 16px 40px -12px rgba(0, 40, 95, 0.08), 0 6px 16px -4px rgba(11, 17, 32, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease-in-out, background 0.4s ease-in-out;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

/* Ambient Soft Blue Glow */
#products .content-card-2026::before,
#our-products .content-card-2026::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(1, 189, 241, 0.16) 0%, rgba(0, 82, 158, 0.06) 50%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

/* Soft Light Sweep on Hover */
#products .content-card-2026::after,
#our-products .content-card-2026::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(1, 189, 241, 0.15) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.65s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

/* Content Card Hover State */
#products .content-card-2026:hover,
#our-products .content-card-2026:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 82, 158, 0.25);
    box-shadow: 0 24px 50px -12px rgba(0, 40, 95, 0.16), inset 0 1px 2px rgba(255, 255, 255, 1);
    background: linear-gradient(150deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 0.97) 100%);
}

#products .content-card-2026:hover::after,
#our-products .content-card-2026:hover::after {
    left: 210%;
}

#products .content-card-2026 > *,
#our-products .content-card-2026 > * {
    z-index: 2;
    position: relative;
}

/* Premium Icon Badge */
#products .card-icon-badge,
#our-products .card-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(1, 189, 241, 0.14) 0%, rgba(0, 82, 158, 0.18) 100%);
    color: #00529e;
    font-size: 1.7rem;
    margin-bottom: 26px;
    box-shadow: 0 6px 18px -4px rgba(0, 82, 158, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(1, 189, 241, 0.3);
    transition: transform 0.4s ease-in-out, background 0.4s ease-in-out, color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    flex-shrink: 0;
}

#products .content-card-2026:hover .card-icon-badge,
#our-products .content-card-2026:hover .card-icon-badge {
    background: var(--gradient-base);
    color: var(--white);
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 8px 20px -4px rgba(0, 52, 120, 0.25);
    border-color: transparent;
}

/* Typography & Links */
#products .content-card-2026 h3,
#our-products .content-card-2026 h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1120;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.25;
    transition: color 0.35s ease-in-out;
}

#products .content-card-2026:hover h3,
#our-products .content-card-2026:hover h3 {
    color: #00529e;
}

#products .content-card-2026 p,
#products .content-card-2026 p.text-muted,
#our-products .content-card-2026 p,
#our-products .content-card-2026 p.text-muted {
    color: #475569 !important;
    font-size: 1.04rem;
    line-height: 1.75;
    margin-bottom: 34px;
    flex-grow: 1;
    font-weight: 400;
}

#products .content-card-2026 .btn-link,
#our-products .content-card-2026 .btn-link {
    display: inline-flex;
    align-items: center;
    color: #00529e;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 0;
    margin-top: auto;
    text-decoration: none;
    transition: color 0.35s ease-in-out;
    width: fit-content;
}

#products .content-card-2026 .btn-link i,
#our-products .content-card-2026 .btn-link i {
    transition: transform 0.35s ease-in-out;
    margin-left: 8px !important;
}

#products .content-card-2026:hover .btn-link,
#our-products .content-card-2026:hover .btn-link {
    color: #01bdf1;
}

#products .content-card-2026:hover .btn-link i,
#our-products .content-card-2026:hover .btn-link i {
    transform: translateX(6px);
}

/* Image Cards Design */
#products .product-image-card,
#our-products .product-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px -12px rgba(0, 30, 80, 0.15), 0 4px 14px -4px rgba(11, 17, 32, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    background: #0b1120;
    perspective: 1000px;
}

#products .showcase-img,
#our-products .showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease-in-out;
    filter: brightness(0.96) contrast(1.02);
    flex-grow: 1;
}

/* Glass Overlay & Soft Lighting */
#products .image-glass-overlay,
#our-products .image-glass-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.05) 0%, rgba(11, 17, 32, 0.35) 60%, rgba(6, 14, 32, 0.75) 100%);
    transition: opacity 0.45s ease-in-out, background 0.45s ease-in-out;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    z-index: 2;
    pointer-events: none;
}

#products .overlay-caption,
#our-products .overlay-caption {
    transform: translateY(4px);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0.9;
}

#products .caption-tag,
#our-products .caption-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Image Card Hover State - Zoom, 3D Tilt, Subtle Float, Brightness */
#products .product-image-card:hover,
#our-products .product-image-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.015);
    box-shadow: 0 26px 55px -15px rgba(0, 35, 85, 0.22);
    border-color: rgba(255, 255, 255, 0.85);
    animation: subtleFloat 3.5s ease-in-out infinite alternate;
}

@keyframes subtleFloat {
    0% { transform: translateY(-8px) rotateX(2deg) rotateY(-2deg) scale(1.015); }
    100% { transform: translateY(-14px) rotateX(1deg) rotateY(-1deg) scale(1.02); }
}

#products .product-image-card:hover .showcase-img,
#our-products .product-image-card:hover .showcase-img {
    transform: scale(1.08);
    filter: brightness(1.06) contrast(1.05);
}

#products .product-image-card:hover .image-glass-overlay,
#our-products .product-image-card:hover .image-glass-overlay {
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.05) 0%, rgba(11, 17, 32, 0.4) 50%, rgba(6, 14, 32, 0.82) 100%);
}

#products .product-image-card:hover .overlay-caption,
#our-products .product-image-card:hover .overlay-caption {
    transform: translateY(0px);
    opacity: 1;
}

#products .product-image-card:hover .caption-tag,
#our-products .product-image-card:hover .caption-tag {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments for 2026 Grid */
@media (max-width: 1199px) {
    #products .content-card-2026,
    #our-products .content-card-2026 {
        padding: 40px 36px;
    }
    #products .content-card-2026 h3,
    #our-products .content-card-2026 h3 {
        font-size: 1.6rem;
    }
    #products .product-image-card,
    #our-products .product-image-card {
        min-height: 340px;
    }
}

@media (max-width: 991px) {
    #products .content-card-2026,
    #our-products .content-card-2026 {
        padding: 36px 32px;
        border-radius: 24px;
    }
    #products .product-image-card,
    #our-products .product-image-card {
        min-height: 320px;
        border-radius: 24px;
    }
    #products .card-icon-badge,
    #our-products .card-icon-badge {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        margin-bottom: 22px;
    }
    #products .content-card-2026 h3,
    #our-products .content-card-2026 h3 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }
    #products .content-card-2026 p,
    #our-products .content-card-2026 p {
        font-size: 0.98rem;
        margin-bottom: 28px;
    }
}

@media (max-width: 767px) {
    #products .content-card-2026,
    #products .product-image-card,
    #our-products .content-card-2026,
    #our-products .product-image-card {
        border-radius: 22px;
    }
    #products .content-card-2026,
    #our-products .content-card-2026 {
        padding: 32px 26px;
    }
    #products .product-image-card,
    #our-products .product-image-card {
        min-height: 280px;
    }
}

/* About Details Section (2026 Enterprise UI) */
.about-details-section {
    background: #0b1120;
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Proof Strip - Dark Band with Four Short Chips */
.proof-strip {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 64px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.proof-chips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .proof-chips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .proof-chips-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proof-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(1, 189, 241, 0.25);
    border-radius: 50px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #f8fafc;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-chip i {
    color: #01bdf1;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.proof-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(1, 189, 241, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Two-Column Alignment & Typography */
.about-col-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.about-details-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.about-callout-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #01bdf1;
    padding: 22px 26px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 24px;
    position: relative;
    backdrop-filter: blur(10px);
}

.about-callout-box p {
    font-size: 1.12rem;
    font-weight: 500;
    color: #f8fafc;
    line-height: 1.6;
    margin: 0;
}

.about-body-text {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

.about-body-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Image Showcase Wrap */
.about-visual-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(1, 189, 241, 0.25);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 340px;
    display: flex;
}

.about-visual-wrap img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual-wrap:hover img {
    transform: scale(1.03);
}

.about-visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(11, 17, 32, 0.85);
    border: 1px solid rgba(1, 189, 241, 0.4);
    backdrop-filter: blur(12px);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.about-visual-badge i {
    color: #01bdf1;
    font-size: 1.15rem;
}

/* Approach Section */
.approach-card {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.approach-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #00529e;
}

.approach-icon {
    font-size: 1.8rem;
    color: #00529e;
    margin-right: 20px;
    background: var(--light-bg);
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.proof-strip {
    background: var(--gradient-dark);
    padding: 40px 35px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(11, 17, 32, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.proof-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-base);
}

.proof-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 22px;
    border-radius: 40px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    height: 100%;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.proof-chip:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #01bdf1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 189, 241, 0.2);
}

.chip-icon {
    color: #01bdf1;
    font-size: 1.25rem;
    margin-right: 14px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.proof-chip:hover .chip-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Pricing Section */
.pricing-section {
    background: var(--light-bg);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-fast);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.premium {
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
    transform: scale(1.05);
}

.pricing-card.premium .btn-outline-premium:hover {
    background-color: var(--accent-color);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.pricing-card.premium .pricing-price {
    color: var(--accent-color);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card.premium .pricing-features li {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Video Section */
.video-section {
    background: var(--gradient-base);
    color: var(--white);
}

.video-scroller-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-track {
    display: flex;
    width: max-content;
    animation: scrollVideos 30s linear infinite;
}

.video-track:hover {
    animation-play-state: paused;
}

@keyframes scrollVideos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.video-card {
    width: 350px;
    margin: 0 15px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.play-btn {
    font-size: 3rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.video-card:hover img {
    transform: scale(1.1);
}

.video-card:hover .video-overlay {
    background: rgba(0,0,0,0.6);
}

.video-card:hover .play-btn {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Market Trend */
.trend-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
}

.trend-card .progress {
    height: 8px;
    background: #e2e8f0;
}

.trend-card .progress-bar {
    background: var(--gradient-base);
}

.trend-card-premium {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 25px;
    border: 1px solid rgba(0, 82, 158, 0.14);
    box-shadow: 0 16px 40px -12px rgba(0, 40, 95, 0.08), 0 6px 16px -4px rgba(11, 17, 32, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, border-color 0.4s ease-in-out, background 0.4s ease-in-out;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
}

.trend-card-premium:hover {
    transform: translateX(8px);
    box-shadow: 0 28px 50px -15px rgba(0, 40, 95, 0.15), 0 12px 24px -8px rgba(11, 17, 32, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 82, 158, 0.25);
    background: linear-gradient(150deg, #ffffff 0%, #f0f7ff 100%);
}

.trend-card-premium .icon-3d-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px -4px rgba(0, 82, 158, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.trend-card-premium:hover .icon-3d-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.trend-card-premium .icon-3d-wrapper i {
    color: #0284c7;
    filter: drop-shadow(0 4px 4px rgba(2, 132, 199, 0.3));
}

.trend-card-premium h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00285f;
    margin-bottom: 8px;
}

.trend-card-premium .trend-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.trend-card-premium:hover .trend-img {
    transform: scale(1.05);
}

.trend-card-premium h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00285f;
    margin-bottom: 12px;
}

.trend-card-premium p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* =========================================================================
   2026 Enterprise Team Profile Section & Slide-In Drawer
   ========================================================================= */
.team-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Category Tabs (Pill Style) */
.team-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.team-tab-btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1.02rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    color: #334155;
    border: 1px solid rgba(0, 82, 158, 0.15);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(11, 17, 32, 0.03);
    outline: none;
}

.team-tab-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.08);
    border-color: rgba(0, 82, 158, 0.25);
}

.team-tab-btn.active {
    background: linear-gradient(135deg, #00529e 0%, #01bdf1 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(11, 17, 32, 0.15);
    transform: translateY(-2px);
}

/* Tab Panes Transition */
.team-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-in-out, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-tab-pane.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* 2026 Enterprise Profile Cards */
.team-card-2026 {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 82, 158, 0.14);
    border-radius: 24px;
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px -6px rgba(11, 17, 32, 0.06);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated Gradient Border Overlay */
.team-card-2026::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #01bdf1, #00529e, #a855f7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease-in-out;
    pointer-events: none;
}

/* Hover Effects: Lift, Slight Scale, Natural Shadow, Animated Border */
.team-card-2026:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(11, 17, 32, 0.12);
    border-color: transparent;
}

.team-card-2026:hover::after {
    opacity: 1;
}

/* Card Headshot Wrapper */
.team-card-img-wrap {
    width: 100%;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.team-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Zoom on Hover */
.team-card-2026:hover .team-card-img-wrap img {
    transform: scale(1.08);
}

/* Card Content & Hierarchy */
.team-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.team-card-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00529e;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Card Footer: Socials Centered */
.team-card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(11, 17, 32, 0.06);
    margin-top: auto;
}

.team-card-socials {
    display: flex;
    gap: 12px;
}

.social-btn-mini {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 82, 158, 0.08);
    color: #00529e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn-mini:hover {
    background: #00529e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 82, 158, 0.3);
}

/* =========================================================================
   Profile Detail Drawer (Slide-In Panel)
   ========================================================================= */
.profile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 17, 32, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99998 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.profile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.profile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    max-width: 760px;
    min-width: 520px;
    height: 100vh;
    background: #ffffff;
    z-index: 99999 !important;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(11, 17, 32, 0.25);
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.profile-drawer.active {
    right: 0;
}

/* Premium "X" Close Button */
.drawer-close-btn {
    position: absolute;
    top: 28px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 82, 158, 0.06);
    border: 1px solid rgba(0, 82, 158, 0.15);
    color: #0b1120;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.drawer-close-btn:hover {
    background: #e3597a;
    color: #ffffff;
    border-color: #e3597a;
    transform: rotate(90deg) scale(1.08);
    box-shadow: 0 6px 16px rgba(227, 89, 122, 0.35);
}

/* Drawer Header Area */
.drawer-header-section {
    padding: 45px 40px 35px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f8 100%);
    border-bottom: 1px solid rgba(0, 82, 158, 0.1);
    position: relative;
    display: flex;
    gap: 30px;
    align-items: center;
}

.drawer-avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #ffffff;
    box-shadow: 0 14px 30px -6px rgba(0, 82, 158, 0.2);
    position: relative;
}

.drawer-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.drawer-header-meta {
    flex-grow: 1;
    padding-right: 40px;
}

.drawer-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0b1120;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    line-height: 1.15;
}

.drawer-designation {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00529e;
    margin-bottom: 12px;
}

.drawer-company-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.drawer-company-name {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}

.drawer-badge {
    background: linear-gradient(135deg, rgba(0, 82, 158, 0.1) 0%, rgba(1, 189, 241, 0.15) 100%);
    color: #00529e;
    border: 1px solid rgba(1, 189, 241, 0.4);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.drawer-socials {
    display: flex;
    gap: 12px;
}

.drawer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: #ffffff;
    color: #00529e;
    border: 1px solid rgba(0, 82, 158, 0.18);
    box-shadow: 0 4px 10px rgba(11, 17, 32, 0.04);
    transition: all 0.3s ease;
}

.drawer-social-btn:hover {
    background: #00529e;
    color: #ffffff;
    border-color: #00529e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 82, 158, 0.25);
}

/* Drawer Body Area */
.drawer-body-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.drawer-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 6px 20px -4px rgba(11, 17, 32, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drawer-info-card:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 82, 158, 0.08);
}

.drawer-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-section-title i {
    color: #01bdf1;
    font-size: 1.2rem;
}

.drawer-bio-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 0;
}

/* Two Column Grid inside Drawer for Experience & Expertise */
.drawer-stats-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.stat-box-drawer {
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 28px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 30px -8px rgba(11, 17, 32, 0.35);
}

.stat-box-drawer .stat-value {
    font-size: 2.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #01bdf1 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-box-drawer .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tag Pills & Lists */
.drawer-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(1, 189, 241, 0.08);
    color: #00529e;
    border: 1px solid rgba(1, 189, 241, 0.3);
    transition: all 0.3s ease;
}

.tag-pill:hover {
    background: #00529e;
    color: #ffffff;
    border-color: #00529e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 82, 158, 0.2);
}

.tag-pill-skill {
    background: rgba(0, 82, 158, 0.06);
    color: #0b1120;
    border-color: #cbd5e1;
}

.tag-pill-industry {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #94a3b8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Responsive Rules for Drawer & Tabs */
@media (max-width: 1199px) {
    .profile-drawer {
        width: 70vw;
        max-width: 100%;
        min-width: 480px;
    }
    .drawer-header-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px 30px;
    }
    .drawer-header-meta {
        padding-right: 0;
    }
    .drawer-company-row, .drawer-socials {
        justify-content: center;
    }
    .drawer-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .profile-drawer {
        width: 100vw;
        min-width: 100vw;
        border-radius: 0;
    }
    .drawer-header-section {
        padding: 50px 20px 24px;
    }
    .drawer-close-btn {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
    .drawer-avatar-wrap {
        width: 110px;
        height: 110px;
    }
    .drawer-name {
        font-size: 1.75rem;
    }
    .drawer-body-section {
        padding: 24px 20px 40px;
        gap: 22px;
    }
    .drawer-info-card {
        padding: 22px 18px;
    }
}

/* Contact */
.contact-section {
    background: var(--light-bg);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-form .form-control {
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--white);
}

.contact-form .form-control:focus {
    border-color: #00529e;
    box-shadow: none;
}

/* =========================================================================
   2026 Enterprise Associates & Partners Showcase
   ========================================================================= */
.associates-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 50%, #f0f6ff 100%);
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    z-index: 1;
}

/* Subtle Ambient Background Shimmer & Lighting */
.associates-section::before,
.associates-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(85px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.associates-section::before {
    top: -5%;
    left: -5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(1, 189, 241, 0.16) 0%, rgba(0, 82, 158, 0.04) 70%, transparent 100%);
}

.associates-section::after {
    bottom: -5%;
    right: -5%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(0, 82, 158, 0.14) 0%, rgba(1, 189, 241, 0.07) 70%, transparent 100%);
}

/* =========================================================================
   Top Row: Two Prominent Company Logos
   ========================================================================= */
.partner-company-card {
    padding: 26px 42px;
    border-radius: 20px;
    box-shadow: 0 12px 30px -6px rgba(0, 35, 80, 0.08), 0 3px 8px -2px rgba(11, 17, 32, 0.03);
    transition: transform 0.45s ease-in-out, box-shadow 0.45s ease-in-out, filter 0.45s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    min-height: 130px;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Subtle Premium Hover Effect for Company Logos */
.partner-company-card:hover {
    transform: scale(1.02);
    box-shadow: 0 22px 46px -8px rgba(0, 52, 120, 0.18), 0 0 24px rgba(1, 189, 241, 0.14);
    filter: brightness(1.04);
}

/* Logo 1: Noise & Notation Image Card Styling */
.card-nn-img {
    background: #050508;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 22px 38px;
}

/* Logo 2: Rushmore Technologies Image Card Styling */
.card-rushmore-img {
    background: #ffffff;
    border: 1px solid rgba(223, 180, 117, 0.35);
    padding: 22px 38px;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    transition: transform 0.4s ease-in-out;
}

.partner-company-card:hover .partner-logo-img {
    transform: scale(1.01);
}

/* =========================================================================
   Bottom Row: Five Associate Category Badges
   ========================================================================= */
.associate-badges-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

/* Premium Interactive Category Badge / Pill Card */
.associate-category-badge {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 20px;
    border: 1px solid rgba(0, 82, 158, 0.14);
    box-shadow: 0 10px 24px -6px rgba(0, 52, 120, 0.07), 0 3px 8px -2px rgba(11, 17, 32, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out, background 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

/* Animated Gradient Border on Hover */
.associate-category-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(1, 189, 241, 0), rgba(0, 82, 158, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.45s ease-in-out, opacity 0.45s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

/* Gentle Light Sweep on Hover */
.associate-category-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -160%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.85) 50%, transparent 70%);
    transform: skewX(-20deg);
    transition: left 0.65s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

/* Badge Hover States */
.associate-category-badge:hover {
    transform: translateY(-4px) scale(1.03);
    background: #ffffff;
    box-shadow: 0 18px 36px -6px rgba(0, 82, 158, 0.22), 0 0 22px rgba(1, 189, 241, 0.25);
    border-color: transparent;
}

.associate-category-badge:hover::before {
    background: linear-gradient(135deg, #01bdf1 0%, #00529e 50%, #00ffff 100%);
    opacity: 1;
}

.associate-category-badge:hover::after {
    left: 160%;
}

/* Badge Icon & Text Styling */
.badge-icon-wrap {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.associate-category-badge:hover .badge-icon-wrap {
    transform: scale(1.08);
}

.badge-title-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b1120;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
    position: relative;
    z-index: 2;
    transition: color 0.35s ease;
}

.associate-category-badge:hover .badge-title-text {
    color: #00529e;
}

/* =========================================================================
   Responsive Behaviour
   ========================================================================= */
/* Desktop screens with narrower width or iPad Pro (Tablet Landscape) */
@media (max-width: 1199px) {
    .associate-badges-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
    .associate-category-badge {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    .partner-logo-img {
        max-height: 72px;
    }
}

/* Mobile & Small Tablets (Portrait) */
@media (max-width: 767px) {
    .associates-section {
        padding: 65px 0;
    }
    .associate-badges-row {
        flex-direction: column;
        gap: 14px;
        margin-top: 36px;
    }
    .associate-category-badge {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        padding: 16px 20px;
    }
    .partner-company-card {
        padding: 18px 22px;
        min-height: 105px;
        max-width: 100%;
    }
    .partner-logo-img {
        max-height: 64px;
    }
}

@media (max-width: 480px) {
    .partner-logo-img {
        max-height: 54px;
    }
}

/* FAQ */
.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    background: var(--white);
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background: #f0f7ff;
    color: #00529e;
}

/* Footer */
.premium-footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-widget h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-widget h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 10px;
}

.premium-footer .navbar-brand img, .premium-footer > .container > .row > .col-lg-3:first-child img {
    height: 85px; /* Slightly larger than header logo (72px) */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--white);
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact p, .footer-contact span, .footer-contact strong {
    color: rgba(255,255,255,0.7);
}

.footer-contact strong {
    color: var(--white);
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    background: #05080f;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border: 1px solid #e2e8f0;
        border-radius: var(--radius-md);
        margin-top: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-card.premium {
        transform: none;
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }
}

/* Our Products Premium Carousel Section */
.premium-carousel-section {
    background: var(--light-bg);
    padding: 100px 0;
    overflow: hidden;
}

.premium-carousel-section .section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.products-carousel {
    padding-bottom: 60px !important;
    padding-top: 20px !important;
}

.premium-case-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: row;
    height: 100%;
}

.premium-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 0 20px rgba(1, 189, 241, 0.15);
}

.card-image-area {
    flex: 0 0 45%;
    overflow: hidden;
    position: relative;
}

.card-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-case-card:hover .card-image-area img {
    transform: scale(1.05);
}

.card-content-area {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-badge {
    display: inline-block;
    background: var(--gradient-base);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.card-content-area h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-content-area .description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.stats-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.stat-item {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #00529e;
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.3;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.highlights-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.highlights-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
    font-size: 1.1rem;
}

.card-content-area .cta-link {
    display: inline-flex;
    align-items: center;
    color: #00529e;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.card-content-area .cta-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-content-area .cta-link:hover {
    color: var(--accent-color);
}

.card-content-area .cta-link:hover i {
    transform: translateX(5px);
}

/* Swiper Controls Customization */
.products-carousel .swiper-button-next,
.products-carousel .swiper-button-prev {
    color: var(--white);
    background: rgba(11, 17, 32, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.products-carousel .swiper-button-next:hover,
.products-carousel .swiper-button-prev:hover {
    background: var(--gradient-base);
    transform: scale(1.1);
}

.products-carousel .swiper-button-next::after,
.products-carousel .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.products-carousel .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.products-carousel .swiper-pagination-bullet-active {
    background: #00529e;
    width: 30px;
    border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .premium-case-card {
        flex-direction: column;
    }
    
    .card-image-area {
        height: 300px;
        flex: none;
    }
    
    .card-content-area {
        padding: 30px;
    }
    
    .card-content-area h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-carousel .swiper-button-next,
    .products-carousel .swiper-button-prev {
        display: none;
    }
}
