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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.8;
            color: #1a1a1a;
            overflow-x: hidden;
            background: #ffffff;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid #e0e0e0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

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

        .nav-menu a:hover {
            color: #666;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: #1a1a1a;
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            color: #1a1a1a;
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
            opacity: 0.5;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            letter-spacing: 3px;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #666;
            font-weight: 400;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            color: #888;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: #1a1a1a;
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s backwards;
            border: 2px solid #1a1a1a;
        }

        .btn:hover {
            background: white;
            color: #1a1a1a;
        }

        /* About Section */
        .about {
            padding: 8rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
            background: #fafafa;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1rem;
            color: #888;
            margin-bottom: 5rem;
            letter-spacing: 1px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            max-width: 400px;
            height: 500px;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: white;
            border: 1px solid #e0e0e0;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.05rem;
            line-height: 2;
            text-align: justify;
        }

        

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: white;
            border: 1px solid #e0e0e0;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 300;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #888;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Skills Section */
        .skills {
            padding: 8rem 3rem;
            background: #ffffff;
        }

        .skills-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            margin-top: 5rem;
        }

        .skill-category {
            padding: 3rem;
            border: 1px solid #e0e0e0;
            background: #fafafa;
        }

        .skill-category h3 {
            margin-bottom: 2rem;
            color: #1a1a1a;
            font-size: 1.3rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .skill-item {
            margin-bottom: 2rem;
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }

        .skill-name {
            font-size: 0.95rem;
            color: #555;
            letter-spacing: 1px;
        }

        .skill-percentage {
            font-size: 0.9rem;
            color: #888;
        }

        .skill-bar {
            background: #e0e0e0;
            height: 2px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: #1a1a1a;
            transition: width 1.5s ease;
        }

        /* Experience Section */
        .experience {
            padding: 8rem 3rem;
            background: #fafafa;
        }

        .experience-container {
            max-width: 1100px;
            margin: 0 auto;
        }

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

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: #e0e0e0;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 4rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
            padding-right: 3rem;
        }

        .timeline-item:nth-child(even) .timeline-content {
            padding-left: 3rem;
        }

        .timeline-content {
            width: 45%;
            padding: 2rem;
            background: white;
            border: 1px solid #e0e0e0;
        }

        .timeline-date {
            font-size: 0.85rem;
            color: #888;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .timeline-company {
            font-size: 1rem;
            color: #666;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .timeline-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.8;
        }

        /* Projects Section */
        .projects {
            padding: 8rem 3rem;
            background: #fafafa;
        }

        .projects-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 5rem;
        }

        .project-card {
            background: #fafafa;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .project-card:hover {
            border-color: #1a1a1a;
        }

        .project-image {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            border-bottom: 1px solid #e0e0e0;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;   
            border-radius: 0;    
        }
        
        .project-info {
            padding: 2.5rem;
        }

        .project-category {
            font-size: 0.8rem;
            color: #888;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .project-info h3 {
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-size: 1.5rem;
            font-weight: 400;
        }

        .project-info p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .project-link {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: transparent;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid #1a1a1a;
            transition: all 0.3s ease;
            margin-right: 1rem;
        }

        .project-link:hover {
            background: #1a1a1a;
            color: white;
        }
        /* New Project Card Style */
