* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: #f8f9fa;
            color: #2c3e50;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.8em;
            font-weight: bold;
            color: #e74c3c;
            text-decoration: none;
            letter-spacing: -1px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #e74c3c;
        }

        nav a.active {
            color: #e74c3c;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #e74c3c;
            transition: width 0.3s ease;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            padding: 120px 40px 80px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            width: 100%;
        }

        .hero-intro {
            margin-bottom: 40px;
        }

        .hero-intro .greeting {
            font-size: 1.3em;
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        .hero-intro h1 {
            font-size: 4em;
            font-weight: 300;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-intro .highlight {
            color: #e74c3c;
            font-weight: 400;
        }

        .hero-description {
            font-size: 1.4em;
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #e74c3c;
            display: block;
        }

        .stat-label {
            color: #7f8c8d;
            font-size: 1em;
            margin-top: 5px;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .btn-primary {
            background: #e74c3c;
            color: white;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid #e74c3c;
        }

        .btn-primary:hover {
            background: transparent;
            color: #e74c3c;
        }

        .btn-secondary {
            color: #2c3e50;
            padding: 15px 35px;
            text-decoration: none;
            border: 2px solid #2c3e50;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #2c3e50;
            color: white;
        }

        /* Sections */
        section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5em;
            font-weight: 300;
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2em;
            color: #7f8c8d;
            margin-bottom: 80px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Projects */
        .projects-container {
            display: grid;
            gap: 80px;
        }

        .project {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .project:nth-child(even) {
            direction: rtl;
        }

        .project:nth-child(even) > * {
            direction: ltr;
        }

        /* .project-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 300px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            color: white;
            position: relative;
            overflow: hidden;
        } */

        .project-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 300px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project:hover .project-image::before {
            opacity: 1;
        }

        .project-info h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .project-info p {
            margin-bottom: 25px;
            color: #7f8c8d;
            font-size: 1.1em;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .tech-tag {
            background: #ecf0f1;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            color: #2c3e50;
            border: 1px solid #bdc3c7;
        }

        .project-links {
            display: flex;
            gap: 20px;
        }

        .project-links a {
            color: #e74c3c;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .project-links a:hover {
            color: #c0392b;
            text-decoration: underline;
        }

        /* Mini Projects Section */
        .mini-projects {
            background: white;
            padding: 100px 40px;
            margin: 100px 0;
        }

        .mini-projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .mini-project-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid #ecf0f1;
            position: relative;
            overflow: hidden;
        }

        .mini-project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .mini-project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #e74c3c;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .mini-project-card:hover::before {
            transform: scaleY(1);
        }

        .mini-project-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .mini-project-icon {
            font-size: 2em;
            width: 60px;
            height: 60px;
            background: #e74c3c;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .mini-project-icon img {
            width: 80%;
            height: 80%;
            object-fit: contain;
            object-position: center;
        }

        .mini-project-card h3 {
            font-size: 1.3em;
            color: #2c3e50;
            margin: 0;
        }

        .mini-project-card p {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .mini-project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .mini-tech-tag {
            background: #ecf0f1;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8em;
            color: #2c3e50;
            border: 1px solid #bdc3c7;
        }

        .mini-project-links {
            display: flex;
            gap: 15px;
        }

        .mini-project-links a {
            color: #e74c3c;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9em;
            transition: color 0.3s ease;
        }

        .mini-project-links a:hover {
            color: #c0392b;
            text-decoration: underline;
        }
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .skill-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .skill-card:hover {
            transform: translateY(-5px);
        }

        .skill-icon {
            font-size: 3em;
            margin-bottom: 20px;
            color: #e74c3c;
        }

        .skill-card h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .skill-list {
            list-style: none;
            color: #7f8c8d;
        }

        .skill-list li {
            padding: 5px 0;
        }

        /* About */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }

        .about-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 400px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6em;
            color: white;
        }
        .about-image img {
            width: 100%;
            height: 130%;
            object-fit: cover;
            object-position: center;
            border-radius: 10px;
        }

        .about-text {
            font-size: 1.1em;
            color: #7f8c8d;
        }

        .about-text p {
            margin-bottom: 25px;
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .contact-info h3 {
            font-size: 1.8em;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #2c3e50;
            text-decoration: none;
            padding: 15px 0;
            border-bottom: 1px solid #ecf0f1;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: #e74c3c;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ecf0f1;
            border-radius: 5px;
            font-size: 1em;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #e74c3c;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 40px;
            margin-top: 100px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 20px;
                flex-direction: column;
                height: auto;
                padding-top: 15px;
                padding-bottom: 15px;
            }

           .logo {
                margin-bottom: 10px;
                font-size: 1.5em;
            }

            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav a {
                font-size: 0.9em;
                padding: 5px 10px;
            }

            .hero {
                padding: 150px 20px 60px;
                text-align: center;
            }

            .hero-stats {
                gap: 30px;
                flex-direction: column;
                align-items: center;
            }

            .stat-item {
                width: 150px;
            }

            .hero-intro h1 {
                font-size: 3em;
            }

            .hero-description {
                font-size: 1.2em;
            }

            section {
                padding: 60px 20px;
            }

            .project {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .project:nth-child(even) {
                direction: ltr;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .about-image {
                order: 2;
                height: 300px;
            }

            .about-text {
                order: 1;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Scroll animations */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .language-selector {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 12px;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            gap: 10px;
        }

        .lang-button {
            background: none;
            border: none;
            padding: 5px 10px;
            border-radius: 15px;
            cursor: pointer;
            font-size: 0.9em;
            transition: all 0.3s ease;
        }

        .lang-button.active {
            background: #e74c3c;
            color: white;
        }

        .carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: white;
}

.project-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-link-wrapper .project {
  cursor: pointer;
}

.project-link-wrapper h3,
.project-link-wrapper p,
.project-link-wrapper span,
.project-link-wrapper .tech-tag,
.project-link-wrapper .project-links {
  text-decoration: none;
  color: inherit;
}