/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}
/* CSS Variables for Design System */
:root {
/* Color System */
    --primary-500: #8E3EAE;
    --primary-700: #6D2B8A;
    --primary-100: #F4EBF9;
    --secondary-500: #144496;
    --primary-color: #985184;
    --secondary-color: #3b82f6;
    --neutral-900: #333333;
    --neutral-600: #666666;
    --neutral-100: #F8F9FA;
    --neutral-0: #FFFFFF;
    --text-primary: #342337;
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --accent-color: #e7ad0e;
    --shadow-color: rgba(142, 62, 174, 0.1);
    /* Typography */
    --font-family: 'Inter', sans-serif;

    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-xxxl: 96px;

    /* Layout */
    --container-max-width: 1280px;
    --grid-gutter: 48px;
    --border-radius: 16px;
    --button-radius: 8px;
}

/* GSAP Stated here */
/* GSAP Ended here */


/* Container - using Bootstrap but can override if needed */
.container {
    max-width: var(--container-max-width);
}

.secondary-odooeod {
    color: var(--secondary-500);
}

.bg-odooeod-green {
    --bs-bg-opacity: 1;
    background-color: #2dd3af !important;
}

/* Button eodOdoo starts */
/* Your custom button styles */
.eododoo-btn-primary {
  color: #fff; /* text color */
  background-color: var(--primary-700);
  border-color: var(--primary-700);
  position:relative;
  z-index:1;
}

.eododoo-btn-primary:hover {
  background-color: var(--primary-800); /* darker shade on hover */
  border-color: var(--primary-800);
}

.eododoo-btn-primary:focus,
.eododoo-btn-primary:active {
  background-color: var(--primary-800);
  border-color: var(--primary-800);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-700-rgb), 0.5);
}

.eododoo-btn-primary:disabled {
  background-color: var(--primary-700);
  border-color: var(--primary-700);
  opacity: 0.65;
}

/* Custom outline button styles */
.eododoo-btn-outline-primary {
    color: var(--primary-700);
    background-color: transparent;
    /* border-color: var(--primary-700); */
}


.eododoo-btn-outline-primary:hover {
  color: #fff;
  background-color: var(--primary-700);
  border-color: var(--primary-700);
}

.eododoo-btn-outline-primary:focus,
.eododoo-btn-outline-primary:active {
  color: #fff;
  background-color: var(--primary-700);
  border-color: var(--primary-700);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-700-rgb), 0.5);
}

.eododoo-btn-outline-primary:disabled {
  color: var(--primary-700);
  background-color: transparent;
  opacity: 0.65;
}

/* Button eodOdoo starts */

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    /* color: var(--neutral-900); */
    line-height: 1.3;
    margin-bottom: var(--space-md);
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-sm);
}

/* Highlight */
.highlight {
    color: var(--primary-500);
    font-weight: 700;
}

/* Header */
.header {
    background: #ffffffdc;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

/* Bootstrap Navigation Override */
.navbar {
    padding: var(--space-xs) 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar-nav {
    display: flex;
    gap: var(--space-xl);
}

.navbar-nav .nav-link {
    color: var(--neutral-600);
    font-size: 16px;
    font-weight: 400;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 6px;
    transition: all 200ms ease-out;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-500);
    background-color: rgba(142, 62, 174, 0.05);
}

.navbar-nav .nav-link i {
    font-size: 12px;
    margin-left: 4px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 20px;
    font-weight: 600;
    color: #3B82F6;
}


.nav-cta {
    background: transparent;
    border: 1px solid var(--primary-500);
    color: var(--primary-500);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--button-radius);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms ease-out;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-100);
    color: var(--primary-500);
}

/* Hero Section */
.hero {
    background: var(--neutral-100);
    position: relative;
    overflow: hidden;
    /* min-height: 600px; */
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 56px;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    margin-bottom: var(--space-xxl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form {
    margin-bottom: var(--space-xl);
}

.input-group {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    height: 56px;
    padding: var(--space-sm);
    border: 1px solid #dee2e6;
    border-radius: var(--button-radius);
    font-family: var(--font-family);
    font-size: 16px;
    background: var(--neutral-0);
    transition: all 200ms ease-out;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(142, 62, 174, 0.2);
}

.decorative-arrow {
    position: absolute;
    top: 20%;
    right: 15%;
    font-size: 32px;
    color: var(--primary-500);
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(142, 62, 174, 0.05), transparent 40%);
    pointer-events: none;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    object-fit: cover;
    opacity: 0.1;
    pointer-events: none;
}

/* Buttons */
.cta-button {
    padding: var(--space-sm) var(--space-lg);
    border: none;
    border-radius: var(--button-radius);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms ease-out;
    letter-spacing: 0.01em;
}

.cta-button.primary {
    background: var(--primary-500);
    color: var(--neutral-0);
    height: 56px;
}

.cta-button.primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
}

