 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Welcome Modal */
        .welcome-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .welcome-modal.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .welcome-content {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 1px solid rgba(138, 43, 226, 0.3);
            box-shadow: 0 20px 50px rgba(138, 43, 226, 0.3);
            position: relative;
            overflow: hidden;
        }

        .welcome-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
            z-index: -1;
        }

        .welcome-title {
            font-family: 'Roboto', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .welcome-message {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            color: #e0e0e0;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .welcome-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .welcome-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .enter-btn {
            background: linear-gradient(45deg, #8a2be2, #da70d6);
            color: white;
        }

        .enter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
        }

        .exit-btn {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .exit-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 15px 0;
            z-index: 1000;
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(138, 43, 226, 0.3);
            box-shadow: 0 5px 25px rgba(138, 43, 226, 0.2);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Roboto', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 1;
            animation: gradientShift 4s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .logo::before {
            content: '';
            position: absolute;
            inset: -5px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b);
            border-radius: 10px;
            z-index: -1;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .logo:hover::before {
            opacity: 0.3;
            transform: scale(1.05);
            filter: blur(10px);
        }

        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
        }

        .logo-icon {
            font-size: 1.8rem;
            color: #8a2be2;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        .nav-link {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 0.5px;
            font-size: 1rem;
        }

        .nav-link:hover {
            color: #8a2be2;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, #8a2be2, #da70d6);
            transition: width 0.4s ease;
            border-radius: 2px;
            transform: scaleX(0);
        }

        .nav-link:hover::after {
            width: 100%;
            transform: scaleX(1);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger div {
            width: 28px;
            height: 4px;
            background: linear-gradient(45deg, #8a2be2, #da70d6);
            margin: 6px;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header/Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding: 80px 20px;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(123, 31, 162, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Roboto', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftName 6s ease infinite;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @keyframes gradientShiftName {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero .title {
            font-family: 'Roboto', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
            background: linear-gradient(45deg, #da70d6, #8a2be2, #ff6b6b, #da70d6);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftTitle 5s ease infinite;
        }

        @keyframes gradientShiftTitle {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero .tagline {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #e0e0e0;
            font-weight: 300;
            background: linear-gradient(45deg, #ff6b6b, #8a2be2, #da70d6, #ff6b6b);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftTagline 4s ease infinite;
        }

        @keyframes gradientShiftTagline {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .btn {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            color: white;
            text-decoration: none;
            border-radius: 60px;
            font-weight: 700;
            font-family: 'Roboto', sans-serif;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: gradientBtn 4s ease infinite;
        }

        @keyframes gradientBtn {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.6);
            background: linear-gradient(45deg, #da70d6, #ff6b6b, #8a2be2, #da70d6);
            background-size: 300% 300%;
        }

        .btn::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: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Section Styling */
        section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-family: 'Roboto', sans-serif;
            font-size: 3rem;
            margin-bottom: 80px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: gradientShiftSection 5s ease infinite;
        }

        @keyframes gradientShiftSection {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Glassmorphism Cards - Enhanced Hover Effects */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            transition: 0.5s;
        }

        .glass-card:hover::before {
            left: 100%;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(138, 43, 226, 0.3);
        }

        /* About Section */
        .about-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 2rem;
            margin-bottom: 25px;
            color: #8a2be2;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftAbout 4s ease infinite;
        }

        @keyframes gradientShiftAbout {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .about-content p {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            line-height: 2.2;
            color: #e0e0e0;
            font-weight: 300;
            letter-spacing: 0.5px;
            margin-bottom: 25px;
            text-align: justify;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .highlight-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .highlight-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            transition: 0.5s;
        }

        .highlight-item:hover::before {
            left: 100%;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
            background: rgba(138, 43, 226, 0.15);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
        }

        .highlight-item h4 {
            color: #8a2be2;
            margin-bottom: 12px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftHighlight 4s ease infinite;
        }

        @keyframes gradientShiftHighlight {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .highlight-item:hover h4 {
            transform: scale(1.05);
        }

        .highlight-item p {
            font-size: 0.95rem;
            margin: 0;
            color: #d0d0d0;
            transition: all 0.3s ease;
        }

        .highlight-item:hover p {
            color: #ffffff;
        }

        .highlight-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
            color: #8a2be2;
            transition: all 0.3s ease;
        }

        .highlight-item:hover .highlight-icon {
            color: #da70d6;
            transform: scale(1.2) rotate(10deg);
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skill-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 25px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            transition: 0.5s;
        }

        .skill-item:hover::before {
            left: 100%;
        }

        .skill-item:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(138, 43, 226, 0.15);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
        }

        .skill-icon {
            font-size: 2.8rem;
            margin-bottom: 15px;
            display: block;
            transition: all 0.4s ease;
        }

        .skill-item:hover .skill-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .skill-item h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
            transition: all 0.3s ease;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftSkill 4s ease infinite;
        }

        @keyframes gradientShiftSkill {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .skill-item:hover h3 {
            transform: scale(1.1);
        }

        /* Experience Section */
        .experience-grid {
            display: grid;
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .experience-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .experience-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            transition: 0.5s;
        }

        .experience-item:hover::before {
            left: 100%;
        }

        .experience-item:hover {
            transform: translateX(10px);
            background: rgba(138, 43, 226, 0.15);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
        }

        .experience-item h3 {
            color: #8a2be2;
            margin-bottom: 15px;
            font-family: 'Roboto', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            transition: all 0.3s ease;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShiftExp 4s ease infinite;
        }

        @keyframes gradientShiftExp {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .experience-item:hover h3 {
            transform: scale(1.05);
        }

        .experience-item p {
            color: #d0d0d0;
            font-size: 1.1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .experience-item:hover p {
            color: #ffffff;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-item:hover {
            transform: translateX(10px);
            background: rgba(138, 43, 226, 0.15);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: gradientIcon 4s ease infinite;
        }

        @keyframes gradientIcon {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(45deg, #da70d6, #ff6b6b, #8a2be2, #da70d6);
            background-size: 300% 300%;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8a2be2;
            background: rgba(138, 43, 226, 0.15);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
        }

        /* Footer */
        footer {
            background: rgba(26, 26, 46, 0.8);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        footer p {
            color: #b0b0b0;
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #8a2be2, #da70d6, #ff6b6b, #8a2be2);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFooter 5s ease infinite;
        }

        @keyframes gradientFooter {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(26, 26, 46, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.4s;
                padding: 40px 0;
                gap: 30px;
                backdrop-filter: blur(20px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: block;
            }

            .hamburger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active div:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero h1 {
                font-size: 3rem;
            }
            
            .hero .title {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .skills-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }
            
            .glass-card {
                padding: 30px;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero .title {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 15px 25px;
                font-size: 0.9rem;
            }
            
            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Scroll Animation Styles */
        .animate-left {
            opacity: 0;
            transform: translateX(-100px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-right {
            opacity: 0;
            transform: translateX(100px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-up {
            opacity: 0;
            transform: translateY(100px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-visible {
            opacity: 1 !important;
            transform: translateX(0) !important;
            transform: translateY(0) !important;
        }