/* ZantaTech Solutions - Modern CSS Styles */

/* CSS Custom Properties */
:root {
    --primary-color: #1F4A75;
    --primary-dark: #0A1A2F;
    --primary-light: #36A8FF;
    --secondary-color: #36A8FF;
    --accent-color: #36A8FF;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #0A1A2F;
    --text-light: #64748b;
    --bg-light: #F5F9FF;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #1F4A75 0%, #36A8FF 100%);
    --gradient-hero: linear-gradient(135deg, #F5F9FF 0%, #E0F2FE 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 1rem;
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Typewriter text specific styling - Larger font */
#typewriter {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    white-space: normal;
    color: var(--primary-color);
    font-weight: 600;
    min-height: 4rem;
    display: inline-block;
    text-align: center;
    overflow: visible;
    width: 100%;
    padding: 0 1rem;
    line-height: 1.3;
}

/* Mobile typewriter adjustments - Larger font */
@media (max-width: 768px) {
    #typewriter {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        min-height: 5rem;
        max-width: 100%;
        padding: 0 1rem;
        word-break: break-word;
        hyphens: auto;
        overflow-wrap: break-word;
        word-wrap: break-word;
        font-weight: 600;
    }
}

/* Very small mobile screens - Larger font */
@media (max-width: 480px) {
    #typewriter {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.2;
        min-height: 4rem;
        padding: 0 0.5rem;
        font-weight: 600;
    }
}

/* Ensure the h1 container maintains consistent height - Larger for typewriter */
.hero-content h1 {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: visible;
    width: 100%;
    padding: 0 1rem;
}

/* Mobile h1 container adjustments - Larger for typewriter */
@media (max-width: 768px) {
    .hero-content h1 {
        min-height: 5.5rem;
        align-items: center;
        padding: 0.5rem 1rem;
        overflow: visible;
    }
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Utility Classes */
.primary-text {
    color: var(--primary-color) !important;
}

.secondary-text {
    color: var(--secondary-color) !important;
}

.section-heading {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Navigation Styles */
.custom-navbar {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    transition: all var(--transition-normal);
    padding: 0.75rem 0;
    height: 80px; /* Define navbar height for scroll offset calculation */
}

.custom-navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Logo Styling */
.navbar-brand {
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    position: relative;
    overflow: visible;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

/* Animated Logo Icon */
.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    animation: logoRotate 8s linear infinite;
}

.logo-shape-1 {
    width: 40px;
    height: 40px;
    opacity: 0.2;
    animation-delay: 0s;
}

.logo-shape-2 {
    width: 30px;
    height: 30px;
    opacity: 0.4;
    animation-delay: -2s;
    animation-direction: reverse;
}

.logo-shape-3 {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    animation-delay: -4s;
}

.logo-center {
    position: relative;
    z-index: 3;
    color: var(--text-primary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    animation: logoPulse 2s ease-in-out infinite;
}

/* Logo Text Styling */
.logo-text {
    font-family: var(--font-heading);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 0;
}

.logo-main {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.logo-primary {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--text-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-normal);
}

.logo-secondary {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: all var(--transition-normal);
}

.logo-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all var(--transition-normal);
    margin-left: 0.5rem;
}

/* Logo Glow Effect */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 50px;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-normal);
    filter: blur(10px);
    pointer-events: none;
}

/* Logo Hover Effects */
.logo-container:hover .logo-glow {
    opacity: 1;
}

.logo-container:hover .logo-primary {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
}

.logo-container:hover .logo-secondary {
    color: var(--primary-color);
    transform: scale(1.05);
}

.logo-container:hover .logo-tagline {
    color: var(--primary-color);
    opacity: 1;
}

.logo-container:hover .logo-center {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.8);
}

.logo-container:hover .logo-shape {
    animation-play-state: paused;
    transform: scale(1.1);
    opacity: 0.8;
}

/* Logo Animations */
@keyframes logoRotate {
    0% {
        transform: rotate(0deg) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        border-radius: 30%;
    }
    50% {
        transform: rotate(180deg) scale(1);
        border-radius: 50%;
    }
    75% {
        transform: rotate(270deg) scale(0.9);
        border-radius: 40%;
    }
    100% {
        transform: rotate(360deg) scale(1);
        border-radius: 50%;
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(56, 189, 248, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    }
}

/* Logo Loading Animation */
.logo-container {
    animation: logoFadeIn 1s ease-out;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

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

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

.dropdown-menu {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.dropdown-item {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2856, 189, 248, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    margin-top: 80px; /* Account for fixed header */
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    filter: blur(60px);
}

.hero-bg-shape.shape1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
}

.hero-bg-shape.shape2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 10%;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: heroTitleGlow 3s ease-in-out infinite;
}

.hero h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(56, 189, 248, 0.1) 50%, transparent 100%);
    border-radius: var(--border-radius);
    opacity: 0;
    animation: heroTitleShimmer 4s ease-in-out infinite;
    z-index: -1;
}

.hero .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.9;
    animation: heroSubtitleSlide 1.8s ease-out 0.5s both;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: heroButtonsSlide 2s ease-out 1s both;
}

/* Button Styles */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-primary);
    box-shadow: 
        0 4px 15px rgba(56, 189, 248, 0.3),
        0 0 20px rgba(56, 189, 248, 0.1);
    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.2), transparent);
    transition: left 0.6s;
}

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

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(56, 189, 248, 0.5),
        0 0 30px rgba(56, 189, 248, 0.2);
    color: var(--text-primary);
}

.btn-outline {
    background: rgba(56, 189, 248, 0.05);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    color: var(--text-primary);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #36A8FF, #1F4A75) !important;
    color: white !important;
    box-shadow: 0 8px 24px rgba(54, 168, 255, 0.4) !important;
    border: none !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4AB5FF, #36A8FF) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(54, 168, 255, 0.5) !important;
}

/* Solutions Section */
.solutions-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.solutions-section .section-heading {
    animation: fadeInDown 0.8s ease-out;
}

.solutions-section .section-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.solution-anim-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.solution-anim-item {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(30, 41, 59, 0.8) 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.solution-anim-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transition: left 0.6s ease-in-out;
}

.solution-anim-item:hover::before {
    left: 100%;
}

.solution-anim-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.solution-anim-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25),
                0 0 0 1px rgba(56, 189, 248, 0.1);
}

.icon-anim {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    transition: all var(--transition-normal);
}

.solution-anim-item:hover .icon-anim {
    transform: scale(1.1) rotateY(10deg);
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.solution-anim-item h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.solution-anim-item:hover h5 {
    color: var(--primary-color);
}

.solution-anim-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
    transition: color var(--transition-fast);
}

.solution-anim-item:hover p {
    color: var(--text-primary);
}

/* Staggered animation delays */
.solution-anim-item:nth-child(1) { animation-delay: 0.1s; }
.solution-anim-item:nth-child(2) { animation-delay: 0.2s; }
.solution-anim-item:nth-child(3) { animation-delay: 0.3s; }
.solution-anim-item:nth-child(4) { animation-delay: 0.4s; }
.solution-anim-item:nth-child(5) { animation-delay: 0.5s; }
.solution-anim-item:nth-child(6) { animation-delay: 0.6s; }
.solution-anim-item:nth-child(7) { animation-delay: 0.7s; }
.solution-anim-item:nth-child(8) { animation-delay: 0.8s; }
.solution-anim-item:nth-child(9) { animation-delay: 0.9s; }

/* Enhanced Expertise Section */
.expertise-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px; /* Additional offset for anchor links */
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.expertise-header {
    position: relative;
    z-index: 2;
}

.expertise-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.expertise-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.expertise-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

/* Main Technology Cards */
.main-tech-grid {
    position: relative;
    z-index: 2;
}