.cta-button.primary:active {
    transform: scale(0.98);
}

/* Section Styles */
section {
    padding: var(--space-xxxl) 0;
}

.section-title {
    font-size: 40px;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.section-title.center {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-description {
    font-size: 18px;
    margin-bottom: var(--space-lg);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 16px;
}

.check-icon {
    background: var(--success);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Dashboard Cards */
.dashboard-card {
    background: var(--neutral-0);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 300ms ease-out;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.dashboard-content h3 {
    margin-bottom: var(--space-md);
    color: var(--neutral-900);
}

.chart-placeholder {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    height: 100px;
    align-items: end;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 4px 4px 0 0;
    animation: growChart 2s ease-out;
}

@keyframes growChart {
    from {
        height: 0;
    }
}

.metrics,
.finance-metrics {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.metric,
.metric-card {
    text-align: center;
}

.metric-value,
.metric-card .metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-500);
}

.metric-label,
.metric-card .metric-label {
    font-size: 14px;
    color: var(--neutral-600);
}

/* Finance-specific styling */
.dashboard-card.finance {
    background: linear-gradient(135deg, var(--neutral-0), var(--neutral-100));
}

.finance-metrics {
    margin-bottom: var(--space-lg);
}

.metric-card {
    background: var(--neutral-0);
    padding: var(--space-md);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.progress-bars {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.progress-bar span {
    font-size: 14px;
    color: var(--neutral-600);
}

.progress-fill {
    height: 8px;
    background: var(--primary-500);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* Abstract Icons Section */
.abstract-icons {
    background: var(--neutral-100);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: relative;
    height: 400px;
}

.floating-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.6;
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon:nth-child(odd) {
    animation-delay: -3s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Certificate Card */
.certificate-card {
    background: var(--neutral-0);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.certificate-content h3 {
    margin-bottom: var(--space-md);
}

.certificate-image {
    font-size: 80px;
    margin: var(--space-lg) 0;
}

.certificate-content p {
    font-size: 16px;
    color: var(--neutral-600);
}


/* Testimonials Section */
.testimonials {
    background: var(--primary-100);
}

.testimonial-card {
    background: var(--neutral-0);
    border-radius: var(--border-radius);
    padding: var(--space-xl);
    box-shadow: 0 4px 12px var(--shadow-color);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 80px;
    color: var(--primary-100);
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    line-height: 1;
}

.testimonial-quote {
    font-size: 24px;
    font-style: italic;
    color: var(--neutral-900);
    margin: var(--space-xl) 0 var(--space-lg) 0;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-info strong {
    display: block;
    color: var(--neutral-900);
    font-weight: 600;
}

.author-info span {
    color: var(--neutral-600);
    font-size: 14px;
}

/* Customers Section */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xxl);
}

/* .customer-logo {
    text-align: center;
    padding: var(--space-lg);
    background: var(--neutral-0);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid;
    transition: all 250ms ease-out;
}

.customer-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
} */

/* Placeholder styling */
.logo-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-600);
    padding: var(--space-sm);
}

/* Footer */
.footer {
    background: #f6f2f9;
    color: var(--neutral-0);
    padding: var(--space-xxxl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}

.footer-section h4 {
    color: var(--primary-500);
    margin-bottom: var(--space-md);
    font-size: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-link {
    color: var(--neutral-600);
    text-decoration: none;
    font-size: 14px;
    transition: color 200ms ease-out;
    display: inline-block;
    padding: 4px 0;
}

.footer-link:hover {
    color: var(--primary-500);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-info strong {
    font-size: 20px;
    color: var(--neutral-0);
}

.brand-info span {
    font-size: 12px;
    color: var(--neutral-600);
}

.footer-description {
    color: var(--neutral-600);
    font-size: 14px;
    max-width: 300px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: var(--neutral-600);
    font-size: 14px;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--neutral-800);
    border-radius: 50%;
    text-decoration: none;
    transition: all 200ms ease-out;
    color: var(--neutral-0);
}

.social-link:hover {
    background: var(--primary-500);
    transform: translateY(-2px);
    color: var(--neutral-0);
}

.social-link i {
    font-size: 16px;
}

/* Custom Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .floating-icons {
        height: 250px;
    }

    .floating-icon {
        font-size: 20px;
    }

    .dashboard-card {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .input-group .form-control {
        margin-bottom: var(--space-sm);
    }

    .input-group .btn {
        width: 100%;
    }
}

/* Service Cards for Support Pages */
.service-card {
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
}

/* Make icon turn white on hover */
.service-card:hover .service-icon {
    background: white;
    color:  var(--primary-500);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    background:linear-gradient(135deg, var(--primary-500));
    color:white;

}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-100));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.service-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600)) !important;
}

.fitwidth-services {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.ind-bannerimg{
    width: 100%; 
    height: 500px; 
    object-fit: cover;
}

.mesh-eod-gradient1 {
    background-color: hsl(259deg 100% 97.36% / 52%);
    background-image: radial-gradient(at 0% 18%, hsla(181, 100%, 96%, 1) 0px, transparent 50%), radial-gradient(at 75% 58%, hsla(139, 100%, 97%, 1) 0px, transparent 50%), radial-gradient(at 57% 80%, hsl(206deg 100% 96.8% / 31%) 0px, transparent 50%), radial-gradient(at 37% 77%, hsla(267, 100%, 95%, 1) 0px, transparent 50%), radial-gradient(at 3% 71%, hsla(106, 100%, 97%, 1) 0px, transparent 50%), radial-gradient(at 54% 40%, hsla(224, 100%, 95%, 1) 0px, transparent 50%), radial-gradient(at 39% 11%, hsla(16, 100%, 95%, 1) 0px, transparent 50%);
}

.mesh-eod-gradient2 {
    /* background-color: hsl(198.69deg 100% 97% / 52%); */
    background-color: hsl(259deg 100% 97.36% / 52%);
    background-image:radial-gradient(at 0% 18%, hsl(270deg 55% 60%) 0px, transparent 55%),  radial-gradient(at 75% 58%, hsl(275deg 70% 70%) 0px, hsl(275deg 60% 40%) 55%),  radial-gradient(at 57% 80%, hsl(265deg 80% 55%) 0px, transparent 55%) !important;
   
}


.navbar-nav .dropdown-menu {
    /* border: 1px solid #f5e9f5; */
    padding: 14px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border: 2px solid transparent;
    border-image: linear-gradient(to bottom, var(--neutral-0), #9752b347) 1;
    border-radius: 2px;
}

/* Solutions Page Started Here */
/* Solution Pages Specific Styles */

/* Hero Section */
.solution-hero {
    background: linear-gradient(135deg, var(--primary-100), var(--neutral-100));
    padding: var(--space-xxxl) 0;
    min-height: 600px;
}

.solution-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.solution-hero-subtitle {
    font-size: 20px;
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.solution-hero-image img {
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

/* Feature Cards */
.feature-card {
    background: var(--neutral-0);
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 300ms ease-out;
    border: 1px solid rgba(142, 62, 174, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--primary-500);
    font-size: 24px;
}

/* Use Case Cards */
.use-case-card {
    background: var(--neutral-0);
    padding: var(--space-xl);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-500);
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.use-case-card h4 {
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.use-case-card h4 i {
    margin-right: var(--space-sm);
}

/* Solution Visualization */
.solution-visualization {
    background: var(--neutral-0);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.solution-visualization img {
    width: 100%;
    height: auto;
}

/* Hover effects for images */
.solution-hero-image img,
.solution-visualization img {
    transition: all 300ms ease-out;
}

.solution-hero-image img:hover,
.solution-visualization img:hover {
    transform: scale(1.02);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

/* Problem/Solution Sections */
.py-5.bg-light {
    background-color:var( --neutral-100);
}

/* Hero Buttons */
.hero-buttons .btn {
    font-weight: 600;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--button-radius);
    font-size: 16px;
    transition: all 200ms ease-out;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Primary Gradient */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-100), var(--neutral-100));
}

/* Min Height Utilities */
.min-vh-75 {
    min-height: 75vh;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .solution-hero-title {
        font-size: 36px;
    }
    
    .solution-hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .feature-card,
    .use-case-card {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 576px) {
    .solution-hero-title {
        font-size: 28px;
    }
    
    .solution-hero-subtitle {
        font-size: 16px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* Animation for feature cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: slideInUp 0.6s ease-out;
}



/* Navigation active state for solution pages */
.nav-link.active {
    color: var(--primary-500) !important;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary-500);
}

/* Accordion Styling */
.accordion-item {
    border: 1px solid rgba(142, 62, 174, 0.1);
    border-radius: var(--button-radius) !important;
    margin-bottom: var(--space-sm);
}

.accordion-button {
    background: var(--neutral-0);
    color: var(--neutral-900);
    font-weight: 600;
    padding: var(--space-lg);
    border: none;
    border-radius: var(--button-radius) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-100);
    color: var(--primary-500);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(142, 62, 174, 0.2);
}

.accordion-body {
    padding: var(--space-lg);
    color: var(--neutral-600);
}

/* Additional spacing for solution pages */
section {
    padding: var(--space-xxxl) 0;
}

.bg-primary {
    background: var(--primary-500) !important;
}

/* Testimonial styling for solution pages */
blockquote {
    border-left: 4px solid var(--primary-500);
    padding-left: var(--space-lg);
    font-style: italic;
}
/* Solutions Page Ended Here */



/* Gradeint Background animation started here*/
.gradient-blobeod {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
    z-index: -5px;
}

.blob1eod {
    height: 360px;
    width: 300px;
    background: linear-gradient(45deg, #95a2ff, #d6e5ff);
    bottom: -10%;
    left: -5%;
    animation: move1 25s ease-in-out infinite;
}

.blob2eod {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #e182af, #ffa8e4);
    top: -30%;
    right: 17%;
    animation: move2 22s ease-in-out infinite;
}

.blob3eod {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #c7dcf6, #a78bfa);
    top: 60%;
    right: -8%;
    animation: move3 28s ease-in-out infinite;
}

.blob4eod {
    width: 1080px;
    height: 340px;
    background: linear-gradient(315deg, #fffbf212, #f6ffd7);
    bottom: 90%;
    left: 30%;
    animation: move4 20s ease-in-out infinite;
}

@keyframes move1 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(100px, -50px) scale(1.1) rotate(90deg); }
  50% { transform: translate(50px, 80px) scale(0.9) rotate(180deg); }
  75% { transform: translate(-80px, 30px) scale(1.05) rotate(270deg); }
}

@keyframes move2 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(-70px, 60px) scale(0.95) rotate(-90deg); }
  50% { transform: translate(60px, 100px) scale(1.08) rotate(-180deg); }
  75% { transform: translate(40px, -70px) scale(0.92) rotate(-270deg); }
}

@keyframes move3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(-90px, -60px) scale(1.12) rotate(120deg); }
  66% { transform: translate(70px, 50px) scale(0.88) rotate(240deg); }
}

@keyframes move4 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(80px, 70px) scale(0.9) rotate(-120deg); }
  66% { transform: translate(-60px, -80px) scale(1.1) rotate(-240deg); }
}

