        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            text-decoration: none;
            scroll-behavior: smooth;
        }

        body {
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* --- Custom Animated Scrollbar --- */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #080808; }
        ::-webkit-scrollbar-thumb { 
            background: linear-gradient(aqua, transparent); 
            border-radius: 10px; 
        }

        /* --- Glassy Navbar --- */
        nav {
            width: 100%;
            height: 80px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            position: fixed;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .logo { font-size: 1.6rem; font-weight: 700; cursor: pointer; }
        .logo span { color: aqua; text-shadow: 0 0 15px aqua; }

        .nav-links { display: flex; list-style: none; }
        .nav-links li a {
            color: white;
            margin: 0 15px;
            font-size: 1rem;
            transition: 0.3s ease;
            font-weight: 500;
            position: relative;
        }
        .nav-links li a:hover { color: aqua; text-shadow: 0 0 10px aqua; }
        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 0%; height: 2px;
            background: aqua;
            bottom: -5px; left: 0;
            transition: 0.4s;
        }
        .nav-links li a:hover::after { width: 100%; }

        .hamburg { display: none; font-size: 1.8rem; color: aqua; cursor: pointer; }

        /* --- Global Layout --- */
        section {
            padding: 120px 10% 80px 10%;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            gap: 60px;
        }

        /* --- Profile Image Animations & Glow --- */
        .img-box {
            position: relative;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .img-box img {
            width: 400px;
            height: 500px;
            object-fit: cover;
            border-radius: 50% 50% 15% 15%;
            z-index: 5;
            position: relative;
            animation: float 4s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.2));
            transition: 0.5s ease; 
            cursor: pointer;
        }

        .img-box img:hover {
            box-shadow: 0 0 60px aqua;
            filter: brightness(1.1);
            transform: scale(1.02);
        }

        .img-box::before {
            content: '';
            position: absolute;
            width: 380px;
            height: 380px;
            background: aqua;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            animation: pulse 3s infinite alternate;
            z-index: 1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.2); opacity: 0.5; }
        }

        /* --- Home Content --- */
        .content { flex: 1.2; }
        .content h3 { font-size: 1.6rem; color: #ddd; }
        .content h1 { font-size: 4rem; line-height: 1.1; margin: 10px 0; }
        .content h1 span { color: aqua; text-shadow: 0 0 20px rgba(0, 255, 255, 0.4); }

        .typewriter-box { font-size: 2rem; margin-bottom: 20px; font-weight: 600; }
        .typewriter { color: aqua; border-right: 3px solid aqua; animation: blink 0.7s infinite; }
        @keyframes blink { 50% { border-color: transparent; } }

        .content p { color: #aaa; line-height: 1.8; margin-bottom: 30px; font-size: 1.05rem; }

        .social-links a i {
            font-size: 1.4rem;
            color: #fff;
            margin-right: 20px;
            border: 2px solid aqua;
            width: 50px; height: 50px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .social-links a i:hover { 
            background: aqua; 
            color: #000; 
            box-shadow: 0 0 25px aqua; 
            transform: scale(1.2) rotate(360deg); 
        }

        /* --- Styled Buttons --- */
        .btn {
            display: inline-block;
            background: transparent;
            color: aqua;
            padding: 14px 40px;
            border-radius: 8px;
            font-weight: 700;
            transition: 0.4s;
            border: 2px solid aqua;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            margin-top: 30px;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: aqua;
            transition: 0.4s;
            z-index: -1;
        }
        .btn:hover::before { left: 0; }
        .btn:hover { color: #000; box-shadow: 0 0 30px aqua; }

        .about-img img {
            width: 380px;
            height: 380px;
            border-radius: 20px;
            border-left: 8px solid aqua;
            border-bottom: 8px solid aqua;
            transition: 0.5s ease;
            cursor: pointer;
        }
        .about-img img:hover { 
            transform: scale(1.03) rotate(-2deg); 
            box-shadow: 0 0 50px aqua; 
        }

        .title { font-size: 3rem; margin-bottom: 50px; text-align: center; width: 100%; }
        .title span { color: aqua; position: relative; }
        .title span::after {
            content: '';
            position: absolute;
            width: 50%; height: 4px;
            background: aqua;
            bottom: -10px; left: 25%;
            border-radius: 2px;
        }

        /* --- Card Grids --- */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            width: 100%;
        }
        .card {
            background: #0f0f0f;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #222;
            transition: 0.4s;
            overflow: hidden;
            object-fit: cover;
        }
        .card:hover { 
            border-color: aqua; 
            transform: translateY(-15px); 
            background: #050505;
            box-shadow: 0 10px 40px rgba(0, 255, 255, 0.1);
        }
        .card i { font-size: 3.5rem; color: aqua; margin-bottom: 20px; }

        /* --- Education Image Styling --- */
        .edu-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 2px solid rgba(0, 255, 255, 0.1);
            transition: 0.5s;
        }
        .card:hover .edu-img {
            border-color: aqua;
            box-shadow: 0 0 15px aqua;
        }

        /* --- Mobile Styles --- */
        .dropdown {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateY(-100%);
            transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 2000;
        }
        .dropdown.active { transform: translateY(0); }
        
        .dropdown a { 
            color: white; 
            font-size: 2rem; 
            margin: 10px 0; 
            padding: 10px 30px; 
            border-radius: 12px;
            transition: 0.3s ease;
        }

        .dropdown a:hover {
            color: aqua;
            background: rgba(0, 255, 255, 0.15); 
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
            text-shadow: 0 0 10px aqua;
            transform: scale(1.1);
        }

        .dropdown .cancel { position: absolute; top: 30px; right: 40px; font-size: 3rem; color: aqua; cursor: pointer; }

        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .hamburg { display: block; }
            .container { flex-direction: column; text-align: center; }
            .img-box img { width: 300px; height: 380px; }
            .img-box::before { width: 280px; height: 280px; }
            .content h1 { font-size: 3rem; }
        }