/* Custom CSS - Modern, Animated Design */
:root {
    --primary-color: #026D81;
    --primary-dark: #015a6b;
    --primary-light: #0EA095;
    --secondary-color: #0EA095;
    --accent-color: #0EA095;
    --dark: #1e293b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gradient-1: linear-gradient(135deg, #026D81 0%, #0EA095 100%);
    --gradient-2: linear-gradient(135deg, #0EA095 0%, #026D81 100%);
    --gradient-3: linear-gradient(135deg, #026D81 0%, #0EA095 50%, #026D81 100%);
    --gradient-hero: linear-gradient(135deg, #026D81 0%, #0EA095 50%, #026D81 100%);
    --gradient-mixed: linear-gradient(135deg, #026D81 0%, #0EA095 100%);
    --gradient-reverse: linear-gradient(135deg, #0EA095 0%, #026D81 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(2, 109, 129, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(2, 109, 129, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(2, 109, 129, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(2, 109, 129, 0.3);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.text-primary{
    color: #0EA095 !important;
}
/* Header & Navigation */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.99) !important;
}

.logo-animate {
    transition: transform 0.3s ease;
}

.logo-animate:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    color: var(--dark);
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--gradient-1);
    color: white;
}

.dropdown-item.active {
    font-weight: 600;
}

.btn-nav {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 120px;
    position: relative;
    z-index: 10;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

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

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-badge {
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    color: white;
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem !important;
}

.text-gradient {
    background: linear-gradient(120deg, #0EA095, #026D81, #0EA095);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 3s ease infinite;
    display: inline-block;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subheadline {
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.trust-badges {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.badge-item {
    color: white;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

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

/* Hero Visual - AI Workflow Animation */
.hero-visual {
    position: relative;
    padding: 20px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: var(--shadow-2xl);
    background: white;
    padding: 20px;
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-1);
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(30px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    max-height: 500px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1.02);
}

/* Floating Stats Cards */
.floating-stat-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: floatStat 3s ease-in-out infinite;
    border: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
}

.floating-stat-card.stat-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.floating-stat-card.stat-2 {
    top: 50%;
    left: -15px;
    animation-delay: 1s;
}

.floating-stat-card.stat-3 {
    bottom: 15%;
    right: -10px;
    animation-delay: 2s;
}

@keyframes floatStat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-stat-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
}

.floating-stat-content {
    display: flex;
    flex-direction: column;
}

.floating-stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.floating-stat-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Credibility Ticker */
.credibility-ticker {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.ticker-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ticker-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ticker-item i {
    font-size: 1.1rem;
}

.ticker-item .fw-bold {
    margin: 0 4px;
    color: white;
}

.usp-pillar {
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.usp-pillar:hover {
    border-top-color: var(--primary-color);
    transform: translateY(-8px);
}

.hero-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-workflow-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.workflow-step {
    text-align: center;
    color: var(--dark);
    animation: fadeInScale 1s ease-out;
}

.workflow-step:nth-child(1) { animation-delay: 0.8s; }
.workflow-step:nth-child(3) { animation-delay: 1.2s; }
.workflow-step:nth-child(5) { animation-delay: 1.6s; }

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 10px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.step-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
}

.ai-pulse {
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.workflow-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: arrowPulse 1.5s ease-in-out infinite;
    font-weight: bold;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}


/* Buttons */
.btn-gradient {
    background: var(--gradient-mixed);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 109, 129, 0.5);
    background: var(--gradient-reverse);
}

.btn-gradient-reverse {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.btn-gradient-reverse:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pulse-btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(2, 109, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(2, 109, 129, 0);
    }
}

.btn-play {
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-mixed);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(2, 109, 129, 0.4);
}

/* Why Vetzu Section */
.section-why-vetzu {
    position: relative;
    background: white;
    padding: 100px 0;
    z-index: 15;
}

.section-why-vetzu .container {
    position: relative;
    z-index: 2;
}

/* Smooth blend between hero and why vetzu */
.section-why-vetzu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(2, 109, 129, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 2rem !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 109, 129, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, rgba(2, 109, 129, 0.03) 0%, rgba(14, 160, 149, 0.02) 100%);
}

.icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 109, 129, 0.1) 0%, rgba(14, 160, 149, 0.1) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.icon-zoom {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 2.5rem !important;
}

.feature-card:hover .icon-wrapper {
    background: var(--gradient-mixed);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover .icon-zoom {
    transform: scale(1.1);
    color: white !important;
}

/* Process Steps */
.process-visual-container {
    position: relative;
    padding: 80px 0;
}

.process-step-card {
    background: white;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.process-step-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
    background: var(--gradient-1);
    color: white;
}

.process-step-card:hover h4,
.process-step-card:hover p,
.process-step-card:hover .text-muted {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.process-step-card:hover .step-icon-large {
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.process-step-card:hover .step-number {
    transform: translateX(-50%) scale(1.15);
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(2, 109, 129, 0.3);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--gradient-mixed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}


.step-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.process-step-active .step-icon-large {
    color: white;
}

.ai-animated {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-connector {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    z-index: -1;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: flow 2s ease-in-out infinite;
}

@keyframes flow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Capability Cards - Modern Vertical Layout */
.capability-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--gray-200);
    height: 100%;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    text-align: center;
    position: relative;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-mixed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.capability-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(2, 109, 129, 0.1) 0%, rgba(14, 160, 149, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 0;
}

.capability-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.capability-content {
    text-align: center;
}

.capability-content h5 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 1.25rem;
}

.capability-content p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

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

.capability-card:hover .capability-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl);
}

.capability-card:hover .capability-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

/* Industry Tiles - Vertical Layout with Images */
.industry-tile {
    background: white;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-200);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.industry-tile-vertical {
    display: flex;
    flex-direction: column;
}

.industry-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.industry-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 15px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.industry-tile:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2xl);
}