.contentbg-color {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #333;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Gradeint Background animation Ends Here */

.footer h6{

    color: var(--primary-500);
    font-weight: 800;
    font-size: medium;
}
.eododoo-btn-primary
{
    position: relative;
    z-index: 12;
}
.lightvioletsec
{
      background: var(--primary-100);
      color: var(--primary-700);
}

/* Industry page styles */
.hero-section {
            position: relative;
            min-height: 700px;
            background: linear-gradient(135deg, 
                #1a1f2e 0%, 
                #2c3544 25%, 
                var(--primary-700) 50%, 
                var(--primary-500) 75%, 
                #3d5a6c 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: var(--space-xxl) var(--space-md);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(29, 211, 187, 0.2), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: var(--grid-gutter);
            align-items: center;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-ind-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
            line-height: 1.15;
            color: var(--neutral-0);
            text-align: left;
        }

        .hero-ind-title .highlight {
            color: var(--warning);
        }

        .hero-ind-description {
            color: var(--primary-100);
            font-size: 1.125rem;
            margin-bottom: var(--space-xl);
            line-height: 1.7;
            font-weight: 400;
            text-align:left;
        }

        /* .btn {
            padding: 16px 32px;
            border-radius: var(--button-radius);
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: var(--font-family);
        } */

        .btn-ind-primary {
            border-color: unset;
            background-color: var(--warning);
            color: var(--neutral-900);
            box-shadow: 0 4px 15px rgba(248, 192, 7, 0.3);
            padding: 15px;
        }
        .hero-ind-buttons {
            text-align: left;
        }

        .btn-ind-primary:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 0 0 / 40%);
    color: var(--primary-500);
    padding: 15px;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--neutral-0);
            border: 2px solid var(--neutral-0);
            padding: 15px;
        }

        .btn-secondary:hover {
            background-color: var(--neutral-0);
            color: var(--primary-700);
            transform: translateY(-2px);
            padding: 15px;
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dashboard-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            perspective: 1000px;
        }

        .dashboard-main {
            background: var(--neutral-0);
            border-radius: var(--border-radius);
            padding: var(--space-lg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: floatDashboard 6s ease-in-out infinite;
        }

        @keyframes floatDashboard {
            0%, 100% {
                transform: translateY(0) rotateY(0deg);
            }
            50% {
                transform: translateY(-15px) rotateY(2deg);
            }
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--space-md);
            padding-bottom: var(--space-sm);
            border-bottom: 2px solid var(--neutral-100);
        }

        .dashboard-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .dashboard-tabs {
            display: flex;
            gap: var(--space-xs);
        }

        .tab {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--neutral-600);
        }

        .tab:nth-child(1) { background: var(--error); }
        .tab:nth-child(2) { background: var(--warning); }
        .tab:nth-child(3) { background: var(--success); }

        .project-timeline {
            margin-bottom: var(--space-md);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm);
            background: var(--neutral-100);
            border-radius: 8px;
            margin-bottom: var(--space-xs);
            animation: slideIn 0.5s ease-out forwards;
            opacity: 0;
        }

        .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; }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .timeline-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .timeline-icon.tasks { background: var(--primary-100); color: var(--primary-500); }
        .timeline-icon.time { background: #e3f2fd; color: var(--secondary-color); }
        .timeline-icon.bottomimg { background: #e8f5e9; color: var(--success); }

        .timeline-content {
            flex: 1;
        }

        .timeline-label {
            font-size: 0.75rem;
            color: var(--neutral-600);
            font-weight: 500;
        }

        .timeline-value {
            font-size: 0.875rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .progress-bar {
            height: 4px;
            background: var(--neutral-100);
            border-radius: 2px;
            margin-top: var(--space-xs);
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-500), var(--warning));
            border-radius: 2px;
            animation: progressGrow 1.5s ease-out forwards;
            transform-origin: left;
        }

        @keyframes progressGrow {
            from { width: 0; }
        }

        .floating-card {
            position: absolute;
            background: var(--neutral-0);
            border-radius: 12px;
            padding: var(--space-sm);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            animation: floatCard 4s ease-in-out infinite;
        }

        .floating-card.topimg {
            top: -20px;
            right: -40px;
            width: 180px;
        }

        .floating-card.bottomimg {
            bottom: -30px;
            left: -40px;
            width: 160px;
        }

        @keyframes floatCard {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.02);
            }
        }

        .card-header {
            font-size: 0.75rem;
            color: var(--neutral-600);
            margin-bottom: var(--space-xs);
            display: flex;
            align-items: center;
            gap: var(--space-xs);
        }

        .card-icon {
            font-size: 16px;
        }

        .card-content {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .card-label {
            font-size: 0.7rem;
            color: var(--neutral-600);
            margin-top: 2px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xs);
            margin-top: var(--space-md);
        }

        .stat-box {
            background: var(--neutral-100);
            padding: var(--space-sm);
            border-radius: 8px;
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-500);
        }

        .stat-label {
            font-size: 0.7rem;
            color: var(--neutral-600);
            margin-top: 4px;
        }

        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

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

            .floating-card.topimg,
            .floating-card.bottomimg {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .hero-section {
                min-height: auto;
                padding: var(--space-xl) var(--space-sm);
            }

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

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

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .dashboard-main {
                padding: var(--space-md);
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 6px;
            }

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

            .stat-label {
                font-size: 0.65rem;
            }
        }

        /* Industry Pages css */
            .bg-gradient-ind-sec {
    background: linear-gradient(135deg, #f1f4ff,var(--neutral-0));
}

.mapping-grid-ind-sec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.mapping-card-ind-sec {
    background: var(--neutral-0);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mapping-card-ind-sec:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var( --primary-100);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: var( --primary-500);
    margin: 0 auto 15px;
}

.mapping-card-ind-sec strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
}