.project-card.new-style {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.project-card.new-style:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.project-card .project-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card .project-info {
    padding: 1.3rem 1.4rem 1.6rem;
}

.project-card .project-category {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: #777;
    margin-bottom: 4px;
}

.project-card h3 {
    font-size: 1.15rem;
    margin: 6px 0;
    font-weight: 600;
}

.project-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.45;
    margin-top: 8px;
}

        /* Contact Section */
        .contact {
            padding: 8rem 3rem;
            background: #fafafa;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 1rem;
            color: #1a1a1a;
            font-weight: 400;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .form-group input,
        .form-group textarea {
            padding: 1.2rem;
            border: 1px solid #e0e0e0;
            background: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            color: #1a1a1a;
        }

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

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

        .submit-btn {
            padding: 1.2rem 3rem;
            background: #1a1a1a;
            color: white;
            border: 2px solid #1a1a1a;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .submit-btn:hover {
            background: white;
            color: #1a1a1a;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 3rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
            line-height: 2;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #333;
            text-align: center;
            color: #666;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 1.5rem 2rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .skills-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 0;
            }

            .timeline-item {
                justify-content: flex-start !important;
            }

            .timeline-item .timeline-content {
                width: 100%;
                text-align: left !important;
                padding-left: 3rem !important;
                padding-right: 2rem !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                border-top: 1px solid #e0e0e0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats {
                grid-template-columns: 1fr;
            }
        }

        /* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    background: white;
    border: 1px solid #e0e0e0;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #e0e0e0;
    font-size: 2rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: #1a1a1a;
    color: white;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 4rem;
}

.modal-category {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.modal-info h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.modal-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.modal-details {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-details h3,
.modal-links h3 {
    font-size: 0.9rem;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.modal-detail-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-detail-label {
    color: #888;
    letter-spacing: 1px;
}

.modal-detail-value {
    color: #555;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1a1a1a;
    color: white;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Responsive */
