/* ===== SERVICES PAGE - PROFESSIONAL REDESIGN ===== */

/* Import Animations from About Page (or redefine if standalone) */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Common Elements */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.1), rgba(106, 48, 255, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px;
    color: var(--accent-1);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    background: linear-gradient(90deg, #fff, var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(106, 48, 255, 0.05));
    border: 2px dashed rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.image-placeholder:hover {
    border-color: var(--accent-1);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(106, 48, 255, 0.1));
}

.image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-1);
    opacity: 0.5;
}

/* Hero Section */
.services-hero-new {
    padding: 140px 0 80px;
    background: radial-gradient(ellipse at top right, rgba(106, 48, 255, 0.1), transparent 60%);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Services Grid */
.services-section-new {
    padding: 80px 0;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-image-wrapper {
    height: 240px;
    width: 100%;
    padding: 10px;
}

.service-content-new {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-new {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--accent-1);
}

.service-content-new h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.service-content-new p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #fff;
}

/* Industries Section */
.industries-section-new {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.industries-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card-new {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.industry-card-new:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-1);
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-2);
}

.industry-card-new h3 {
    color: #fff;
    margin-bottom: 10px;
}

.industry-card-new p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* CTA Section */
.cta-section-new {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1), transparent 70%);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(5, 11, 25, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}