html {
  scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle, #001f3f, #000000);
    color: white;
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 30px 10px rgba(0, 255, 255, 0.7);
    transition: box-shadow 0.3s ease;
}


.profile-image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image-wrapper::before {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.6), transparent 70%);
    mix-blend-mode: screen;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
    padding: 90px;
    box-sizing: border-box;
    gap: 50px;
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.text-section {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: white;
    font-size: 1.2rem;
    line-height: 1.5;
}

.text-section h5 {
    font-size: 2rem;
    margin-bottom: 20px;
}


.skill-section {
    width: 100%;
    height: 100vh;
    padding: 40px 20px;
    color: white;
}


.skill-section h1 {
    text-align: center;
    margin-bottom: 30px;
    color: white;
    font-weight: 700;
}

.skill-card {
    background: transparent;
    border: 2px solid #00cccc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow:
        0 0 3px #00cccc,
        0 0 8px #00cccc,
        0 0 12px #00cccc;
    transition: box-shadow 0.3s ease;
}

.skill-card:hover {
    box-shadow:
        0 0 6px #00cccc,
        0 0 15px #00cccc,
        0 0 25px #00cccc,
        0 0 35px #00cccc;
}

.skill-card h5 {
    color: #00cccc;
    margin-bottom: 10px;
}


.skill-card ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #cceeff;
}

.skill-card ul li {
    margin-bottom: 8px;
}


.h1-project {
    color: white;
    text-align: center;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.project-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

    padding-bottom: 90px;
}

.project-card {
    background: #121212;
    /* dark bg */
    border: 2px solid #00ffff;
    /* neon blue outline */
    border-radius: 12px;
    box-shadow: 0 0 15px #00ffff55;
    padding: 20px;
    width: 320px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card:hover {
    box-shadow: 0 0 30px #00ffffcc;
    transform: translateY(-6px);
}



.project-title {
    color: #00ffff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.project-text {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-btn {
    display: inline-block;
    padding: 10px 18px;
    color: #121212;
    background: #00ffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.project-btn:hover {
    background: #00cccc;
    color: #fff;
}


.text-section h5 {
    margin-bottom: 15px;
}

.container.my-5 {
    max-width: 850px;
    background-color: aquamarine;
}

.container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    font-weight: bold;
    font-size: 20%;
}

.icon-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-right: 20px;
}

footer {
    background: linear-gradient(to top, #000000);
}