.tech-card {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 0;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card-inner {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 2;
}

.tech-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.tech-icon {
    font-size: 4rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.tech-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    transition: opacity var(--transition-normal);
    filter: blur(20px);
}

.cloud-icon { color: #ff9900; }
.ai-icon { color: #00d4ff; }
.dev-icon { color: #61dafb; }

.tech-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.tech-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Skill Bars */
.tech-skills {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.skill-item {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all var(--transition-fast);
}

.skill-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

.skill-icon {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    display: inline-block;
    text-align: center;
}

.skill-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    width: calc(100% - 100px);
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

/* Advanced Technology Cards */
.advanced-tech-grid {
    position: relative;
    z-index: 2;
}

.advanced-tech-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.advanced-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transition: left 0.6s ease-in-out;
}

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

.advanced-tech-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.advanced-tech-card:hover .advanced-tech-icon {
    transform: scale(1.1) rotateY(15deg);
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.advanced-tech-card h5 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.advanced-tech-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tech-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cloud Platforms Section */
.cloud-platforms-section {
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.cloud-section-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.cloud-platform {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cloud-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.cloud-platform:hover::before {
    opacity: 1;
}

.platform-logo {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.cloud-platform:hover .platform-logo {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.platform-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.platform-services {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* DevOps Pipeline Section */
.devops-section {
    position: relative;
    z-index: 2;
}

.devops-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.devops-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pipeline-stage {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 150px;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: scale(0.8);
    position: relative;
    overflow: hidden;
}

.pipeline-stage.stage-active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.pipeline-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.pipeline-stage:hover::before {
    opacity: 1;
}

.stage-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all var(--transition-normal);
}

.pipeline-stage:hover .stage-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.pipeline-stage h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pipeline-stage p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.pipeline-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .tech-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .tech-icon {
        font-size: 3rem;
    }
    
    .devops-pipeline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
    
    .cloud-platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .tech-card-inner {
        padding: 1.5rem;
    }
    
    .advanced-tech-card {
        padding: 1.5rem 1rem;
    }
    
    .cloud-platform {
        padding: 1.5rem 1rem;
    }
    
    .pipeline-stage {
        padding: 1.5rem 1rem;
        min-width: 120px;
    }
    
    .expertise-subtitle {
        font-size: 1rem;
    }
}

/* Clean Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

/* Horizontal Auto-Scroll Testimonials */
.testimonials-scroll-wrapper {
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
}

.testimonials-scroll-container {
    overflow: hidden;
    mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-scroll-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.1s linear;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 450px;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    flex: 1;
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.author-website {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.author-website:hover {
    color: var(--secondary-color);
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-score {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-scroll-wrapper {
        margin: 2rem 0;
    }
    
    .testimonial-card {
        width: 400px;
        padding: 1.25rem;
    }
    
    .testimonials-scroll-container {
        mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        -webkit-mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }
    
    .testimonials-scroll-track {
        gap: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info {
        text-align: center;
        width: 100%;
    }
    
    .rating {
        align-self: center;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 0.5rem;
        align-items: center;
    }
    
    .stars {
        gap: 0.15rem;
        display: flex;
        align-items: center;
    }
    
    .stars i {
        font-size: 0.8rem;
        line-height: 1;
    }
    
    .rating-score {
        font-size: 0.75rem;
        line-height: 1;
        margin-left: 0.25rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 350px;
        padding: 1rem;
    }
    
    .quote-text {
        font-size: 0.9rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .author-website {
        font-size: 0.8rem;
    }
    
    .testimonial-author {
        gap: 0.5rem;
    }
    
    .author-image {
        width: 45px;
        height: 45px;
    }
    
    .stars i {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .rating-score {
        font-size: 0.7rem;
        line-height: 1;
        margin-left: 0.2rem;
    }
    
    .rating {
        gap: 0.4rem;
        margin-top: 0.25rem;
        align-items: center;
    }
    
    .stars {
        gap: 0.1rem;
        display: flex;
        align-items: center;
    }
}

/* Header */
.testimonials-header {
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Wrapper */
.testimonials-slider-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.testimonials-track {
    position: relative;
    width: 100%;
    min-height: 450px;
}

/* Slides */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    background: linear-gradient(145deg, var(--card-bg), rgba(30, 41, 59, 0.95));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.03), transparent);
    pointer-events: none;
}

/* Quote Section */
.testimonial-quote {
    flex: 1;
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.quote-text {
    color: var(--text-secondary);
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    position: relative;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    transition: all var(--transition-normal);
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.author-website {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.author-website:hover {
    color: var(--primary-color);
}

/* Rating */
.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.rating-score {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Navigation */
.slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.nav-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

.nav-btn:active {
    transform: translateY(-1px) scale(1.05);
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Success Metrics */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

.metric-item {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
    border-radius: var(--border-radius);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all var(--transition-normal);
}

.metric-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .slide-content {
        padding: 2rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-image {
        width: 70px;
        height: 70px;
    }
    
    .success-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .slider-navigation {
        gap: 1rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

/* Case Studies Page Styles */
.case-studies-hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    animation: floatingAnimation 15s ease-in-out infinite;
}

.floating-particle.particle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-particle.particle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: -3%;
    animation-delay: -5s;
}

.floating-particle.particle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 15%;
    animation-delay: -10s;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Case Studies Grid */
.case-studies-grid {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.case-study-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(30, 41, 59, 0.95));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 0;
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
    border-color: var(--primary-color);
}

.case-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.case-category {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.case-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 60%;
}

.tech-tag {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 500;
}

.case-content {
    padding: 2rem;
}

.case-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.case-image-placeholder {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.case-image-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.case-image-placeholder span {
    color: var(--text-secondary);
    font-style: italic;
}

.case-details {
    margin-top: 2rem;
}

.challenge-solution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.challenge, .solution {
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border-left: 4px solid;
}

.challenge {
    border-left-color: #ef4444;
}

.solution {
    border-left-color: var(--primary-color);
}

.challenge h4, .solution h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenge h4 i {
    color: #ef4444;
}

.solution h4 i {
    color: var(--primary-color);
}

.challenge ul, .solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge li, .solution li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.challenge li::before, .solution li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
    border-radius: var(--border-radius);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all var(--transition-normal);
}

.metric:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(56, 189, 248, 0.2);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.case-note {
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

.case-note p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.case-note .highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* CTA Section */
.case-studies-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .case-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .case-tech-stack {
        max-width: 100%;
    }
    
    .challenge-solution {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gradient, .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Enhanced Footer Styles */
.footer {
    background: 
        linear-gradient(135deg, var(--darker-bg) 0%, #000000 100%),
        radial-gradient(ellipse at top, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    border-top: 2px solid rgba(56, 189, 248, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-heading {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Enhanced Contact List */
.contact-list {
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), transparent);
    transition: left 0.5s ease-in-out;
}

.contact-list li:hover::before {
    left: 100%;
}

.contact-list li:hover {
    transform: translateX(5px);
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(15, 23, 42, 0.5);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.15);
}

.contact-list i {
    margin-right: 1rem;
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

.contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.contact-list a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.contact-list span {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    font-weight: 400;
    line-height: 1.4;
}

/* Enhanced Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: 1rem;
    border-radius: 50%;
    background: 
        linear-gradient(145deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05)),
        radial-gradient(circle at center, rgba(56, 189, 248, 0.05), transparent);
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent);
    border-radius: 50%;
    transition: all 0.4s ease-out;
    transform: translate(-50%, -50%);
}

.social-icon:hover::before {
    width: 60px;
    height: 60px;
}

.social-icon:hover {
    color: var(--primary-color);
    background: 
        linear-gradient(145deg, rgba(56, 189, 248, 0.2), rgba(14, 165, 233, 0.1)),
        radial-gradient(circle at center, rgba(56, 189, 248, 0.15), transparent);
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 
        0 8px 25px rgba(56, 189, 248, 0.3),
        0 0 20px rgba(56, 189, 248, 0.2);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Footer Copyright */
.footer hr {
    border-color: rgba(56, 189, 248, 0.2) !important;
    margin: 3rem 0 2rem 0 !important;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    border: none;
}

.footer .text-center p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    letter-spacing: 0.5px;
}

.footer .secondary-text {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

/* Footer Mobile Responsiveness */
@media (max-width: 991.98px) {
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-list li {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        padding: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding-top: 3rem !important;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-list li {
        padding: 0.5rem;
        margin-bottom: 0.6rem;
        text-align: left;
    }
    
    .contact-list i {
        margin-right: 0.75rem;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        padding: 0.7rem;
        font-size: 1rem;
    }
    
    .footer hr {
        margin: 2rem 0 1.5rem 0 !important;
    }
    
    .footer .text-center p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Enhanced hover effects for touch devices */
@media (hover: none) {
    .contact-list li:hover {
        transform: none;
    }
    
    .social-icon:hover {
        transform: none;
    }
}

/* Modal Styles */
.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

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

.btn-close {
    filter: invert(1);
}

.solution-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Logo Responsive Design */
@media (max-width: 991.98px) {
    .logo-wrapper {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-shape-1 {
        width: 35px;
        height: 35px;
    }
    
    .logo-shape-2 {
        width: 26px;
        height: 26px;
    }
    
    .logo-shape-3 {
        width: 18px;
        height: 18px;
    }
    
    .logo-center {
        font-size: 1.1rem;
    }
    
    .logo-primary,
    .logo-secondary {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    .navbar-nav {
        background: var(--card-bg);
        border-radius: var(--border-radius);
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid var(--border-color);
    }
}

@media (max-width: 575.98px) {
    .logo-wrapper {
        gap: 0.4rem;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .logo-shape-1 {
        width: 30px;
        height: 30px;
    }
    
    .logo-shape-2 {
        width: 22px;
        height: 22px;
    }
    
    .logo-shape-3 {
        width: 15px;
        height: 15px;
    }
    
    .logo-center {
        font-size: 1rem;
    }
    
    .logo-primary,
    .logo-secondary {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .logo-glow {
        width: 80px;
        height: 40px;
    }
}

/* Logo Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    .logo-shape {
        animation: none;
    }
    
    .logo-center {
        animation: none;
    }
    
    .logo-container {
        animation: none;
    }
    
    .logo-container:hover .logo-shape {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .logo-primary {
        background: linear-gradient(135deg, #ffffff 0%, #00bfff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .logo-secondary {
        color: #00bfff;
    }
    
    .logo-shape {
        background: linear-gradient(45deg, #00bfff, #1e90ff);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    
    .hero {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-bg-shape {
        opacity: 0.5;
    }
    
    .solution-anim-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-category {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .solution-anim-item,
    .tech-category,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
}

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

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

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Scroll animations */
.solution-anim-item,
.tech-category,
.testimonial-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .hero-bg-shape,
    .btn,
    .modal {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section-heading,
    .footer-heading {
        color: black !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #00bfff;
        --secondary-color: #1e90ff;
        --text-secondary: #e0e0e0;
        --border-color: #555555;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg-shape {
        animation: none !important;
    }
}

/* Dark mode support (already default, but explicit) */
@media (prefers-color-scheme: dark) {
    /* Styles are already optimized for dark mode */
}


    /* Hero Background Lines */
    .hero-bg-lines {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
        pointer-events: none;
    }
    
    .bg-line {
        position: absolute;
        background: linear-gradient(45deg, rgba(56, 189, 248, 0.1), rgba(99, 102, 241, 0.1));
        border-radius: 2px;
        opacity: 0;
        animation: lineFloat 8s ease-in-out infinite;
    }
    
    .bg-line.line-1 {
        width: 200px;
        height: 2px;
        top: 20%;
        left: -200px;
        animation-delay: 0s;
        animation-duration: 12s;
    }
    
    .bg-line.line-2 {
        width: 150px;
        height: 1px;
        top: 40%;
        right: -150px;
        animation-delay: 2s;
        animation-duration: 10s;
    }
    
    .bg-line.line-3 {
        width: 300px;
        height: 2px;
        top: 60%;
        left: -300px;
        animation-delay: 4s;
        animation-duration: 14s;
    }
    
    .bg-line.line-4 {
        width: 100px;
        height: 1px;
        top: 30%;
        right: -100px;
        animation-delay: 1s;
        animation-duration: 9s;
    }
    
    .bg-line.line-5 {
        width: 250px;
        height: 2px;
        top: 70%;
        left: -250px;
        animation-delay: 6s;
        animation-duration: 11s;
    }
    
    .bg-line.line-6 {
        width: 180px;
        height: 1px;
        top: 50%;
        right: -180px;
        animation-delay: 3s;
        animation-duration: 13s;
    }
    
    /* Floating Bubbles */
    .hero-bubbles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
        pointer-events: none;
    }
    
    .bubble {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.3), rgba(99, 102, 241, 0.1));
        border: 1px solid rgba(56, 189, 248, 0.2);
        backdrop-filter: blur(10px);
        animation: bubbleFloat 15s ease-in-out infinite;
    }
    
    .bubble.bubble-1 {
        width: 60px;
        height: 60px;
        top: 10%;
        left: 10%;
        animation-delay: 0s;
        animation-duration: 20s;
    }
    
    .bubble.bubble-2 {
        width: 40px;
        height: 40px;
        top: 20%;
        right: 15%;
        animation-delay: 3s;
        animation-duration: 18s;
    }
    
    .bubble.bubble-3 {
        width: 80px;
        height: 80px;
        top: 70%;
        left: 5%;
        animation-delay: 6s;
        animation-duration: 22s;
    }
    
    .bubble.bubble-4 {
        width: 30px;
        height: 30px;
        top: 30%;
        left: 70%;
        animation-delay: 9s;
        animation-duration: 16s;
    }
    
    .bubble.bubble-5 {
        width: 50px;
        height: 50px;
        top: 80%;
        right: 20%;
        animation-delay: 12s;
        animation-duration: 19s;
    }
    
    .bubble.bubble-6 {
        width: 35px;
        height: 35px;
        top: 15%;
        left: 50%;
        animation-delay: 2s;
        animation-duration: 17s;
    }
    
    .bubble.bubble-7 {
        width: 70px;
        height: 70px;
        top: 60%;
        right: 10%;
        animation-delay: 8s;
        animation-duration: 21s;
    }
    
    .bubble.bubble-8 {
        width: 25px;
        height: 25px;
        top: 40%;
        left: 20%;
        animation-delay: 5s;
        animation-duration: 15s;
    }
    
    .bubble.bubble-9 {
        width: 45px;
        height: 45px;
        top: 85%;
        left: 60%;
        animation-delay: 11s;
        animation-duration: 23s;
    }
    
    .bubble.bubble-10 {
        width: 55px;
        height: 55px;
        top: 25%;
        right: 30%;
        animation-delay: 7s;
        animation-duration: 24s;
    }
    
    /* Geometric Patterns */
    .hero-patterns {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
        pointer-events: none;
    }
    
    .pattern {
        position: absolute;
        opacity: 0.1;
        animation: patternRotate 20s linear infinite;
    }
    
    .pattern.pattern-1 {
        width: 100px;
        height: 100px;
        top: 20%;
        right: 10%;
        background: conic-gradient(from 0deg, rgba(56, 189, 248, 0.3), transparent, rgba(99, 102, 241, 0.3));
        border-radius: 50%;
        animation-delay: 0s;
    }
    
    .pattern.pattern-2 {
        width: 80px;
        height: 80px;
        top: 70%;
        left: 20%;
        background: linear-gradient(45deg, rgba(56, 189, 248, 0.2) 25%, transparent 25%, transparent 75%, rgba(99, 102, 241, 0.2) 75%);
        background-size: 20px 20px;
        animation-delay: 5s;
        animation-duration: 15s;
    }
    
    .pattern.pattern-3 {
        width: 120px;
        height: 120px;
        top: 40%;
        right: 25%;
        background: radial-gradient(circle at center, rgba(56, 189, 248, 0.2) 2px, transparent 2px);
        background-size: 15px 15px;
        animation-delay: 10s;
        animation-duration: 25s;
    }
    
    /* Animation Keyframes */
    @keyframes lineFloat {
        0% {
            opacity: 0;
            transform: translateX(0) translateY(0);
        }
        20% {
            opacity: 0.8;
        }
        80% {
            opacity: 0.8;
        }
        100% {
            opacity: 0;
            transform: translateX(100vw) translateY(-50px);
        }
    }
    
    @keyframes bubbleFloat {
        0%, 100% {
            transform: translateY(0) translateX(0) scale(1);
            opacity: 0.3;
        }
        25% {
            transform: translateY(-30px) translateX(20px) scale(1.1);
            opacity: 0.6;
        }
        50% {
            transform: translateY(-60px) translateX(-15px) scale(0.9);
            opacity: 0.8;
        }
        75% {
            transform: translateY(-30px) translateX(25px) scale(1.05);
            opacity: 0.5;
        }
    }
    
    @keyframes patternRotate {
        0% {
            transform: rotate(0deg) scale(1);
            opacity: 0.1;
        }
        50% {
            transform: rotate(180deg) scale(1.2);
            opacity: 0.3;
        }
        100% {
            transform: rotate(360deg) scale(1);
            opacity: 0.1;
        }
    }
    
    /* Pulse Animation for Enhanced Effect */
    @keyframes heroPulse {
        0%, 100% {
            box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
        }
        50% {
            box-shadow: 0 0 40px rgba(56, 189, 248, 0.3);
        }
    }
    
/* Enhanced Hero Section Styling */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(ellipse at top left, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    margin-top: 80px; /* Account for fixed header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    animation: heroGradientShift 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(56, 189, 248, 0.02) 60deg, 
            transparent 120deg, 
            rgba(14, 165, 233, 0.03) 180deg, 
            transparent 240deg, 
            rgba(6, 182, 212, 0.02) 300deg, 
            transparent 360deg);
    z-index: 1;
    pointer-events: none;
    animation: heroRotateGradient 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 6rem 0 4rem 0;
    animation: heroContentFadeIn 1.5s ease-out;
}
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .bg-line {
            display: none;
        }
        
        .bubble {
            transform: scale(0.7);
        }
        
        .pattern {
            transform: scale(0.8);
            opacity: 0.05;
        }
    }
    
    /* Performance Optimization */
    .hero-bg-lines,
    .hero-bubbles,
    .hero-patterns {
        will-change: transform;
        backface-visibility: hidden;
        perspective: 1000px;
    }
    
    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        .bg-line,
        .bubble,
        .pattern {
            animation: none;
        }
        
        .hero::before {
            animation: none;
        }
    }

        /* Enhanced Navigation Styles with Better Contrast */
        .custom-navbar {
            background: rgba(15, 23, 42, 0.95) !important;
            backdrop-filter: blur(20px) !important;
            border-bottom: 2px solid rgba(56, 189, 248, 0.2) !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
            transition: all 0.3s ease !important;
            padding: 1rem 0 !important;
        }
        
        .custom-navbar.scrolled {
            background: rgba(15, 23, 42, 0.98) !important;
            border-bottom: 2px solid rgba(56, 189, 248, 0.4) !important;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
            padding: 0.8rem 0 !important;
        }
        
        /* Enhanced Nav Links with Better Contrast */
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 600 !important;
            font-size: 1rem !important;
            padding: 0.8rem 1.2rem !important;
            border-radius: 8px !important;
            transition: all 0.3s ease !important;
            position: relative !important;
            margin: 0 0.2rem !important;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        }
        
        .nav-link:hover {
            color: #ffffff !important;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(99, 102, 241, 0.2)) !important;
            border: 1px solid rgba(56, 189, 248, 0.3) !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3) !important;
        }
        
        .nav-link.active {
            color: #ffffff !important;
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(99, 102, 241, 0.3)) !important;
            border: 1px solid rgba(56, 189, 248, 0.5) !important;
            box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4) !important;
        }
        
        /* Enhanced Dropdown Styling */
        .dropdown-toggle::after {
            border-top: 0.3em solid !important;
            border-right: 0.3em solid transparent !important;
            border-bottom: 0 !important;
            border-left: 0.3em solid transparent !important;
            margin-left: 0.5rem !important;
            transition: transform 0.3s ease !important;
        }
        
        .dropdown-toggle:hover::after,
        .dropdown-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg) !important;
        }
        
        /* Modern Dropdown Menu Design */
        .dropdown-menu {
            background: rgba(15, 23, 42, 0.98) !important;
            border: 2px solid rgba(56, 189, 248, 0.3) !important;
            border-radius: 12px !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
            backdrop-filter: blur(20px) !important;
            padding: 0.8rem 0 !important;
            margin-top: 0.5rem !important;
            min-width: 250px !important;
            animation: dropdownFadeIn 0.3s ease-out !important;
            display: none !important;
            position: absolute !important;
            z-index: 1020 !important;
            top: 100% !important;
            left: 0 !important;
        }
        
        /* Show dropdown when Bootstrap adds show class */
        .dropdown-menu.show {
            display: block !important;
        }
        
        /* Ensure dropdown toggle works properly */
        .dropdown-toggle {
            cursor: pointer !important;
        }
        
        /* Fix dropdown positioning */
        .dropdown {
            position: relative !important;
        }
        
        .dropdown-item {
            color: rgba(255, 255, 255, 0.85) !important;
            padding: 1rem 1.5rem !important;
            font-weight: 500 !important;
            font-size: 0.95rem !important;
            transition: all 0.3s ease !important;
            border-radius: 8px !important;
            margin: 0.2rem 0.5rem !important;
            position: relative !important;
            border-left: 3px solid transparent !important;
        }
        
        .dropdown-item::before {
            content: '' !important;
            position: absolute !important;
            left: 0 !important;
            top: 0 !important;
            height: 100% !important;
            width: 0 !important;
            background: linear-gradient(135deg, #38bdf8, #6366f1) !important;
            transition: width 0.3s ease !important;
            border-radius: 0 4px 4px 0 !important;
        }
        
        .dropdown-item:hover {
            background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(99, 102, 241, 0.15)) !important;
            color: #ffffff !important;
            transform: translateX(5px) !important;
            border-left: 3px solid #38bdf8 !important;
            box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2) !important;
        }
        
        .dropdown-item:hover::before {
            width: 4px !important;
        }
        
        /* Add Icons to Dropdown Items */
        .dropdown-item[href*="leadgen"]::before {
            width: auto !important;
            height: auto !important;
            position: static !important;
            background: none !important;
        }
        
        .dropdown-item[href*="coldemail"]::before {
            width: auto !important;
            height: auto !important;
            position: static !important;
            background: none !important;
        }
        
        .dropdown-item[href*="crm"]:nth-of-type(3)::before {
            width: auto !important;
            height: auto !important;
            position: static !important;
            background: none !important;
        }
        
        .dropdown-item[href*="crm"]:nth-of-type(4)::before {
            width: auto !important;
            height: auto !important;
            position: static !important;
            background: none !important;
        }
        
        /* Enhanced Mobile Toggle Button */
        .navbar-toggler {
            border: 2px solid rgba(56, 189, 248, 0.5) !important;
            border-radius: 8px !important;
            padding: 0.5rem !important;
            background: rgba(56, 189, 248, 0.1) !important;
            transition: all 0.3s ease !important;
        }
        
        .navbar-toggler:hover {
            border-color: rgba(56, 189, 248, 0.8) !important;
            background: rgba(56, 189, 248, 0.2) !important;
            transform: scale(1.05) !important;
            box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3) !important;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.3) !important;
        }
        
        .navbar-toggler-icon {
            width: 24px !important;
            height: 24px !important;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2856, 189, 248, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }
        
        /* Enhanced Logo Styling */
        .logo-container:hover {
            transform: scale(1.02) !important;
        }
        
        .logo-primary {
            background: linear-gradient(135deg, #38bdf8 0%, #6366f1 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            text-shadow: none !important;
        }
        
        .logo-secondary {
            color: rgba(255, 255, 255, 0.9) !important;
        }
        
        .logo-tagline {
            color: rgba(255, 255, 255, 0.7) !important;
            font-weight: 400 !important;
        }
        
        /* Animation Keyframes */
        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* Mobile Responsive Enhancements */
        @media (max-width: 991.98px) {
            .navbar-nav {
                background: rgba(15, 23, 42, 0.98) !important;
                border: 2px solid rgba(56, 189, 248, 0.3) !important;
                border-radius: 12px !important;
                padding: 1.5rem !important;
                margin-top: 1rem !important;
                backdrop-filter: blur(20px) !important;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
            }
            
            .nav-link {
                margin: 0.3rem 0 !important;
                padding: 1rem 1.5rem !important;
                border-radius: 10px !important;
            }
            
            .dropdown-menu {
                position: static !important;
                float: none !important;
                width: 100% !important;
                margin-top: 0.5rem !important;
                box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3) !important;
                border: 1px solid rgba(56, 189, 248, 0.2) !important;
                background: rgba(15, 23, 42, 0.7) !important;
                display: none !important;
            }
            
            .dropdown-menu.show {
                display: block !important;
            }
            
            .dropdown-item {
                padding: 0.8rem 1.2rem !important;
                margin: 0.1rem 0.3rem !important;
            }
        }
        
        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {
            .custom-navbar {
                background: rgba(0, 0, 0, 0.98) !important;
                border-bottom: 3px solid #00bfff !important;
            }
            
            .nav-link {
                color: #ffffff !important;
                border: 2px solid transparent !important;
            }
            
            .nav-link:hover {
                border-color: #00bfff !important;
                background: rgba(0, 191, 255, 0.2) !important;
            }
            
            .dropdown-menu {
                background: rgba(0, 0, 0, 0.98) !important;
                border: 3px solid #00bfff !important;
            }
            
            .dropdown-item {
                color: #ffffff !important;
                border-left: 3px solid transparent !important;
            }
            
            .dropdown-item:hover {
                border-left-color: #00bfff !important;
                background: rgba(0, 191, 255, 0.2) !important;
            }
        }
        
        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            .nav-link,
            .dropdown-item,
            .navbar-toggler,
            .dropdown-toggle::after {
                transition: none !important;
            }
            
            .dropdown-menu {
                animation: none !important;
            }
            
            .nav-link:hover,
            .dropdown-item:hover {
                transform: none !important;
            }
        }


            /* About Hero Section */
            .about-hero {
                min-height: 100vh;
                display: flex;
                align-items: center;
                position: relative;
                overflow: hidden;
                background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            }
            
            .about-hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
                z-index: 1;
                pointer-events: none;
            }
            
            .about-hero-content {
                position: relative;
                z-index: 10;
                padding: 2rem 0;
            }
            
            .about-title {
                font-size: clamp(2.5rem, 5vw, 4rem);
                font-weight: 700;
                margin-bottom: 1.5rem;
                background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                animation: fadeInDown 0.8s ease-out;
            }
            
            .about-subtitle {
                font-size: 1.3rem;
                color: var(--text-secondary);
                margin-bottom: 2rem;
                line-height: 1.6;
                animation: fadeInUp 0.8s ease-out 0.2s both;
            }
            
            /* Journey Timeline */
            .journey-section {
                padding: var(--section-padding);
                background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
                position: relative;
                overflow: hidden;
            }
            
            .journey-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
                pointer-events: none;
            }
            
            .timeline {
                position: relative;
                max-width: 1000px;
                margin: 0 auto;
                padding: 2rem 0;
            }
            
            .timeline::before {
                content: '';
                position: absolute;
                left: 50%;
                top: 0;
                bottom: 0;
                width: 4px;
                background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
                transform: translateX(-50%);
                border-radius: 2px;
                box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
            }
            
            .timeline-item {
                position: relative;
                margin: 3rem 0;
                opacity: 0;
                transform: translateY(50px);
                animation: fadeInUp 0.8s ease-out forwards;
            }
            
            .timeline-item:nth-child(1) { animation-delay: 0.2s; }
            .timeline-item:nth-child(2) { animation-delay: 0.4s; }
            .timeline-item:nth-child(3) { animation-delay: 0.6s; }
            .timeline-item:nth-child(4) { animation-delay: 0.8s; }
            .timeline-item:nth-child(5) { animation-delay: 1.0s; }
            .timeline-item:nth-child(6) { animation-delay: 1.2s; }
            
            .timeline-content {
                position: relative;
                padding: 2rem;
                background: linear-gradient(145deg, var(--card-bg), rgba(30, 41, 59, 0.95));
                border: 1px solid var(--border-color);
                border-radius: var(--border-radius-lg);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                transition: all var(--transition-normal);
                backdrop-filter: blur(10px);
            }
            
            .timeline-content:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
                border-color: var(--primary-color);
            }
            
            .timeline-item:nth-child(odd) .timeline-content {
                margin-left: 0;
                margin-right: calc(50% + 2rem);
            }
            
            .timeline-item:nth-child(even) .timeline-content {
                margin-right: 0;
                margin-left: calc(50% + 2rem);
            }
            
            .timeline-date {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 120px;
                height: 60px;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                border-radius: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--text-primary);
                font-weight: 700;
                font-size: 0.9rem;
                box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
            }
            
            .timeline-item:nth-child(odd) .timeline-date {
                right: -60px;
            }
            
            .timeline-item:nth-child(even) .timeline-date {
                left: -60px;
            }
            
            .timeline-title {
                color: var(--text-primary);
                font-size: 1.4rem;
                font-weight: 700;
                margin-bottom: 1rem;
            }
            
            .timeline-description {
                color: var(--text-secondary);
                line-height: 1.6;
                margin-bottom: 1rem;
            }
            
            .timeline-highlight {
                color: var(--primary-color);
                font-weight: 600;
            }
            
            .timeline-stats {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
                flex-wrap: wrap;
            }
            
            .stat-badge {
                background: rgba(56, 189, 248, 0.1);
                border: 1px solid rgba(56, 189, 248, 0.2);
                color: var(--primary-color);
                padding: 0.5rem 1rem;
                border-radius: var(--border-radius);
                font-size: 0.9rem;
                font-weight: 600;
            }
            
            /* Founder Section */
            .founder-section {
                padding: var(--section-padding);
                background: var(--dark-bg);
                position: relative;
            }
            
            .founder-card {
                background: linear-gradient(145deg, var(--card-bg), rgba(30, 41, 59, 0.95));
                border: 1px solid var(--border-color);
                border-radius: var(--border-radius-lg);
                padding: 2.5rem;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                position: relative;
                overflow: hidden;
                backdrop-filter: blur(10px);
            }
            
            .founder-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), transparent);
                pointer-events: none;
            }
            
            .founder-image {
                width: 200px;
                height: 200px;
                border-radius: 50%;
                object-fit: cover;
                border: 4px solid var(--primary-color);
                box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
                margin-bottom: 2rem;
                transition: all var(--transition-normal);
            }
            
            .founder-image:hover {
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(56, 189, 248, 0.6);
            }
            
            .founder-name {
                color: var(--text-primary);
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
                background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            
            .founder-title {
                color: var(--secondary-color);
                font-size: 1.3rem;
                font-weight: 600;
                margin-bottom: 1rem;
            }
            
            .founder-experience {
                background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
                color: var(--text-primary);
                padding: 0.75rem 1.5rem;
                border-radius: var(--border-radius);
                font-weight: 700;
                font-size: 1.1rem;
                display: inline-block;
                margin-bottom: 2rem;
                box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
            }
            
            .founder-bio {
                color: var(--text-secondary);
                font-size: 1.1rem;
                line-height: 1.7;
                margin-bottom: 2rem;
            }
            
            .expertise-list {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1rem;
                margin-top: 2rem;
            }
            
            .expertise-item {
                background: rgba(15, 23, 42, 0.5);
                border: 1px solid rgba(56, 189, 248, 0.2);
                border-radius: var(--border-radius);
                padding: 1rem;
                transition: all var(--transition-normal);
            }
            
            .expertise-item:hover {
                border-color: var(--primary-color);
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
            }
            
            .expertise-item i {
                color: var(--primary-color);
                font-size: 1.5rem;
                margin-right: 0.75rem;
            }
            
            .expertise-item span {
                color: var(--text-primary);
                font-weight: 600;
            }
            
            /* Mission & Vision Section */
            .mission-section {
                padding: var(--section-padding);
                background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
                position: relative;
            }
            
            .mission-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
                gap: 3rem;
                margin-top: 3rem;
            }
            
            .mission-card {
                background: linear-gradient(145deg, var(--card-bg), rgba(30, 41, 59, 0.95));
                border: 1px solid var(--border-color);
                border-radius: var(--border-radius-lg);
                padding: 2.5rem;
                text-align: center;
                transition: all var(--transition-normal);
                position: relative;
                overflow: hidden;
            }
            
            .mission-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
                transition: left 0.6s ease-in-out;
            }
            
            .mission-card:hover::before {
                left: 100%;
            }
            
            .mission-card:hover {
                transform: translateY(-8px);
                border-color: var(--primary-color);
                box-shadow: 0 20px 40px rgba(56, 189, 248, 0.25);
            }
            
            .mission-icon {
                font-size: 4rem;
                color: var(--primary-color);
                margin-bottom: 1.5rem;
                transition: all var(--transition-normal);
            }
            
            .mission-card:hover .mission-icon {
                transform: scale(1.1) rotateY(15deg);
                text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
            }
            
            .mission-card h3 {
                color: var(--text-primary);
                font-size: 1.5rem;
                font-weight: 700;
                margin-bottom: 1rem;
            }
            
            .mission-card p {
                color: var(--text-secondary);
                line-height: 1.6;
            }
            
            /* Stats Section */
            .stats-section {
                padding: var(--section-padding);
                background: var(--dark-bg);
            }
            
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 2rem;
                margin-top: 2rem;
            }
            
            .stat-item {
                text-align: center;
                padding: 2rem 1rem;
                background: linear-gradient(145deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
                border-radius: var(--border-radius);
                border: 1px solid rgba(56, 189, 248, 0.1);
                transition: all var(--transition-normal);
            }
            
            .stat-item:hover {
                transform: translateY(-5px);
                border-color: var(--primary-color);
                box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
            }
            
            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                margin-bottom: 0.5rem;
                display: block;
            }
            
            .stat-label {
                color: var(--text-secondary);
                font-size: 1rem;
                font-weight: 500;
            }
            
            /* Responsive Design */
            @media (max-width: 768px) {
                .timeline::before {
                    left: 20px;
                }
                
                .timeline-item:nth-child(odd) .timeline-content,
                .timeline-item:nth-child(even) .timeline-content {
                    margin-left: 60px;
                    margin-right: 0;
                }
                
                .timeline-item:nth-child(odd) .timeline-date,
                .timeline-item:nth-child(even) .timeline-date {
                    left: -60px;
                    right: auto;
                }
                
                .founder-card {
                    padding: 2rem;
                    text-align: center;
                }
                
                .founder-image {
                    width: 150px;
                    height: 150px;
                }
                
                .founder-name {
                    font-size: 2rem;
                }
                
                .mission-grid {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }
                
                .expertise-list {
                    grid-template-columns: 1fr;
                }
            }

/* =====================
   Enhanced Logo Slider Styles with PNG Magic
   ===================== */

.partners-section {
    padding: 5rem 0;
    margin-top: 3rem;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Remove the pseudo-element background */

.partners-section h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3.5rem;
    opacity: 1;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
    position: relative;
    z-index: 2;
    animation: partnersHeaderGlow 3s ease-in-out infinite;
}

.logo-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem 0;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
}

.logo-slider {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    animation: logoScroll 40s linear infinite;
    width: fit-content;
    padding: 0.75rem 0;
}

.logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    padding: 1.2rem;
    transition: all var(--transition-normal);
    position: relative;
    /* Clean White Background - No Border */
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.logo-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.15), transparent);
    transition: left 0.6s ease-in-out;
    z-index: 1;
}

.logo-slide::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease-out;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.logo-slide:hover::before {
    left: 100%;
}

.logo-slide:hover::after {
    width: 120px;
    height: 120px;
}

.logo-slide:hover {
    transform: translateY(-6px) scale(1.08);
    /* Clean White Background on Hover - No Border */
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 8px 25px rgba(56, 189, 248, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    /* Default Grayscale State */
    filter: 
        grayscale(85%) 
        brightness(0.9) 
        contrast(1.1) 
        saturate(0.3)
        opacity(0.7)
        drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1));
    /* Image Sharpening */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-slide:hover img {
    transform: scale(1.08);
    /* Colorful Hover State */
    filter: 
        grayscale(0%) 
        brightness(1.1) 
        contrast(1.15) 
        saturate(1.3)
        opacity(1)
        drop-shadow(0 3px 12px rgba(0, 0, 0, 0.15))
        drop-shadow(0 0 8px rgba(56, 189, 248, 0.2))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-slider {
    animation-play-state: paused;
}

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

/* New Magic Animation Keyframes for Partners Section */
@keyframes partnersGradientRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes partnersHeaderGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(56, 189, 248, 0.6),
            0 0 30px rgba(56, 189, 248, 0.4),
            0 0 40px rgba(56, 189, 248, 0.2);
        transform: scale(1.02);
    }
}

