/* Professional Light Background Theme */

/* Main body background with subtle pattern */
body {
    background: 
        radial-gradient(circle at 20% 50%, rgba(218, 113, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 63, 115, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(44, 90, 160, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-attachment: fixed;
    position: relative;
}

/* Subtle animated background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%232c5aa0" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%231e3f73" opacity="0.02"/><circle cx="75" cy="25" r="0.5" fill="%232c5aa0" opacity="0.03"/><circle cx="25" cy="75" r="0.5" fill="%231e3f73" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    z-index: -1;
    animation: subtle-move 20s ease-in-out infinite;
}

@keyframes subtle-move {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2px, -2px); }
    50% { transform: translate(2px, -1px); }
    75% { transform: translate(-1px, 2px); }
}

/* Enhanced sections with professional backgrounds */
.services-preview, .services-detail {
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    backdrop-filter: blur(10px);
    position: relative;
}
/* 
.why-choose {
   background: 
        linear-gradient(135deg, rgba(226, 232, 240, 0.6) 0%, rgba(248, 250, 252, 0.6) 100%);
    backdrop-filter: blur(10px);
}*/

.testimonials {
    background: 
        linear-gradient(135deg, rgba(241, 245, 249, 0.7) 0%, rgba(226, 232, 240, 0.7) 100%);
    backdrop-filter: blur(10px);
}

.news-preview, .news-section {
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.newsletter {
    background: 
        linear-gradient(135deg, rgba(226, 232, 240, 0.7) 0%, rgba(241, 245, 249, 0.7) 100%);
    backdrop-filter: blur(10px);
}

.contact-section, .about-content, .values-section, .team-section, .commitment-section {
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 0.6) 100%);
    backdrop-filter: blur(5px);
}

.process-section {
    background: 
        linear-gradient(135deg, rgba(226, 232, 240, 0.6) 0%, rgba(248, 250, 252, 0.6) 100%);
    backdrop-filter: blur(10px);
}

/* Professional glass morphism effect for cards */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Enhanced header with subtle background */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
}

/* Professional footer enhancement */
.footer {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(44, 90, 160, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body::before {
        animation: none; /* Disable animation on mobile for performance */
    }
    
    .glass-card {
        backdrop-filter: blur(10px); /* Reduce blur on mobile */
    }
}