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

:root {
    --primary-color: #DC2626;
    --primary-dark: #B91C1C;
    --primary-light: #EF4444;
    --secondary-color: #991B1B;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-card: #FFFFFF;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --gradient-hover: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 50%, #B91C1C 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.header-content-copy{
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    flex-shrink: 0;
}

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

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

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-text p {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.header-right {
    text-align: right;
}

.header-right h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 15px 0 30px 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.hero-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section p {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
}

/* Clients Section */
.clients-section {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.client-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .client-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(185, 28, 28, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
}

.client-card:hover {
    transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px -10px rgba(220, 38, 38, 0.2), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

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

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

.client-card:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.15s ease;
}
.client-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.client-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .client-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
}

.client-card:hover .client-icon {
    background: var(--gradient-hover);
    transform: scale(1.15) rotate(5deg);
        box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
    }
    
    .client-card:hover .client-icon::before {
        width: 100px;
        height: 100px;
    }
    
    .client-info {
        flex: 1;
        min-width: 0;
}

.client-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(0);
    }
    
    .client-card:hover .client-info h4 {
        color: var(--primary-color);
        transform: translateX(4px);
}

.client-info p {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-text {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.location-icon {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.location-text span {
    flex: 1;
}

.client-card:hover .location-text {
    color: var(--text-primary);
}

.client-card:hover .location-icon {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.15);
}

.client-url {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-url span {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
        color: var(--text-light);
        font-family: 'Monaco', 'Courier New', monospace;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover .client-url {
    border-color: var(--primary-light);
    }
    
    .client-card:hover .client-url span {
    color: var(--primary-color);
    transform: translateX(2px);
}

.arrow-icon {
    flex-shrink: 0;
    display: block;
        color: var(--text-light);
    opacity: 0.5;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover .arrow-icon {
    transform: translateX(8px) scale(1.2);
    color: var(--primary-color);
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: white;
    opacity: 0.9;
}

.footer p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-subtitle {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header-right {
        text-align: left;
        width: 100%;
    }

    .header-right h3 {
        font-size: 20px;
    }

    .header-right p {
        font-size: 12px;
    }

    .hero-section h2 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .clients-section {
        padding: 32px 24px;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .client-card {
        padding: 24px;
    }

    .logo-text h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 28px;
    }

    .clients-section {
        padding: 24px 16px;
    }

    .section-header h3 {
        font-size: 24px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        }
        }
        
        @keyframes pulse {
        
            0%,
            100% {
                opacity: 1;
            }
        
            50% {
                opacity: 0.7;
    }
}

.client-card {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
}

.client-card:nth-child(1) {
    animation-delay: 0.05s;
}

.client-card:nth-child(2) {
    animation-delay: 0.1s;
}

.client-card:nth-child(3) {
    animation-delay: 0.15s;
}

.client-card:nth-child(4) {
    animation-delay: 0.2s;
}

.client-card:nth-child(5) {
    animation-delay: 0.25s;
}

.client-card:nth-child(6) {
    animation-delay: 0.3s;
}

.client-card:nth-child(7) {
    animation-delay: 0.35s;
}

.client-card:nth-child(8) {
    animation-delay: 0.4s;
}

.client-card:nth-child(9) {
    animation-delay: 0.45s;
}