/* Enhanced Logo Floating Animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Logo Shimmer Effect */
@keyframes logoShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* PNG Enhancement Glow */
@keyframes pngGlow {
    0%, 100% {
        filter: 
            brightness(1.1) 
            contrast(1.05) 
            saturate(1.1)
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15))
            drop-shadow(0 0 8px rgba(56, 189, 248, 0.1));
    }
    50% {
        filter: 
            brightness(1.15) 
            contrast(1.08) 
            saturate(1.15)
            drop-shadow(0 3px 12px rgba(0, 0, 0, 0.2))
            drop-shadow(0 0 15px rgba(56, 189, 248, 0.2))
            drop-shadow(0 0 25px rgba(255, 255, 255, 0.1));
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Fix typewriter position on mobile */
    .hero {
        min-height: 100vh;
        padding-top: 100px;
        margin-top: 80px; /* Account for fixed header */
    }
    
    .hero-content {
        margin-top: 0;
        padding: 3rem 0 2rem 0;
    }
    
    #typewriter {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        min-height: 5rem;
        white-space: normal;
        line-height: 1.3;
        padding: 0 1rem;
        font-weight: 600;
        overflow: visible;
        width: 100%;
    }
    
    .hero-content h1 {
        min-height: 5.5rem;
        margin-top: 1.5rem;
        overflow: visible;
        padding: 0 1rem;
    }
    
    .partners-section {
        padding: 3rem 0;
        margin-top: 1rem;
    }
    
    .logo-slider {
        gap: 2.5rem;
        animation-duration: 35s;
    }
    
    .logo-slide {
        min-width: 160px;
        height: 90px;
        padding: 1rem;
    }
    
    .logo-slide:hover {
        transform: translateY(-5px) scale(1.06);
    }
    
    .partners-section h6 {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    /* Increase margin for smaller mobile devices */
    .hero {
        padding-top: 120px;
        margin-top: 80px; /* Account for fixed header */
    }
    
    .hero-content {
        margin-top: 0;
        padding: 2.5rem 0 1.5rem 0;
    }
    
    .hero-btns {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    #typewriter {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        min-height: 4rem;
        white-space: normal;
        line-height: 1.2;
        padding: 0 0.75rem;
        word-break: break-word;
        font-weight: 600;
        overflow: visible;
        width: 100%;
    }
    
    .hero-content h1 {
        min-height: 4.5rem;
        margin-top: 1rem;
        align-items: center;
        padding: 0.25rem 0.75rem;
        overflow: visible;
    }
    
    .partners-section {
        padding: 3rem 0;
        margin-top: 1.5rem;
    }
    
    .logo-slider {
        gap: 2rem;
        animation-duration: 30s;
    }
    
    .logo-slide {
        min-width: 140px;
        height: 80px;
        padding: 0.9rem;
    }
    
    .logo-slide:hover {
        transform: translateY(-4px) scale(1.04);
    }
    
    .partners-section h6 {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }
}

