body {
    margin: 0;
    background: #01080d;
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: space-between;
    padding: 100px 90px;
    gap: 12x; /* jarak antara teks dan logo */
}

.text h1 {
    font-size: 50px;
}

.logo {
    margin-left: 35px !important;
}

.text span {
    color: rgb(0, 255, 225);
}

.profile img {
    width: 220px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgb(0, 238, 255);
    transform: translate(-40px, 30px);
}

.social {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.social a {
    margin-right: 20px;
    font-size: 18px;
    opacity: 0.8;
}

.social a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0a4655;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 26px;
    position: relative;
    overflow: visible;
}

/* icon di atas garis */
.circle i {
    z-index: 2;
}

/* SVG GARIS */
.circle svg {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    transform: rotate(-90deg);
    pointer-events: none;
}

.circle circle {
    fill: none;
    stroke: #00ffd5;
    stroke-width: 2;
    stroke-dasharray: 302;
    stroke-dashoffset: 302;
    transition: stroke-dashoffset 0.6s ease;
}

.circle:hover circle {
    stroke-dashoffset: 1;
    filter: drop-shadow(0 0 6px #00ffd5);
    filter: drop-shadow(0 0 14px #00ffd5);
}


/* Garis Putar ditepi*/
.circle::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid #00ffd5;
    opacity: 0;
    transition: 0.5s ease;
}

/* hover aktif */
.circle:hover::after {
    opacity: 1;
}

/*icon tetap di atas */
.circle i {
    position: relative;
    z-index: 2;
}

/* animasi muter2 nya */
@keyframes spin {
    from { transform: rotate(0deg);}
    to { transform: rotate(360deg);}
}



.navbar {
    display: flex;
    justify-content: space-between; 
    /* logo kiri, menu kanan */
    align-items: center;
    padding: 15px 25px;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur (10px);
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #00ffd5;
}

nav a {
    margin-left: 15px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    position: relative;
}

nav a:hover {
    color: #00ffd5;
}

nav {
    display: flex;
    flex-wrap: wrap;
    margin-right: 50px;
}

/* Garis Bawah */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #00ffd5;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}


