/* style.css */
 /* PALET WARNA TRUSTED TECH */
        :root {
            --bg-dark: #0D1B2A;       /* Deep Dark Navy */
            --navy-main: #1B263B;     /* Navy Blue */
            --slate: #415A77;         /* Slate Gray */
            --cyan-accent: #00B4D8;   /* Cyan Accent */
            --white: #E0E1DD;         /* Off White */
            --text-gray: #A0A0A0;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* HEADER */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background: rgba(13, 27, 42, 0.9);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        .logo { font-weight: 700; font-size: 1.5rem; color: var(--cyan-accent); }
        nav a { margin: 0 15px; text-decoration: none; color: var(--white); font-size: 0.9rem; }
        .btn-login { background: var(--cyan-accent); color: var(--bg-dark); padding: 8px 20px; border-radius: 20px; font-weight: bold; }

        /* HERO SECTION */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 120px 8% 60px;
            min-height: 80vh;
        }
        .hero-text h1 { font-size: 4.5rem; margin-bottom: 10px; line-height: 1;}
        .hero-text span { color: var(--cyan-accent); }
        .hero-text p { color: var(--text-gray); max-width: 500px; margin-bottom: 20px; }
        .hero-img { width: 400px; filter: drop-shadow(0 0 20px var(--cyan-accent)); }

        /* SKILLS SECTION */
        .skills-container {
            display: flex;
            gap: 50px;
            padding: 60px 8%;
            align-items: center;
        }
        .profile-card {
            background: var(--navy-main);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--slate);
        }
        .profile-img { width: 120px; border-radius: 15px; margin-bottom: 15px; }

        .skill-bars { flex-grow: 1; }
        .bar-item { margin-bottom: 15px; }
        .bar-label { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 0.8rem; }
        .bar-bg { background: var(--slate); height: 10px; border-radius: 5px; }
        .bar-fill { 
            background: linear-gradient(90deg, var(--slate), var(--cyan-accent)); 
            height: 100%; border-radius: 5px; 
            transition: width 1s ease-in-out;
        }

        /* CARDS SECTION */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 40px 8%;
        }
        .card {
            background: var(--navy-main);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border-bottom: 3px solid transparent;
            transition: 0.3s;
        }
        .card:hover { border-bottom: 3px solid var(--cyan-accent); transform: translateY(-10px); }
        .card i { font-size: 2rem; color: var(--cyan-accent); margin-bottom: 15px; display: block; }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero, .skills-container { flex-direction: column; text-align: center; }
            .hero-text h1 { font-size: 2.5rem; }
            .hero-img { width: 250px; margin-top: 30px; }
        }

        /* Styling khusus container logo */
.hero-img-container {
    position: relative;
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.3));
}

/* Animasi Logo biar kelihatan High-Tech */
.logo-img {
    filter: drop-shadow(0 0 5px rgba(0, 180, 216, 0.5));
    transition: 0.5s ease;
    animation: float 4s ease-in-out infinite; /* Biar logonya naik turun pelan */
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--cyan-accent));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Tombol About Me Custom */
.btn-about {
    background: linear-gradient(45deg, var(--cyan-accent), #0077B6);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    transition: 0.3s;
}

.btn-about:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.6);
}

/* Styling khusus container logo */
.hero-img-container {
    position: relative;
    width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 180, 216, 0.3));
}

/* Animasi Logo biar kelihatan High-Tech */
.logo-img {
    filter: drop-shadow(0 0 5px rgba(0, 180, 216, 0.5));
    transition: 0.5s ease;
    animation: float 4s ease-in-out infinite; /* Biar logonya naik turun pelan */
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--cyan-accent));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Tombol About Me Custom */
.btn-about {
    background: linear-gradient(45deg, var(--cyan-accent), #0077B6);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    transition: 0.3s;
}

.btn-about:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.6);
}