/* =====================
   Advanced PNG Magic Effects
   ===================== */

/* Special PNG handling for grayscale to color transition */
.logo-slide img[src*=".png"], 
.logo-slide img[src*="PNG"] {
    /* Default grayscale state for PNGs */
    mix-blend-mode: multiply;
    isolation: isolate;
    
    /* Enhanced grayscale rendering */
    filter: 
        grayscale(90%) 
        brightness(0.85) 
        contrast(1.1) 
        saturate(0.2)
        opacity(0.65)
        drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
        
    /* Enhanced PNG antialiasing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: -webkit-optimize-contrast;
}

.logo-slide:hover img[src*=".png"], 
.logo-slide:hover img[src*="PNG"] {
    mix-blend-mode: normal;
    /* Full color on hover */
    filter: 
        grayscale(0%) 
        brightness(1.05) 
        contrast(1.2) 
        saturate(1.4)
        opacity(1)
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12))
        drop-shadow(0 0 10px rgba(56, 189, 248, 0.15))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

/* Floating animation for logo containers */
.logo-slide {
    animation: logoFloat 6s ease-in-out infinite;
}

.logo-slide:nth-child(1) { animation-delay: 0s; }
.logo-slide:nth-child(2) { animation-delay: 1s; }
.logo-slide:nth-child(3) { animation-delay: 2s; }
.logo-slide:nth-child(4) { animation-delay: 3s; }
.logo-slide:nth-child(5) { animation-delay: 0.5s; }
.logo-slide:nth-child(6) { animation-delay: 1.5s; }
.logo-slide:nth-child(7) { animation-delay: 2.5s; }
.logo-slide:nth-child(8) { animation-delay: 3.5s; }

