 body,
        html {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow-x: hidden;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        /* Canvas as the animated background */
        #bgCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #261345, #2d1950);
        }

        /* Responsive Navbar */
        .navbar {
            font-family: 'Poppins', sans-serif;
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            padding: 1.3rem 0;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.8);
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .nav-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(92.7deg, rgb(51, 218, 252) 0%, rgb(140, 32, 150) 80%, rgb(230, 18, 249) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: logoFloat 2s ease-in-out infinite alternate;
        }

        .nav-logo:hover {
            transform: scale(1.05);
            filter: brightness(1.2);
        }

        @keyframes logoFloat {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-3px); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 4rem;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .nav-item {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .nav-item a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            display: block;
            padding: 0.5rem 1rem;
        }

        .nav-item a:hover {
            color: #00d4ff;
            transform: translateY(-5px);
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: linear-gradient(90deg, #00d4ff, #ff6b6b);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-item a:hover::after {
            width: 100%;
        }

        /* Enhanced Hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 101;
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(90deg, #00d4ff, #ff6b6b);
            margin: 3px 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 2px;
            transform-origin: center;
        }

        /* Hamburger animation states */
        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
            background: linear-gradient(90deg, #ff6b6b, #00d4ff);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
            background: linear-gradient(90deg, #ff6b6b, #00d4ff);
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 2rem 2rem;
            box-sizing: border-box;
        }

        .content {
            display: flex;
            justify-content: space-around;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            gap: 3rem;
        }

        /* Content animations */
        .content > div:first-child {
            animation: slideInLeft 1s ease-out;
            flex: 1;
        }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .content h1 span {
            background: linear-gradient(92.7deg, rgb(51, 218, 252) 0%, rgb(140, 32, 150) 80%, rgb(230, 18, 249) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textShimmer 2s ease-in-out infinite alternate;
        }

        .content p {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            max-width: 600px;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            margin-top: 1rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* Profile image with enhanced animations */
        .profile-container {
            position: relative;
            display: flex;
            justify-content: center;
            animation: slideInRight 1s ease-out;
            flex: 1;
        }

        .content img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            padding: 5px;
            background: linear-gradient(92.7deg, rgb(24, 82, 188) 0%, rgb(140, 32, 150) 80%, rgb(140, 32, 150) 100%);
            object-fit: cover;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .content img:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Enhanced animated circles around profile image */
        .orbit-circle {
            position: absolute;
            border: 2px solid;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            opacity: 0;
            animation: circleAppear 1.5s ease-out forwards;
        }

        .orbit-circle:nth-child(1) {
            width: 320px;
            height: 320px;
            border-color: rgba(24, 82, 188, 0.4);
            animation: circleAppear 1.5s ease-out 0.3s forwards, rotate 8s linear infinite 1.8s;
        }

        .orbit-circle:nth-child(2) {
            width: 360px;
            height: 360px;
            border-color: rgba(140, 32, 150, 0.5);
            animation: circleAppear 1.5s ease-out 0.6s forwards, rotate 12s linear infinite reverse 2.1s;
        }

        .orbit-circle:nth-child(3) {
            width: 400px;
            height: 400px;
            border-color: rgba(0, 212, 255, 0.3);
            animation: circleAppear 1.5s ease-out 0.9s forwards, rotate 15s linear infinite 2.4s;
        }

        /* Dynamic text animation */
        .dynamic-text {
            font-family: 'Times New Roman', Times, serif;
            display: flex;
            height: 80px;
            position: relative;
            margin: 1rem 0;
            justify-content: center;
            align-items: center;
            font-size: 2.5rem;
            font-weight: bold;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .dynamic-word {
            white-space: nowrap;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
            min-height: 1.2em;
            display: flex;
            align-items: center;
        }

        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 1.2em;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            animation: blink 1s infinite, gradientShift 3s ease-in-out infinite;
            margin-left: 5px;
            vertical-align: middle;
        }

        .hom-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            animation: fadeInUp 1s ease-out 0.8s both;
            flex-wrap: wrap;
        }

        .hom-buttons button {
            background: #2d1950;
            border: 2px solid #00d4ff;
            padding: 12px 24px;
            border-radius: 8px;
            color: rgb(51, 218, 252);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }

        .hom-buttons button:hover {
            background: linear-gradient(92.7deg, rgb(51, 218, 252) 0%, rgb(140, 32, 150) 80%, rgb(230, 18, 249));
            color: white;
            border: none;
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .hom-buttons button:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(51, 218, 252, 0.2);
        }

        /* Social Links with enhanced animations */
        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            animation: fadeInUp 1s ease-out 0.8s both;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: rgba(45, 25, 80, 0.9);
            color: #ffffff !important;
            border-radius: 50%;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: socialSlideIn 0.6s ease-out forwards;
        }

        .social-link:nth-child(1) { animation-delay: 0.8s; }
        .social-link:nth-child(2) { animation-delay: 0.9s; }
        .social-link:nth-child(3) { animation-delay: 1.0s; }

        .social-link i {
            color: #ffffff !important;
            font-size: 1.3rem;
            z-index: 2;
            position: relative;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            transform: scale(1.15) translateY(-5px) rotate(5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .social-link:hover i {
            color: #ffffff !important;
            transform: scale(1.1);
        }

        /* Individual social link colors on hover */
        .social-link:nth-child(1):hover {
            background: linear-gradient(45deg, #0077b5, #005582);
        }

        .social-link:nth-child(2):hover {
            background: linear-gradient(45deg, #333, #24292e);
        }

        .social-link:nth-child(3):hover {
            background: linear-gradient(45deg, #0ed33f, #0bbc29);
        }

        /* About Section */
        .about-section {
            display: flex;   
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .about-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .about-grid {
            display: flex;
            align-items: center;
            gap: 4rem;
            width: 100%;
        }

        .about-img {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .about-img img {
            width: 350px;
            height: 400px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            filter: brightness(0.9);
        }

        .about-img img:hover {
            transform: scale(1.05);
            filter: brightness(1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .about-content {
            flex: 1;
            text-align: left;
        }

        .about-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #e0e0e0;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        /* Projects Section */
        .projects-section {
            padding: 5rem 2rem;
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .projects-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .projects-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
        }

        .project-card {
            background: rgba(45, 25, 80, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
            flex: 1;
            min-width: 300px;
            max-width: 350px;
        }

        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.2s; }
        .project-card:nth-child(3) { animation-delay: 0.3s; }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .project-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #00d4ff;
        }

        .project-card p {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            justify-content: center;
        }

        .tech-tag {
            background: rgba(0, 212, 255, 0.2);
            color: #00d4ff;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .project-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .project-btn {
            padding: 0.8rem 1.5rem;
            border: 2px solid #00d4ff;
            background: transparent;
            color: #00d4ff;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .project-btn:hover {
            background: #00d4ff;
            color: #2d1950;
            transform: translateY(-2px);
        }

        /* Skills Section */
        .skills-section {
            padding: 5rem 2rem;
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .skills-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .skills-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
        }

        .skill-category {
            background: rgba(45, 25, 80, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
        }

        .skill-category:nth-child(1) { animation-delay: 0.1s; }
        .skill-category:nth-child(2) { animation-delay: 0.2s; }
        .skill-category:nth-child(3) { animation-delay: 0.3s; }

        .skill-category:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .skill-category h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #ff6b6b;
        }

        .skill-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .skill-name {
            font-size: 1.1rem;
            color: #e0e0e0;
        }

        .skill-bar {
            width: 60%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
            border-radius: 4px;
            transition: width 2s ease-in-out;
        }

        /* Contact Section */
        .contact-section {
            padding: 5rem 2rem;
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .contact-section.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            gap: 4rem;
            align-items: flex-start;
            flex-wrap: wrap;
        }

        .contact-info {
            text-align: left;
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #00d4ff;
        }

        .contact-info p {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 1rem;
            background: rgba(45, 25, 80, 0.5);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(45, 25, 80, 0.8);
            transform: translateX(10px);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: #00d4ff;
            margin-right: 1rem;
            width: 30px;
        }

        .contact-form {
            background: rgba(45, 25, 80, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #e0e0e0;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00d4ff;
            background: rgba(255, 255, 255, 0.15);
        }

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

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(92.7deg, rgb(51, 218, 252) 0%, rgb(140, 32, 150) 80%, rgb(230, 18, 249) 100%);
            border: none;
            border-radius: 8px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(51, 218, 252, 0.3);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer p {
            color: #e0e0e0;
            margin: 0;
        }

        /* Keyframe animations */
        @keyframes slideInLeft {
            0% { opacity: 0; transform: translateX(-100px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            0% { opacity: 0; transform: translateX(100px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes circleAppear {
            0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes textShimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes socialSlideIn {
            0% { opacity: 0; transform: translateY(20px) scale(0.8); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Mobile Responsive */
        @media screen and (max-width: 1119px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                width: 100%;
                text-align: center;
                transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                padding: 2rem 0;
                gap: 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu.active .nav-item {
                animation: slideInFromTop 0.6s ease-out forwards;
            }

            .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
            .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
            .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
            .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
            .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.5s; }

            .nav-item {
                margin: 1rem 0;
                opacity: 0;
                transform: translateY(-20px);
            }

            .nav-container {
                padding: 0 1rem;
            }

            .content {
                flex-direction: column-reverse;
                gap: 2rem;
            }

            .hero {
                padding: 130px 1rem 0;
            }

            .content h1 {
                font-size: 2.2rem;
            }

            .content p {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .content img {
                width: 280px;
                height: 280px;
            }

            .orbit-circle:nth-child(1) { width: 300px; height: 300px; }
            .orbit-circle:nth-child(2) { width: 340px; height: 340px; }
            .orbit-circle:nth-child(3) { width: 380px; height: 380px; }

            .social-links {
                gap: 15px;
                margin-top: 1.5rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .about-grid {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .about-img img {
                width: 300px;
                height: 350px;
            }

            .about-content h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .projects-grid {
                flex-direction: column;
                align-items: center;
            }

            .project-card {
                max-width: 100%;
                min-width: auto;
            }

            .skills-grid {
                flex-direction: column;
                align-items: center;
            }

            .skill-category {
                max-width: 100%;
                min-width: auto;
            }

            .contact-content {
                flex-direction: column;
                gap: 2rem;
            }

            .contact-info {
                text-align: center;
                min-width: auto;
            }

            .contact-form {
                min-width: auto;
            }
        }

        @keyframes slideInFromTop {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @media screen and (max-width: 768px) {
            .content h1 {
                font-size: 2rem;
            }

            .nav-logo {
                font-size: 1.3rem;
            }

            .dynamic-word {
                font-size: 2rem;
            }

            .dynamic-text {
                font-size: 2rem;
                height: 70px;
            }

            .about-content h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .hom-buttons {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media screen and (max-width: 480px) {
            .content h1 {
                font-size: 1.8rem;
            }

            .nav-logo {
                font-size: 1.2rem;
            }

            .dynamic-word {
                font-size: 1.5rem;
            }

            .dynamic-text {
                font-size: 1.5rem;
                height: 60px;
            }

            .about-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-section,
            .project-card,
            .skill-category,
            .contact-form {
                padding: 1.5rem;
            }

            .projects-section,
            .skills-section,
            .contact-section {
                padding: 3rem 1rem;
            }

            .content img {
                width: 250px;
                height: 250px;
            }

            .orbit-circle:nth-child(1) { width: 270px; height: 270px; }
            .orbit-circle:nth-child(2) { width: 310px; height: 310px; }
            .orbit-circle:nth-child(3) { width: 350px; height: 350px; }
        }