        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            background: linear-gradient(135deg, #0f1419, #1a2332, #2d4059);
            color: #ffffff;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .star {
            position: absolute;
            background: #4fc3f7;
            border-radius: 50%;
            animation: twinkle 2s infinite;
        }

        .star:nth-child(odd) {
            animation-delay: 1s;
            background: #81c784;
        }

        .star:nth-child(3n) {
            background: #ffb74d;
            animation-duration: 3s;
        }

        @keyframes twinkle {

            0%,
            100% {
                opacity: 0;
                transform: scale(0.5);
            }

            50% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .shooting-star {
            position: fixed;
            top: -20px;
            background: linear-gradient(90deg, white, #4fc3f7, transparent);
            transform: rotate(-30deg);
            animation: shoot linear forwards;
            z-index: 2;
            opacity: 0.8;
            pointer-events: none;
        }

        @keyframes shoot {
            0% {
                transform: translate(0, 0) rotate(-30deg);
                opacity: 1;
            }

            100% {
                transform: translate(-50vw, 150vh) rotate(-30deg);
                opacity: 0;
            }
        }





        .main-container {
            position: relative;
            z-index: 10;
        }

        .hero-section {
            padding: 80px 0;
            text-align: center;
            animation: fadeInDown 1s ease-out;
        }

        .profile-pic {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(45deg, #2196f3, #21cbf3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 20px 40px rgba(33, 150, 243, 0.3);
            animation: float 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .profile-pic i {
            font-size: 80px;
            color: white;
            animation: sparkle 2s ease-in-out infinite alternate;
        }

        .profile-pic::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shine 3s linear infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes sparkle {
            0% {
                transform: scale(1) rotate(0deg);
            }

            100% {
                transform: scale(1.1) rotate(10deg);
            }
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .hero-name {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #2196f3, #21cbf3, #81c784);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            text-shadow: 0 0 30px rgba(33, 150, 243, 0.5);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #81c784;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out;
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
            border-color: rgba(33, 150, 243, 0.3);
        }

        .info-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .info-card:hover::before {
            left: 100%;
        }

        .card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            animation: bounce 2s infinite;
            color: #4fc3f7;
        }

        .info-card h3 {
            color: #4fc3f7;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .info-card p {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        .hobbies-section {
            padding: 80px 0;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #4fc3f7;
            margin-bottom: 50px;
            position: relative;
            font-weight: 600;
        }

        .section-title::after {
            content: "";
            position: absolute;
            right: 2px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            animation: rotate 4s linear infinite;
        }

        .section-title.hobbies::after {
            content: "🧿";
        }

        .hobby-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(33, 150, 243, 0.2);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
            height: 100%;
        }

        .hobby-item:hover {
            transform: scale(1.05);
            background: rgba(33, 150, 243, 0.1);
            box-shadow: 0 10px 25px rgba(33, 150, 243, 0.2);
        }

        .hobby-item::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(33, 150, 243, 0.1), transparent);
            animation: rotate 3s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hobby-item:hover::before {
            opacity: 1;
        }

        .hobby-icon {
            font-size: 2.5rem;
            color: #4fc3f7;
            margin-bottom: 15px;
            display: block;
        }

        .hobby-title {
            font-size: 1.2rem;
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .hobby-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }

        .contact-section {
            text-align: center;
            padding: 80px 0;
            animation: fadeIn 1s ease-out 0.8s both;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 25px;
            background: linear-gradient(45deg, #2196f3, #21cbf3);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            font-size: 1rem;
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(33, 150, 243, 0.4);
            color: white;
            text-decoration: none;
        }

        .social-link::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover::before {
            left: 100%;
        }

        .social-link i {
            font-size: 1.2rem;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .container-fluid {
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (max-width: 768px) {
            .hero-name {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-title::after {
                right: -30px;
                font-size: 1.5rem;
            }

            .social-links {
                display: grid;
        grid-template-columns: repeat(2, 1fr);
                flex-direction: column;
                align-items: center;
            }

            .social-link {
                
                width: 200px;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .hero-name {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .profile-pic {
                width: 150px;
                height: 150px;
            }

            .profile-pic i {
                font-size: 60px;
            }
        }