.futuristic-body {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.futuristic-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(31, 72, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 174, 152, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-content {
    position: relative;
    z-index: 1;
}

.hero-section {
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(66, 30, 174, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(31, 72, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(30, 174, 152, 0.05) 0%, transparent 60%);
    animation: float 6s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 2rem;
}

.title-gradient {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #006effff;
    display: block;
    margin-top: 1rem;
    opacity: 0.8;
    font-style: italic;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.title-subtitle {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, #1f487e, #006effff, #1f487e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-top: 3rem;
    display: block;
}

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

.hero-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a6b8a;
    max-width: 600px;
    margin: 2rem auto 0;
    font-weight: 300;
}

.services-section {
    padding: 1rem 0;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f487e;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(31, 72, 126, 0.2);
}

.section-subtitle {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    color: #4a6b8a;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #1F487E;
    background: linear-gradient(135deg, #0a1929 0%, #1f487e 25%, #0d2142 50%, #1a3b6b 75%, #0a1929 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(31, 72, 126, 0.3);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(112, 30, 174, 0.6);
    box-shadow: 0 30px 80px rgba(30, 174, 152, 0.4);
    background: linear-gradient(135deg, #1f487e 0%, #ffffffff 100%);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(30, 174, 152, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(30, 174, 152, 0.3);
    position: relative;
    z-index: 2;
}

.card-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.card-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.card-description {
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.9rem;
    color: #e8f4f8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.card-btn {
    background: linear-gradient(45deg, #1EAE98, #1f487e);
    border: none;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(30, 174, 152, 0.3);
}

.card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 174, 152, 0.4);
}

.clients-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(31, 72, 126, 0) 0%, rgba(20, 60, 124, 0) 100%);
}

.clients-carousel {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.carousel-row {
    display: flex;
    animation: scrollLeft 80s linear infinite;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    gap: 2rem;
}

.carousel-reverse {
    animation: scrollRight 75s linear infinite;
}

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

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

.client-logo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(31, 72, 126, 0.05) 100%);
    border: 1px solid rgba(30, 174, 152, 0.2);
    border-radius: 15px;
    padding: 1.2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    min-width: 160px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(31, 72, 126, 0.1);
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(30, 174, 152, 0.5);
    box-shadow: 0 15px 40px rgba(30, 174, 152, 0.2);
    background: linear-gradient(135deg, rgba(30, 174, 152, 0.1) 0%, rgba(31, 72, 126, 0.1) 100%);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    min-height: 50px;
    filter: brightness(1.1) contrast(1.05);
    transition: all 0.3s ease;
    object-fit: contain;
}

.client-logo:hover img {
    filter: brightness(1.3) contrast(1.1);
}

@media (max-width: 768px) {
    .title-gradient {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .client-logo {
        padding: 1rem;
        min-height: 100px;
    }
    
    .client-logo img {
        max-height: 80px;
        min-height: 50px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .service-card {
        padding: 1.2rem 1rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .client-logo {
        padding: 0.8rem;
        min-height: 80px;
    }
    
    .client-logo img {
        max-height: 60px;
        min-height: 40px;
    }
}