body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: radial-gradient(circle at top right, #182c3a, #0b1822);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


/* MAIN NAV */
.main-nav ul {
    display: flex;
    list-style: none;       /* remove bullets */
    margin: 0;
    padding: 0;
    gap: 48px;              /* ≈ 2 tab spaces */
}

.main-nav li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    opacity: 1;
}





/* HEADER */


.site-header {
    padding: 30px 80px;
    display: flex;
    justify-content: space-between;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    padding: 100px 80px;
    position: relative;
    padding-bottom: 0; /* important */
}


.hero-left {
    flex: 1;
}

.hero-greeting {
    opacity: 0.7;
}

.hero-name {
    font-size: 42px;
    margin: 10px 0;
}

.hero-name span {
    color: #ff6b4a;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 30px;
}


/* HERO IMAGE */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border: 10px solid #ff6b4a;
    border-radius: 50%;
    top: -40px;
    left: -40px;
}



/* HERO BUTTONS */
.hero-buttons .btn {
    display: inline-block;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
}

/* DEFAULT STATES */
.hero-buttons .btn.primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-buttons .btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* HOVER STATES (ONLY HERE IS ORANGE) */
.hero-buttons .btn:hover {
    background: #ff6b4a;
    border-color: #ff6b4a;
    color: #ffffff;
}




/* SKILLS */
.skills {
    background: #0d161d;
    padding: 33px 0;
    position: relative;
    z-index: 2;
}

.skills .container {
    display: flex;
    justify-content: center;
    gap: 48px;
    opacity: 0.5;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ABOUT */
.about {
    position: relative;
    min-height: 520px;
    margin-top: 120px;
}

.about-content {
    position: absolute;
    right: 0;
    width: 50%;
    text-align: justify;
    font-size: 16px;
    line-height: 1.7;
}

.about-grid {
    position: absolute;
    left: 0;
    width: 40%;
    display: flex;
    gap: 24px;
}

.about-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-menu li {
    margin-bottom: 32px;
    opacity: 0.6;
    font-size: 16px;
}

.about-menu li.active {
    opacity: 1;
    color: #ff6b4a;
}

.about-menu li:hover {
    cursor: pointer;
}

.about-menu {
    list-style: none;
    padding: 0;
}

.about-menu li {
    margin-bottom: 30px;
    opacity: 0.6;
}

.about-menu li.active {
    opacity: 1;
    color: #ff6b4a;
}

/* SERVICES */
.services {
    padding: 100px 80px;
}

.divider {
    display: block;
    width: 2px;
    height: 40px;
    background: #ff6b4a;
    margin: 20px auto 60px;
}

.service-card {
    background: #122634;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}




@media (max-width: 900px) {
    .about-content,
    .about-grid {
        position: static;
        width: 100%;
    }
}