body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #0f2027, #1e293b);
    color: white;
}

/* Logo at top center */
.logo {
    position: fixed;
    top: 25px;
    left: 40px;
    letter-spacing: 3px;
    font-family: 'segoe ui',sans-serif;
    color: white;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
    
    
}

/* Hero Section Centering */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding-top:80px ;
}

/* Card */
.hero-card {
    background: rgba(20, 30, 50, 0.7);
    padding: 50px 40px;
    border-radius: 25px;
    width: 1000px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 15px 50px rgba(56,189,248,0.15);
}

/* Profile Image */
.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;

    box-shadow: 
    0 0 20px rgba(56, 189, 248, 0.6),
    0 0 60px rgba(56, 189, 248, 0.3),
    0 0 100px rgba(56, 189, 248, 0.15);

    transition:all o.4s ease;
}
/*resume*/
.resume-btn{
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600px;
    color: white;
    background: linear-gradient(135deg,#38bdf8,#0ea5e9);

    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    transition: all 0.3s ease;
}
.resume-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.6);
}
.resume-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background: rgba(20, 30, 50, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(255, 255, 255, 0.05);
    color: white;
    text-align: center;
}

.resume-container h1 {
    margin-bottom: 10px;
}

.resume-container h3 {
    color: #38bdf8;
    margin-bottom: 30px;
}

.resume-container section {
    margin-bottom: 30px;
}

.resume-container ul {
    list-style: none;
    padding: 0;
}

.resume-container li {
    margin: 8px 0;
}

.download-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    transition: 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.back-btn {
    color: #38bdf8;
    text-decoration: none;
}
.skills-section{
    width: 95%;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg,#1e293b,#0f172a);
    margin: 100px auto;
    border-radius: 25px;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 
    0 15px 40px rgba(39, 38, 38, 0.6)
    insert 0 1px 0 rgba(255,255,255,0.5);
   
}
.skill{
    text-align: center;
    color: white;
    transition:0.3s ease;
    cursor: pointer;
    background: #1e293b;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    width: 220px;
}
.skill img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.skill p{
    margin-top: 10px;
    font-weight: bold;
    transition: 0.3s ease;
}
.skill i{
    font-size: 60px;
    transition: 0.3s ease;
}
.skill:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(148, 140, 140, 0.6);
}
.skill:hover i{
    transform: scale(1,2);
}
.skill:hover p {
    color: #38bdf8;
}
.skills-section{
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
.skills-title{
    color: #e2e8f0;
    font-size: 36px;
    margin-bottom: 50px;
    margin-top: -60px;
    
    
}
.skills{
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}
.skill-level {
    font-size: 14px;
    margin: 8px 0;
    color: #94a3b8;
}

/* Progress bar background */
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Filled part */
.progress {
    height: 100%;
    border-radius: 10px;
}

/* Individual levels */
.mysql {
    width: 75%;
    background: linear-gradient(90deg,#38bdf8,#0ea5e9);
}

.html {
    width: 75%;
    background: linear-gradient(90deg,#f97316,#fb923c);
}

.css {
    width: 50%;
    background: linear-gradient(90deg,#06b6d4,#0ea5e9);
}

.python {
    width: 45%;
    background: linear-gradient(90deg,#facc15,#eab308);
}
.projects-section {
    padding: 100px 0;
    text-align: center;
}

.projects-title {
    color: #38bdf8;
    font-size: 36px;
    margin-bottom: 60px;
}

.projects {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.project-card {
    background: rgba(20, 30, 50, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    width: 350px;
    text-align: left;
    box-shadow: 0 15px 50px rgba(56,189,248,0.1);
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 70px rgba(56,189,248,0.2);
}

.project-card h3 {
    margin-bottom: 15px;
    color: white;
}

.project-card p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 15px;
}

.project-card span {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 12px;
    color: #38bdf8;
}

.project-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg,#38bdf8,#0ea5e9);
    color: white;
    text-decoration: none;
    font-size: 13px;
}
/* CONTACT SECTION */
.contact-section {
    margin-top: 100px;
    padding: 60px 20px;
    text-align: center;
    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #38bdf8;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    text-decoration: none;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg,#38bdf8,#0ea5e9);
    box-shadow: 0 10px 30px rgba(56,189,248,0.4);
    transform: translateY(-4px);
}

.footer-text {
    margin-top: 40px;
    font-size: 14px;
    color: #94a3b8;
}