 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            height: 100%;
            width: 100%;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #fff0f5 50%, #f0f8ff 100%);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .wrapper {
            width: 100%;
            min-height: 100%;
            overflow-y: auto;
        }

        /* ============ NAVIGATSIYA ============ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(255, 182, 193, 0.2);
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #ff69b4, #87ceeb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #ff69b4;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff69b4, #87ceeb);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #ff69b4;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ============ HERO QISMI ============ */
        .hero {
            min-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 50px 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(135, 206, 235, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 105, 180, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            max-width: 800px;
        }

        .hero-avatar {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff69b4, #87ceeb);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 20px 60px rgba(255, 167, 211, 0.3);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3); }
            50% { box-shadow: 0 25px 80px rgba(255, 105, 180, 0.5); }
        }

        .hero-avatar img {
            width: 170px;
            height: 170px;
            fill: white;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #333, #ff69b4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 22px;
            color: #87ceeb;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .hero-description {
            font-size: 16px;
            color: #666;
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff69b4, #ff85c1);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #87ceeb;
            padding: 15px 40px;
            border: 2px solid #87ceeb;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: #87ceeb;
            color: white;
            transform: translateY(-3px);
        }

        /* ============ MEN HAQIMDA ============ */
        .about {
            padding: 100px 50px;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff69b4, #87ceeb);
            border-radius: 2px;
        }

        .about-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #fff0f5, #f0f8ff);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 3px dashed #ffb6c1;
            border-radius: 15px;
        }

        .about-image svg {
            width: 150px;
            height: 150px;
            fill: #ff69b4;
            opacity: 0.5;
        }

        .about-text h3 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
        }

        .about-text p {
            color: #666;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 25px;
        }

        .skill-tag {
            background: linear-gradient(135deg, #fff0f5, #f0f8ff);
            color: #ff69b4;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid #ffb6c1;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: linear-gradient(135deg, #ff69b4, #87ceeb);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
        }

        /* ============ LOYIHALAR ============ */
        .projects {
            padding: 100px 50px;
            background: linear-gradient(180deg, #f0f8ff 0%, #fff0f5 100%);
        }

        .projects-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
        }

        .project-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .project-card:nth-child(1) .project-image {
            background: linear-gradient(135deg, #ff69b4, #ffb6c1);
        }

        .project-card:nth-child(2) .project-image {
            background: linear-gradient(135deg, #87ceeb, #b0e0e6);
        }

        .project-card:nth-child(3) .project-image {
            background: linear-gradient(135deg, #dda0dd, #ffb6c1);
        }

        .project-image svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            fill: white;
            opacity: 0.8;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay span {
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            border: 2px solid white;
            border-radius: 25px;
        }

        .project-info {
            padding: 25px;
        }

        .project-info h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }

        .project-info p {
            color: #777;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .project-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .project-tag {
            background: #f0f8ff;
            color: #87ceeb;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }

        /* ============ ALOQA ============ */
        .contact {
            padding: 100px 50px;
            background: white;
        }

        .contact-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form {
            background: linear-gradient(135deg, #fff0f5, #f0f8ff);
            padding: 50px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #ffb6c1;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff69b4;
            box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #ff69b4, #87ceeb);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
        }

        .success-message {
            display: none;
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #90EE90, #98FB98);
            color: #2e7d32;
            border-radius: 12px;
            margin-top: 20px;
            font-weight: 500;
        }

        /* ============ IJTIMOIY TARMOQLAR ============ */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:nth-child(1) {
            background: linear-gradient(135deg, #ff69b4, #ffb6c1);
        }

        .social-link:nth-child(2) {
            background: linear-gradient(135deg, #87ceeb, #b0e0e6);
        }

        .social-link:nth-child(3) {
            background: linear-gradient(135deg, #dda0dd, #ffb6c1);
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
        }

        /* ============ FOOTER ============ */
        .footer {
            background: linear-gradient(135deg, #333, #555);
            color: white;
            text-align: center;
            padding: 40px 50px;
        }

        .footer p {
            opacity: 0.8;
            font-size: 14px;
        }

        .footer-heart {
            color: #ff69b4;
        }

        /* ============ RESPONSIV DIZAYN ============ */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 25px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero {
                padding: 100px 25px 60px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-avatar {
                width: 140px;
                height: 140px;
            }

            .hero-avatar svg {
                width: 60px;
                height: 60px;
            }

            .about, .projects, .contact {
                padding: 60px 25px;
            }

            .section-title {
                font-size: 28px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                height: 300px;
            }

            .contact-form {
                padding: 30px 25px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
        }

        /* ============ ANIMATSIYALAR ============ */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }