
/* ---------- OUR SERVICES SECTION ---------- */
.our-services-section {
    background-color: #06071B;
    padding: 100px 12%;
    color: #D0D3E0;
    text-align: center;

    
  background: 
    radial-gradient(circle at 10% 30%, rgba(68,113,245,0.1), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(68,113,245,0.15), transparent 20%),
    #06071B;


}

.our-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-subtitle {
    color: #4471F5;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.services-intro {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ---------- SERVICE ITEM ---------- */
/* Hidden State */
.reveal-service {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Visible State */
.reveal-service.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Icon pop animation */
.reveal-service.active .service-icon {
  transform: scale(1);
  
  transition: all 0.8s ease-out;
}

.service-icon {
  transform: scale(0.8);
  transition: all 0.5s ease-out;
}
.reveal-service:nth-child(1) { transition-delay: 0.1s; }
.reveal-service:nth-child(2) { transition-delay: 0.2s; }
.reveal-service:nth-child(3) { transition-delay: 0.3s; }
.reveal-service:nth-child(4) { transition-delay: 0.4s; }
.reveal-service:nth-child(5) { transition-delay: 0.5s; }
.reveal-service:nth-child(6) { transition-delay: 0.6s; }
.reveal-service:nth-child(7) { transition-delay: 0.7s; }
.reveal-service:nth-child(8) { transition-delay: 0.8s; }
.reveal-service:nth-child(9) { transition-delay: 0.9s; }

.service-items {
    display: grid;
    grid-template-columns: 1fr 2fr 50px;
    align-items: center;
    background-color: transparent;
    border-bottom: 1px solid #A0A5BD;
    padding: 8px 30px;
    transition: all 0.3s ease;
}



.service-items:hover {
    background-color: #1D1F31;
    
}

.service-title {
    text-align: left;
    font-size: 1.25rem;
    color: #A0A5BD;
    font-weight: 600;
}

.service-description {
    text-align: left;
    color: #A0A5BD;
    font-size: 1rem;
    line-height: 1.6;
}

.service-icon {
    font-size: 1.6rem;
    color: #A0A5BD;
    text-align: right;
}
/* initial color */
.service-title,
.service-description,
.service-icon {
    color: #A0A5BD;
    transition: color 0.3s ease;
}


/* Single unified hover */
.service-items:hover {
    background-color: #1D1F31;
}

.service-items:hover .service-title,
.service-items:hover .service-description,
.service-items:hover .service-icon {
    color: #FFFFFF;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .service-items {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 20px;
    }

    .service-title {
        margin-bottom: 8px;
    }

    .service-description {
        margin-bottom: 8px;
    }

    .service-icon {
        text-align: left;
        margin-top: 10px;
    }
}
@media (max-width: 500px) {
.services-intro {
    font-size: 16px !important;
}
.services-subtitle {
    font-size: 25px;
}
}