@media (max-width: 1024px) {
    .modal-content {
        margin: 1rem;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image-container {
        min-height: 400px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .modal-info {
        padding: 3rem 2rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .modal-info h2 {
        font-size: 1.5rem;
    }
    
    .modal-detail-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Image Showcase Gallery */
.modal-showcase {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-showcase h3 {
    font-size: 0.9rem;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.showcase-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.showcase-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    flex: 1;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.showcase-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.showcase-gallery img {
    flex: 0 0 calc(100% / 3); /* setiap gambar ambil 1/3 lebar container */
    height: 200px;            /* sesuaikan tinggi sesuai desain */
    object-fit: cover;        /* biar proporsional, tidak melar */
    border-radius: 6px;       /* opsional, biar sudut lebih halus */
}

.showcase-item {
    min-width: 120px;
    width: 120px;
    height: 120px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    border-color: #666;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-item.active {
    border-color: #1a1a1a;
    border-width: 3px;
}

.showcase-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.1);
    pointer-events: none;
}

.showcase-nav {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.showcase-nav svg {
    width: 20px;
    height: 20px;
    color: #1a1a1a;
}

.showcase-nav:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.showcase-nav:hover svg {
    color: white;
}

.showcase-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.showcase-nav:disabled:hover {
    background: white;
    border-color: #e0e0e0;
}

.showcase-nav:disabled:hover svg {
    color: #1a1a1a;
}

/* Responsive Showcase */
@media (max-width: 768px) {
    .showcase-item {
        min-width: 100px;
        width: 100px;
        height: 100px;
    }
    
    .showcase-nav {
        width: 35px;
        height: 35px;
    }
    
    .showcase-nav svg {
        width: 16px;
        height: 16px;
    }
}

/* Blog Section */
.blog {
    padding: 8rem 3rem;
    background: #ffffff;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.blog-card {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex: 1;
}

.blog-read-more {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    letter-spacing: 2px;
}

/* Blog Modal */
.blog-modal-content {
    max-width: 900px;
}

.blog-modal-body {
    padding: 4rem;
}

.blog-modal-header {
    margin-bottom: 3rem;
}

.blog-modal-category {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.blog-modal-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 1px;
}

.blog-modal-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
}

.blog-modal-image {
    width: 100%;
    height: 400px;
    margin-bottom: 3rem;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.blog-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-modal-content-text {
    color: #555;
    line-height: 2;
    font-size: 1.05rem;
}

.blog-modal-content-text p {
    margin-bottom: 1.5rem;
}

.blog-modal-content-text h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog-modal-content-text h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.blog-modal-content-text ul,
.blog-modal-content-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-modal-content-text li {
    margin-bottom: 0.8rem;
}

.blog-modal-content-text blockquote {
    border-left: 3px solid #1a1a1a;
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-modal-body {
        padding: 3rem 2rem;
    }
    
    .blog-modal-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 240px;
    }
    
    .blog-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .blog-modal-header h1 {
        font-size: 1.6rem;
    }
    
    .blog-modal-image {
        height: 300px;
    }
    
    .blog-modal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.blog-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.blog-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

/* Blog Card dalam Carousel */
.blog-carousel .blog-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    min-width: 320px;
    max-width: 400px;
}

/* Carousel Navigation Buttons */
.blog-carousel-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel-btn:hover {
    background: #333;
    transform: scale(1.05);
}

.blog-carousel-btn:active {
    transform: scale(0.95);
}

/* View All Button */
.blog-view-all {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #1a1a1a;
    color: white;
}

.btn-view-all svg {
    transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-carousel .blog-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .blog-carousel .blog-card {
        flex: 0 0 85%;
        min-width: 260px;
    }
    
    .blog-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-view-all {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
}

/* === PROJECTS CAROUSEL === */
.projects-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.projects-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem;
    
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.projects-carousel::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 350px;
}

/* Carousel buttons */
.carousel-btn {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 1.4rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}
.carousel-btn:hover {
    background: #333;
}

/* Resize project cards agar lebih kecil dan proporsional */
.project-card {
    flex: 0 0 auto;
    max-width: 280px;     /* lebar kartu */
    height: auto;         /* tinggi otomatis mengikuti isi */
}

/* === Override tombol project: lebih kecil, rapi, proporsional === */
.project-link {
    padding: 0.4rem 1rem !important;   /* sebelumnya 0.8rem 2rem */
    font-size: 0.7rem !important;      /* sebelumnya 0.85rem */
    margin-right: 0.5rem !important;   /* supaya lebih dekat */
    letter-spacing: 1px !important;    /* biar tidak terlalu melebar */
}

/* === Showcase Carousel Modal === */

/* Container tombol + gallery */
.showcase-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery sebagai slider */
.showcase-gallery {
    display: flex;
    overflow-x: auto;         /* bikin bisa digeser */
    scroll-behavior: smooth;
    gap: 0.5rem;

    /* hide scrollbar */
    scrollbar-width: none;
}
.showcase-gallery::-webkit-scrollbar {
    display: none;
}

/* Thumbnail agar hanya tampil 3 sekaligus */
.showcase-gallery img {
    flex: 0 0 calc(33.33% - 4px);  /* EXACT 3 item */
    max-width: calc(33.33% - 4px);
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
}

/* View All Projects Button */
.projects-view-all {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', serif; background: #fff; color: #1a1a1a; line-height: 1.8; }

        /* Hero About */
        .about-hero {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            min-height: 100vh;
            border-bottom: 1px solid #e0e0e0;
        }
        .about-image-section {
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
        }
        .profile-image-wrapper {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
            overflow: hidden;
        }
        .profile-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
        
        .about-intro-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem;
        }
        .intro-label {
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 1rem;
        }
        .intro-name {
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }
        .intro-title {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            font-style: italic;
        }
        .intro-bio {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 500px;
        }
        .intro-quick-facts {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .quick-fact { text-align: left; }
        .quick-fact-value { font-size: 1.8rem; font-weight: 300; color: #1a1a1a; }
        .quick-fact-label { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: #888; }

        /* Buttons */
        .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid #1a1a1a;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-primary { background: #1a1a1a; color: #fff; }
        .btn-primary:hover { background: #333; }
        .btn-secondary { background: transparent; color: #1a1a1a; }
        .btn-secondary:hover { background: #1a1a1a; color: #fff; }

        /* Content Sections */
        .about-section {
            padding: 5rem 3rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .section-header {
            margin-bottom: 3rem;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        .section-line {
            width: 60px;
            height: 2px;
            background: #1a1a1a;
        }

        /* Story Section */
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        .story-content p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .value-card {
            padding: 2rem;
            background: #fafafa;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        .value-card:hover {
            border-color: #1a1a1a;
            transform: translateY(-5px);
        }
        .value-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        .value-title {
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
        }
        .value-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.7;
        }

        /* Education Section */
        .education-item {
            display: flex;
            gap: 2rem;
            padding: 2rem 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .edu-year {
            min-width: 120px;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: #888;
        }
        .edu-content h3 {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 0.3rem;
        }
        .edu-school {
            font-size: 1rem;
            color: #666;
            font-style: italic;
            margin-bottom: 0.5rem;
        }
        .edu-desc {
            font-size: 0.9rem;
            color: #777;
        }

        /* Interests Section */
        .interests-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .interest-tag {
            padding: 0.8rem 1.5rem;
            background: #fafafa;
            border: 1px solid #e0e0e0;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        .interest-tag:hover {
            background: #1a1a1a;
            color: #fff;
            border-color: #1a1a1a;
        }

        /* CTA Section */
        .cta-section {
            background: #1a1a1a;
            color: #fff;
            text-align: center;
            padding: 5rem 3rem;
        }
        .cta-title {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        .cta-desc {
            color: #aaa;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .btn-primary {
            background: #fff;
            color: #1a1a1a;
            border-color: #fff;
        }
        .cta-section .btn-primary:hover {
            background: transparent;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-hero { grid-template-columns: 1fr; }
            .about-image-section { min-height: 400px; }
            .story-content { grid-template-columns: 1fr; }
            .values-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .about-intro-section { padding: 2rem; }
            .intro-name { font-size: 2rem; }
            .about-section { padding: 3rem 1.5rem; }
            .education-item { flex-direction: column; gap: 0.5rem; }
        }

        /* === KEY PARTNERS SECTION === */
        .key-partners-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .partner-card {
            background: #fafafa;
            padding: 2rem;
            border: 1px solid #e0e0e0;
            text-align: center;
            transition: all 0.3s ease;
        }

        .partner-card:hover {
            border-color: #1a1a1a;
            transform: translateY(-5px);
        }

        .partner-photo {
            width: 120px;
            height: 120px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid #ddd;
        }

        .partner-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .partner-name {
            font-size: 1.1rem;
            font-weight: 500;
            margin-top: 0.5rem;
            color: #1a1a1a;
        }

        .partner-job {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.3rem;
            font-style: italic;
        }

        .partner-role {
            margin-top: 0.8rem;
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .key-partners-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .key-partners-grid {
                grid-template-columns: 1fr;
            }
        }

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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: #ffffff;
            color: #1a1a1a;
            min-height: 100vh;
        }

        /* Header */
        .page-header {
            text-align: center;
            padding: 6rem 2rem 4rem;
            background: #fafafa;
            border-bottom: 1px solid #e0e0e0;
        }

        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .page-header p {
            color: #888;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        /* Skills Container */
        .skills-page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        /* Category Section */
        .skill-category-section {
            margin-bottom: 4rem;
        }

        .category-title {
            font-size: 1.3rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e0e0e0;
        }

        /* Skills Grid */
        .skills-logo-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        /* Skill Item */
        .skill-logo-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1.2rem;
            background: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .skill-logo-item:hover {
            border-color: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Logo Icon */
        .skill-logo {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .skill-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Skill Name */
        .skill-name-badge {
            font-size: 0.9rem;
            letter-spacing: 1px;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        /* Hover Effect - Green Background */
        .skill-logo-item:hover .skill-name-badge {
            background: #22c55e;
            color: white;
        }

        /* Color Variants for different categories */
        .skill-logo-item.robotics:hover .skill-name-badge {
            background: #22c55e;
        }

        .skill-logo-item.iot:hover .skill-name-badge {
            background: #3b82f6;
        }

        .skill-logo-item.ml:hover .skill-name-badge {
            background: #8b5cf6;
        }

        .skill-logo-item.web:hover .skill-name-badge {
            background: #f59e0b;
        }

        .skill-logo-item.tools:hover .skill-name-badge {
            background: #ec4899;
        }

        /* Back Button */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: transparent;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid #1a1a1a;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .back-btn:hover {
            background: #1a1a1a;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            
            .skill-name-badge {
                font-size: 0.8rem;
            }
        }

        /* USER DROPDOWN */

.user-dropdown {
    position: relative;
    margin-left: 20px;
}

.user-icon img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    object-fit: cover;
    transition: 0.3s ease;
}

.user-icon img:hover {
    border-color: #1a1a1a;
}

/* Dropdown Box */
.user-menu {
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 0;
    width: 150px;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 999;
}

.user-menu li {
    list-style: none;
    padding: 0;
}

.user-menu li a {
    display: block;
    padding: 10px 15px;
    color: #1a1a1a;
    font-size: 0.9rem;
    text-decoration: none;
}

.user-menu li a:hover {
    background: #f3f3f3;
}
