/* ====== NAVBAR ====== */
.navbar-dark {
    background-color: #111 !important;
}

.navbar-nav .nav-link {
    color: #ddd;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #fff;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: cyan;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-icons a {
    color: #aaa;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-icons a:hover {
    color: cyan;
    transform: scale(1.2);
}

.navbar-brand {
    font-weight: bold;
}

/* ====== SECTION TITLES ====== */
.section-title {
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* ====== PROFILE IMAGE ====== */
.profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #2c2c2c;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* ====== PROJECT CARDS ====== */
.project-card {
    background-color: #1e1e1e;
    border: none;
    transition: transform 0.2s;
}

.project-card:hover {
    transform: scale(1.02);
}