:root {
    --bg-dark: #0a0e14;
    --bg-card: rgba(18, 26, 35, 0.85);
    --primary: #0066cc; /* Deep Blue from logo */
    --primary-bright: #00aaff;
    --secondary: #4cae4f; /* Green from logo */
    --secondary-bright: #8bc34a;
    --text-main: #f0f0f5;
    --text-dim: #94a3b8;
    --accent-gradient: linear-gradient(135deg, #0066cc 0%, #4cae4f 100%);
    --blue-gradient: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
    --green-gradient: linear-gradient(135deg, #4cae4f 0%, #8bc34a 100%);
    --surface: #121826;
    --glass: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display:flex; align-items:center; gap:5px; color:var(--text-dim); font-weight:500; transition:all 0.4s ease; }
.nav-dropdown-toggle:hover { color:#00aaff !important; }
.dropdown-arrow { font-size:0.7rem; display:inline-block; transition:transform 0.3s ease; }
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.dropdown-open .dropdown-arrow { transform:rotate(180deg); }
.dropdown-menu {
    position:absolute; top:calc(100% + 16px); left:50%;
    transform:translateX(-50%) translateY(8px);
    width:320px; background:rgba(10,14,20,0.97);
    backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(0,170,255,0.25); border-radius:16px;
    padding:12px 8px; list-style:none; margin:0;
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index:9999; box-shadow:0 20px 60px rgba(0,0,0,0.6), 0 0 25px rgba(0,170,255,0.1);
}
.dropdown-menu::before {
    content:''; position:absolute; top:-7px; left:50%;
    transform:translateX(-50%) rotate(45deg);
    width:13px; height:13px; background:rgba(10,14,20,0.97);
    border-left:1px solid rgba(0,170,255,0.25); border-top:1px solid rgba(0,170,255,0.25);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.dropdown-open .dropdown-menu { opacity:1; visibility:visible; pointer-events:all; transform:translateX(-50%) translateY(0); }
.dropdown-section-label { display:block; font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.28); padding:6px 14px 5px; }
.dropdown-lab-item { display:flex !important; align-items:center; gap:11px; padding:9px 12px !important; border-radius:10px; text-decoration:none; color:#e2e8f0 !important; transition:all 0.18s ease !important; width:100%; }
.dropdown-lab-item:hover:not(.disabled) { background:rgba(0,170,255,0.1) !important; color:#fff !important; padding-left:16px !important; }
.dropdown-lab-item.disabled { opacity:0.42; cursor:default; pointer-events:none; }
.lab-icon { font-size:20px; min-width:26px; text-align:center; }
.lab-info { display:flex; flex-direction:column; flex:1; }
.lab-name { font-size:13px; font-weight:600; color:#fff; line-height:1.3; }
.lab-desc { font-size:11px; color:rgba(255,255,255,0.42); margin-top:1px; }
.lab-badge { font-size:9px; font-weight:800; letter-spacing:1px; padding:3px 8px; border-radius:4px; white-space:nowrap; }
.lab-badge.live { background:rgba(0,255,136,0.12); color:#00ff88; border:1px solid rgba(0,255,136,0.32); animation:pulseLive 2s ease infinite; }
.lab-badge.soon { background:rgba(255,140,0,0.1); color:#ff8c00; border:1px solid rgba(255,140,0,0.28); }
@keyframes pulseLive { 0%,100%{box-shadow:0 0 0 rgba(0,255,136,0.3)} 50%{box-shadow:0 0 8px rgba(0,255,136,0.5)} }
.dropdown-footer { border-top:1px solid rgba(255,255,255,0.07); margin-top:8px; padding-top:6px; }
.dropdown-footer a { display:block !important; text-align:center; font-size:12px !important; font-weight:600 !important; color:#00aaff !important; padding:6px !important; border-radius:6px; }
.dropdown-footer a:hover { background:rgba(0,170,255,0.1) !important; }
@media (max-width:768px) {
    .dropdown-menu { position:static; opacity:1; visibility:visible; pointer-events:all; transform:none; width:100%; margin-top:8px; border-radius:10px; display:none; box-shadow:none; }
    .dropdown-menu::before { display:none; }
    .nav-dropdown.mobile-open .dropdown-menu { display:block; }
    .nav-dropdown.mobile-open .dropdown-arrow { transform:rotate(180deg); }
}

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

html {
    scroll-behavior: smooth;
}

a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--primary-bright);
}

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

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0px;
    color: #fff;
    cursor: default;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.logo-blue {
    color: var(--primary-bright);
}

.logo-green {
    color: var(--secondary);
}

.logo-sub {
    font-size: 0.7rem;
    width: 100%;
    margin-top: -5px;
    letter-spacing: 4px;
    color: var(--text-dim);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    margin-right: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #94a3b8 !important;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:visited {
    color: #94a3b8 !important;
}

.nav-links a:hover {
    color: #00aaff !important;
}

.nav-links .btn.btn-primary {
    color: #fff !important;
}

/* BUTTONS */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('hero-bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 15, 0.6) 0%, #0a0a0f 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 140px auto 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* SERVICES */
.services {
    padding: 8rem 0;
    background: var(--surface);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
}

.section-title span {
    color: var(--primary);
}

.section-title.left {
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card:hover * {
    position: relative;
    z-index: 10;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-bright);
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #fff;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-dim);
    font-size: 1rem;
}

.service-card.green-theme .service-icon {
    color: var(--secondary);
}

.service-card.green-theme:hover {
    border-color: var(--secondary);
}

.service-card.green-theme::before {
    background: var(--green-gradient);
}


/* INSIGHTS */
.insights {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.insight-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.insight-img {
    height: 220px;
    overflow: hidden;
}

.insight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.insight-content {
    padding: 2rem;
}

.insight-content .category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--glass);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-bright);
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.4;
}

.insight-content p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-bright);
    padding-left: 5px;
}

/* ABOUT */
.about {
    padding: 8rem 0;
    background: var(--surface);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    position: relative;
}

.img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 10px;
    z-index: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item .stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    font-family: 'Outfit', sans-serif;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA */
.cta {
    padding: 6rem 0;
    text-align: center;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    padding: 5rem 3rem;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* FOOTER */
.footer {
    background: var(--surface);
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3 {
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    text-decoration: none;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: var(--transition);
}

/* ANIMATIONS */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 1; /* Force visible by default to prevent 'disappeared' look */
    transform: none;
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 968px) {
    .hero-title { font-size: 3rem; }
    .about-container { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 100;
        padding-top: 5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .hero-title { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
    
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ===== TECH LABS DROPDOWN ===== */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dim);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-dropdown-toggle:hover { color: #00aaff !important; }

.dropdown-arrow {
    font-size: 0.7rem;
    display: inline-block;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown.dropdown-open .dropdown-arrow { transform: rotate(180deg); }

/* Hidden by default — smooth slide in on hover */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 360px;
    background: rgba(10, 14, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,170,255,0.25);
    border-radius: 16px;
    padding: 12px 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 25px rgba(0,170,255,0.1);
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 13px; height: 13px;
    background: rgba(10,14,20,0.97);
    border-left: 1px solid rgba(0,170,255,0.25);
    border-top: 1px solid rgba(0,170,255,0.25);
}
/* Reveal via JS class */
.nav-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

/* Section labels */
.dropdown-section-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    padding: 6px 14px 5px;
}

/* Each lab row */
.dropdown-lab-item {
    display: flex !important;
    align-items: center;
    gap: 11px;
    padding: 9px 12px !important;
    border-radius: 10px;
    text-decoration: none;
    color: #e2e8f0 !important;
    transition: all 0.18s ease !important;
    width: 100%;
}
.dropdown-lab-item:hover:not(.disabled) {
    background: rgba(0,170,255,0.1) !important;
    color: #fff !important;
    padding-left: 16px !important;
}
.dropdown-lab-item.disabled {
    opacity: 0.42;
    cursor: default;
    pointer-events: none;
}

.lab-icon { font-size: 20px; min-width: 26px; text-align: center; }

.lab-info { display: flex; flex-direction: column; flex: 1; }
.lab-name { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.lab-desc { font-size: 11px; color: rgba(255,255,255,0.42); margin-top: 1px; }

.lab-badge {
    font-size: 9px; font-weight: 800;
    letter-spacing: 1px; padding: 3px 8px;
    border-radius: 4px; white-space: nowrap;
}
.lab-badge.live {
    background: rgba(0,255,136,0.12);
    color: #00ff88;
    border: 1px solid rgba(0,255,136,0.32);
    animation: pulseLive 2s ease infinite;
}
.lab-badge.soon {
    background: rgba(255,140,0,0.1);
    color: #ff8c00;
    border: 1px solid rgba(255,140,0,0.28);
}
@keyframes pulseLive {
    0%,100% { box-shadow: 0 0 0 rgba(0,255,136,0.3); }
    50%      { box-shadow: 0 0 8px rgba(0,255,136,0.5); }
}

/* Footer "View All" row */
.dropdown-footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 8px; padding-top: 6px;
}
.dropdown-footer a {
    display: block !important;
    text-align: center;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #00aaff !important;
    padding: 6px !important;
    border-radius: 6px;
}
.dropdown-footer a:hover { background: rgba(0,170,255,0.1) !important; }

/* Mobile: full-width collapse */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible;
        pointer-events: all;
        transform: none;
        width: 100%;
        margin-top: 8px;
        border-radius: 10px;
        display: none;
        box-shadow: none;
    }
    .dropdown-menu::before { display: none; }
    .nav-dropdown.mobile-open .dropdown-menu { display: block; }
    .nav-dropdown.mobile-open .dropdown-arrow { transform: rotate(180deg); }
}

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION — Netrolix IT Solutions
══════════════════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--bg-dark, #050a12) 0%, rgba(0,20,40,0.4) 50%, var(--bg-dark, #050a12) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,102,204,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.testi-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #00aaff;
  border: 1px solid rgba(0,170,255,0.3);
  padding: 5px 16px; border-radius: 50px;
  margin-bottom: 16px;
}
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-sub {
  font-size: 16px; color: rgba(255,255,255,0.5);
  margin-top: 12px; max-width: 480px; margin-left: auto; margin-right: auto;
}

/* Columns wrapper */
.testi-columns-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-height: 680px;
  overflow: hidden;
  /* Top & bottom fade mask — mirrors the React version */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image:         linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* Each column */
.testi-col {
  flex: 0 0 300px;
  max-width: 300px;
  overflow: hidden;
}
.testi-col-md { display: none; }
.testi-col-lg { display: none; }

/* The scrolling track — CSS infinite scroll */
.testi-scroll {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: scrollUp linear infinite;
  will-change: transform;
}
.testi-scroll:hover { animation-play-state: paused; }

@keyframes scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Testimonial card */
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.testi-card:hover {
  border-color: rgba(0,170,255,0.25);
  box-shadow: 0 8px 32px rgba(0,102,204,0.12);
}
.testi-card-highlight {
  background: linear-gradient(135deg, rgba(0,102,204,0.08), rgba(0,229,255,0.04));
  border-color: rgba(0,170,255,0.2);
}
.testi-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin: 0 0 18px 0;
}

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,170,255,0.25);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.testi-author span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  margin-top: 2px;
}

/* Trust numbers strip */
.testi-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  padding: 28px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 8px 36px;
}
.trust-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem; font-weight: 900;
  color: #00aaff; line-height: 1;
}
.trust-lbl { font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; }
.trust-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .testi-col-md { display: block !important; }
}
@media (min-width: 1024px) {
  .testi-col-lg { display: block !important; }
  .testi-col { flex: 0 0 280px; max-width: 280px; }
}
@media (max-width: 600px) {
  .testi-columns-wrap { max-height: 500px; }
  .testi-col { flex: 0 0 85vw; max-width: 85vw; }
  .trust-divider { display: none; }
  .trust-item { padding: 8px 16px; }
  .testi-trust { gap: 12px; }
}
