 /* Base styles */
 body {
     background-color: #000000;
 }
 
 /* Utility classes */
 .text-gradient {
     background-clip: text;
     -webkit-background-clip: text;
     color: transparent;
 }
  
 
 /* Logo slider styles */
 .logos-slide-container {
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    width: 100%;
    overflow: hidden;
}

.logos-slide {
    animation: slide 15s linear infinite;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo-wrapper {
    flex-shrink: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .logos-slide {
        animation-duration: 20s;
    }
    
    .logo-wrapper {
        padding: 0.5rem;
    }
}
 
 /* Services section styles */
 .services-section {
     position: relative;
     min-height: 100%;
 }
 
 .service-card {
    border: 1px;
    border-style: solid;
    border-color: #9EFF00;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;   
 }
 
 .service-card-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #9EFF00;
    color: #1E1E1E;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
 }

 .service-card-button:hover {
    background-color: #1E1E1E; 
    color: #9EFF00;
 }

 .work-card {
    border: 1px;
    border-style: solid;
    border-color: #9EFF00;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;  
    margin-top: 3px; 
 }
 /* Responsive adjustments */
 @media (max-width: 768px) {
     .logos-slide {
         animation-duration: 20s;
     }
 }

 /* Client section styles */
 .client-card {
     background-color: #1E1E1E;
     border: 1px solid #333;
     border-radius: 16px;
     padding: 24px;
     transition: all 0.3s ease;
     margin-bottom: 20px;
 }
 
 .client-card:hover {
     border-color: #9EFF00;
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(158, 255, 0, 0.1);
 }
 
 .client-card h4 {
     font-size: 18px;
     font-weight: 600;
     line-height: 1.4;
     margin-bottom: 16px;
 }
 
 .client-card p {
     color: #9BA1A6;
     font-size: 14px;
     line-height: 1.6;
 }
 
 .client-card .profile-info h5 {
     color: white;
     font-weight: 500;
     margin-bottom: 4px;
 }
 
 .client-card .website-button {
     background-color: transparent;
     border: 1px solid #D8FF99;
     color: #D8FF99;
     padding: 8px 16px;
     border-radius: 8px;
     transition: all 0.5s ease;
 }
 
 .client-card .website-button:hover {
     background-color: #D8FF99;
     color: #1E1E1E;
 }
 
 /* Responsive grid adjustments */
 @media (max-width: 768px) {
     .clients-grid {
         grid-template-columns: 1fr;
         padding: 0 16px;
     }
     
     .client-card {
         margin: 10px 0;
     }
 }

 /* FAQ section styles */
.faq-item {
    transition: all 0.5s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-button {
    transition: background-color 0.5s ease;
}

.faq-button:hover {
    background-color: #2A2A2A;
}

.faq-icon {
    transition: transform 0.5s ease;
}

.faq-answer {
    transition: all 0.5s ease;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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