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



/* Loading Screen */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 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);
    }
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1f2937 50%, #374151 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: float 20s infinite ease-in-out;
}

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

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(59, 130, 246, 0.4);
    font-size: 2.5rem;
    animation: floatIcon 20s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.floating-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 70%; left: 88%; animation-delay: 3s; }
.floating-icon:nth-child(3) { top: 85%; left: 15%; animation-delay: 6s; }
.floating-icon:nth-child(4) { top: 25%; left: 75%; animation-delay: 9s; }
.floating-icon:nth-child(5) { top: 60%; left: 12%; animation-delay: 12s; }
.floating-icon:nth-child(6) { top: 10%; left: 85%; animation-delay: 15s; }
.floating-icon:nth-child(7) { top: 45%; left: 45%; animation-delay: 2s; }
.floating-icon:nth-child(8) { top: 80%; left: 60%; animation-delay: 5s; }

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-40px) rotate(90deg) scale(1.1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-80px) rotate(180deg) scale(0.9); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateY(-60px) rotate(270deg) scale(1.2); 
        opacity: 0.7; 
    }
}

/* Hero Content */
.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 1;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f9fafb 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #9ca3af;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary:hover {
    background: rgba(75, 85, 99, 0.5);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.5);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.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 */
.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%); }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

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