/* Removed glass morphism effect - clean appearance */

/* Enhanced hover state with performance optimization */
.logo-slide {
    will-change: transform, filter;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Larger logos for better readability - Clean style */
.logo-slide img {
    background: transparent;
    border-radius: 6px;
    padding: 4px;
    /* Significantly increased logo size for better readability */
    min-width: 120px;
    min-height: 70px;
    max-width: 140px;
    max-height: 80px;
}

/* Clean hover state for logos */
.logo-slide:hover img {
    background: transparent;
    border-radius: 6px;
    padding: 4px;
}

/* Ultra-smooth PNG rendering */
@supports (image-rendering: pixelated) {
    .logo-slide img {
        image-rendering: auto;
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Accessibility enhancements */
@media (prefers-reduced-motion: reduce) {
    .logo-slide {
        animation: none;
    }
    
    .partners-section::before {
        animation: none;
    }
    
    .partners-section h6 {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .logo-slide img {
        filter: contrast(1.3) brightness(1.2);
    }
    
    .logo-slide {
        border: 2px solid rgba(56, 189, 248, 0.5);
    }
}

/* Dark theme specific enhancements */
@media (prefers-color-scheme: dark) {
    .logo-slide img {
        filter: 
            brightness(1.15) 
            contrast(1.1) 
            saturate(1.1)
            drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2))
            drop-shadow(0 0 12px rgba(56, 189, 248, 0.15));
    }
}

/* =====================
   Enhanced Hero Animations
   ===================== */

@keyframes heroGradientShift {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateX(10px) translateY(-5px) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-5px) translateY(10px) scale(0.95);
        opacity: 1;
    }
    75% {
        transform: translateX(-10px) translateY(-8px) scale(1.02);
        opacity: 0.9;
    }
}

