/* ============================================
   VisiTech Solutions - Homepage Custom Styles
   ============================================ */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --vt-primary: #2563EB;
    --vt-primary-rgb: 37, 99, 235;
    --vt-secondary: #1E3A6E;
    --vt-secondary-rgb: 30, 58, 110;
    --vt-dark: #0F2557;
    --vt-accent: #E31E24;
    --vt-accent-rgb: 227, 30, 36;
    --vt-gradient: linear-gradient(135deg, #2563EB 0%, #38BDF8 100%);
    --vt-gradient-dark: linear-gradient(135deg, #0F2557 0%, #1E3A6E 100%);
    --vt-gradient-red: linear-gradient(135deg, #E31E24 0%, #FF6B6B 100%);
    --vt-bg-light: #F0F5FF;
    --vt-bg-soft: #EFF6FF;
    --vt-text: #334155;
    --vt-text-light: #64748B;
    --vt-white: #FFFFFF;
    --vt-border: #DBEAFE;
    --vt-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    --vt-shadow-lg: 0 10px 15px -3px rgba(37, 99, 235, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.06);
    --vt-shadow-xl: 0 20px 25px -5px rgba(37, 99, 235, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    --vt-radius: 16px;
    --vt-radius-sm: 10px;
    --vt-radius-full: 50px;
    --vt-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================
   Section Shared
   ================== */
.vt-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.vt-section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vt-primary);
    background: rgba(var(--vt-primary-rgb), 0.08);
    padding: 8px 20px;
    border-radius: var(--vt-radius-full);
    margin-bottom: 18px;
}

.vt-section-tag-light {
    color: var(--vt-white);
    background: rgba(255, 255, 255, 0.15);
}

.vt-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--vt-secondary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.vt-section-title span {
    background: var(--vt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vt-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--vt-text-light);
    line-height: 1.7;
}

/* ==================
   Hero Section
   ================== */
.vt-hero-section {
    position: relative;
    background: var(--vt-gradient-dark);
    padding: 80px 0 90px;
    overflow: hidden;
}

.vt-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--vt-primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.vt-hero-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--vt-accent-rgb), 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vt-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.vt-hero-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.35);
    padding: 10px 24px;
    border-radius: var(--vt-radius-full);
    margin-bottom: 30px;
    animation: vtPulse 2s ease-in-out infinite;
}

@keyframes vtPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.25);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(56, 189, 248, 0);
    }
}

.vt-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--vt-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.vt-hero-title span {
    background: var(--vt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vt-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

.vt-hero-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--vt-accent);
    padding: 18px 24px;
    border-radius: 0 var(--vt-radius-sm) var(--vt-radius-sm) 0;
    line-height: 1.7;
}

.vt-hero-highlight strong {
    color: var(--vt-white);
}

/* ==================
   Why Choose Us
   ================== */
.vt-why-section {
    padding: 90px 0;
    background: var(--vt-white);
}

.vt-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.vt-why-card {
    background: var(--vt-bg-light);
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius);
    padding: 32px 20px;
    text-align: center;
    transition: var(--vt-transition);
    position: relative;
    overflow: hidden;
}

.vt-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vt-gradient);
    transform: scaleX(0);
    transition: var(--vt-transition);
}

.vt-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vt-shadow-xl);
    border-color: transparent;
}

.vt-why-card:hover::before {
    transform: scaleX(1);
}

.vt-why-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vt-gradient);
    border-radius: 18px;
    margin: 0 auto 20px;
    transition: var(--vt-transition);
}

.vt-why-icon i {
    font-size: 24px;
    color: var(--vt-white);
}

.vt-why-card:hover .vt-why-icon {
    border-radius: 50%;
    transform: rotate(8deg) scale(1.1);
}

.vt-why-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--vt-secondary);
    line-height: 1.4;
    margin: 0;
}

/* ==================
   About Section
   ================== */
.vt-about-section {
    padding: 90px 0;
    background: var(--vt-bg-soft);
}

.vt-about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.vt-about-content .vt-section-tag {
    margin-bottom: 12px;
}

.vt-about-content .vt-section-title {
    text-align: left;
    margin-bottom: 24px;
}

.vt-about-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--vt-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vt-about-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.vt-stat-item {
    background: var(--vt-white);
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius);
    padding: 32px;
    text-align: center;
    transition: var(--vt-transition);
    position: relative;
    overflow: hidden;
}

.vt-stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vt-gradient);
    transform: scaleX(0);
    transition: var(--vt-transition);
}

.vt-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--vt-shadow-lg);
}

.vt-stat-item:hover::after {
    transform: scaleX(1);
}

.vt-stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: var(--vt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.vt-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--vt-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================
   Products Section
   ================== */
.vt-products-section {
    padding: 90px 0;
    background: var(--vt-white);
}

.vt-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vt-product-card {
    background: var(--vt-white);
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius);
    padding: 32px 24px;
    transition: var(--vt-transition);
    position: relative;
    overflow: hidden;
}

