.services {
    padding: 5rem 2rem;
    background: linear-gradient(to right, #193442 0%, rgba(25, 52, 66, 0.95) 100%);
    color: white;
    box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.2); /* This creates the soft shadow */
    position: relative;
    z-index: 1;
}

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

.services-container h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.15);
}

.service-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Update responsive design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        min-height: 60vh;
        height: auto;
    }
    .hero-image {
        min-height: 220px;
        height: 220px;
    }
    .hero-content {
        padding: 3rem 1.5rem;
        min-height: 220px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: 40vh;
        height: auto;
    }
    .hero-image {
        min-height: 160px;
        height: 160px;
    }
    .hero-content {
        padding: 2rem 1rem;
        min-height: 160px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 3rem 1rem;
    }
}