.stat-item {
    padding: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

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

.service-card {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(59, 130, 246, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
}

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

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

.service-features {
    list-style: none;
}

.service-features li {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.service-link {
    margin-top: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link span {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #000000;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f9fafb;
    font-weight: 700;
}

.about-text p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

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

.about-visual {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.about-visual h3 {
    font-size: 2rem;
    color: #f9fafb;
    margin-bottom: 1rem;
}

.about-visual p {
    color: #9ca3af;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f9fafb;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #9ca3af;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(75, 85, 99, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.contact-details li:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.contact-details i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 8px;
    color: white;
    font-style: normal;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #f9fafb;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: #f9fafb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group.focused label {
    color: #3b82f6;
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

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

/* Footer */
/* NetFortify Solutions Footer Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    padding: 2rem;
}

/* Footer Styles */
footer {
    background: #000000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d9ff, #0099ff, #6600ff, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    position: relative;
    align-items: start;
}

/* Footer Brand Section */
.footer-brand {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #cccccc;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    flex: 1;
}

.ft-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    margin-top: auto;
}

.ft-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #00d9ff, #0099ff);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: logoShine 2s ease-in-out infinite;
}

@keyframes logoShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ft-logo-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}


/* Footer Links Sections */
.footer-links {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-links:nth-child(2) { animation-delay: 0.3s; }
.footer-links:nth-child(3) { animation-delay: 0.4s; }
.footer-links:nth-child(4) { animation-delay: 0.5s; }

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d9ff, #0099ff);
    border-radius: 1px;
}

.footer-links ul {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul li {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #00d9ff;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00d9ff;
    padding-left: 1.5rem;
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

/* Footer Contact Section */
.footer-contact {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-contact h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
    border-radius: 1px;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item strong {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

.contact-item a,
.contact-item span {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00d9ff;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d9ff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00d9ff, #0099ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover svg {
    color: white;
    transform: scale(1.1);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-left {
    flex: 1;
    min-width: 250px;
}

.footer-bottom-right {
    flex-shrink: 0;
}

.footer-bottom-left p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-reg {
    color: #888888 !important;
    font-size: 0.8rem !important;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.15), rgba(0, 217, 255, 0.15));
    border: 1px solid rgba(0, 255, 127, 0.4);
    color: #00ff7f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge:hover {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.25), rgba(0, 217, 255, 0.25));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.3);
}

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

/* Floating particles animation */
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 153, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
        height: auto;
    }

    .footer-brand .logo {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
        height: auto;
    }

    .footer-brand .logo {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-left {
        min-width: auto;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-badges {
        justify-content: center;
    }
}
/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(75, 85, 99, 0.1);
        border: 1px solid rgba(75, 85, 99, 0.2);
        border-radius: 8px;
        padding: 0.5rem 0;
        margin-top: 1rem;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu {
        display: block;
        z-index: 1001;
    }

    .hero {
        padding: 2rem 0;
        min-height: 80vh;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

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

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

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

    .container {
        padding: 0 1rem;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Performance optimizations */
.floating-icon,
.partners-track {
    will-change: transform;
}

/* Accessibility improvements */
.service-card:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}


/*new add

/* 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: #000000;
    color: #cbd5e1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    padding: 2rem 0;
}

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

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Technology Partners Section */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 24px;
    position: relative;
    margin-bottom: 4rem;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    opacity: 0.5;
    border-radius: 24px 24px 0 0;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.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;
    cursor: pointer;
}

.partner-logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

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

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

.partner-logo img {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
    object-fit: contain;
}

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

/* Technology partner logos should be white/light colored */
.partner-logo.light-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.partner-logo.light-logo:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
    transform: scale(1.1);
}

/* Brand-specific colors on hover for technology partners */
.partner-logo:nth-child(1):hover {
    border-color: rgba(0, 120, 215, 0.5);
    box-shadow: 0 10px 30px rgba(0, 120, 215, 0.2);
}

.partner-logo:nth-child(2):hover {
    border-color: rgba(255, 153, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
}

.partner-logo:nth-child(3):hover {
    border-color: rgba(66, 133, 244, 0.5);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
}

.partner-logo:nth-child(4):hover {
    border-color: rgba(33, 150, 243, 0.5);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
}

.partner-logo:nth-child(5):hover {
    border-color: rgba(50, 108, 229, 0.5);
    box-shadow: 0 10px 30px rgba(50, 108, 229, 0.2);
}

.partner-logo:nth-child(6):hover {
    border-color: rgba(247, 79, 79, 0.5);
    box-shadow: 0 10px 30px rgba(247, 79, 79, 0.2);
}

.partner-logo:nth-child(7):hover {
    border-color: rgba(0, 120, 215, 0.5);
    box-shadow: 0 10px 30px rgba(0, 120, 215, 0.2);
}

.partner-logo:nth-child(8):hover {
    border-color: rgba(93, 64, 182, 0.5);
    box-shadow: 0 10px 30px rgba(93, 64, 182, 0.2);
}

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

/* Client Logos Section */
.clients-section {
    padding: 4rem 0;
    background: #000000;
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-radius: 24px;
    position: relative;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    opacity: 0.5;
    border-radius: 24px 24px 0 0;
}

/* Client Logos Container */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.client-logo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.client-logo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.client-logo:hover::after {
    opacity: 1;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2),
        0 0 50px rgba(59, 130, 246, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.client-logo:hover img {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.05);
}

/* For logos that should be white/light colored */
.client-logo.light-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.client-logo.light-logo:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Placeholder styling for demo logos */
.client-logo.placeholder {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.placeholder-content {
    text-align: center;
    color: #9ca3af;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

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

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

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

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .partner-logo {
        min-width: 180px;
        height: 90px;
    }

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 1rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .client-logo {
        height: 100px;
        padding: 1.5rem;
    }

    .client-logo img {
        max-height: 60px;
    }

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

    .partner-logo img {
        width: 40px;
        height: 40px;
    }

    .partners-section,
    .clients-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-track {
        gap: 2rem;
    }

    .partner-logo {
        min-width: 120px;
        height: 70px;
    }

    .partner-logo img {
        width: 35px;
        height: 35px;
    }
}

/* Accessibility improvements */
.client-logo:focus,
.partner-logo:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Performance optimizations */
.client-logo,
.partner-logo {
    will-change: transform;
}

/* 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 #3b82f6;
    outline-offset: 2px;
    border-radius: 4px;
}