.industry-tile:hover .industry-image {
    transform: scale(1.1);
}

.industry-tile:hover .industry-overlay {
    opacity: 0.5;
}

.industry-tile:hover .industry-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-2xl);
}

.industry-tile h5 {
    margin-top: 10px;
    color: var(--dark);
}

.industry-tile p {
    color: var(--gray-600);
    margin-top: 8px;
}

/* Testimonials Slider - Custom Implementation */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 40px 0 80px;
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.testimonials-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-slider-track .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-indicator.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.slider-indicator:hover {
    background-color: var(--primary-light);
}


/* Testimonials */
.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.testimonial-card:hover::before {
    opacity: 0.15;
    transform: scale(1.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar-img {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.testimonial-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
}

/* CTA Block */
.cta-block {
    background: var(--gradient-mixed);
    position: relative;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #0f172a !important;
}

.footer img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer img:hover {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(14, 160, 149, 0.5));
}

.footer-link {
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-light) !important;
    padding-left: 5px;
}

.compliance-badges .badge {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.85rem;
}
.min-vh-100{
    min-height: 100vh;
}
/* Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

.bg-light {
    background: linear-gradient(to bottom, var(--gray-50), white) !important;
}

/* Improved button styles */
.btn-gradient {
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 14px 32px;
    border-radius: 12px;
}

.btn-outline-dark {
    border-width: 2px;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 30px;
}

.btn-outline-light {
    border-width: 2px;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 30px;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-primary {
    border-width: 2px;
    border-radius: 12px;
    font-weight: 600;
    padding: 10px 24px;
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
    &:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
}

/* Improved trust badges */
.trust-badges .badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: rgb(0, 0, 0);
}

.trust-badges .badge-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Testimonials Slider Responsive */
@media (max-width: 992px) {
    .testimonials-slider-track .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .testimonials-slider-container {
        padding: 20px 50px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-track .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-slider-container {
        padding: 20px 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 35px 25px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 20px 0 60px;
    }
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .headline {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px;
    }
    
    .process-visual-container {
        padding: 60px 0;
    }
    
    .process-step-card {
        padding: 40px 30px;
    }
    
    .capability-card {
        padding: 35px 25px;
    }
    
    .industry-tile {
        padding: 0;
    }
    
    .industry-content {
        padding: 20px 15px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .headline {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .subheadline {
        font-size: 1.1rem !important;
    }
    
    .hero-image-wrapper {
        padding: 15px;
        transform: none;
    }
    
    .hero-main-image {
        max-height: 280px;
    }
    
    .hero-image-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        padding: 15px 20px;
    }
    
    .floating-stat-card {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .trust-badges .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .ai-workflow-animation {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .workflow-arrow {
        font-size: 1.2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .process-visual-container {
        padding: 40px 0;
    }
    
    .process-step-card {
        padding: 35px 25px;
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        top: -20px;
    }
    
    .step-icon-large {
        font-size: 3rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem !important;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-zoom {
        font-size: 2rem !important;
    }
    
    .capability-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .capability-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .industry-tile {
        margin-bottom: 20px;
    }
    
    .industry-image-wrapper {
        height: 150px;
    }
    
    .industry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: -30px auto 15px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .avatar-img {
        width: 60px;
        height: 60px;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .btn-nav {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .section-why-vetzu {
        margin-top: -100px;
        padding-top: 150px;
    }
    
    .cta-block {
        padding: 60px 0;
    }
    
    .cta-block h2 {
        font-size: 2rem;
    }
    
    .cta-block .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
    .headline {
        font-size: 1.8rem;
    }
    
    .subheadline {
        font-size: 1rem !important;
    }
    
    .hero-stats {
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .process-step-card {
        padding: 30px 20px;
    }
    
    .feature-card,
    .capability-card,
    .industry-tile {
        margin-bottom: 15px;
    }
    
    .testimonials-slider-container {
        padding: 20px 40px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


/* Verification Cards */
.verification-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.verification-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.verification-icon {
    text-align: center;
}

.automation-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(2, 109, 129, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
}

.compliance-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.compliance-icon {
    color: var(--primary-color);
}

.stat-box {
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

/* Workflow Comparison */
.workflow-comparison-card {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.workflow-step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number-badge {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.cost-card {
    transition: all 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl) !important;
}

/* Comparison Table */
.comparison-table {
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead th {
    font-weight: 700;
    padding: 20px;
}

.comparison-table tbody td {
    padding: 20px;
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background-color: var(--gray-50);
}

/* Flow Steps */
.flow-step-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.flow-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.flow-step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

.benefit-card,
.metric-card {
    transition: all 0.3s ease;
}

.benefit-card:hover,
.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
}

.contact-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
    border-bottom: none;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
}

/* Case Study Cards */
.case-study-card {
    transition: all 0.3s ease;
}

.case-study-card:hover {
    box-shadow: var(--shadow-lg);
}

.differentiator-card,
.outcome-card,
.proof-card,
.quote-card {
    transition: all 0.3s ease;
}

.differentiator-card:hover,
.outcome-card:hover,
.proof-card:hover,
.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.scenario-card {
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: scale(1.02);
}

.automation-card,
.security-card {
    transition: all 0.3s ease;
}

.automation-card:hover,
.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}