
/* ---------- HERO SECTION ---------- */
.hero {
    background: #06071B;
    color: #fff;
    text-align: center;
    padding: 65px 20px 120px;
    display: flex;
    justify-content: center;
    align-items: center;

  background: 
    radial-gradient(circle at 50% 50%, rgba(18, 74, 243, 0.2), transparent 50%),
    #06071B;
      
}

.hero-content {
    max-width: 850px;
}

.hero .tagline {
    
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 18px;
}

.hero h1 {
    font-size: 3.7rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero .description {
    font-size: 1.05rem;
    color: #d4d4e1;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-btn {
    background: linear-gradient(to right, #4471F5, #0041FF);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
    box-shadow: 0 0 20px rgba(68, 113, 245, 0.7);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 100px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero .description {
        font-size: 0.95rem;
    }
}
/* ---------- SERVICES BANNER ---------- */
.services-banner {
    background-color: #1D1F31;
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
}

.services-track {
    display: inline-flex;
    align-items: center;
    animation: scrollServices 18s linear infinite;
}

.service-item {
    min-width: 250px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #A0A5BD;
    flex-shrink: 0;
}

/* Smooth infinite loop */
@keyframes scrollServices {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Half of duplicated width */
}

/* Responsive */
@media (max-width: 768px) {
    .service-item {
        min-width: 180px;
        font-size: 1.1rem;
    }
    .hero-btn {
    padding: 10px 20px;
    }
}