.vt-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--vt-gradient);
    opacity: 0;
    transition: var(--vt-transition);
    z-index: 0;
}

.vt-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--vt-shadow-xl);
    border-color: transparent;
}

.vt-product-card:hover::before {
    opacity: 1;
}

.vt-product-card>* {
    position: relative;
    z-index: 1;
}

.vt-product-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--vt-primary-rgb), 0.08);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: var(--vt-transition);
}

.vt-product-icon i {
    font-size: 22px;
    color: var(--vt-primary);
    transition: var(--vt-transition);
}

.vt-product-card:hover .vt-product-icon {
    background: rgba(255, 255, 255, 0.2);
}

.vt-product-card:hover .vt-product-icon i {
    color: var(--vt-white);
}

.vt-product-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--vt-secondary);
    margin-bottom: 10px;
    transition: var(--vt-transition);
}

.vt-product-card:hover h3 {
    color: var(--vt-white);
}

.vt-product-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--vt-text-light);
    line-height: 1.7;
    margin: 0;
    transition: var(--vt-transition);
}

.vt-product-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* ==================
   Services Section (Cards)
   ================== */
.vt-services-section {
    padding: 90px 0;
    background: var(--vt-bg-soft);
}

.vt-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.vt-service-card {
    background: var(--vt-white);
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius);
    overflow: hidden;
    transition: var(--vt-transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.vt-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.vt-service-featured {
    border: 2px solid var(--vt-accent);
    position: relative;
}

.vt-service-featured::before {
    content: '★ RECOMMENDED';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--vt-gradient-red);
    color: var(--vt-white);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(45deg);
    z-index: 2;
}

.vt-service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 28px 0;
}

.vt-service-icon-wrap {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vt-gradient);
    border-radius: 20px;
    transition: var(--vt-transition);
    box-shadow: 0 8px 20px rgba(var(--vt-primary-rgb), 0.35);
}

.vt-service-card:hover .vt-service-icon-wrap {
    border-radius: 50%;
    transform: scale(1.08);
}

.vt-service-icon-wrap i {
    font-size: 26px;
    color: var(--vt-white);
}

.vt-service-number {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(var(--vt-secondary-rgb), 0.06);
    line-height: 1;
}

.vt-service-card-body {
    padding: 24px 28px;
    flex: 1;
}

.vt-service-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--vt-secondary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.vt-service-card-body p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--vt-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vt-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vt-service-features li {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--vt-text);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vt-service-features li i {
    color: var(--vt-accent);
    font-size: 14px;
}

.vt-service-card-footer {
    padding: 0 28px 28px;
}

.vt-service-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--vt-accent);
    background: rgba(var(--vt-accent-rgb), 0.08);
    padding: 8px 18px;
    border-radius: var(--vt-radius-full);
    transition: var(--vt-transition);
}

.vt-service-card:hover .vt-service-badge {
    background: var(--vt-gradient-red);
    color: var(--vt-white);
}

/* ==================
   Industries Section
   ================== */
.vt-industries-section {
    padding: 90px 0;
    background: var(--vt-white);
}

.vt-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vt-industry-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--vt-bg-light);
    border: 1px solid var(--vt-border);
    border-radius: var(--vt-radius-sm);
    padding: 22px 24px;
    transition: var(--vt-transition);
}

.vt-industry-item:hover {
    background: var(--vt-secondary);
    border-color: var(--vt-secondary);
    transform: translateY(-4px);
    box-shadow: var(--vt-shadow-lg);
}

.vt-industry-item i {
    font-size: 24px;
    color: var(--vt-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--vt-primary-rgb), 0.08);
    border-radius: 12px;
    flex-shrink: 0;
    transition: var(--vt-transition);
}

.vt-industry-item:hover i {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vt-white);
}

.vt-industry-item span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--vt-secondary);
    transition: var(--vt-transition);
}

.vt-industry-item:hover span {
    color: var(--vt-white);
}

/* ==================
   CTA / Contact Section
   ================== */
.vt-cta-section {
    padding: 90px 0;
    background: var(--vt-gradient-dark);
    position: relative;
    overflow: hidden;
}

.vt-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--vt-primary-rgb), 0.12) 0%, transparent 70%);
}