@keyframes heroRotateGradient {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTitleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.6));
    }
}

@keyframes heroTitleShimmer {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.3;
        transform: translateX(100%);
    }
}

@keyframes heroSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(20px) translateX(-20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0) translateX(0);
    }
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced floating particles */
@keyframes heroParticleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) translateX(15px) rotate(270deg);
        opacity: 0.6;
    }
}

/* ========================================
   ZantaCore Page Specific Styles
   ======================================== */

/* ZantaCore Hero Section */
.zantacore-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #0c4a6e 100%);
    overflow: hidden;
}

.zantacore-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.zantacore-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.zantacore-logo {
    margin-bottom: 2rem;
}

.zantacore-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: zantacoreTitleGlow 3s ease-in-out infinite alternate;
}

.zantacore-brand {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.zantacore-core {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.zantacore-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ZantaCore Features Section */
.zantacore-features {
    background: var(--dark-bg);
    position: relative;
}

.zantacore-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.zantacore-features .container {
    position: relative;
    z-index: 2;
}

/* How It Works Section */
.how-it-works {
    background: var(--darker-bg);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Section Header Styles */
.section-header {
    text-align: center !important;
    margin-bottom: 2.5rem !important;
}

.section-header-top {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    margin-bottom: 1rem !important;
    flex-wrap: wrap !important;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 800 !important;
    margin-bottom: 0 !important;
    color: var(--text-dark) !important;
}

.section-subtitle {
    font-size: 1rem !important;
    color: var(--text-light) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

.btn-pricing-header {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Pricing Section */
.pricing {
    background: var(--bg-white) !important;
    padding: 60px 0 !important;
}

.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
    align-items: stretch !important;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

.pricing-card {
    background: var(--bg-white) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 16px !important;
    padding: 2.5rem !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

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

.pricing-card.featured {
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-lg) !important;
}

.pricing-card.featured:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-xl) !important;
}

.popular-badge {
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-md) !important;
    z-index: 2 !important;
}

.plan-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
    padding-bottom: 2rem !important;
    border-bottom: 2px solid var(--border-color) !important;
    flex-shrink: 0 !important;
}

.plan-name {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: var(--text-dark) !important;
}

.plan-price-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-bottom: 0.5rem !important;
    flex-wrap: wrap !important;
}

.plan-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 0.25rem !important;
    margin-bottom: 0 !important;
}

.btn-plan-price {
    padding: 0.625rem 1.5rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.currency {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--text-light) !important;
}

.amount {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.period {
    font-size: 1rem !important;
    color: var(--text-light) !important;
}

.plan-description {
    color: var(--text-light) !important;
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
}

.plan-support {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, rgba(54, 168, 255, 0.1), rgba(31, 74, 117, 0.05)) !important;
    border: 1px solid rgba(54, 168, 255, 0.2) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    margin-top: 0.75rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
}

.plan-support i {
    color: var(--primary-color) !important;
    font-size: 0.9rem !important;
}

.plan-features {
    margin-bottom: 1rem !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.feature-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-bottom: 1rem !important;
    color: var(--text-dark) !important;
}

