   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(79, 172, 254, 0.5);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-100px) rotate(180deg); opacity: 1; }
        }

        /* Header Section */
        .header {
            text-align: center;
            padding: 80px 20px 60px;
            position: relative;
        }

       .logo-container {
    display: inline-block;
    border-radius: 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(79, 172, 254, 0.3);
    padding: 25px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: logoEntrance 2s ease-out, logoGlow 4s ease-in-out infinite alternate;
    box-shadow: 
        0 15px 35px rgba(79, 172, 254, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4facfe, #00f2fe, #4facfe, #00f2fe);
    background-size: 400% 400%;
    border-radius: 27px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover::before {
    opacity: 1;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    border-radius: 25px;
}

.logo-container:hover::after {
    left: 100%;
}

@keyframes logoEntrance {
    0% { 
        opacity: 0; 
        transform: scale(0.5) rotateY(180deg);
    }
    50% {
        transform: scale(1.1) rotateY(90deg);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotateY(0deg);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.logo {
    animation: logoFloat 6s ease-in-out infinite;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 5px 15px rgba(79, 172, 254, 0.3));
}

.logo-container:hover .logo {
    transform: rotateY(360deg);
    filter: 
        drop-shadow(0 10px 25px rgba(79, 172, 254, 0.5))
        brightness(1.1);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    25% { transform: translateY(-10px) rotateZ(1deg); }
    50% { transform: translateY(0px) rotateZ(0deg); }
    75% { transform: translateY(-5px) rotateZ(-1deg); }
}


        .logo-container:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(79, 172, 254, 0.4),
        0 0 0 1px rgba(79, 172, 254, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(79, 172, 254, 0.6);
}

        @keyframes logoGlow {
            from { box-shadow: 0 0 20px rgba(79, 172, 254, 0.2); }
            to { box-shadow: 0 0 40px rgba(79, 172, 254, 0.4); }
        }

        .logo {
            max-width: 300px;
            height: auto;
            display: block;
        }

        .tagline {
            font-size: 1.2rem;
            color: #a0a0a0;
            margin-top: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Projects Section */
        .projects-section {
            padding: 60px 20px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            position: relative;
        }

        .section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            display: block;
            margin: 20px auto;
            border-radius: 2px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scaleX(1); opacity: 1; }
            50% { transform: scaleX(1.2); opacity: 0.8; }
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            padding: 0 20px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .project-card:hover::before {
            left: 100%;
        }

        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(79, 172, 254, 0.2);
            border-color: rgba(79, 172, 254, 0.3);
        }

        .project-image {
            width: 100%;
            height: 250px;
            border-radius: 15px;
            object-fit: cover;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .project-image:hover {
            transform: scale(1.05);
            border-color: #4facfe;
            box-shadow: 0 15px 30px rgba(79, 172, 254, 0.3);
        }

        .project-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .project-description {
            color: #b0b0b0;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .visit-btn {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }

        .visit-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;
        }

        .visit-btn:hover::before {
            left: 100%;
        }

        .visit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
        }


        .app-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .app-store-btn {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            border: none;
            padding: 14px 22px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.75rem;
            position: relative;
            overflow: hidden;
            flex: 1;
            min-width: 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            white-space: nowrap;
        }

        .google-play {
            background: linear-gradient(135deg, #34a853 0%, #4285f4 100%);
        }

        .app-store {
            background: linear-gradient(135deg, #000000 0%, #434343 100%);
        }

        .app-store-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;
        }

        .app-store-btn:hover::before {
            left: 100%;
        }

        .app-store-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.4);
        }

        .google-play:hover {
            box-shadow: 0 10px 25px rgba(52, 168, 83, 0.4);
        }

        .app-store:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
            flex-shrink: 0;
            display: block;
        }
        /* Modal/Popup */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            margin: 5% auto;
            max-width: 90%;
            max-height: 80%;
            text-align: center;
        }

        .modal-image {
            max-width: 100%;
            max-height: 100%;
            border-radius: 15px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            animation: zoomIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .close {
            position: absolute;
            top: -50px;
            right: 0;
            color: #fff;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close:hover {
            background: rgba(255, 0, 0, 0.2);
            transform: rotate(90deg);
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            padding: 50px 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer p {
            color: #a0a0a0;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .contact-item {
            color: #b0b0b0;
            transition: color 0.3s ease;
        }

        .contact-item:hover {
            color: #4facfe;
        }

        /* Social Media Styles */
        .social-media {
            margin: 30px 0;
        }

        .social-media h4 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            transform: scale(0);
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .social-icon:hover::before {
            transform: scale(1);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
            fill: #ffffff;
            transition: all 0.3s ease;
            z-index: 1;
        }

        /* Facebook */
        .social-icon.facebook:hover::before {
            background: #1877F2;
        }

        .social-icon.facebook:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
            border-color: #1877F2;
        }

        /* Instagram */
        .social-icon.instagram:hover::before {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-icon.instagram:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
            border-color: #e1306c;
        }

        /* LinkedIn */
        .social-icon.linkedin:hover::before {
            background: #0A66C2;
        }

        .social-icon.linkedin:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(10, 102, 194, 0.4);
            border-color: #0A66C2;
        }

        /* Twitter/X */
        .social-icon.twitter:hover::before {
            background: #000000;
        }

        .social-icon.twitter:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            border-color: #000000;
        }

        /* YouTube */
        .social-icon.youtube:hover::before {
            background: #FF0000;
        }

        .social-icon.youtube:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
            border-color: #FF0000;
        }

        .copyright {
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo {
                max-width: 250px;
            }
        }