/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Modern & Luxurious */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --light-gray: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
    
    /* Typography */
    --font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* EMI Calculator Colors */
    --calculator-bg: #f8fafc;
    --calculator-card-bg: #ffffff;
    --result-success: #059669;
    --result-primary: #3b82f6;
    --chart-principal: #6366f1;
    --chart-interest: #f59e0b;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 50%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05) inset;
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        linear-gradient(90deg, 
            rgba(99, 102, 241, 0.02) 0%, 
            rgba(139, 92, 246, 0.03) 50%, 
            rgba(99, 102, 241, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 -1px 0 rgba(99, 102, 241, 0.1) inset;
    border-bottom-color: rgba(99, 102, 241, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: relative;
}

.nav-logo {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    margin-right: var(--spacing-2xl);
}

.nav-logo .logo {
    height: 75px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    border-radius: var(--radius-md);
}

.nav-logo .logo:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 10;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.025em;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    text-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.hamburger:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(99, 102, 241, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hamburger span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover span::before {
    opacity: 1;
}

/* Nav CTA Button Enhancements */
.nav-cta {
    position: relative;
    z-index: 10;
}

.nav-cta .btn-primary {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.2);
    white-space: nowrap;
    min-width: auto;
    position: relative;
    overflow: hidden;
}

.nav-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.nav-cta .btn-primary:hover::before {
    left: 100%;
}

.nav-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    background: 
        url('bg.avif'),
        linear-gradient(135deg, #1e293b 0%, #6366f1 50%, #8b5cf6 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 140px 0 120px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), 
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
    animation: fadeFloat 8s ease-in-out infinite alternate;
}

/* Floating animation for subtle movement */
@keyframes fadeFloat {
    0% { 
        opacity: 0.3;
        transform: translate(0, 0);
    }
    50% {
        opacity: 0.6;
        transform: translate(10px, -5px);
    }
    100% { 
        opacity: 0.4;
        transform: translate(-5px, 5px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-4xl);
    align-items: center;
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
        background: linear-gradient(135deg, #fbbf24 0%, #ff4400 100%);
    /* background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.hero-description {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    font-feature-settings: "kern" 1, "liga" 1;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: perspective(1000px) rotateY(-5deg) translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.hero-card:hover::before {
    left: 100%;
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.hero-icon {
    font-size: var(--font-size-4xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    display: block;
}

.hero-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

/* Remove hero wave */
.hero-wave {
    display: none;
}

/* Add floating particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatParticle 15s linear infinite;
}

.particle:nth-child(2) { left: 10%; animation-delay: -2s; animation-duration: 12s; }
.particle:nth-child(3) { left: 20%; animation-delay: -4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 30%; animation-delay: -6s; animation-duration: 14s; }
.particle:nth-child(5) { left: 40%; animation-delay: -8s; animation-duration: 16s; }
.particle:nth-child(6) { left: 50%; animation-delay: -10s; animation-duration: 13s; }
.particle:nth-child(7) { left: 60%; animation-delay: -12s; animation-duration: 17s; }
.particle:nth-child(8) { left: 70%; animation-delay: -14s; animation-duration: 15s; }
.particle:nth-child(9) { left: 80%; animation-delay: -16s; animation-duration: 19s; }
.particle:nth-child(10) { left: 90%; animation-delay: -18s; animation-duration: 11s; }

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Services Section */
.services {
    padding: var(--spacing-4xl) 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: -200px;
    padding-top: calc(var(--spacing-4xl));
}

.services::after {
    content: '';
    position: absolute;
    top: -400px;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    pointer-events: none;
    z-index: -1;
}

.services::before {
    content: '';
    position: absolute;
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(99,102,241,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Staggered animation for service cards */
.service-card:nth-child(1) {
    animation: slideInUp 0.8s ease 0.1s both;
}

.service-card:nth-child(2) {
    animation: slideInUp 0.8s ease 0.3s both;
}

.service-card:nth-child(3) {
    animation: slideInUp 0.8s ease 0.5s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}


.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(255, 255, 255, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: var(--font-size-3xl);
    color: var(--white);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Education Loans - Gold/Orange Gradient */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    box-shadow: 
        0 15px 35px rgba(245, 158, 11, 0.4),
        0 5px 15px rgba(249, 115, 22, 0.3);
}

.service-card:nth-child(1) .service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #f59e0b, #f97316, #ea580c, #f59e0b);
    border-radius: var(--radius-2xl);
    z-index: -1;
    animation: iconRotate 4s linear infinite;
}

/* Visa Financing - Green/Emerald Gradient */
.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 
        0 15px 35px rgba(16, 185, 129, 0.4),
        0 5px 15px rgba(5, 150, 105, 0.3);
}

.service-card:nth-child(2) .service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #10b981, #059669, #047857, #10b981);
    border-radius: var(--radius-2xl);
    z-index: -1;
    animation: iconRotate 4s linear infinite reverse;
}

/* University Guidance - Purple/Blue Gradient */
.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    box-shadow: 
        0 15px 35px rgba(99, 102, 241, 0.4),
        0 5px 15px rgba(139, 92, 246, 0.3);
}

.service-card:nth-child(3) .service-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #6366f1, #8b5cf6, #a855f7, #6366f1);
    border-radius: var(--radius-2xl);
    z-index: -1;
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-icon:hover {
    transform: scale(1.1) translateY(-5px);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:nth-child(1) h3::after {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.service-card:nth-child(2) h3::after {
    background: linear-gradient(90deg, #10b981, #059669);
}

.service-card:nth-child(3) h3::after {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.service-card:hover h3::after {
    width: 60px;
}

.service-card p {
    font-size: var(--font-size-base);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: var(--spacing-xs) 0;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.service-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: var(--font-size-xs);
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:nth-child(1) .service-features li::before {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.service-card:nth-child(2) .service-features li::before {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.service-card:nth-child(3) .service-features li::before {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.service-features li:hover::before {
    transform: scale(1.2);
}

.service-features li:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--spacing-4xl) 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    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="dots2" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(16,185,129,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots2)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, transparent, rgba(16, 185, 129, 0.02), transparent, rgba(245, 158, 11, 0.02), transparent, rgba(99, 102, 241, 0.02), transparent);
    animation: slowRotate 80s linear infinite reverse;
    pointer-events: none;
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.content-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl) var(--spacing-xl);
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-3xl);
    flex-shrink: 0;
    margin-bottom: var(--spacing-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Quick Processing - Green Gradient */
.feature:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.feature:nth-child(1) .feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #10b981, #059669, #047857, #10b981);
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: iconRotate 4s linear infinite;
}

/* Best Interest Rates - Orange Gradient */
.feature:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}

.feature:nth-child(2) .feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #f59e0b, #f97316, #ea580c, #f59e0b);
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: iconRotate 4s linear infinite reverse;
}

/* 24/7 Support - Purple Gradient */
.feature:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.feature:nth-child(3) .feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #6366f1, #8b5cf6, #a855f7, #6366f1);
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: iconRotate 4s linear infinite;
}

/* Secure & Reliable - Teal Gradient */
.feature:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #134e4a 100%);
    box-shadow: 0 15px 35px rgba(13, 148, 136, 0.4);
}

.feature:nth-child(4) .feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(from 0deg, #0d9488, #0f766e, #134e4a, #0d9488);
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: iconRotate 4s linear infinite reverse;
}

.feature-icon:hover {
    transform: scale(1.1) translateY(-5px);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-icon::after {
    opacity: 1;
}

.feature-content h4 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
}

.feature-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature:nth-child(1) .feature-content h4::after {
    background: linear-gradient(90deg, #10b981, #059669);
}

.feature:nth-child(2) .feature-content h4::after {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.feature:nth-child(3) .feature-content h4::after {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.feature:nth-child(4) .feature-content h4::after {
    background: linear-gradient(90deg, #0d9488, #0f766e);
}

.feature:hover .feature-content h4::after {
    width: 50px;
}

.feature-content {
    text-align: center;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-size-base);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 90%;
    margin: 0 auto;
}

/* Staggered animations for features */
.feature:nth-child(1) {
    animation: slideInUp 0.8s ease 0.1s both;
}

.feature:nth-child(2) {
    animation: slideInUp 0.8s ease 0.3s both;
}

.feature:nth-child(3) {
    animation: slideInUp 0.8s ease 0.5s both;
}

.feature:nth-child(4) {
    animation: slideInUp 0.8s ease 0.7s both;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-4xl) 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    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="testimonialDots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(139,92,246,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialDots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
    animation: float 30s ease-in-out infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 270deg, transparent, rgba(139, 92, 246, 0.03), transparent, rgba(245, 158, 11, 0.02), transparent, rgba(16, 185, 129, 0.02), transparent);
    animation: slowRotate 90s linear infinite;
    pointer-events: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 10;
}

.testimonials .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #6366f1 0%, #f59e0b 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials .section-header p {
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Staggered animations for testimonial cards */
.testimonial-card:nth-child(1) {
    animation: slideInUp 0.8s ease 0.2s both;
}

.testimonial-card:nth-child(2) {
    animation: slideInUp 0.8s ease 0.4s both;
}

.testimonial-card:nth-child(3) {
    animation: slideInUp 0.8s ease 0.6s both;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl) var(--spacing-xl);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 80px;
    background: linear-gradient(135deg, #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: Georgia, serif;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-content {
    margin-bottom: var(--spacing-xl);
}

.stars {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    justify-content: center;
}

.stars i {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: var(--font-size-lg);
    transition: transform 0.2s ease;
}

.stars i:hover {
    transform: scale(1.2) rotate(15deg);
}

.testimonial-content p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-xl);
    position: relative;
    overflow: hidden;
}

/* Different gradient for each testimonial */
.testimonial-card:nth-child(1) .author-avatar {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.testimonial-card:nth-child(2) .author-avatar {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.testimonial-card:nth-child(3) .author-avatar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--radius-full);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.testimonial-card:nth-child(1) .author-avatar::before {
    background: conic-gradient(from 0deg, #8b5cf6, #a855f7, #8b5cf6);
    animation: iconRotate 3s linear infinite;
}

.testimonial-card:nth-child(2) .author-avatar::before {
    background: conic-gradient(from 0deg, #f59e0b, #f97316, #f59e0b);
    animation: iconRotate 3s linear infinite reverse;
}

.testimonial-card:nth-child(3) .author-avatar::before {
    background: conic-gradient(from 0deg, #10b981, #059669, #10b981);
    animation: iconRotate 3s linear infinite;
}

.author-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-family: 'Poppins', sans-serif;
}

.author-info span {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: var(--spacing-4xl) 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 50% 90%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    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="dots" width="12" height="12" patternUnits="userSpaceOnUse"><circle cx="6" cy="6" r="0.5" fill="rgba(245,158,11,0.12)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
    opacity: 0.8;
}

/* Floating Bubbles Animation */
.contact-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float 20s infinite linear;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(139, 92, 246, 0.6));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 
        0 0 20px rgba(245, 158, 11, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Individual bubble styles */
.bubble:nth-child(1) {
    left: 5%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bubble:nth-child(2) {
    left: 15%;
    width: 40px;
    height: 40px;
    animation-delay: -5s;
    animation-duration: 20s;
}

.bubble:nth-child(3) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: -10s;
    animation-duration: 30s;
}

.bubble:nth-child(4) {
    left: 35%;
    width: 30px;
    height: 30px;
    animation-delay: -15s;
    animation-duration: 18s;
}

.bubble:nth-child(5) {
    left: 45%;
    width: 70px;
    height: 70px;
    animation-delay: -20s;
    animation-duration: 28s;
}

.bubble:nth-child(6) {
    left: 55%;
    width: 50px;
    height: 50px;
    animation-delay: -25s;
    animation-duration: 22s;
}

.bubble:nth-child(7) {
    left: 65%;
    width: 35px;
    height: 35px;
    animation-delay: -30s;
    animation-duration: 24s;
}

.bubble:nth-child(8) {
    left: 75%;
    width: 65px;
    height: 65px;
    animation-delay: -35s;
    animation-duration: 26s;
}

.bubble:nth-child(9) {
    left: 85%;
    width: 45px;
    height: 45px;
    animation-delay: -40s;
    animation-duration: 19s;
}

.bubble:nth-child(10) {
    left: 10%;
    width: 55px;
    height: 55px;
    animation-delay: -45s;
    animation-duration: 23s;
}

.bubble:nth-child(11) {
    left: 90%;
    width: 25px;
    height: 25px;
    animation-delay: -50s;
    animation-duration: 21s;
}

.bubble:nth-child(12) {
    left: 70%;
    width: 75px;
    height: 75px;
    animation-delay: -55s;
    animation-duration: 27s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
    85% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.contact .section-header {
    position: relative;
    z-index: 10;
}

.contact .section-header h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
    padding: var(--spacing-4xl) 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.about-text {
    padding-right: var(--spacing-lg);
}

.about-description p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-family: 'Inter', sans-serif;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.about-stat {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.about-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat span {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.about-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
        height: 300px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .about-stat h3 {
        font-size: 1.5rem;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: start;
    position: relative;
    z-index: 10;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-lg);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    max-width: 95%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item i {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.contact-item div {
    position: relative;
    z-index: 2;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Contact Features */
.contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.contact-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.contact-feature i {
    font-size: 1rem;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: var(--radius-sm);
}

.contact-feature span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

/* Contact CTA */
.contact-cta {
    margin-top: auto;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.contact-cta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
    font-family: 'Poppins', sans-serif;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.contact-cta .btn-secondary {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.contact-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--white);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo img {
    height: 60px;
    margin-bottom: var(--spacing-lg);
}

.footer-section {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section:nth-child(1)::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.footer-section:nth-child(2)::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.footer-section:nth-child(3)::before {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.footer-section:nth-child(4)::before {
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.footer-section:hover::before {
    opacity: 1;
    width: 80px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    color: white;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
}

.footer-section ul li a:hover {
    color: #f59e0b;
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-6xl: 2.5rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-2xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--spacing-lg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .contact-info,
    .contact-form {
        min-height: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-description {
        font-size: var(--font-size-lg);
    }
    
    .section-header h2 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll.delay-1 {
    animation-delay: 0.2s;
}

.animate-on-scroll.delay-2 {
    animation-delay: 0.4s;
}

.animate-on-scroll.delay-3 {
    animation-delay: 0.6s;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Print Styles */
@media print {
    .navbar, .footer {
        display: none;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .btn-primary, .btn-secondary {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
}