        @import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Inter", sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            overflow-x: hidden;
            background: #fafafa;
            min-height: 100vh;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: -0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .logo:hover::before {
            left: 100%;
        }
        
        .logo:hover {
            transform: scale(1.02);
            opacity: 0.8;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            letter-spacing: 0.2px;
            padding: 5px 0;
        }
        
        .nav-links a:hover {
            color: #000;
            transform: translateY(-2px);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 1px;
            background: #000;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
            padding: 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn:hover {
            background: rgba(0,0,0,0.05);
        }
        
        .mobile-menu-btn span {
            width: 22px;
            height: 2px;
            background: #000;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Sections */
        section {
            min-height: 100vh;
            padding: 6rem 5% 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        /* Hero Section */
        #hero {
            background: #fff;
            color: #1a1a1a;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated background particles */
        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.02) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.02) 0%, transparent 50%),
                        radial-gradient(circle at 40% 70%, rgba(0,0,0,0.01) 0%, transparent 50%);
            animation: backgroundPulse 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            gap: 5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .hero-text {
            flex: 1;
            min-width: 400px;
            text-align: left;
            position: relative;
        }
        
        .hero-image {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            position: relative;
        }
        
        .profile-container {
            position: relative;
            width: 300px;
            height: 300px;
        }

        .profile-badges {
            position: absolute;
            inset: 0;
            display: block;
            animation: orbitSpin 20s linear infinite;
            transform-origin: center;
            pointer-events: none;
        }
        
        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid #000;
            transition: all 0.4s ease;
            animation: float 6s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }
        
        .profile-img:hover {
            transform: scale(1.02) rotate(2deg);
            border-color: #333;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .profile-decoration {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            background: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 0.8rem;
            transform: rotate(var(--angle, 0deg)) translateX(var(--radius, 180px)) rotate(calc(-1 * var(--angle, 0deg)));
            transform-origin: center;
            z-index: 3;
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .profile-decoration:nth-of-type(1) { --angle: 20deg; --radius: 160px; }
        .profile-decoration:nth-of-type(2) { --angle: 130deg; --radius: 190px; }
        .profile-decoration:nth-of-type(3) { --angle: 800deg; --radius: 160px; }

        @keyframes orbitSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }
        
        .profile-decoration:hover {
            transform: scale(1.1);
            background: #333;
        }
        
        /* Floating elements around profile */
        .profile-container::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            border: 2px dashed rgba(0,0,0,0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: rotateReverse 20s linear infinite;
            z-index: 1;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes rotateReverse {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(-360deg); }
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: slideUp 1s ease 0.5s forwards;
            font-weight: 700;
            letter-spacing: -2px;
            line-height: 1.1;
            position: relative;
        }
        
        .hero-text h1::after {
            content: '👋';
            position: absolute;
            top: 0;
            right: -60px;
            font-size: 2rem;
            animation: wave 1s ease-in-out infinite alternate;
        }
        
        @keyframes wave {
            from { transform: rotate(10deg); }
            to { transform: rotate(30deg); }
        }
        
        .hero-text .subtitle {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            color: #666;
            animation: slideUp 1s ease 0.7s forwards;
            opacity: 0;
            font-weight: 400;
            letter-spacing: 0.5px;
            position: relative;
        }
        
        .subtitle::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #000, transparent);
            animation: underlineGrow 2s ease 1s forwards;
        }
        
        @keyframes underlineGrow {
            to { width: 100%; }
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: slideUp 1s ease 0.9s forwards;
        }
        
        .btn {
            padding: 16px 32px;
            border: none;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .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: left 0.6s ease;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: #000;
            color: #fff;
            border: 2px solid #000;
        }
        
        .btn-primary:hover {
            background: transparent;
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .btn-secondary {
            background: transparent;
            color: #000;
            border: 2px solid #000;
        }
        
        .btn-secondary:hover {
            background: #000;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* About Section */
        #about {
            background: #fafafa;
            padding: 8rem 5%;
            position: relative;
        }
        
        /* Animated background pattern */
        #about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(0,0,0,0.01) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0,0,0,0.01) 0%, transparent 50%);
            animation: backgroundShift 10s ease-in-out infinite;
            pointer-events: none;
        }
        
        @keyframes backgroundShift {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10px, -10px); }
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #000;
            position: relative;
            font-weight: 700;
            letter-spacing: -1px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            width: 40px;
            height: 2px;
            background: #000;
            transform: translateX(-50%);
            animation: titleUnderline 1s ease forwards;
        }
        
        @keyframes titleUnderline {
            from { width: 0; }
            to { width: 40px; }
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            font-weight: 400;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards;
        }
        
        .about-text p:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        @keyframes slideInLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .stat-card {
            background: #fff;
            padding: 2rem;
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
            animation: cardFadeIn 0.6s ease forwards;
        }
        
        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }
        .stat-card:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes cardFadeIn {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #000;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover::before {
            transform: scaleX(1);
        }
        
        .stat-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #000;
            position: relative;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        /* Projects Section */
        #projects {
            background: #fafafa;
            padding: 8rem 5%;
            position: relative;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .project-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            animation: projectCardSlide 0.8s ease forwards;
            border-radius: 12px;
        }
        
        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.3s; }
        .project-card:nth-child(3) { animation-delay: 0.5s; }
        .project-card:nth-child(4) { animation-delay: 0.7s; }
        
        @keyframes projectCardSlide {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #000, #333, #000);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            z-index: 2;
        }
        
        .project-card:hover::before {
            transform: scaleX(1);
        }
        
        /* Project Banner */
        .project-image {
            height: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 0;
        }
        
        .project-banner {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            border-radius: 0;
        }
        
        .project-card:hover .project-banner {
            transform: scale(1.02);
        }
        
        /* Project overlay for better text visibility */
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg, 
                rgba(0,0,0,0.6) 0%, 
                rgba(0,0,0,0.3) 50%, 
                rgba(0,0,0,0.7) 100%
            );
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .view-details {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 12px 24px;
            border: 2px solid #fff;
            border-radius: 25px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }
        
        .view-details:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
        }
        
        .project-content {
            padding: 2rem;
        }
        
        .project-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #000;
            font-weight: 600;
            letter-spacing: -0.5px;
            position: relative;
        }
        
        .project-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #000;
            transition: width 0.3s ease;
        }
        
        .project-card:hover .project-title::after {
            width: 50px;
        }
        
        .project-description {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .tech-tag {
            background: #f5f5f5;
            color: #333;
            padding: 0.4rem 0.8rem;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .tech-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #000;
            transition: left 0.3s ease;
        }
        
        .tech-tag:hover::before {
            left: 0;
        }
        
        .tech-tag:hover {
            color: #fff;
            border-color: #000;
            transform: translateY(-2px);
        }
        
        .tech-tag span {
            position: relative;
            z-index: 1;
        }
        
        /* Experience Section */
        #experience {
            background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
            padding: 8rem 5%;
            position: relative;
            overflow: hidden;
        }

        .experience-timeline {
            margin-top: 4rem;
            position: relative;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            left: 50px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #000 0%, #666 50%, #000 100%);
            border-radius: 2px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .experience-item {
            display: flex;
            margin-bottom: 4rem;
            position: relative;
            padding-left: 130px;
            opacity: 0;
            transform: translateX(30px);
            animation: slideInFromRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

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

        @keyframes slideInFromRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .experience-logo {
            position: absolute;
            left: 0;
            top: 0;
            width: 110px;
            height: 110px;
        }

        .company-logo {
            width: 110px;
            height: 110px;
            border: 4px solid #e1e5e9;
            border-radius: 15px;
            object-fit: contain;
            position: relative;
            z-index: 2;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: #fff;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .experience-item:hover .company-logo {
            border-color: #000;
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .experience-content {
            flex: 1;
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            padding: 3rem;
            border-radius: 16px;
            border: 2px solid #e1e5e9;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .experience-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #000, #666, #000);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .experience-content:hover::before {
            transform: scaleX(1);
        }

        .experience-content:hover {
            background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
            border-color: #000;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }

        .experience-header {
            margin-bottom: 2rem;
            position: relative;
        }

        .position-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.8rem;
            line-height: 1.3;
            letter-spacing: -0.5px;
            position: relative;
        }

        .position-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #000, #666);
            transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border-radius: 2px;
        }

        .experience-item:hover .position-title::after {
            width: 100px;
        }

        .company-name {
            font-size: 1.2rem;
            color: #666;
            font-weight: 600;
            margin-bottom: 1rem;
            position: relative;
        }

        .employment-details {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 1rem;
            color: #666;
        }

        .employment-type {
            font-weight: 600;
            color: #000;
            background: linear-gradient(135deg, #f0f2f5, #e1e5e9);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            display: inline-block;
            width: fit-content;
            border: 1px solid #e1e5e9;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .experience-item:hover .employment-type {
            background: linear-gradient(135deg, #000, #333);
            color: #fff;
            border-color: #000;
            transform: scale(1.02);
        }

        .date-range {
            color: #666;
            font-weight: 500;
        }

        .location {
            color: #888;
            font-style: italic;
        }

        .experience-description {
            margin-bottom: 2rem;
        }

        .experience-description p {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .achievements {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .achievements li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            color: #555;
            line-height: 1.6;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .achievements li::before {
            content: '🚀';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .experience-item:hover .achievements li::before {
            transform: scale(1.1);
        }

        .achievements li:hover {
            color: #000;
            transform: translateX(3px);
        }

        .skills-used {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        /* SMOOTH SKILL TAG - Reduced animations */
        .skill-tag {
            background: linear-gradient(135deg, #f0f2f5, #e1e5e9);
            color: #333;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 2px solid #e1e5e9;
            transition: all 0.2s ease;
            position: relative;
            cursor: pointer;
        }

        .skill-tag:hover {
            background: linear-gradient(135deg, #fff, #f8f9fa);
            color: #000;
            border-color: #000;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .skill-tag span {
            position: relative;
            z-index: 1;
        }
        
        /* Contact Section */
        #contact {
            background: #f7f8fb;
            padding: 6rem 5%;
            position: relative;
            overflow: visible;
        }
        
        #contact::before {
            content: none;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 3rem 2rem;
            background: #000;
            color: #fff;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: footerShine 4s ease-in-out infinite;
        }
        
        @keyframes footerShine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Enhanced fade-in variations */
        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }
        
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }
        
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .fade-in-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease;
        }
        
        .fade-in-scale.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background: #fff;
            margin: 5% auto;
            padding: 3rem;
            width: 1300px;
            height: 1000px;
            position: relative;
            animation: modalSlide 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .modal-content h2 {
            color: #000;
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            position: relative;
        }
        
        .modal-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #000;
            animation: modalTitleUnderline 0.8s ease 0.3s forwards;
            transform: scaleX(0);
        }
        
        @keyframes modalTitleUnderline {
            to { transform: scaleX(1); }
        }
        
       .modal-banner {
    width: 100%;
    height: 600px; /* Increased from 200px to 300px */
    margin: 1.5rem 0 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
}
        
        .modal-banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .modal-banner:hover .modal-banner-img {
            transform: scale(1.02);
        }
        
        /* Add subtle border to modal banner */
        .modal-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 12px;
            pointer-events: none;
        }
        
        .modal-content h3 {
            color: #000;
            margin: 2rem 0 1rem;
            font-weight: 600;
            position: relative;
        }
        
        .modal-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
            animation: modalTextSlide 0.6s ease forwards;
            transform: translateY(20px);
            opacity: 0;
        }
        
        .modal-content p:nth-child(2) { animation-delay: 0.1s; }
        .modal-content p:nth-child(3) { animation-delay: 0.2s; }
        
        @keyframes modalTextSlide {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .modal-content ul {
            margin-left: 1.5rem;
            color: #666;
        }
        
        .modal-content li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
            transform: translateX(-20px);
            opacity: 0;
            animation: modalListSlide 0.5s ease forwards;
        }
        
        .modal-content li:nth-child(1) { animation-delay: 0.1s; }
        .modal-content li:nth-child(2) { animation-delay: 0.2s; }
        .modal-content li:nth-child(3) { animation-delay: 0.3s; }
        .modal-content li:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes modalListSlide {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes modalSlide {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .close-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            transition: all 0.3s ease;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-btn:hover {
            color: #000;
            background: rgba(0,0,0,0.1);
            transform: rotate(90deg);
        }
        
        /* OPTIMIZED Media Gallery Styles - Smooth Performance */
        .media-gallery {
            margin: 3rem 0;
            position: relative;
        }

        .media-gallery h3 {
            color: #000;
            margin: 3rem 0 1.5rem;
            font-weight: 600;
            font-size: 1.4rem;
            position: relative;
            padding-left: 2rem;
        }

        /* Enhanced section icons */
        .media-gallery h3::before {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-gallery h3[data-type="photos"]::before {
            content: '📸';
        }

        .media-gallery h3[data-type="videos"]::before {
            content: '🎬';
        }

        .media-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 1.5rem;
            transition: all 0.2s ease;
            will-change: transform;
        }

        .media-container:hover {
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            transform: translateY(-1px);
        }

        .media-slider {
            display: flex;
            transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 1.5rem;
            will-change: transform;
        }

        .media-item {
            flex: 0 0 calc(33.333% - 1rem);
            min-width: calc(33.333% - 1rem);
            aspect-ratio: 9/16;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            background: #000;
            cursor: pointer;
            transition: transform 0.2s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            will-change: transform;
        }

        /* Portrait/Landscape specific sizing */
        .media-item.portrait {
            aspect-ratio: 9/16;
        }

        .media-item.landscape {
            aspect-ratio: 16/9;
        }

        /* SIMPLIFIED HOVER - No complex animations */
        .media-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .media-item img,
        .media-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        /* SIMPLIFIED overlay effects - No complex gradients */
        .media-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.05);
            opacity: 0;
            transition: opacity 0.2s ease;
            pointer-events: none;
            border-radius: 10px;
        }

        .media-item:hover::before {
            opacity: 1;
        }

        /* SIMPLIFIED video overlay */
        .video-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #000;
            transition: transform 0.2s ease;
            pointer-events: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .media-item:hover .video-overlay {
            transform: translate(-50%, -50%) scale(1.05);
        }

        /* SIMPLIFIED photo icon */
        .media-item[data-type="photo"]::after {
            content: '📷';
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.6);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .media-item[data-type="photo"]:hover::after {
            opacity: 1;
        }

        /* SIMPLIFIED Navigation arrows */
        .media-nav {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            color: #000;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.2s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .media-nav:hover {
            background: #ffffff;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .media-nav.prev {
            left: -15px;
        }

        .media-nav.next {
            right: -15px;
        }

        .media-container.has-overflow .media-nav {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* SIMPLIFIED Media indicators */
        .media-indicators {
            display: none;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 1.5rem;
        }

        .media-container.has-overflow .media-indicators {
            display: flex;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0,0,0,0.3);
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
        }

        .indicator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #000;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.2s ease;
        }

        .indicator.active::before {
            width: 100%;
            height: 100%;
        }

        .indicator:hover {
            background: rgba(0,0,0,0.5);
            transform: scale(1.1);
        }

        /* SIMPLIFIED Media count badge */
        .media-container::after {
            content: attr(data-count) ' items';
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .media-container:hover::after {
            opacity: 1;
        }

        /* SIMPLIFIED Media modal */
        .media-modal {
            display: none;
            position: fixed;
            z-index: 3000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(5px);
        }

        .media-modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 95vw;
            max-height: 95vh;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-modal img,
        .media-modal video {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
        }

        /* Portrait/Landscape specific adjustments */
        .media-modal img[style*="aspect-ratio"],
        .media-modal video[style*="aspect-ratio"] {
            max-width: 60vw;
            max-height: 90vh;
        }

        /* For portrait orientation screens */
        @media (orientation: portrait) {
            .media-modal img,
            .media-modal video {
                max-width: 90vw;
                max-height: 80vh;
            }
        }

        /* For landscape screens viewing portrait content */
        @media (orientation: landscape) {
            .media-modal img,
            .media-modal video {
                max-width: 50vw;
                max-height: 85vh;
            }
        }

        .media-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.9);
            color: #000;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s ease;
        }

        .media-modal-close:hover {
            background: #fff;
            transform: scale(1.05);
        }

        /* Hide video controls in gallery for performance */
        .media-item video::-webkit-media-controls {
            display: none !important;
        }

        .media-item video::-webkit-media-controls-enclosure {
            display: none !important;
        }

        /* Loading state for images */
        .project-banner,
        .modal-banner-img {
            background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0),
                        linear-gradient(45deg, #f0f0f0 25%, transparent 25%, transparent 75%, #f0f0f0 75%, #f0f0f0);
            background-size: 20px 20px;
            background-position: 0 0, 10px 10px;
            animation: loading 1s infinite;
        }

        .project-banner[src],
        .modal-banner-img[src] {
            background: none;
            animation: none;
        }

        @keyframes loading {
            0% { background-position: 0 0, 10px 10px; }
            100% { background-position: 20px 20px, 30px 30px; }
        }
        
        /* Scroll Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: linear-gradient(90deg, #000, #333, #000);
            z-index: 9999;
            transition: width 0.1s ease;
            animation: progressGlow 2s ease-in-out infinite;
        }
        
        @keyframes progressGlow {
            0%, 100% { box-shadow: 0 0 5px rgba(0,0,0,0.3); }
            50% { box-shadow: 0 0 15px rgba(0,0,0,0.6); }
        }
        
        /* Floating Action Button */
        .fab {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            z-index: 1000;
            font-weight: 600;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            animation: fabPulse 3s ease-in-out infinite;
        }
        
        @keyframes fabPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .fab::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid #fff;
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.3s ease;
        }
        
        .fab:hover::before {
            transform: scale(1.2);
        }
        
        .fab:hover {
            background: #fff;
            color: #000;
            transform: translateY(-3px) rotate(360deg);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                gap: 1.5rem;
                animation: mobileMenuSlide 0.3s ease;
            }
            
            
            @keyframes mobileMenuSlide {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: flex;
            }

