 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #9d50bb;
            --secondary: #6a48d7;
            --accent: #ff8a00;
            --dark: #0f0c29;
            --light: #f5f5f7;
            --gray: #8a8a8a;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--light);
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 5%;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            z-index: 1001;
        }

        nav.scrolled .logo {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        nav.scrolled .nav-links a {
            color: var(--dark);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            transition: color 0.3s ease;
            z-index: 1001;
        }

        nav.scrolled .menu-toggle {
            color: var(--dark);
        }

        /* Fix for mobile menu toggle when menu is open */
        .nav-links.active + .menu-toggle {
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            background: linear-gradient(135deg, var(--dark), var(--secondary));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        .hero-text {
            flex: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            animation: fadeIn 1.5s ease-out;
        }

        .profile-container {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 50px rgba(157, 80, 187, 0.5);
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .profile-pic {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .name {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: transparent;
            background: linear-gradient(45deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #ddd;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #bbb;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Sections Common Styles */
        section {
            padding: 5rem 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark);
            position: relative;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.2s forwards;
        }

        .about-text p {
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: #555;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.4s forwards;
        }

        .skills-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .skill {
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .skill:nth-child(1) { animation-delay: 0.6s; }
        .skill:nth-child(2) { animation-delay: 0.8s; }
        .skill:nth-child(3) { animation-delay: 1s; }
        .skill:nth-child(4) { animation-delay: 1.2s; }
        .skill:nth-child(5) { animation-delay: 1.4s; }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .skill-bar {
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }

        .skill-level {
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 4px;
            width: 0;
            transition: width 1.5s ease-out;
        }

        /* About Image Styles */
        .about-image {
            display: flex;
            justify-content: center;
            opacity: 0;
            animation: fadeInRight 1s ease-out 0.5s forwards;
        }

        .about-image .profile-container {
            width: 300px;
            height: 300px;
        }

        /* Services Section */
        .services {
            background: #f9f9f9;
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.2s; }
        .service-card:nth-child(2) { animation-delay: 0.4s; }
        .service-card:nth-child(3) { animation-delay: 0.6s; }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            color: white;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .service-card:hover .service-title,
        .service-card:hover .service-desc {
            color: white;
        }

        .service-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.2rem;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(157, 80, 187, 0.3);
            overflow: hidden;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            transition: color 0.4s ease;
        }

        .service-desc {
            color: #666;
            line-height: 1.6;
            transition: color 0.4s ease;
        }

        /* Projects Section */
        .projects {
            background: white;
        }

        .projects-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .project-card:nth-child(1) { animation-delay: 0.2s; }
        .project-card:nth-child(2) { animation-delay: 0.4s; }
        .project-card:nth-child(3) { animation-delay: 0.6s; }
        .project-card:nth-child(4) { animation-delay: 0.8s; }
        .project-card:nth-child(5) { animation-delay: 1s; }
        .project-card:nth-child(6) { animation-delay: 1.2s; }
        .project-card:nth-child(7) { animation-delay: 1.4s; }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .project-img {
            height: 200px;
            width: 100%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            overflow: hidden;
        }

        .project-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-img img {
            transform: scale(1.05);
        }

        .project-info {
            padding: 1.5rem;
        }

        .project-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .project-desc {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .project-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .project-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            flex: 1;
            justify-content: center;
            min-width: 120px;
        }

        .project-btn:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .project-btn.linkedin {
            background: #0077b5;
        }

        .project-btn.linkedin:hover {
            background: #005885;
        }

        /* Enhanced Experience Section */
        .experience {
            background: #f9f9f9;
        }

        .experience-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .experience-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border-left: 5px solid var(--primary);
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .experience-card:nth-child(1) { animation-delay: 0.2s; }
        .experience-card:nth-child(2) { animation-delay: 0.4s; }
        .experience-card:nth-child(3) { animation-delay: 0.6s; }

        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .experience-card:hover::before {
            opacity: 0.05;
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .experience-date {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(157, 80, 187, 0.3);
        }

        .experience-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }

        .experience-company {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .experience-desc {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .responsibilities {
            position: relative;
            z-index: 1;
        }

        .responsibilities-title {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .responsibilities-title i {
            color: var(--primary);
        }

        .responsibilities-list {
            list-style: none;
            padding-left: 0;
        }

        .responsibilities-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.5;
        }

        .responsibilities-list li:before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .experience-website {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
            position: relative;
            z-index: 1;
        }

        .experience-website a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .experience-website a:hover {
            color: var(--secondary);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--dark), var(--secondary));
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            opacity: 0;
            animation: fadeInLeft 1s ease-out 0.2s forwards;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-text h3 {
            margin-bottom: 0.3rem;
        }

        .contact-text p {
            color: #ddd;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeInRight 1s ease-out 0.2s forwards;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }

        .form-control::placeholder {
            color: #ccc;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent), var(--primary));
            opacity: 0.1;
            filter: blur(20px);
            animation: floatAround 20s infinite linear;
        }

        /* CSS Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        @keyframes floatAround {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(10px, 10px) rotate(90deg); }
            50% { transform: translate(0, 20px) rotate(180deg); }
            75% { transform: translate(-10px, 10px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        /* Enhanced Responsive Styles */
        @media (max-width: 1200px) {
            .hero-content {
                max-width: 1000px;
            }
            
            .about-content, .contact-content {
                max-width: 1000px;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column-reverse;
                text-align: center;
                gap: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .profile-container {
                width: 280px;
                height: 280px;
            }
            
            .about-image .profile-container {
                width: 250px;
                height: 250px;
            }
            
            .name {
                font-size: 3rem;
            }
            
            .title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease;
                z-index: 999;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                color: white;
                font-size: 1.2rem;
                padding: 1rem 0;
            }

            .menu-toggle {
                display: block;
            }
            
            /* Fix for menu toggle when mobile menu is open */
            .nav-links.active + .menu-toggle {
                color: white;
            }
            
            .name {
                font-size: 2.5rem;
            }
            
            .title {
                font-size: 1.4rem;
            }
            
            .description {
                font-size: 1.1rem;
            }
            
            .profile-container {
                width: 250px;
                height: 250px;
            }
            
            .about-image .profile-container {
                width: 200px;
                height: 200px;
            }
            
            .skills-container {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card, .project-card {
                padding: 2rem 1.5rem;
            }
            
            .contact-form {
                padding: 1.5rem;
            }
            
            section {
                padding: 4rem 5%;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 0 3%;
            }
            
            section {
                padding: 3rem 3%;
            }
            
            .name {
                font-size: 2rem;
            }
            
            .title {
                font-size: 1.2rem;
            }
            
            .description {
                font-size: 1rem;
            }
            
            .profile-container {
                width: 200px;
                height: 200px;
            }
            
            .about-image .profile-container {
                width: 180px;
                height: 180px;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .service-card, .project-card {
                padding: 1.5rem 1rem;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .project-img {
                height: 180px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }
            
            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .social-links {
                gap: 1rem;
            }
            
            .social-link {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 400px) {
            .name {
                font-size: 1.8rem;
            }
            
            .title {
                font-size: 1.1rem;
            }
            
            .profile-container {
                width: 180px;
                height: 180px;
            }
            
            .about-image .profile-container {
                width: 160px;
                height: 160px;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
        }

        /* Mobile-specific Services Section */
        @media (max-width: 768px) {
            .services {
                padding: 3rem 0;
                overflow: hidden;
            }
            
            .services-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1.5rem;
                padding: 0 5% 2rem;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .services-grid::-webkit-scrollbar {
                display: none;
            }
            
            .service-card {
                flex: 0 0 85%;
                scroll-snap-align: start;
                margin-bottom: 0;
                height: auto;
                min-height: 400px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            .service-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
            
            .service-desc {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                flex: 0 0 90%;
                min-height: 380px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
        }

        /* Mobile-specific Projects Section */
        @media (max-width: 768px) {
            .projects {
                padding: 3rem 0;
                overflow: hidden;
            }
            
            .projects-grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1.5rem;
                padding: 0 5% 2rem;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .projects-grid::-webkit-scrollbar {
                display: none;
            }
            
            .project-card {
                flex: 0 0 85%;
                scroll-snap-align: start;
                margin-bottom: 0;
                height: auto;
            }
            
            .project-img {
                height: 200px;
            }
            
            .project-info {
                padding: 1.2rem;
            }
            
            .project-title {
                font-size: 1.2rem;
            }
            
            .project-desc {
                font-size: 0.9rem;
            }
            
            .project-buttons {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .project-card {
                flex: 0 0 90%;
            }
            
            .project-img {
                height: 180px;
            }
        }

        /* Mobile-specific Experience Section */
        @media (max-width: 768px) {
            .experience {
                padding: 3rem 0;
            }
            
            .experience-card {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }
            
            .experience-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            
            .experience-title {
                font-size: 1.3rem;
            }
            
            .experience-company {
                font-size: 1rem;
            }
            
            .experience-date {
                align-self: flex-start;
            }
        }

        /* Animation on scroll */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Prevent horizontal scroll */
        .container {
            max-width: 100%;
            overflow-x: hidden;
        }

        