.mapping-card-ind-sec p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}
.outcomes-list-ind {
    max-width: 700px;
    margin: 0 auto;
}

.outcomes-row-ind{
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.outcome-row:last-child {
    border-bottom: none;
}

.icon-bubble {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--primary-500);
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.outcome-text {
    font-size: 1.15rem;
    color: #444;
    font-weight: 500;
}
.outcome-box {
    background:var(--primary-100);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all .3s ease;
    display: flex;
    gap: 20px;
    align-items:center;
}
.outcome-box:hover {
    background: var(--neutral-0);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.icon-wrap {
width: 55px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-500);
    border-radius: 50%;
    font-size: 22px;
    color: var(--neutral-0);
    padding: 10px;
}

.outcome-box h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.15rem;
}

.outcome-box p {
    margin: 5px 0 0;
    color: #555;
    font-size: 0.93rem;
}
.consulting-ops-section {
    background: var(--neutral-100);
    padding: var(--space-xxl) 0;
    font-family: var(--font-family);
}

.consulting-ops-section .container {
    max-width: var(--container-max-width);
    margin: auto;
    padding: 0 var(--space-md);
}

.section-title {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
}

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

.section-description {
    margin-top: var(--space-md);
    font-size: 18px;
    color: var(--neutral-600);
    line-height: 1.7;
}

