/* Modernized CSS for a more presentable look */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
body {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    min-height: 100vh;
    color: #f4f4f4;
}
section {
    min-height: 780px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
nav {
    background: rgba(20, 20, 20, 0.95);
    height: 80px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}
nav ul {
    display: flex;
    gap: 40px;
    margin-right: 0;
}
nav ul li {
    display: inline-block;
    line-height: 80px;
    color: #00e6e6;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
}
nav ul li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00e6e6;
    transition: width 0.3s;
    position: absolute;
    bottom: 18px;
    left: 0;
}
nav ul li:hover {
    color: #fff;
}
nav ul li:hover::after {
    width: 100%;
}
.a1:hover {
    background: linear-gradient(90deg, #00e6e6 0%, #0072ff 100%);
    color: #fff !important;
    border-radius: 6px;
    transition: background 0.3s, color 0.3s;
}
.p {
    margin: 50px auto;
    background: rgba(0, 255, 255, 0.15);
    color: #fff;
    padding: 24px 32px;
    border-radius: 12px;
    max-width: 700px;
    box-shadow: 0 4px 24px rgba(0,255,255,0.08);
    font-size: 1.1rem;
}
.class {
    color: #00e6e6;
}
.span {
    color: #baff70;
}
.h3 {
    margin: 0 100px;
    margin-top: 250px;
    font-size: 3rem;
    color: #00e6e6;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}
.h2 {
    margin: 0;
    padding: 0 100px;
    color: #00e6e6;
    font-size: 2rem;
    font-weight: 600;
}
.about {
    font-size: 3.5rem;
    color: #00e6e6;
    font-weight: bold;
    margin-bottom: 16px;
}
.info {
    color: #ff7f50;
    font-size: 1.1rem;
    margin-bottom: 24px;
}
.soc {
    margin: 0 50px;
    color: #b0b0b0;
    font-size: 1.5rem;
}
.fa {
    padding: 16px;
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    text-align: center;
    text-decoration: none;
    margin: 5px 8px;
    color: #00e6e6;
    background: rgba(0,230,230,0.08);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,230,230,0.08);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fa:hover {
    background: #00e6e6;
    color: #232526;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0,230,230,0.18);
}
.abu {
    background: linear-gradient(90deg, #0072ff 0%, #00e6e6 100%);
    color: #fff;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,114,255,0.12);
    margin: 24px 0;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.abu:hover {
    background: #00e6e6;
    color: #0072ff;
}
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin: 40px 0;
}
.about-text {
    flex: 1 1 320px;
    min-width: 260px;
}
.profile-pic {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,230,230,0.15);
    border: 6px solid #00e6e6;
    flex-shrink: 0;
    background: #232526;
}
