/* =================== GLOBAL STYLES =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a192f; /* Midnight Blue */
    color: #ccd6f6; /* Soft light blue-gray for text */
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden;
}
/* =================== HEADER / NAVBAR =================== */
header {
    background: linear-gradient(90deg, #0a192f, #112240);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.nav-item {
    padding: 10px 20px;
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
}
.nav-item:hover,
.nav-item.active {
    background: #64ffda;
    color: #0a192f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
    border: 1px solid #00e5ff;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #64ffda;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-item:hover::after,
.nav-item.active::after {
    opacity: 1;
}
/* =================== MAIN CONTENT =================== */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(17, 34, 64, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.profile-section {
    flex: 0 0 300px;
    text-align: center;
}
.profile-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid #64ffda;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
    transition: transform 0.4s ease;
}
.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-circle:hover {
    transform: scale(1.05) rotate(5deg);
}
.text-section {
    flex: 1;
    min-width: 300px;
}
.text-section h2 {
    font-size: 2em;
    color: #64ffda;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}
.text-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e6f1ff;
    line-height: 1.7;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #112240;
    color: white;
    font-size: 1.5em;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    background: #64ffda;
    color: #0a192f;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
}
.email {
    font-size: 1.1em;
    color: #64ffda;
    margin-top: 20px;
    font-weight: 600;
}
/* =================== FOOTER =================== */
footer {
    background: #112240;
    color: #8892b0;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    margin-top: 50px;
    border-top: 1px solid #233554;
}
/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        padding: 20px;
    }
    .profile-section {
        flex: 0 0 auto;
        margin-bottom: 30px;
    }
    .nav-item {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}
/* ============== SKILLS PAGE STYLES ============== */
.skill-category {
    background: rgba(100, 255, 218, 0.08);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 3px solid #64ffda;
}
.skill-category h3 {
    color: #64ffda;
    margin-bottom: 10px;
    font-size: 1.3em;
}
.skill-category ul {
    list-style-type: none;
    padding-left: 10px;
}
.skill-category li {
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
}
.skill-category li::before {
    content: "✓";
    color: #64ffda;
    position: absolute;
    left: 0;
    font-weight: bold;
}
/* =================== SEARCH BAR & PROFILE SECTION =================== */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    max-width: 400px;
}
.search-bar input {
    width: 70%;
    padding: 10px;
    background-color: #112240;
    color: #ccd6f6;
    border: 1px solid #4d7ea8;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}
.search-bar button {
    width: 30%;
    padding: 10px;
    background-color: #64ffda;
    color: #0a192f;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.search-bar button:hover {
    background-color: #00e5ff; /* Cyan Glow */
}
.profile-section {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}
.profile-circle {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 4px solid #64ffda;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}
.profile-section p {
    font-size: 1.3em;
    margin: 20px 0;
    color: #e6f1ff;
}
.arrows {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 15px 0;
    font-size: 1.8em;
    color: #64ffda;
}
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}
.btn {
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #0a192f;
    background-color: #64ffda;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(100, 255, 218, 0.4);
    background-color: #00e5ff;
}
.nav-item {
    padding: 10px 20px;
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
}
.nav-item:hover,
.nav-item.active {
    background: #64ffda;
    color: #0a192f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
    border: 1px solid #00e5ff;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #64ffda;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-item:hover::after,
.nav-item.active::after {
    opacity: 1;
}
/* ============== SOCIAL ICONS ============== */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
    flex-wrap: wrap;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #112240;
    color: #64ffda; /* Electric Blue */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(100, 255, 218, 0.3);
}
.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: #64ffda;
    color: #0a192f;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.6);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d1b2a; /* Biru tua */
    color: #fff;
    line-height: 1.6;
}
/* Navbar */
.navbar {
    background-color: #0d1b2a;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.nav-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.nav-btn {
    background-color: #4ecdc4;
    color: #0d1b2a;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background-color: #3ab7a9;
    transform: translateY(-2px);
}
.nav-btn.active {
    background-color: #1a5276;
    color: white;
}
/* Konten Utama */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #16213e;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
/* Foto Profil di Kiri */
.profile-pic-wrapper {
    flex-shrink: 0;
}
.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #4ecdc4;
    box-shadow: 0 0 20px #4ecdc4;
    object-fit: cover;
}
/* Teks Intro di Kanan */
.intro-text {
    flex: 1;
    min-width: 300px;
}
.intro-text h1 {
    font-size: 2.2rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}
