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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#0f172a;
    color:white;
    line-height:1.7;
}

/* SECTION */
.section{
    padding:120px 0;
}

.section-container{
    max-width:1100px;
    margin:auto;
    padding:0 40px;
}

/* NAVBAR */
.navbar{
    position:fixed;
    width:100%;
    display:flex;
    justify-content:space-between;
    padding:25px 80px;
    background:rgba(15,23,42,0.85);
    backdrop-filter:blur(14px);
    z-index:1000;
    border-bottom:1px solid rgba(56,189,248,0.1);
}

.navbar ul{
    list-style:none;
    display:flex;
    gap:30px;
}

.navbar a{
    text-decoration:none;
    color:#94a3b8;
    transition:0.3s;
    position:relative;
}

.navbar a:hover{
    color:#38bdf8;
}

.navbar a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#38bdf8;
    transition:0.3s;
}

.navbar a:hover::after{
    width:100%;
}

/* HERO */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:120px;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    width:100%;
    max-width:1100px;
}

.hero-left{
    flex:1;
    max-width:650px;
}

.hero-left h1{
    font-size:52px;
}

.hero-left span{
    background:linear-gradient(90deg,#38bdf8,#60a5fa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left h2{
    margin-top:10px;
    color:#60a5fa;
}

.hero-left p{
    margin-top:20px;
    color:#94a3b8;
    font-size:18px;
}

.buttons{
    margin-top:35px;
}

.btn{
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:all 0.3s ease;
}

.hero-left .btn{
    display:inline-block;
    margin-right:20px;
}

.primary{
    background:#38bdf8;
    color:black;
    box-shadow:0 10px 25px rgba(56,189,248,0.3);
}

.primary:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(56,189,248,0.6);
}

.outline{
    border:2px solid #38bdf8;
    color:#38bdf8;
}

.outline:hover{
    background:#38bdf8;
    color:black;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(56,189,248,0.5);
}

.hero-right img{
    width:340px;
    height:420px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 30px 70px rgba(0,0,0,0.6);
    transition:0.4s ease;
}

.hero-right img:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:
        0 40px 90px rgba(0,0,0,0.7),
        0 0 30px rgba(56,189,248,0.4);
}

/* ABOUT SECTION */
.about-modern{
    background:#0f172a;
}

.about-container{
    display:flex;
    gap:80px;
    align-items:flex-start;
}

.about-left{
    flex:1;
}

.about-right{
    flex:1;
    background:rgba(30,41,59,0.6);
    padding:40px;
    border-radius:20px;
    box-shadow:0 0 40px rgba(56,189,248,0.08);
    backdrop-filter:blur(10px);
}

.about-right h2{
    margin-bottom:30px;
}

/* TECHNICAL SKILLS */
.skill-bar{
    margin-bottom:35px;
}

.skill-bar p{
    margin-bottom:10px;
    font-weight:600;
    font-size:18px;
}

/* Track */
.bar{
    width:100%;
    height:10px;
    background:#1e293b;
    border-radius:30px;
    overflow:hidden;
    position:relative;
}

/* Glowing Fill */
.bar span{
    display:block;
    height:100%;
    border-radius:30px;
    background:linear-gradient(90deg,#38bdf8,#60a5fa,#38bdf8);
    background-size:200% 100%;
    animation:moveGlow 3s linear infinite, pulseGlow 2s ease-in-out infinite;
    box-shadow:
        0 0 10px rgba(56,189,248,0.9),
        0 0 25px rgba(56,189,248,0.7),
        0 0 40px rgba(56,189,248,0.5);
}

/* Moving Gradient */
@keyframes moveGlow{
    from{background-position:0%;}
    to{background-position:200%;}
}

/* Pulse Effect */
@keyframes pulseGlow{
    0%{box-shadow:0 0 10px rgba(56,189,248,0.6);}
    50%{box-shadow:0 0 30px rgba(56,189,248,1);}
    100%{box-shadow:0 0 10px rgba(56,189,248,0.6);}
}

/* PROJECTS */
.project-card{
    background:#1e293b;
    padding:30px;
    border-radius:16px;
    margin-bottom:25px;
    transition:0.4s ease;
    border:1px solid rgba(56,189,248,0.08);
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.7),
        0 0 25px rgba(56,189,248,0.2);
}

/* CONTACT */
.contact-section{
    background:#111827;
}

.modern-contact{
    text-align:center;
}

.contact-text{
    margin:20px auto 40px;
    max-width:600px;
    color:#94a3b8;
}

.contact-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-btn{
    padding:14px 32px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
}

.contact-btn.primary{
    background:#38bdf8;
    color:black;
    box-shadow:0 10px 25px rgba(56,189,248,0.3);
}

.contact-btn.primary:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(56,189,248,0.6);
}

.contact-btn.outline{
    border:2px solid #38bdf8;
    color:#38bdf8;
}

.contact-btn.outline:hover{
    background:#38bdf8;
    color:black;
    transform:translateY(-6px);
}

footer{
    text-align:center;
    padding:30px;
    background:#0f172a;
    border-top:1px solid rgba(56,189,248,0.1);
}