.mobile-menu-btn {
                display: flex;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-text h1::after {
                right: -40px;
                font-size: 1.5rem;
            }
            
            .hero-content {
                flex-direction: column;
                gap: 3rem;
            }
            
            .hero-text {
                text-align: center;
                min-width: auto;
            }
            
            .profile-container {
                width: 250px;
                height: 250px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .experience-timeline::before {
                left: 15px;
            }
            
            .experience-item {
                padding-left: 50px;
            }
            
            .experience-logo {
                width: 40px;
                height: 40px;
            }
            
            .company-logo {
                width: 40px;
                height: 40px;
            }
            
            .experience-content {
                padding: 1.5rem;
            }
            
            .employment-details {
                font-size: 0.8rem;
            }
            
            section {
                padding: 4rem 5% 2rem;
            }
            
            .modal-content {
                padding: 2rem;
                margin: 10% auto;
                width: 95%;
                height: auto;
                max-height: 85vh;
            }

            .modal-banner {
                height: 200px;
                margin: 1rem 0 1.5rem;
            }
            
            .project-image {
                height: 150px;
            }
            
            .view-details {
                font-size: 0.9rem;
                padding: 10px 20px;
            }

            .media-item {
                flex: 0 0 calc(50% - 0.75rem);
                min-width: calc(50% - 0.75rem);
                aspect-ratio: 9/16;
            }
        }
        
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text h1::after {
                right: -30px;
                font-size: 1.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .profile-container {
                width: 200px;
                height: 200px;
            }
            
            .experience-timeline::before {
                display: none;
            }
            
            .experience-item {
                padding-left: 0;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .experience-logo {
                position: relative;
                margin-bottom: 1rem;
            }

            .modal-banner {
                height: 160px;
                border-radius: 8px;
            }
            
            .project-image {
                height: 120px;
            }
            
            .view-details {
                font-size: 0.8rem;
                padding: 8px 16px;
                letter-spacing: 0.5px;
            }

            .media-item {
                flex: 0 0 100%;
                min-width: 100%;
                aspect-ratio: 9/16;
            }

            .modal-content {
                width: 98%;
                padding: 1.5rem;
            }
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f5f5f5;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #000;
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #333;
        }
        
        /* Selection */
        ::selection {
            background: #000;
            color: #fff;
        }
        
        ::-moz-selection {
            background: #000;
            color: #fff;
        }
        
        /* Print styles */
        @media print {
            .progress-bar,
            .fab,
            .mobile-menu-btn {
                display: none !important;
            }
            
            body {
                background: #fff !important;
            }
            
            section {
                page-break-inside: avoid;
            }
        }

/* Simple Contact Section */
.contact-simple {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.contact-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 0.4rem 0;
}
        
.contact-headline {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .contact-simple {
        padding: 1.75rem;
    }
            
    .contact-headline {
        font-size: 1.8rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
        

/* App Store section */
#appstore {
    padding: 80px 0;
    background: #fafbfc;
}

.appstore-marquee {
    position: relative;
    overflow: visible;
}

.appstore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.appstore-grid.logo-only {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    justify-items: center;
    gap: 32px;
    padding: 10px 0;
    margin: 0;
}

.store-card {
    min-height: 100%;
}

.store-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-card.logo-only {
    position: relative;
    z-index: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.06));
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    padding: 18px 18px 22px 18px;
    min-height: auto;
    border-radius: 22px;
    overflow: visible;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: 0;
    width: 100%;
    max-width: 420px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-card.logo-only::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from 180deg, rgba(15,23,42,0.12), rgba(15,23,42,0.02), rgba(15,23,42,0.12));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.store-card.logo-only:hover::before {
    opacity: 1;
}

.store-card.logo-only:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 45px rgba(0,0,0,0.1);
    border-color: #d1d5db;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.store-image-wrap {
    width: 100%;
    overflow: hidden;
}

