@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #8B5CF6;
    --secondary: #3B82F6;
    --accent: #60A5FA;
    --bg-light: #FFFFFF;
    --bg-subtle: #F8FAFC;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 15px 45px -10px rgba(139, 92, 246, 0.15), 0 0 20px rgba(96, 165, 250, 0.1);
    --shadow-hover: 0 25px 60px -10px rgba(139, 92, 246, 0.35), 0 0 45px rgba(59, 130, 246, 0.4);
    --radius-lg: 16px;
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; color: var(--text-main); background-color: var(--bg-subtle); line-height: 1.6; overflow-x: hidden; background-image: radial-gradient(circle at 15% 15%, rgba(139, 92, 246, 0.15) 0%, transparent 40%), radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.15) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 50%); background-attachment: fixed; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.text-gradient { background: linear-gradient(270deg, #00F0FF, #7000FF, #FF007F, #00F0FF); background-size: 300% 300%; animation: gradientFlow 6s ease infinite; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
@keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.glass { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); border: 1px solid rgba(255, 255, 255, 1); border-radius: var(--radius-lg); box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.glass::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent); transform: skewX(-20deg); transition: 0.5s; }
.glass:hover::before { left: 150%; }
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-hover); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.875rem 2rem; border-radius: 999px; font-weight: 700; cursor: pointer; transition: var(--transition); border: none; position: relative; overflow: hidden; z-index: 1; font-family: 'Outfit', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.btn::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.1); opacity: 0; transition: var(--transition); z-index: -1; }
.btn:hover::before { opacity: 1; }
.btn:hover { transform: scale(1.05); }

.btn-primary { background: linear-gradient(135deg, #00F0FF, #7000FF, #FF007F); color: white; box-shadow: inset 0 2px 0px rgba(255, 255, 255, 0.3), 0 12px 30px -5px rgba(112, 0, 255, 0.6); border: 1px solid rgba(255,255,255,0.2); }
.btn-primary:hover { box-shadow: inset 0 2px 0px rgba(255, 255, 255, 0.5), 0 20px 40px -5px rgba(0, 240, 255, 0.8); transform: translateY(-3px) scale(1.03); border: 1px solid rgba(255, 255, 255, 0.9); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: inset 0 2px 0px rgba(255, 255, 255, 0.3), 0 12px 30px -5px rgba(37, 211, 102, 0.5); border: 1px solid rgba(255,255,255,0.2); }
.btn-whatsapp:hover { box-shadow: inset 0 2px 0px rgba(255, 255, 255, 0.5), 0 20px 40px -5px rgba(37, 211, 102, 0.8); transform: translateY(-3px) scale(1.03); border: 1px solid rgba(255, 255, 255, 0.9); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; transition: var(--transition); background: transparent; }
.navbar.scrolled { background: rgba(255,255,255,0.9); box-shadow: 0 4px 20px rgba(0,0,0,0.05); backdrop-filter: blur(16px); box-shadow: 0 4px 30px rgba(0,0,0,0.05); padding: 0.75rem 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-center { display: flex; gap: 2.5rem; align-items: center; }
.nav-right { display: flex; gap: 1rem; align-items: center; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; color: var(--text-muted); transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.mobile-menu-btn { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--text-main); }

@keyframes float { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-20px) rotate(2deg); } 100% { transform: translateY(0px) rotate(0deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 80px; background-color: var(--bg-light); }
.hero-blobs { position: absolute; width: 100%; height: 100%; top: 0; left: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 999px; filter: blur(80px); opacity: 0.4; animation: float 10s infinite ease-in-out; }
.blob-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; animation-delay: 2s; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-size: 4.5rem; margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 90%; }

section { padding: 4rem 0; position: relative; z-index: 1; }
.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { font-size: 3rem; }
.section-title p { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.feature-card { padding: 3rem 2.5rem; text-align: left; position: relative; border-radius: 20px; background: white; border: none; transition: var(--transition); overflow: hidden; box-shadow: 0 20px 40px -5px rgba(0,0,0,0.05); }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gradient); opacity: 0; transition: var(--transition); }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(79, 70, 229, 0.08); }
.feature-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: inline-block; color: #4F46E5; filter: drop-shadow(0 8px 16px rgba(79, 70, 229, 0.3)); }

.profile-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.9); position: relative; padding: 0; box-shadow: var(--shadow-soft); transition: var(--transition); }
.profile-card:hover { box-shadow: 0 25px 50px rgba(79, 70, 229, 0.1); transform: translateY(-5px); }
.profile-cover { height: 120px; background: var(--gradient); width: 100%; }
.profile-info { padding: 0 2rem 2.5rem; text-align: center; }
.profile-info img { width: 120px; height: 120px; border-radius: 999px; border: 4px solid white; margin-top: -60px; margin-bottom: 1rem; box-shadow: var(--shadow-soft); object-fit: cover; }
.profile-info h3 { margin-bottom: 0.25rem; }
.profile-info .designation { font-weight: 500; color: var(--primary); margin-bottom: 1rem; font-size: 0.95rem; }

.bio-hero { padding: 120px 0 3rem; background: var(--bg-light); text-align: center; position: relative; overflow: hidden;}
.bio-hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 250px; background: var(--gradient); opacity: 0.1; }
.bio-stats { display: flex; justify-content: center; gap: 2rem; margin: 3rem 0; flex-wrap: wrap; }
.stat-card { background: linear-gradient(145deg, #ffffff, rgba(255,255,255,0.6)); backdrop-filter: blur(10px); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.03); min-width: 200px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.stat-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, transparent 60%); opacity: 0; transition: var(--transition); }
.stat-card:hover::after { opacity: 1; }
.stat-card:hover { transform: translateY(-5px); }
.stat-card h4 { font-size: 2.5rem; color: var(--primary); margin: 0; }
.stat-card p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 0.5rem; }

.footer { background: #0F172A; color: white; padding: 6rem 0 2rem; position: relative; overflow: hidden; }
.footer-blob { position: absolute; width: 600px; height: 600px; background: var(--primary); filter: blur(120px); opacity: 0.15; top: -300px; right: -300px; border-radius: 999px; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; position: relative; z-index: 1; margin-bottom: 2rem; }
.footer-title { font-size: 1.25rem; margin-bottom: 1.5rem; color: white; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #94A3B8; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 5px; }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input { padding: 0.75rem 1rem; border-radius: 999px; border: 1px solid #334155; background: rgba(255,255,255,0.05); color: white; outline: none; width: 100%; }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; color: #94A3B8; position: relative; z-index: 1; }

.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 999px; background: var(--bg-subtle); color: var(--primary); font-size: 1.25rem; transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content p { margin: 0 auto 2.5rem; }
    .nav-center, .nav-right .btn-primary { display: none; }
    .mobile-menu-btn { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #EEF2FF, #F3E8FF);
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3), inset 0 2px 4px rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px -5px rgba(99, 102, 241, 0.4), inset 0 2px 4px rgba(255,255,255,1);
}
.feature-icon-wrapper i {
    font-size: 2rem;
    background: linear-gradient(135deg, #4F46E5, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(79, 70, 229, 0.3));
}