.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
}
/* Ikon di Bawah Teks — versi kecil & rapi */
.icon-group {
    display: flex;
    gap: 0.8rem; /* Jarak antar ikon lebih rapat */
    align-items: center;
    margin-top: 1rem;
}
.icon-item {
    width: 40px;
    height: 40px;
    background-color: #0d1b2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.3);
    border: 1px solid transparent;
}
.icon-item:hover {
    background-color: #4ecdc4;
    transform: scale(1.1);
    color: #0d1b2a;
    border: 1px solid #4ecdc4;
}
/* Footer */
.footer {
    background-color: #0d1b2a;
    color: #4ecdc4;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    margin-top: 2rem;
    border-top: 1px solid #4ecdc4;
}
/* Responsif */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
    }

    .profile-pic-wrapper {
        order: 1;
    }

    .intro-text {
        order: 2;
        text-align: center;
    }

    .icon-group {
        justify-content: center;
        gap: 1rem;
    }

    .icon-item {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
.main-container p {
    text-align: center;
}
/* ============== GLOBAL STYLES ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a192f;
    color: #ccd6f6;
    line-height: 1.6;
    overflow-x: hidden;
}
header {
    background: linear-gradient(90deg, #0a192f, #112240);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
}
header h1 {
    color: #64ffda;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.5);
}
.nav-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0;
}
.nav-item {
    padding: 10px 20px;
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
}
.nav-item:hover,
.nav-item.active {
    background: #64ffda;
    color: #0a192f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
    border: 1px solid #00e5ff;
}
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}
.page-header {
    text-align: center;
    margin-bottom: 40px;
}
.page-header h2 {
    color: #64ffda;
    font-size: 2.2em;
    margin-bottom: 12px;
}
.page-header p {
    color: #e6f1ff;
    font-size: 1.1em;
}
/* ============== TOMBOL SERTIFIKAT ============== */
.cert-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}
.cert-btn {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    text-align: center;
    padding: 20px;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cert-btn:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.5);
}
/* Warna tiap tombol */
.cert-btn.aguna {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}
.cert-btn.redhat {
    background: linear-gradient(135deg, #e63946, #c1121f);
}
.cert-btn.fortinet {
    background: linear-gradient(135deg, #ff6b6b, #ff4d4d);
}
.cert-btn.ccna {
    background: linear-gradient(135deg, #4cc9f0, #4895ef);
}
.cert-btn.others {
    background: linear-gradient(135deg, #96ceb4, #ffeead);
    color: #0a192f;
}
/* ============== GALERI SERTIFIKAT ============== */
.gallery {
    margin: 30px 0;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
}
.gallery-img {
    width: 100%;
    height: auto;
    border: 3px solid #64ffda;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.4);
}
/* ============== FOOTER ============== */
footer {
    background: #112240;
    color: #8892b0;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    margin-top: 50px;
    border-top: 1px solid #233554;
}
/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
    .cert-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cert-btn {
        width: 160px;
        height: 160px;
        font-size: 1.1em;
    }
}
/* ============== MODAL ZOOM ============== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: #112240;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 3px solid #64ffda;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
    transition: transform 0.3s ease;
}
.modal-content img:hover {
    transform: scale(1.02);
}
.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    color: #64ffda;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.close:hover {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.3);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ============== BACK BUTTON ============== */
.back-button {
    text-align: center;
    margin: 30px 0;
}
.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background: #112240;
    color: #64ffda;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #64ffda;
}
.btn-back:hover {
    background: #64ffda;
    color: #0a192f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
}
/* ============== LOGO / TAGLINE ============== */
.logo-box {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1000;
    background: rgba(17, 34, 64, 0.8);
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
    transition: all 0.3s ease;
}
.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.4em;
    color: #64ffda; /* Biru Neon */
    text-shadow: 0 0 8px rgba(100, 255, 218, 0.6);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.logo-box:hover .logo-text {
    color: #00e5ff; /* Cyan Glow */
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.8);
    transform: scale(1.05);
}
.main-container p {
    text-align: center;
}
/* ============== CENTERED TEXT - PERBAIKAN KHUSUS ============== */
.centered-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}
.intro-text {
    font-family: 'VT323', monospace;
    font-size: 2.0em;
    color: #64ffda;
    text-shadow: 0 0 12px rgba(100, 255, 218, 0.7);
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
    text-align: center;
}
.intro-text:hover {
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.9);
    transform: scale(1.02);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ============== ABOUT ME STYLES ============== */
.profile-info {
    margin-bottom: 30px;
}
.info-box {
    background: #112240;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #64ffda;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.info-box h2 {
    color: #64ffda;
    margin-bottom: 15px;
    font-size: 1.5em;
}
.info-row {
    margin: 8px 0;
    color: #ccd6f6;
    display: flex;
    gap: 10px;
}
.info-row strong {
    color: #64ffda;
    font-weight: 600;
}
.about-content {
    margin: 30px 0;
}
.photo-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.photo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 250px;
    background: #112240;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}
