.hero-section {
    background: linear-gradient(135deg, #0080d0 0%, #00a3ff 50%, #00d4ff 100%);
    color: white;
    padding: 10px 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 128, 208, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section h1 {
    color:white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.hero-section .lead {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.hero-section .btn {
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid white;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-section .btn:hover {
    background: white;
    color: #0080d0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 0;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 128, 208, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 128, 208, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    position: relative;    
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0080d0 0%, #00a3ff 100%);
}

.service-card:hover {
    box-shadow: 0 22px 45px rgba(0, 128, 208, 0.22), 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
    border-color: #0080d0;
}

.service-card-header {
    background: linear-gradient(135deg, #0080d0 0%, #00a3ff 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 12px 12px 0 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.service-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00a3ff 0%, #0080d0 100%);
}

.service-card-header h2 {
    margin: 0;
    font-size: 1.4rem;
}

.service-card-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #0080d0 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 22px 28px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card p {
    color: #5a6b7d;
    line-height: 1.8;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card .btn {
    background: linear-gradient(135deg, #0080d0 0%, #00a3ff 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 128, 208, 0.3);
    color: white;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, #667eea, transparent);
    margin: 50px 0;
    border: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 20px;
        margin-bottom: 40px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
