
:root {
    --primary-gradient: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --glass-bg: rgba(17, 24, 39, 0.8);
    --border-light: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    color: white;
    overflow-x: hidden;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.glass-effect {
    backdrop-filter: blur(16px);
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
}

.cyber-grid {
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.1));
    position: relative;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.2);
}

.floating-2 {
    top: 40%;
    right: 20%;
    width: 32px;
    height: 32px;
    background: rgba(6, 182, 212, 0.3);
    animation-delay: -2s;
}

.floating-3 {
    bottom: 40%;
    left: 25%;
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.2);
    animation-delay: -4s;
}

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

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 40px rgba(59, 130, 246, 0.3);
    }
}

.btn-gradient {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    transform: scale(1.05);
}

.btn-outline-gradient {
    border: 1px solid var(--border-light);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #06b6d4;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: #06b6d4;
    transform: translateY(-5px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.5rem;
}

.icon-ai {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

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

.icon-cloud {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icon-bi {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.icon-security {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

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

.navbar-custom {
    backdrop-filter: blur(16px);
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid var(--border-light);
}

.navbar-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow 2s ease-in-out infinite alternate;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-green {
    background-color: #10b981;
}

.dot-blue {
    background-color: #3b82f6;
}

.dot-purple {
    background-color: #8b5cf6;
}

.case-study-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: scale(1.02);
}

.company-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.tag-blue {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.tag-green {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.tag-purple {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.tag-cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #67e8f9;
}

.tag-yellow {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

.tag-red {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.metric-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 280px;
    margin-right: 1.5rem;
}

.section-bg-alt {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
}

.form-control-custom {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    color: white;
    border-radius: 12px;
}

.form-control-custom:focus {
    background: var(--glass-bg);
    border-color: #06b6d4;
    box-shadow: 0 0 0 0.25rem rgba(6, 182, 212, 0.25);
    color: white;
}

.form-control-custom::placeholder {
    color: #9ca3af;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-btn {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn:hover {
    border-color: #06b6d4;
    color: #06b6d4;
}

.language-btn.active {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-color: transparent;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    display: inline-block;
}

.flag-en {
    background: linear-gradient(45deg, #012169 25%, #fff 25%, #fff 50%, #c8102e 50%, #c8102e 75%, #fff 75%);
}

.flag-es {
    background: linear-gradient(0deg, #c60b1e 33%, #ffc400 33%, #ffc400 66%, #c60b1e 66%);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .floating-element {
        display: none;
    }

    .language-switcher {
        margin-top: 1rem;
    }
}