.transition-box {
    margin-top: var(--space-lg);
    display: flex;
    gap: var(--space-sm);
    background: var(--primary-100);
    box-shadow: var(--box-shadow);
    padding: var(--space-md);
    border-left: 6px solid var(--primary-500);
    border-radius: var(--border-radius);
    align-items: center;
}

.transition-box i {
    font-size: 28px;
    color: var(--primary-500);
}

.transition-box p {
    margin: 0;
    color: var(--primary-700);
    font-size: 18px;
    font-weight: 600;
}

/* Consulting Cards */
.consulting-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    display: grid;
    gap: 32px;
}

.consulting-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    padding: 28px;
    background: var(--neutral-0);
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    align-items: start;
    transition: 0.25s ease;
    border: 1px solid var(--primary-100);
}

.consulting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.consulting-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-700);
}

.consulting-content h3 {
    color: var(--primary-700);
    font-size: 22px;
    margin-bottom: 10px;
}

.consulting-content p {
    color: var(--neutral-600);
    margin-bottom: 12px;
}

.module-badge {
    background: var(--primary-700);
    color: white;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: inline-block;
}

/* Workflow Cards */
.workflows-section-modern {
    padding: var(--space-xxl) 0;
    background: var(--neutral-0);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: var(--space-xl);
}