.feature-item i {
    color: var(--success-color) !important;
    margin-top: 0.25rem !important;
    flex-shrink: 0 !important;
}

.feature-item.premium {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
}

.feature-item.premium i.fa-star {
    color: #fbbf24 !important;
}

.feature-item.premium i.fa-check {
    color: var(--success-color) !important;
}

.feature-item.feature-hidden {
    display: none !important;
}

.pricing-card.expanded .feature-item.feature-hidden {
    display: flex !important;
    animation: fadeInUp 0.3s ease forwards !important;
}

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

.feature-item.star-feature {
    position: relative !important;
}

.feature-item.star-feature i.fa-star {
    color: #fbbf24 !important;
    animation: starPulse 2s ease-in-out infinite !important;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.plan-expand-arrow {
    text-align: center !important;
    margin: 0.5rem 0 !important;
    padding: 0.5rem 0 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.plan-expand-arrow:hover {
    transform: translateY(2px) !important;
}

.expand-icon {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    animation: bounceDown 2s ease-in-out infinite !important;
    display: inline-block !important;
}

@keyframes bounceDown {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(6px);
    }
}

.pricing-card.expanded .expand-icon {
    transform: rotate(180deg) !important;
    animation: none !important;
}

.plan-expand-arrow:hover .expand-icon {
    color: var(--primary-light) !important;
    transform: translateY(3px) !important;
}

.pricing-card.expanded .plan-expand-arrow:hover .expand-icon {
    transform: rotate(180deg) translateY(-3px) !important;
}

.plan-cta {
    text-align: center !important;
    flex-shrink: 0 !important;
    margin-top: auto !important;
}

.pricing-note {
    text-align: center !important;
    padding: 1.5rem !important;
    background: var(--bg-light) !important;
    border-radius: 8px !important;
    color: var(--text-light) !important;
}

.pricing-note i {
    color: var(--primary-color) !important;
    margin-right: 0.5rem !important;
}

/* Modal Styles */
.modal {
    display: none !important;
    position: fixed !important;
    z-index: 10000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-content {
    background-color: var(--bg-white) !important;
    margin: auto !important;
    padding: 2.5rem !important;
    border-radius: 20px !important;
    width: 90% !important;
    max-width: 500px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    animation: slideDown 0.3s ease !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    font-size: 2rem !important;
    font-weight: 300 !important;
    color: var(--text-light) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
}

.modal-close:hover {
    color: var(--primary-color) !important;
    background: rgba(54, 168, 255, 0.1) !important;
    transform: rotate(90deg) !important;
}

.modal-content h2 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--primary-dark) !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
}

.modal-subtitle {
    text-align: center !important;
    color: var(--text-light) !important;
    margin-bottom: 2rem !important;
    font-size: 1rem !important;
}

.contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
}

.form-group label {
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    font-size: 0.95rem !important;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(54, 168, 255, 0.1) !important;
}

.form-group textarea {
    resize: vertical !important;
    min-height: 100px !important;
}

.btn-submit {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1.1rem !important;
    margin-top: 0.5rem !important;
}

.success-message {
    text-align: center !important;
    padding: 2rem !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1)) !important;
    border-radius: 12px !important;
    border: 2px solid rgba(16, 185, 129, 0.3) !important;
}

