/* --- Service Hero Section --- */
.services-hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 120px 0;
    overflow: hidden;
}

.services-hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.services-hero-shape {
    position: absolute;
}

.services-hero-circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(78, 171, 228, 0.3);
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.services-hero-circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(254, 207, 51, 0.3);
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.services-hero-triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid rgba(78, 171, 228, 0.3);
    top: 20%;
    left: 15%;
    transform: rotate(15deg);
    animation: float 7s ease-in-out infinite;
}

.services-hero-triangle-2 {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid rgba(254, 207, 51, 0.3);
    top: 50%;
    right: 10%;
    transform: rotate(-25deg);
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* --- Hero Content --- */
.services-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(78, 171, 228, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(78, 171, 228, 0.1);
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #4eabe4, #fecf33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Service Cards --- */
.service-card {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); }
.service-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    padding-bottom: 70px;
    padding-left: 50px;
}
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #4eabe4;
    color: #111;
    padding: 30px;
    width: 75%;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    z-index: 2;
}
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}
.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #fff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .services-hero-wrapper { padding: 80px 0; }
    .services-hero-title { font-size: 2.5rem; }
    .services-hero-triangle-1,
    .services-hero-triangle-2 { display: none; }
    .services-hero-circle-1 { width: 200px; height: 200px; }
    .services-hero-circle-2 { width: 150px; height: 150px; }
}