.workflow-panel {
    background: var(--neutral-100);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: 0.35s ease;
    border: 2px solid transparent;
}

.workflow-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: var(--primary-500);
}

.workflow-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--primary-100), var(--neutral-0));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-500);
    font-size: 26px;
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 20px rgba(142, 62, 174, 0.15);
}

.workflow-panel h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.workflow-panel p {
    color: var(--neutral-600);
    line-height: 1.7;
}
/* Solutions Page */
        .support-hero-wrapper {
            position: relative;
            min-height: 700px;
            background:  linear-gradient(135deg, #ffffff 0%, #d397ffa1 50%, #f0f4ff 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: var(--space-xxl) var(--space-md);
        }

        .support-hero-wrapper::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(142, 62, 174, 0.08), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .support-hero-wrapper::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(26, 211, 187, 0.08), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .support-hero-container {
            max-width: var(--container-max-width);
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--grid-gutter);
            align-items: center;
        }

        .support-hero-text-block {
            max-width: 600px;
        }

        .support-hero-headline {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: var(--space-md);
            line-height: 1.2;
            color: var(--text-primary);
        }

        .support-hero-headline .support-gradient-text {
            background: linear-gradient(135deg, var(--primary-500), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .support-hero-subtext {
            color: var(--neutral-600);
            font-size: 1.125rem;
            margin-bottom: var(--space-xl);
            line-height: 1.7;
        }

        .support-hero-cta-group {
            display: flex;
            gap: var(--space-sm);
            flex-wrap: wrap;
        }

        .support-hero-btn {
            padding: 16px 32px;
            border-radius: var(--button-radius);
            font-size: 1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-family: var(--font-family);
        }

        .support-hero-btn-primary {
            background: linear-gradient(135deg, var(--primary-500), var(--primary-color));
            color: var(--neutral-0);
            box-shadow: 0 4px 15px var(--shadow-color);
        }

        .support-hero-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(142, 62, 174, 0.2);
        }

        .support-hero-btn-secondary {
            background-color: var(--neutral-0);
            color: var(--primary-500);
            border: 2px solid var(--primary-500);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .support-hero-btn-secondary:hover {
            background-color: var(--primary-100);
            transform: translateY(-2px);
        }

        .support-hero-visual-area {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .support-cloud-infra-wrapper {
            position: relative;
            width: 100%;
            max-width: 550px;
            height: 500px;
        }

        /* Central Server */
        .support-central-server {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 240px;
            height: 240px;
            background: linear-gradient(135deg, var(--neutral-0), #f8f9fa);
            border-radius: var(--border-radius);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            padding: var(--space-md);
            z-index: 3;
            animation: hostingPulseAnimation 3s ease-in-out infinite;
        }

        @keyframes hostingPulseAnimation {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.02);
                box-shadow: 0 25px 70px rgba(142, 62, 174, 0.15);
            }
        }

        .support-server-top-bar {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            margin-bottom: var(--space-sm);
            padding-bottom: var(--space-xs);
            border-bottom: 2px solid var(--neutral-100);
        }

        .support-server-emoji {
            font-size: 24px;
        }

        .support-server-label {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .support-server-metrics {
            display: flex;
            flex-direction: column;
            gap: var(--space-xs);
            margin-bottom: var(--space-sm);
        }

        .support-metric-bar {
            height: 8px;
            background: var(--neutral-100);
            border-radius: 4px;
            overflow: hidden;
        }

        .support-metric-bar-inner {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-500), var(--accent-color));
            border-radius: 4px;
            animation: hostingLoadBarAnim 2s ease-out infinite;
        }

        @keyframes hostingLoadBarAnim {
            0%, 100% { width: 85%; }
            50% { width: 95%; }
        }

        .support-server-status-badge {
            display: flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-xs);
            background: #e8f5e9;
            border-radius: 6px;
            margin-top: var(--space-sm);
        }

        .support-status-indicator {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: hostingBlinkAnimation 2s ease-in-out infinite;
        }

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

        .support-status-label {
            font-size: 0.75rem;
            color: var(--success);
            font-weight: 600;
        }

        /* Floating Security Shields */
        .support-security-badge {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--neutral-0), var(--primary-100));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(142, 62, 174, 0.15);
            animation: hostingFloatShieldAnim 4s ease-in-out infinite;
        }

        .support-security-badge .support-badge-icon {
            font-size: 36px;
        }

        .support-security-badge.support-badge-pos-1 {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .support-security-badge.support-badge-pos-2 {
            top: 15%;
            right: 8%;
            animation-delay: -1s;
        }

        .support-security-badge.support-badge-pos-3 {
            bottom: 20%;
            left: 0%;
            animation-delay: -2s;
        }

        @keyframes hostingFloatShieldAnim {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Performance Metrics Cards */
        .support-perf-card {
            position: absolute;
            background: var(--neutral-0);
            border-radius: 12px;
            padding: var(--space-sm);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            min-width: 140px;
            animation: hostingFloatMetricAnim 5s ease-in-out infinite;
        }

        .support-perf-card.support-perf-pos-1 {
            top: 8%;
            left: 25%;
            animation-delay: -0.5s;
        }

        .support-perf-card.support-perf-pos-2 {
            bottom: 15%;
            right: 5%;
            animation-delay: -1.5s;
        }

        @keyframes hostingFloatMetricAnim {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            33% {
                transform: translateY(-12px) translateX(5px);
            }
            66% {
                transform: translateY(-8px) translateX(-5px);
            }
        }

        .support-perf-title {
            font-size: 0.7rem;
            color: var(--neutral-600);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .support-perf-number {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-500), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .support-perf-trend {
            font-size: 0.7rem;
            color: var(--success);
            margin-top: 2px;
        }

        /* Connection Lines */
        .support-connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
            opacity: 0.3;
            animation: hostingFlowLineAnim 3s ease-in-out infinite;
        }

        .support-line-pos-1 {
            top: 30%;
            left: 20%;
            width: 120px;
            transform: rotate(45deg);
            animation-delay: 0s;
        }

        .support-line-pos-2 {
            top: 35%;
            right: 20%;
            width: 100px;
            transform: rotate(-45deg);
            animation-delay: -1s;
        }

        .support-line-pos-3 {
            bottom: 30%;
            left: 25%;
            width: 90px;
            transform: rotate(-30deg);
            animation-delay: -2s;
        }

        @keyframes hostingFlowLineAnim {
            0%, 100% {
                opacity: 0.2;
            }
            50% {
                opacity: 0.6;
            }
        }

        @media (max-width: 968px) {
            .support-hero-container {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

            .support-hero-headline {
                font-size: 2.5rem;
            }

            .support-cloud-infra-wrapper {
                height: 400px;
            }

            .support-security-badge {
                width: 60px;
                height: 60px;
            }

            .support-security-badge .support-badge-icon {
                font-size: 28px;
            }
        }

        @media (max-width: 640px) {
            .support-hero-wrapper {
                min-height: auto;
                padding: var(--space-xl) var(--space-sm);
            }

            .support-hero-headline {
                font-size: 2rem;
            }

            .support-hero-subtext {
                font-size: 1rem;
            }

            .support-hero-cta-group {
                flex-direction: column;
            }

            .support-hero-btn {
                width: 100%;
                text-align: center;
            }

            .support-central-server {
                width: 160px;
                height: 200px;
            }

            .support-perf-card {
                display: none;
            }

            .support-connection-line {
                display: none;
            }
        }
        .visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 520px;
  margin: auto;
  font-family: inherit;
}

/* ===========================
   CENTER CARD - Main focal point
   =========================== */
.center-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  padding: 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translate(-50%, -50%);
  animation: pulse-card 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes pulse-card {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.02); }
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.card-emoji { font-size: 28px; }
.card-title { font-weight: 700; }

/* ===========================
   METRICS - Progress bars inside cards
   =========================== */
.card-metric { margin-bottom: 14px; }
.metric-label { font-size: 0.85rem; margin-bottom: 6px; color: #666; }

.metric-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #8E3EAE, #1ad3bb);
  animation: bar-load 2.5s infinite ease-out;
}

@keyframes bar-load {
  0%, 100% { width: 70%; }
  50% { width: 95%; }
}

/* ===========================
   STATUS BADGE - Activity indicator
   =========================== */
.status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 0.85rem;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink { 
  50% { opacity: 0.4; } 
}

/* Status Badge Variants */
.status-badge.blue { background: #e3f6ff; }
.status-badge.blue .status-indicator { background: #00aaff; }

.status-badge.green { background: #e8f5e9; }
.status-badge.green .status-indicator { background: green; }

.status-badge.purple { background: #f3e8ff; }
.status-badge.purple .status-indicator { background: purple; }

/* ===========================
   FLOATING ICONS - Decorative elements
   =========================== */
.support-hero-container .floating-icon {
  position: absolute;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  animation: float-icon 4s ease-in-out infinite;
  z-index: 6;
}

.icon-emoji { font-size: 28px; }
.icon-text { 
  font-size: 0.85rem; 
  font-weight: 600; 
  color: #333;
  text-align: center; 
}

@keyframes float-icon {
  50% { transform: translateY(-10px); }
}

/* Icon Positions */
.icon-top { top: 6%; left: 50%; transform: translateX(-50%);opacity:1; }
.icon-right { top: 50%; right: 0; transform: translateY(-50%);opacity:1; }
.icon-bottom { bottom: 6%; left: 50%; transform: translateX(-50%);opacity:1; }
.icon-left { top: 50%; left: 0; transform: translateY(-50%); opacity:1;}

/* ===========================
   METRIC CARDS - Small stat displays
   =========================== */
.metric-card {
  position: absolute;
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  animation: float-metric 5s ease-in-out infinite;
  min-width: 140px;
  z-index: 6;
}

.metric-pos-1 { top: 10%; left: 0; }
.metric-pos-2 { bottom: 10%; right: 0; animation-delay: -1s; }

.metric-title { 
  font-size: 0.75rem; 
  color: #666; 
  margin-bottom: 4px; 
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8E3EAE, #1ad3bb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-sub { 
  font-size: 0.75rem; 
  color: #2ea58b; 
  margin-top: 4px; 
}

@keyframes float-metric {
  50% { transform: translateY(-8px); }
}

/* ===========================
   TRAINING SPECIFIC STYLES
   =========================== */
.training-connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8E3EAE, transparent);
  opacity: 0.35;
  z-index: 3;
  animation: pulse-line 3s infinite;
}

.t-line-1 { 
  top: 36%; 
  left: 22%; 
  width: 140px; 
  transform: rotate(22deg); 
}

.t-line-2 { 
  top: 46%; 
  right: 18%; 
  width: 110px; 
  transform: rotate(-32deg); 
  animation-delay: -1s; 
}

@keyframes pulse-line { 
  50% { opacity: 0.85; } 
}

.training-screen-display {
  position: absolute;
  width: 320px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(14,30,60,0.08);
  padding: 14px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}

.training-screen-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eef2f6;
}

.training-screen-dots { display: flex; gap: 6px; }
.training-screen-dots .dot {
  width: 10px; 
  height: 10px; 
  border-radius: 50%;
  background: #e8eef8;
}

.training-screen-title {
  font-weight: 700; 
  font-size: 0.95rem; 
  flex: 1; 
}

.training-screen-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px 2px;
}

.training-module-item {
  display: flex; 
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  transition: 0.2s ease;
}

.training-module-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.training-module-icon {
  width: 34px; 
  height: 34px; 
  border-radius: 8px;
  background: #f7f8ff;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 20px;
}

.training-screen-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eef2f6;
  padding-top: 6px;
}

.training-cta {
  background: linear-gradient(135deg, #8E3EAE, #1ad3bb);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.training-progress { font-size: 0.82rem; }
.training-progress-val { font-weight: 700; color: #333; }

/* ===========================
   DEMO CONTAINER STYLES
   =========================== */
.demo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.demo-section {
  margin-bottom: 60px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
}

.demo-section h2 {
  margin-bottom: 20px;
  color: #333;
}