.store-image-wrap.logo-only {
    max-width: 420px;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(145deg, #fff, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.store-card.logo-only:hover .store-image-wrap.logo-only {
    transform: translateY(-4px) scale(1.03) rotate(-0.3deg);
    box-shadow: 0 26px 55px rgba(0,0,0,0.12);
    border-color: #cbd5e1;
}

.store-label {
    margin-top: 12px;
    text-align: center;
}

.store-name {
    font-weight: 800;
    letter-spacing: 0.01em;
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 6px;
}

.store-card.logo-only.fade-in {
    opacity: 0;
    transform: translateX(-60px);
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-card.logo-only.fade-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.store-image {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 180px;
}

.store-logo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 24px;
    background: #f8fafc;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.store-meta {
    padding: 0 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-meta h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}

.store-meta p {
    margin: 0;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.5;
}

.store-link {
    margin-top: 6px;
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    #appstore {
        padding: 60px 0;
    }
    
    .appstore-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .appstore-grid.logo-only {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 10px 0;
    }
    
    .store-image {
        height: 160px;
    }

    .store-label {
        width: 100%;
    }

    .store-card.logo-only {
        min-width: 0;
        max-width: 100%;
    }
}

/* Hidden projects - initially hide projects beyond the first 4 */
.hidden-project {
    display: none;
}

/* More projects button container */
.more-projects-btn-container {
    text-align: center;
    margin-top: 40px;
}

#moreProjectsBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#btnIcon {
    transition: transform 0.3s ease;
    display: inline-block;
}

#moreProjectsBtn.active #btnIcon {
    transform: rotate(180deg);
}