.photo-card:hover {
    transform: translateY(-5px);
}
.photo-circle {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 3px solid #64ffda;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    transition: transform 0.3s;
}
.photo-circle:hover {
    transform: scale(1.05);
}
.bio-text {
    flex: 1;
    min-width: 300px;
    background: #112240;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
    text-align: justify;
}
.bio-text p {
    margin-bottom: 15px;
    color: #e6f1ff;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #64ffda;
    color: #0a192f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn:hover {
    background: #00e5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
}
/* ============== ABOUT ME DETAIL STYLES ============== */
.three-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    background: #112240;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card-header {
    background: #64ffda;
    color: #0a192f;
    padding: 15px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
}
.card-header h3 {
    margin: 0;
    font-size: 1.3em;
    font-weight: 600;
}
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.card-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #64ffda;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
    transition: transform 0.3s;
}
.card-img:hover {
    transform: scale(1.05);
}
.card-body p {
    color: #e6f1ff;
    text-align: justify;
    line-height: 1.6;
    font-size: 0.95em;
}
.back-button {
    text-align: center;
    margin: 30px 0;
}
.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background: #112240;
    color: #64ffda;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #64ffda;
}
.btn-back:hover {
    background: #64ffda;
    color: #0a192f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 255, 218, 0.4);
}
/* ============== CONTACT PAGE STYLES ============== */

.social-section {
    margin: 30px 0;
}

.social-header {
    text-align: center;
    margin-bottom: 30px;
}

.social-header h2 {
    color: #64ffda;
    font-size: 2em;
    margin-bottom: 10px;
}

.social-header p {
    color: #e6f1ff;
    font-size: 1.1em;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.social-item {
    display: flex;
    align-items: center;
    background: #112240;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ccd6f6;
    width: 100%;
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-text {
    font-size: 1em;
    color: #e6f1ff;
    transition: color 0.3s ease;
}

.social-link:hover .social-text {
    color: #64ffda;
}
.social-icon {
    width: 50px;
    height: 50px;
}
/* ============== DOWNLOAD CV BUTTON ============== */
.btn-download {
    background: #64ffda;
    color: #0a192f;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

.btn-download:hover {
    background: #00e5ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(100, 255, 218, 0.4);
}
/* ============== SKILLS PAGE STYLES ============== */

.skills-header {
    text-align: center;
    margin-bottom: 30px;
}

.skills-header h2 {
    color: #64ffda;
    font-size: 2em;
    margin-bottom: 10px;
}

.skills-header p {
    color: #e6f1ff;
    font-size: 1.1em;
}

.skill-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.skill-card {
    background: #112240;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.skill-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(100, 255, 218, 0.4);
}

.skill-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px auto;
    border: 3px solid #64ffda;
    transition: transform 0.3s;
}

.skill-icon:hover {
    transform: scale(1.1);
}

.skill-card h3 {
    color: #64ffda;
    text-align: center;
    margin: 15px 0;
    font-size: 1.3em;
}

.skill-details {
    display: none;
    padding: 20px;
    background: #0a192f;
    border-top: 1px solid #233554;
    transition: all 0.3s ease;
}

.skill-card.active .skill-details {
    display: block;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 768px) {
    .skill-cards {
        grid-template-columns: 1fr;
    }
}
/* === MODAL ZOOM (SESUAI GAMBAR YANG KAMU KIRIM) === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #151520; /* Warna gelap seperti halaman kamu */
  margin: 10% auto;
  padding: 25px;
  border-radius: 12px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3); /* Cyan glow */
  transform: scale(0.9);
  animation: zoomIn 0.3s ease forwards;
  color: #e0e0ff; /* Putih terang */
  border: 1px solid rgba(0, 255, 255, 0.2); /* Garis cyan tipis */
  position: relative;
}

/* Judul modal di tengah atas */
.modal-title {
  color: #4df; /* Cyan seperti judul di halaman kamu */
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 15px 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* Daftar poin di bawah judul */
.modal-points {
  text-align: center;
  padding-top: 10px;
}

.modal-points p {
  margin: 8px 0;
  line-height: 1.6;
  color: #c0c0ff; /* Abu-abu terang */
  display: block;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  position: center;
  top: 10px;
  right: 15px;
  z-index: 3;
}

.close:hover {
  color: #fff;
}

/* Animasi */
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.skill-title {
  color: #4df;
  font-size: 1.4rem;
  text-align: center;
}