:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

body {
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,0.3) 0%, rgba(148,187,233,0.3) 100%);
    min-height: 100vh;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

/* Glass Navbar override */
header .navbar {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
}

.hero-section {
    padding: 100px 0;
    /* Optional: background image if needed, but body has gradient */
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Floating shapes */
.shape-blob {
    position: absolute;
    z-index: -1;
    filter: blur(50px);
    opacity: 0.6;
}
.shape-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: #ff9a9e;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-animate 10s infinite alternate;
}
.shape-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #a18cd1;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-animate 12s infinite alternate-reverse;
}

@keyframes blob-animate {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(20px, -20px); }
}

/* Nice Select Fixes */
.nice-select {
    width: 100%;
    float: none;
    border-radius: 10px;
    height: 48px;
    line-height: 46px;
    padding-right: 20px;
    text-align: right !important;
}
.nice-select .list {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.nice-select .option {
    text-align: right;
    padding-right: 20px;
}
.nice-select:after {
    right: auto;
    left: 20px;
}
.nice-select .current {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90%;
}