.success-message i {
    font-size: 3rem !important;
    color: var(--success-color) !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.success-message p {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--primary-dark) !important;
    margin: 0 !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #0c4a6e 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.cta-title {
    color: var(--text-primary);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes zantacoreTitleGlow {
    0% { 
        text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
    }
    100% { 
        text-shadow: 0 0 40px rgba(56, 189, 248, 0.6), 0 0 60px rgba(56, 189, 248, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .zantacore-hero-content {
        padding: 100px 0 60px;
    }
    
    .trust-indicators {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .step-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .plan-price-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .plan-support {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .plan-features {
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-section .row {
        text-align: center;
    }
    
    .cta-section .col-lg-4 {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .zantacore-title {
        font-size: 2.5rem;
    }
    
    .zantacore-tagline {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .step-card {
        padding: 1.25rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* ========================================
   Enhanced ZantaCore Navigation Styles
   ======================================== */

.zantacore-nav-item {
    position: relative;
    margin: 0;
}

/* Override mobile margin for ZantaCore button */
@media (max-width: 991.98px) {
    .zantacore-nav-item .zantacore-nav-link {
        margin: 0 !important;
    }
}

.zantacore-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 25%, #ff6b6b 50%, #4ecdc4 75%, #45b7d1 100%);
    background-size: 300% 300%;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: gradientShift 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3), 0 0 20px rgba(255, 107, 107, 0.2);
}

.zantacore-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.zantacore-nav-link:hover::before {
    left: 100%;
}

.zantacore-nav-link:hover {
    transform: translateY(-3px) scale(1.08);
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 25%, #ff4757 50%, #2ed573 75%, #1e90ff 100%);
    background-size: 300% 300%;
    border-color: #ff4757;
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.5), 0 0 30px rgba(255, 71, 87, 0.4), 0 0 60px rgba(255, 71, 87, 0.2);
    color: white;
    animation: gradientShift 1s ease-in-out infinite, pulseGlow 0.6s ease-in-out;
}

.nav-icon {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.zantacore-nav-link:hover .nav-icon {
    transform: rotate(20deg) scale(1.3);
    color: white;
    animation: rocketPulse 0.6s ease-in-out, rocketTrail 1s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-text {
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.zantacore-nav-link:hover .nav-text {
    color: white;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 0.8s ease-in-out infinite alternate;
}

.nav-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(56, 189, 248, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.zantacore-nav-link:hover .nav-highlight {
    opacity: 1;
    animation: highlightSweep 0.8s ease-in-out;
}

.nav-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.nav-particles::before,
.nav-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 2s ease-in-out infinite;
}

.nav-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.nav-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.zantacore-nav-link:hover .nav-particles::before,
.zantacore-nav-link:hover .nav-particles::after {
    opacity: 1;
    animation: particleFloat 1s ease-in-out infinite;
}

/* Special highlight animation every 30 seconds */
@keyframes zantacoreHighlight {
    0%, 90%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3), 0 0 20px rgba(255, 107, 107, 0.2);
        transform: scale(1);
    }
    5%, 85% {
        box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6), 0 0 40px rgba(255, 107, 107, 0.5), 0 0 60px rgba(255, 107, 107, 0.3);
        transform: scale(1.05);
    }
}

.zantacore-nav-item {
    animation: zantacoreHighlight 30s ease-in-out infinite, subtlePulse 4s ease-in-out infinite;
}

/* Rocket animation */
@keyframes rocketPulse {
    0% { transform: rotate(15deg) scale(1.2); }
    50% { transform: rotate(15deg) scale(1.4); }
    100% { transform: rotate(15deg) scale(1.2); }
}

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

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1);
        opacity: 1;
    }
}

/* New enhanced animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 12px 35px rgba(255, 71, 87, 0.5), 0 0 30px rgba(255, 71, 87, 0.4), 0 0 60px rgba(255, 71, 87, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(255, 71, 87, 0.7), 0 0 40px rgba(255, 71, 87, 0.6), 0 0 80px rgba(255, 71, 87, 0.4); }
    100% { box-shadow: 0 12px 35px rgba(255, 71, 87, 0.5), 0 0 30px rgba(255, 71, 87, 0.4), 0 0 60px rgba(255, 71, 87, 0.2); }
}

@keyframes rocketTrail {
    0% { transform: rotate(20deg) scale(1.3) translateX(0); }
    25% { transform: rotate(20deg) scale(1.3) translateX(2px); }
    50% { transform: rotate(20deg) scale(1.3) translateX(0); }
    75% { transform: rotate(20deg) scale(1.3) translateX(-2px); }
    100% { transform: rotate(20deg) scale(1.3) translateX(0); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 2px 4px rgba(0, 0, 0, 0.3); }
    100% { text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 35px rgba(255, 255, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.3); }
}

@keyframes subtlePulse {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

/* ========================================
   SaaS Booster Page Styles
   ======================================== */

/* Scroll-Based Process Styles */
.scroll-progress-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid #e2e8f0;
    position: sticky;
    top: 100px;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-progress-container.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.scroll-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.scroll-progress-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.scroll-progress-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.scroll-progress-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.scroll-progress-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-progress-bar-container {
    position: relative;
}

.scroll-progress-bar {
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.scroll-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scroll-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollProgressShimmer 2s infinite;
}

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

.scroll-progress-steps {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #64748b;
}

.scroll-process-container {
    position: relative;
}

.scroll-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.scroll-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0.3;
    transform: translateY(30px);
    min-height: 280px;
}

.scroll-step.step-visible {
    opacity: 0.7;
    transform: translateY(15px);
}

.scroll-step.step-current {
    opacity: 1;
    transform: translateY(0);
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.scroll-step.step-past {
    opacity: 0.8;
    transform: translateY(0);
    border-color: #10b981;
    background: linear-gradient(110deg, #f0fdf4, #dcfce7);
}

.scroll-step.highlighted-scroll-step {
    border-color: #f59e0b;
    background: linear-gradient(110deg, #fef3c7, #fde68a);
    position: relative;
}

.scroll-step.highlighted-scroll-step::before {
    content: '🔥Startup Program';
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(110deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 15px 0 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.scroll-step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: scrollIconShimmer 3s infinite;
}

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

.scroll-step-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
}

.highlighted-scroll-step .scroll-step-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.step-past .scroll-step-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.scroll-step-content {
    flex: 1;
    width: 100%;
}

.scroll-step-number {
    display: inline-block;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlighted-scroll-step .scroll-step-number {
    background: #f59e0b;
    color: white;
}

.step-past .scroll-step-number {
    background: #10b981;
    color: white;
}

.scroll-step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.scroll-step-content p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Grid layout doesn't need connecting lines or indicators */

/* Responsive Design for Scroll Process */
@media (max-width: 768px) {
    .scroll-progress-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
        position: static;
    }
    
    .scroll-progress-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .scroll-progress-info {
        align-items: center;
    }
    
    .scroll-progress-title {
        font-size: 1.25rem;
    }
    
    .scroll-progress-percentage {
        font-size: 2rem;
    }
    
    .scroll-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .scroll-step {
        padding: 1.25rem;
        min-height: 240px;
    }
    
    .scroll-step-icon {
        width: 50px;
        height: 50px;
    }
    
    .scroll-step-icon i {
        font-size: 1.25rem;
    }
    
    .scroll-step-content h4 {
        font-size: 1rem;
    }
    
    .scroll-step-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .scroll-progress-container {
        padding: 1rem;
    }
    
    .scroll-progress-percentage {
        font-size: 1.75rem;
    }
    
    .scroll-process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .scroll-step {
        padding: 1rem;
        min-height: 200px;
    }
    
    .scroll-step-icon {
        width: 45px;
        height: 45px;
    }
    
    .scroll-step-icon i {
        font-size: 1.1rem;
    }
    
    .scroll-step-content h4 {
        font-size: 0.95rem;
    }
    
    .scroll-step-content p {
        font-size: 0.8rem;
    }
}

.saas-booster-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.saas-booster-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(56,189,248,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.badge-container {
    display: inline-block;
}

.badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
}

.hero-title {
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.mockup-header {
    background: #f8fafc;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:last-child {
    background: #10b981;
}

.mockup-title {
    font-weight: 600;
    color: #1e293b;
}

.mockup-content {
    display: flex;
    height: 300px;
}

.mockup-sidebar {
    width: 200px;
    background: #f1f5f9;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.sidebar-item.active {
    background: #3b82f6;
    color: white;
}

.sidebar-item i {
    width: 16px;
    text-align: center;
}

.mockup-main {
    flex: 1;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 200px;
}

.chart-bar {
    width: 30px;
    background: linear-gradient(to top, #3b82f6, #8b5cf6);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height, 60%); }
}

.why-saas-booster {
    background: #f8fafc;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.saas-process {
    background: #f8fafc;
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
    flex: 1;
    border: 1px solid #e2e8f0;
}

.step-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.pricing-section {
    background: white;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.price-description {
    color: #64748b;
    margin: 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #64748b;
}

.pricing-features li i {
    color: #10b981;
    font-size: 1.1rem;
}

.pricing-footer {
    margin-top: auto;
}

.features-section {
    background: #f8fafc;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Highlighted Feature Styles */
.highlighted-feature {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #3b82f6;
    position: relative;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.highlighted-feature::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 15px;
    z-index: -1;
    animation: gradientShift 3s ease-in-out infinite;
}

.highlighted-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
}

.feature-highlights {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 500;
}

.highlight-item i {
    color: #10b981;
    font-size: 1.1rem;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(56,189,248,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: white;
}

.cta-buttons {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.cta-guarantee i {
    color: #10b981;
}

.contact-section {
    background: #f8fafc;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .saas-booster-hero {
        min-height: 100vh;
        padding: 2rem 0;
        margin-top: 80px; /* Account for fixed header */
    }
    
    .hero-content {
        min-height: 80vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .step-content {
        margin: 0 0 0 1rem;
    }
    
    .dashboard-mockup {
        transform: none;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlighted-feature {
        transform: none;
    }
}

@media (max-width: 480px) {
    .saas-booster-hero {
        min-height: 100vh;
        padding: 1rem 0;
        margin-top: 80px; /* Account for fixed header */
    }
    
    .hero-content {
        min-height: 90vh;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   Email Animation System
   ======================================== */

.email-animation-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.email-animation-container.active {
    opacity: 1;
}

.email-sending {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    animation: emailPulse 2s ease-in-out infinite;
}

.email-sending::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: emailRipple 2s ease-in-out infinite;
}

.email-sending i {
    color: white;
    font-size: 1.5rem;
    animation: emailIconBounce 1s ease-in-out infinite;
}

.email-trail {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    animation: emailTrail 3s ease-in-out infinite;
}

.email-received {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation: emailReceived 1s ease-in-out;
}

.email-received i {
    color: white;
    font-size: 1.2rem;
    animation: emailReceivedIcon 0.5s ease-in-out;
}

.ai-magic {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    animation: aiMagicPulse 1.5s ease-in-out infinite;
}

.ai-magic i {
    color: white;
    font-size: 0.8rem;
    animation: aiMagicIcon 1s ease-in-out infinite;
}

/* Email Animation Keyframes */
@keyframes emailPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes emailRipple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

@keyframes emailTrail {
    0% {
        width: 0;
        opacity: 1;
    }
    50% {
        width: 200px;
        opacity: 1;
    }
    100% {
        width: 0;
        opacity: 0;
    }
}

@keyframes emailReceived {
    0% {
        transform: translateY(-50%) scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-50%) scale(1.2) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes emailReceivedIcon {
    0% { transform: scale(0) rotate(180deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes aiMagicPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
    }
}

@keyframes aiMagicIcon {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

/* Responsive Design for Email Animation */
@media (max-width: 768px) {
    .email-animation-container {
        right: 10px;
        transform: translateY(-50%) scale(0.8);
    }
    
    .email-trail {
        width: 150px;
        right: 60px;
    }
}

@media (max-width: 576px) {
    .email-animation-container {
        display: none; /* Hide on very small screens */
    }
}

/* ===========================================
   LinkedIn Banner Styles
   =========================================== */

.linkedin-banner-section {
    padding: 1rem 0;
    animation: fadeInUp 1s ease-out;
}

.linkedin-banner-container {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 119, 181, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: subtlePulse 4s ease-in-out infinite;
}

.linkedin-banner-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.linkedin-banner-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.linkedin-banner-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 119, 181, 0.4);
}

.linkedin-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    animation: slideInFromLeft 0.8s ease-out 0.3s both;
}

.linkedin-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: gentleBounce 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.linkedin-icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.linkedin-text-content {
    flex: 1;
    min-width: 250px;
}

.linkedin-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.linkedin-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.btn-linkedin-follow {
    background: #ffffff;
    color: #0077b5;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.btn-linkedin-follow:hover {
    background: #f0f0f0;
    color: #0077b5;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-linkedin-follow i {
    font-size: 1.3rem;
}

/* LinkedIn Banner Responsive Design */
@media (max-width: 992px) {
    .linkedin-banner-content {
        flex-direction: column;
        text-align: center;
    }

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

    .linkedin-banner-container {
        padding: 2rem 1.5rem;
    }

    .linkedin-title {
        font-size: 1.3rem;
    }

    .linkedin-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .linkedin-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .linkedin-icon-wrapper i {
        font-size: 2rem;
    }

    .linkedin-title {
        font-size: 1.1rem;
    }

    .linkedin-subtitle {
        font-size: 0.85rem;
    }

    .btn-linkedin-follow {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===========================================
   CEO and Team Combined Section Styles
   =========================================== */

.ceo-team-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Compact CEO Block */
.ceo-compact {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.ceo-card-compact {
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.ceo-image-compact {
    flex-shrink: 0;
}

.ceo-img-compact {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4f46e5;
}

.ceo-info-compact {
    flex: 1;
    text-align: left;
}

.ceo-name-compact {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.ceo-title-compact {
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ceo-bio-compact {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================================
   Team Section Styles (within Founder Section)
   =========================================== */

.team-section {
    margin-top: 3rem;
}

.team-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.team-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.team-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 2.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.8s ease;
    padding: 1rem 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 220px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.member-image {
    margin-bottom: 1rem;
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4f46e5;
    margin: 0 auto;
    display: block;
}

.member-name {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.member-role {
    color: #4f46e5;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0077b5;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ceo-card-compact {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .ceo-info-compact {
        text-align: center;
    }
    
    .team-member {
        min-width: 180px;
    }
}

@media (max-width: 576px) {
    .ceo-card-compact {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .ceo-img-compact {
        width: 80px;
        height: 80px;
    }
    
    .ceo-name-compact {
        font-size: 1.3rem;
    }
    
    .team-member {
        min-width: 160px;
        padding: 1rem;
    }
    
    .member-img {
        width: 60px;
        height: 60px;
    }
}
