/* Services Page Styles */
.services-page {
    background: linear-gradient(#151d28, #0e4f6d);
    min-height: 100vh;
    color: #ffffff;
    padding: 160px 0 60px 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background: linear-gradient(#0b3f56,#0e4f6d) !important;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #38bdf8;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.services-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: inherit;
    text-decoration: none;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: #38bdf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #0ea5e9;
    transform: scale(1.1);
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-icon svg circle {
    fill: #38bdf8;
}

.service-icon svg path {
    stroke: #ffffff;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

/* Technology Card - Single Column */
.technology-card {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-page {
        padding: 100px 0 40px 0;
    }

    .services-content {
        padding: 0 15px;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    .service-icon svg {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }

    .services-subtitle {
        font-size: 0.95rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}