/* ============================================================
   INDEX.CSS — Venigem Advanced Technologies Homepage
   Premium Corporate Design System — Enhanced Edition
   ============================================================ */

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    padding: 200px 0 140px;
    background: url('hero-ras.png') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(10, 15, 30, 0.93) 0%,
        rgba(10, 15, 30, 0.82) 40%,
        rgba(5, 152, 153, 0.12) 80%,
        rgba(10, 15, 30, 0.88) 100%
    );
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(5, 152, 153, 0.4);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.p1 { top: 20%; left: 10%; animation-delay: 0s; width: 3px; height: 3px; }
.p2 { top: 60%; left: 80%; animation-delay: 3s; width: 5px; height: 5px; }
.p3 { top: 80%; left: 30%; animation-delay: 6s; width: 2px; height: 2px; }
.p4 { top: 30%; left: 70%; animation-delay: 9s; width: 4px; height: 4px; }
.p5 { top: 50%; left: 50%; animation-delay: 12s; width: 3px; height: 3px; }

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -40px) scale(1.5); opacity: 0.8; }
    50% { transform: translate(-20px, -80px) scale(1); opacity: 0.5; }
    75% { transform: translate(40px, -30px) scale(1.3); opacity: 0.7; }
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 152, 153, 0.1);
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    border: 1px solid rgba(5, 152, 153, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

/* Title */
.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 28px;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #22d3ee 0%, #059899 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 700px;
    margin: 0 auto 44px;
    line-height: 1.75;
    font-weight: 400;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(5, 152, 153, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(5, 152, 153, 0.45);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Trust Bar */
.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 36px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}

.trust-item i {
    color: #22d3ee;
    font-size: 14px;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}


/* ==================== MARQUEE STRIP ==================== */
.marquee-strip {
    background: linear-gradient(90deg, var(--brand-blue), #047070, var(--brand-blue));
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-inner {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.marquee-content span i {
    font-size: 12px;
    opacity: 0.7;
}

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


/* ==================== COMPANY OVERVIEW SECTION ==================== */
.company-overview {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.company-overview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 152, 153, 0.02) 0%, rgba(5, 152, 153, 0.05) 100%);
    pointer-events: none;
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.overview-content {
    flex: 1;
}

.overview-lead {
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.75;
    margin: 20px 0 16px;
    font-weight: 500;
}

.overview-body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.overview-highlight-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(5, 152, 153, 0.04) 0%, rgba(5, 152, 153, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(5, 152, 153, 0.08);
    transition: all 0.3s ease;
}

.overview-highlight-item:hover {
    border-color: rgba(5, 152, 153, 0.2);
    box-shadow: 0 8px 24px rgba(5, 152, 153, 0.06);
    transform: translateX(4px);
}

.oh-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
}

.oh-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.oh-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    border-bottom-color: var(--brand-blue);
    gap: 14px;
}

/* Overview Visual */
.overview-visual {
    flex: 1;
    position: relative;
}

.overview-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.overview-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.overview-image-wrapper:hover img {
    transform: scale(1.03);
}

.overview-image-border {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 120px;
    height: 120px;
    border-top: 4px solid var(--brand-blue);
    border-right: 4px solid var(--brand-blue);
    border-radius: 0 24px 0 0;
    pointer-events: none;
}

.overview-stats-float {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    padding: 20px 36px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.osf-item {
    text-align: center;
}

.osf-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--brand-blue);
    line-height: 1;
}

.osf-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.osf-divider {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
}


