:root {
    --bg-dark: #07070a;
    --accent: #00d2ff;
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-dark); color: var(--text-main); font-family: 'Outfit', sans-serif; overflow-x: hidden; line-height: 1.6; }

/* Interactive Cursor Blob */
#blob {
    height: 350px; aspect-ratio: 1; position: fixed; left: 50%; top: 50%;
    translate: -50% -50%; border-radius: 50%; 
    background: linear-gradient(to right, #00d2ff, #7000ff);
    filter: blur(100px); z-index: -2; opacity: 0.45;
}
#blur-layer { height: 100%; width: 100%; position: fixed; z-index: -1; backdrop-filter: blur(130px); }

/* Navigation */
.navbar {
    height: 90px; width: 100%; position: fixed; top: 0; z-index: 1000;
    background: rgba(7, 7, 10, 0.7); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); display: flex; align-items: center;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: auto; }
.logo { font-size: 1.6rem; font-weight: 800; text-decoration: none; color: #fff; }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-size: 14px; text-transform: uppercase; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.cta-btn { background: var(--accent); color: #000; padding: 12px 28px; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 0 20px var(--accent-glow); transition: 0.3s; }
.cta-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px var(--accent); }

/* Hero Section */
.hero { height: 100vh; display: flex; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 800; margin: 25px 0; line-height: 1.1; }
.gradient-text { background: linear-gradient(to right, #00d2ff, #ff00ea); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.badge { background: var(--glass); padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--accent); }
.hero-actions { display: flex; gap: 20px; }
.btn-filled { background: #fff; color: #000; padding: 15px 35px; border-radius: 12px; text-decoration: none; font-weight: 700; }
.btn-outline { border: 1px solid var(--border); color: #fff; padding: 15px 35px; border-radius: 12px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-outline:hover { background: var(--glass); border-color: var(--accent); }

/* Grid Styles */
.section { padding: 120px 0; }
.container { width: 90%; max-width: 1200px; margin: auto; }
.title { font-size: 2.5rem; margin-bottom: 60px; font-weight: 700; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.glass { background: var(--glass); padding: 45px; border-radius: 30px; border: 1px solid var(--border); transition: 0.4s; }
.glass:hover { transform: translateY(-12px); border-color: var(--accent); }
.highlight { border-top: 4px solid var(--accent); }

/* Achievements & Leadership */
.awards-flex { display: flex; flex-wrap: wrap; gap: 15px; }
.award-pill { background: var(--glass); padding: 18px 30px; border-radius: 100px; border: 1px solid var(--border); display: flex; align-items: center; gap: 15px; }
.gold-glow { border-color: #ffd700; background: rgba(255, 215, 0, 0.05); }
.award-pill i { color: var(--accent); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.lead-card { display: flex; align-items: center; gap: 25px; }

/* Footer */
.footer { background: #040406; padding: 100px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-col h4 { color: var(--accent); margin-bottom: 25px; text-transform: uppercase; font-size: 13px; letter-spacing: 2px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-dim); text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 40px; display: flex; justify-content: space-between; color: var(--text-dim); }
.socials a { color: #fff; font-size: 1.4rem; margin-left: 20px; transition: 0.3s; }

@media (max-width: 992px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .lead-grid { grid-template-columns: 1fr; }
}