* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
scroll-padding-top:120px;
scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg,#0a1929,#020617,#111827);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

header{
position:sticky;
top:0;
z-index:1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px auto;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 2px solid rgba(244,244,205,0.3);
    backdrop-filter: blur(10px);
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgb(244,244,205);
    transition: 0.3s;
}

nav a.active{
color: rgb(244,244,205);
background: rgba(244,244,205,0.15);
}

nav a:hover {
    color: rgb(244,244,205);
    background: rgba(244,244,205,0.1);
}

nav a:hover::after {
    width: 80%;
}

.home{
display:flex;
align-items:center;
justify-content:space-around;
flex-wrap:wrap;
max-width:870px;
margin:auto;
gap:20px;

}

section {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity:0.01;
    transform:translateY(30px);
    transition:0.6s;
}

section.show{
opacity:1;
transform:translateY(0);
}

h1, h2, h3 {
    color: rgb(244,244,205);
    margin-bottom: 20px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, transparent, rgb(244,244,205), transparent);
}

p {
    margin-top: 15px;
}

.profile-pic {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    border-radius: 50%;
    border: 4px solid rgb(244,244,205);
    background: url("Screenshot\\sakshi.jpg") center/cover no-repeat;
    transition: 0.4s;
}

.profile-pic:hover {
    transform: scale(1.05);
   
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 8px;
    background: rgba(244,244,205,0.2);
    color: #e0e0e0;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: rgba(244,244,205,0.5);
    color: #000;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.02);
}

th {
    background: rgba(244,244,205,0.15);
    color: rgb(244,244,205);
    font-weight: 600;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid rgba(244,244,205,0.3);
}

td {
    padding: 15px;
    border-bottom: 1px solid rgba(244,244,205,0.1);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: rgba(244,244,205,0.05);
}

.boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.box {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(244,244,205,0.2);
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.box img {
    max-width: 85%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
}

.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 2px 10px rgba(244,244,205,0.3);
}

.project {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(244,244,205,0.2);
    transition: 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.project.visible {
    opacity: 1;
    transform: translateY(0);
}

.project:hover {
    transform: translateX(-5px);
    box-shadow: 0 2px 10px rgba(244,244,205,0.3);
    cursor: pointer;
}

.project-img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(244,244,205,0.2);
    transition: 0.3s;
}

.project-img:hover {
    transform: scale(1.02);
    border-color: rgba(244,244,205,0.5);
}

.project p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    
}

.project a {
    text-decoration: none;
    color: rgb(12, 12, 234);
}
.social {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social img {
    width: 65px;
    height: 65px;
    filter: brightness(0.8);
    transition: 0.3s;
}

.social a:hover img {
    filter: brightness(1.1) drop-shadow(0 8px 16px rgba(244,244,205,0.3));
    transform: translateY(-5px);
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    margin-top: 60px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .boxes {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .profile-pic {
        width: 240px;
        height: 240px;
    }
    .social img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .boxes {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .profile-pic {
        width: 220px;
        height: 220px;
    }
}