.vt-cta-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vt-cta-title {
    font-family: 'Inter', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--vt-white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.vt-cta-title span {
    background: var(--vt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vt-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.vt-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.vt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--vt-radius-full);
    text-decoration: none;
    transition: var(--vt-transition);
    cursor: pointer;
}

.vt-cta-btn:hover {
    transform: translateY(-3px);
}

.vt-cta-btn-primary {
    background: var(--vt-gradient-red);
    color: var(--vt-white);
    box-shadow: 0 8px 24px rgba(var(--vt-accent-rgb), 0.4);
}

.vt-cta-btn-primary:hover {
    box-shadow: 0 12px 30px rgba(var(--vt-accent-rgb), 0.5);
    color: var(--vt-white);
}

.vt-cta-btn-whatsapp {
    background: #25D366;
    color: var(--vt-white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.vt-cta-btn-whatsapp:hover {
    background: #1EBE5B;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: var(--vt-white);
}

.vt-cta-btn-outline {
    background: transparent;
    color: var(--vt-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.vt-cta-btn-outline:hover {
    border-color: var(--vt-white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--vt-white);
}

.vt-cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-cta-shield {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: vtFloat 3s ease-in-out infinite;
}

.vt-cta-shield i {
    font-size: 60px;
    background: var(--vt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes vtFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ==================
   Footer Tagline
   ================== */
.vt-tagline-section {
    padding: 30px 0;
    background: var(--vt-dark);
    text-align: center;
}

.vt-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.5px;
}

.vt-tagline strong {
    color: var(--vt-white);
    font-weight: 700;
}

/* ==================
   Responsive Styles
   ================== */
@media (max-width: 1199px) {
    .vt-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .vt-hero-title {
        font-size: 36px;
    }

    .vt-section-title {
        font-size: 32px;
    }

    .vt-about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vt-about-content .vt-section-title {
        text-align: center;
    }

    .vt-about-content {
        text-align: center;
    }

    .vt-about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vt-cta-buttons {
        justify-content: center;
    }

    .vt-cta-visual {
        display: none;
    }

    .vt-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .vt-hero-section {
        padding: 60px 0 70px;
    }

    .vt-hero-title {
        font-size: 28px;
    }

    .vt-hero-desc {
        font-size: 15px;
    }

    .vt-section-title {
        font-size: 26px;
    }

    .vt-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-products-grid {
        grid-template-columns: 1fr;
    }

    .vt-services-grid {
        grid-template-columns: 1fr;
    }

    .vt-industries-grid {
        grid-template-columns: 1fr;
    }

    .vt-about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-why-section,
    .vt-about-section,
    .vt-products-section,
    .vt-services-section,
    .vt-industries-section,
    .vt-cta-section {
        padding: 60px 0;
    }

    .vt-section-header {
        margin-bottom: 40px;
    }

    .vt-cta-title {
        font-size: 26px;
    }

    .vt-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .vt-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .vt-service-featured::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .vt-why-grid {
        grid-template-columns: 1fr;
    }

    .vt-about-stats {
        grid-template-columns: 1fr;
    }

    .vt-hero-title {
        font-size: 24px;
    }

    .vt-section-title {
        font-size: 22px;
    }
}

/* ==================
   Scroll Reveal Animations
   ================== */
.vt-why-card,
.vt-product-card,
.vt-service-card,
.vt-industry-item,
.vt-stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: vtReveal 0.6s ease forwards;
}

@keyframes vtReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered delays for cards */
.vt-why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.vt-why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.vt-why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.vt-why-card:nth-child(4) {
    animation-delay: 0.4s;
}

.vt-why-card:nth-child(5) {
    animation-delay: 0.5s;
}

.vt-product-card:nth-child(1) {
    animation-delay: 0.05s;
}

.vt-product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.vt-product-card:nth-child(3) {
    animation-delay: 0.15s;
}

.vt-product-card:nth-child(4) {
    animation-delay: 0.2s;
}

.vt-product-card:nth-child(5) {
    animation-delay: 0.25s;
}

.vt-product-card:nth-child(6) {
    animation-delay: 0.3s;
}

.vt-product-card:nth-child(7) {
    animation-delay: 0.35s;
}

.vt-product-card:nth-child(8) {
    animation-delay: 0.4s;
}

.vt-product-card:nth-child(9) {
    animation-delay: 0.45s;
}

.vt-product-card:nth-child(10) {
    animation-delay: 0.5s;
}

.vt-product-card:nth-child(11) {
    animation-delay: 0.55s;
}

.vt-product-card:nth-child(12) {
    animation-delay: 0.6s;
}

.vt-product-card:nth-child(13) {
    animation-delay: 0.65s;
}

.vt-service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.vt-service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.vt-service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.vt-service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.vt-industry-item:nth-child(1) {
    animation-delay: 0.05s;
}

.vt-industry-item:nth-child(2) {
    animation-delay: 0.1s;
}

.vt-industry-item:nth-child(3) {
    animation-delay: 0.15s;
}

.vt-industry-item:nth-child(4) {
    animation-delay: 0.2s;
}

.vt-industry-item:nth-child(5) {
    animation-delay: 0.25s;
}

.vt-industry-item:nth-child(6) {
    animation-delay: 0.3s;
}

.vt-industry-item:nth-child(7) {
    animation-delay: 0.35s;
}

.vt-industry-item:nth-child(8) {
    animation-delay: 0.4s;
}