/* ==================== SOLUTIONS SECTION ==================== */
.solutions {
    padding: 120px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

.section-tag {
    color: var(--brand-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 16px;
    background: rgba(5, 152, 153, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
}

.section-tag-dark {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.15;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.solution-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(5, 152, 153, 0.12);
    border-color: rgba(5, 152, 153, 0.1);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

/* Featured card highlight */
.featured-card {
    border-color: rgba(5, 152, 153, 0.15);
    background: linear-gradient(180deg, rgba(5, 152, 153, 0.02) 0%, #ffffff 100%);
}

.card-featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
    display: inline-block;
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: rgba(5, 152, 153, 0.08);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.solution-icon-glow {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--brand-blue);
    border-radius: 14px;
    top: 0;
    left: 0;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.solution-card:hover .solution-icon {
    background: var(--brand-blue);
    color: #ffffff;
}

.solution-card:hover .solution-icon-glow {
    opacity: 0.2;
}

.solution-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.solution-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.solution-features li i {
    color: var(--brand-blue);
    font-size: 12px;
}

.solution-link {
    color: var(--brand-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.solution-link:hover {
    gap: 12px;
}


/* ==================== STATS SECTION ==================== */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1528 50%, #0a1020 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(5, 152, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stats-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1.2;
}

.stats-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(5, 152, 153, 0.2);
    transform: translateY(-4px);
}

.stat-icon-ring {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid rgba(34, 211, 238, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 22px;
    color: #22d3ee;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    display: inline;
    line-height: 1;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #22d3ee;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    display: block;
    margin-top: 10px;
}

.stat-micro {
    display: block;
    font-size: 12px;
    color: rgba(34, 211, 238, 0.6);
    margin-top: 6px;
    font-weight: 500;
}


/* ==================== WHY CHOOSE US SECTION ==================== */
.why-us {
    padding: 120px 0;
    background: #ffffff;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.why-us-content {
    flex: 1;
}

.why-us-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin: 20px 0 40px;
}

.highlight-text {
    color: var(--brand-blue);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Visual Side */
.why-us-visual {
    flex: 1;
    position: relative;
}

.visual-card-stack {
    position: relative;
}

.visual-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

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

.visual-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(5, 152, 153, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.vb-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

.vb-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    opacity: 0.9;
}


/* ==================== CERTIFICATIONS SECTION ==================== */
.certifications {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f4f8 0%, #f8fafc 100%);
    position: relative;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cert-card {
    text-align: center;
    padding: 40px 24px 36px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e8ecf1;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.cert-card:hover::after {
    transform: scaleX(1);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: rgba(5, 152, 153, 0.08);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-icon {
    background: var(--brand-blue);
    color: #ffffff;
    transform: scale(1.05);
}

.cert-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ==================== INDUSTRIES SECTION ==================== */
.industries {
    padding: 100px 0;
    background: #ffffff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.industry-card {
    text-align: center;
    padding: 40px 24px 36px;
    border-radius: 20px;
    border: 1px solid #e8ecf1;
    background: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: rgba(5, 152, 153, 0.08);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(5, 152, 153, 0.25);
}

.industry-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.industry-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.industry-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(5, 152, 153, 0.06);
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 20px;
    border: 1px solid rgba(5, 152, 153, 0.12);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-tag {
    background: rgba(5, 152, 153, 0.1);
    border-color: rgba(5, 152, 153, 0.25);
}


/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '\201C';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    font-family: serif;
    color: rgba(5, 152, 153, 0.04);
    line-height: 1;
    pointer-events: none;
}

.testimonials-track-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    /* Optional: Side fade effect */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: slide-testimonials 40s linear infinite;
}

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

@keyframes slide-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid #e8ecf1;
    transition: all 0.4s ease;
    position: relative;
    width: 400px; /* Fixed width for sliding */
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
    border-color: rgba(5, 152, 153, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-secondary);
}


/* ==================== PROCESS SECTION ==================== */
.process {
    padding: 100px 0;
    background: #ffffff;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 36px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8ecf1;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(5, 152, 153, 0.15);
    transform: translateX(8px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-blue);
    opacity: 0.3;
    min-width: 60px;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 1;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, var(--brand-blue), transparent);
    margin-left: 66px;
    opacity: 0.2;
}


/* ==================== CTA BANNER ==================== */
.cta-banner {
    padding: 60px 0 120px;
    background: #f8fafc;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1528 50%, #0a1828 100%);
    border-radius: 32px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    border: 40px solid rgba(5, 152, 153, 0.06);
    pointer-events: none;
}

.cta-dec-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.cta-dec-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    border-color: rgba(14, 165, 233, 0.06);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.cta-inner p {
    font-size: 16px;
    margin-bottom: 36px;
    opacity: 0.75;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--brand-blue), #0ea5e9);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(5, 152, 153, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(5, 152, 153, 0.45);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.cta-trust-signals {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust-signals span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.cta-trust-signals span i {
    color: #22d3ee;
    font-size: 14px;
}


/* ==================== RESPONSIVE BREAKPOINTS ==================== */

/* Large tablets / small desktops */
@media screen and (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-track .testimonial-card:last-child {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .why-us-container {
        flex-direction: column-reverse;
        gap: 60px;
    }

    .visual-card img {
        height: auto;
    }

    .overview-container {
        flex-direction: column;
        gap: 60px;
    }

    .overview-image-wrapper img {
        height: auto;
    }

    .company-overview::before {
        display: none;
    }

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

@media screen and (max-width: 768px) {
    .hero {
        padding: 140px 0 100px;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
        border-radius: 16px;
    }

    .trust-divider { display: none; }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-grid .cert-card:last-child {
        grid-column: span 2;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .testimonials-track .testimonial-card:last-child {
        display: block;
    }

    .cta-container {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .cta-inner h2 {
        font-size: 1.6rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .process-step {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }

    .process-connector {
        margin-left: 24px;
    }

    .visual-badge {
        left: auto;
        right: 16px;
        bottom: -16px;
    }

    .overview-stats-float {
        gap: 16px;
        padding: 16px 24px;
    }

    .overview-image-border {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industry-card {
        padding: 28px 16px 24px;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .cert-grid .cert-card:last-child {
        grid-column: span 1;
    }

    .cta-banner {
        padding: 40px 16px 80px;
    }

    .overview-stats-float {
        flex-direction: column;
        gap: 12px;
        padding: 20px 28px;
    }

    .osf-divider {
        width: 40px;
        height: 1px;
    }

    .testimonials-track .testimonial-card:nth-child(2),
    .testimonials-track .testimonial-card:last-child {
        display: none;
    }
}
