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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: #f9fafb;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background with floating elements */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 12s ease-in-out infinite;
    opacity: 0.6;
    color: #3b82f6;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-60px) rotate(180deg); 
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg); 
        opacity: 0.5;
    }
}

/* Header */



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

/* Service Hero */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 6rem;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.service-hero-content {
    max-width: 800px;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #6366f1;
    text-decoration: none;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #6366f1;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    color: #f9fafb;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: rgba(75, 85, 99, 0.3);
    color: #3b82f6;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #3b82f6;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(75, 85, 99, 0.5);
    color: #f9fafb;
    transform: translateY(-2px);
}

/* Service Overview */
.service-overview {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f9fafb;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overview-text p {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.benefit-item h3 {
    color: #f9fafb;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.migration-animation {
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(75, 85, 99, 0.4);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.migration-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.migration-node {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.4);
    padding: 1rem;
    border-radius: 12px;
    color: #3b82f6;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
    min-width: 100px;
    transition: all 0.3s ease;
}

.migration-node:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.migration-arrow {
    color: #3b82f6;
    font-size: 1.5rem;
}

/* Service Features */
.service-features {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
}



.section-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.section-title {
    font-size: 2.5rem;
    color: #f9fafb;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.feature-card {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(75, 85, 99, 0.4);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
}

.feature-card h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: #d1d5db;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Migration Process */
.migration-process {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

.process-timeline {
    position: relative;
    margin-top: 3rem;
}

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

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

.process-content {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.4);
    width: 45%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.process-content:hover {
    transform: scale(1.02);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.process-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 2;
}

.process-content h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.process-content p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
}

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

.portfolio-item {
    background: linear-gradient(135deg, #111827, #1f2937);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(75, 85, 99, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 150px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #3b82f6;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.portfolio-content p {
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

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

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.4);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), 0 0 20px rgba(59, 130, 246, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #d1d5db;
    font-size: 1rem;
}

/* Service CTA */
.service-cta {
    padding: 6rem 0;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
}

.cta-content h2 {
    color: #f9fafb;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

/* Footer */
footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    color: #9ca3af;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(75, 85, 99, 0.4);
}

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

.footer-brand h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links h4 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
    }

    .process-content {
        width: 100%;
        margin: 1rem 0;
    }

    .process-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {


    .mobile-menu {
        display: block;
    }

    .service-hero {
        padding-top: 8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .migration-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .migration-arrow {
        transform: rotate(90deg);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Enhanced Header */
/* Navigation */
/* Enhanced Header */
/* === NAVIGATION BAR STYLES === */
/* Root variables for navy theme */
:root {
    --primary-900: #0a0f1c;        /* Deep navy background */
    --primary-800: #1a2332;        /* Main background - navy blue */
    --primary-300: #cbd5e1;        /* Primary text */
    --primary-100: #f8fafc;        /* Brightest text */
    --accent-primary: #4f7df3;      /* Bright blue for buttons */
    --accent-primary-light: #6b8bf5; /* Lighter blue for highlights */
    --accent-primary-dark: #1d4ed8; /* Darker blue for depth */
    --accent-secondary: #7c3aed;    /* Purple accent */
    --accent-tertiary: #0ea5e9;     /* Sky blue */
    --surface-overlay: rgba(26, 35, 50, 0.98);
    --border-subtle: rgba(79, 125, 243, 0.1);
    --border-default: rgba(79, 125, 243, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.35);
    --gradient-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--primary-900);
    color: var(--primary-300);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface-overlay);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: var(--surface-overlay);
    border-bottom-color: var(--border-default);
    box-shadow: var(--shadow-lg);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 170px;
    height: 50px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(79, 125, 243, 0.4);
    transition: box-shadow 0.3s ease;
}

.logo-icon:hover {
    box-shadow: 0 0 40px rgba(79, 125, 243, 0.6);
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary), var(--accent-primary));
    border-radius: 18px;
    z-index: -1;
    animation: logoGlow 4s linear infinite;
    background-size: 300% 300%;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    filter: brightness(1.1) contrast(1.05);
}

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

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--primary-300);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: var(--primary-100);
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    opacity: 0.1;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface-overlay);
    backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    padding: 1rem 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: var(--shadow-xl);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-400);
    border-radius: 0;
    background: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(79, 125, 243, 0.08);
    color: var(--accent-primary-light);
    transform: translateX(4px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--primary-300);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(79, 125, 243, 0.1);
    color: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--surface-overlay);
        backdrop-filter: blur(20px) saturate(1.5);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--border-default);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(79, 125, 243, 0.1);
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-contrast: high) {
    :root {
        --primary-300: #ffffff;
        --border-subtle: rgba(79, 125, 243, 0.3);
        --border-default: rgba(79, 125, 243, 0.5);
    }
}



/* Partners Section (for partner logos) */
.partners-section {
    padding: 4rem 0;
    background: #000000;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

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

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

.partner-logo img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    object-fit: contain;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

/* Brand-specific colors on hover for partner logos */
.partner-logo:nth-child(1):hover img { filter: brightness(0) saturate(100%) invert(27%) sepia(94%) saturate(1540%) hue-rotate(215deg) brightness(97%) contrast(87%); }
.partner-logo:nth-child(2):hover img { filter: brightness(0) saturate(100%) invert(60%) sepia(89%) saturate(1530%) hue-rotate(360deg) brightness(100%) contrast(104%); }
.partner-logo:nth-child(3):hover img { filter: brightness(0) saturate(100%) invert(31%) sepia(93%) saturate(1519%) hue-rotate(211deg) brightness(100%) contrast(86%); }
.partner-logo:nth-child(4):hover img { filter: brightness(0) saturate(100%) invert(28%) sepia(79%) saturate(1506%) hue-rotate(208deg) brightness(96%) contrast(93%); }
.partner-logo:nth-child(5):hover img { filter: brightness(0) saturate(100%) invert(65%) sepia(89%) saturate(1257%) hue-rotate(2deg) brightness(100%) contrast(98%); }
.partner-logo:nth-child(6):hover img { filter: brightness(0) saturate(100%) invert(13%) sepia(100%) saturate(6841%) hue-rotate(358deg) brightness(103%) contrast(118%); }
.partner-logo:nth-child(7):hover img { filter: brightness(0) saturate(100%) invert(27%) sepia(94%) saturate(1540%) hue-rotate(215deg) brightness(97%) contrast(87%); }
.partner-logo:nth-child(8):hover img { filter: brightness(0) saturate(100%) invert(60%) sepia(89%) saturate(1530%) hue-rotate(360deg) brightness(100%) contrast(104%); }

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

/* Footer */
footer {
    background: #000000;
    color: #9ca3af;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
}

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

.footer-brand p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-links h4 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    color: #6b7280;
}

/* Responsive Design (navigation and partner logos) */
@media (max-width: 768px) {
    

    .partner-logo {
        min-width: 150px;
        height: 80px;
    }
    
    .partner-logo img {
        width: 50px;
        height: 50px;
    }
}

