/* ===== GLOBAL ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Segoe UI',Arial,sans-serif;
background:#f7f9fc;
color:#333;
line-height:1.7;
}

/* ===== HERO ===== */

header{
    background:linear-gradient(135deg,#0b2447,#19376d);
    color:white;
    text-align:center;
    padding:80px 20px;

    position:relative;
}

header h1{
font-size:3rem;
margin-bottom:10px;
}

header p{
font-size:1.1rem;
margin-bottom:10px;
}

/* ===== PROFILE PHOTO ===== */

.profile-pic{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid white;
    box-shadow:0 4px 15px rgba(0,0,0,0.3);

    position:absolute;
    right:50px;
    top:60px;
}
/* ===== EDUCATION ===== */

.education-card{
    background:white;
    padding:20px;
    margin-bottom:15px;
    border-left:5px solid #ffb703;
    border-radius:8px;
}

/* ===== COMPANY CARDS ===== */

.company-card{
    display:flex;
    align-items:center;
    gap:20px;
    background:white;
    padding:20px;
    margin-bottom:15px;
    border-radius:10px;
    box-shadow:0 3px 8px rgba(0,0,0,0.08);
}

.company-logo{
    width:80px;
    height:80px;
    object-fit:contain;
}

/* ===== BUTTON ===== */

.btn{
display:inline-block;
background:#ffb703;
color:#000;
padding:14px 24px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
transform:translateY(-2px);
}

/* ===== CONTAINER ===== */

.container{
width:90%;
max-width:1200px;
margin:auto;
padding:50px 0;
}

/* ===== SECTION ===== */

section{
background:white;
margin-bottom:30px;
padding:35px;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

section h2{
color:#0b2447;
margin-bottom:20px;
font-size:2rem;
border-left:6px solid #ffb703;
padding-left:15px;
}

/* ===== SKILLS ===== */

.skills{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.skill{
background:#e8eef8;
color:#0b2447;
padding:10px 18px;
border-radius:30px;
font-weight:600;
font-size:14px;
}

/* ===== EXPERIENCE ===== */

.job{
border-left:4px solid #19376d;
padding-left:20px;
margin-bottom:35px;
position:relative;
}

.job::before{
content:'';
width:14px;
height:14px;
background:#ffb703;
border-radius:50%;
position:absolute;
left:-9px;
top:5px;
}

.job h3 a{
    text-decoration:none;
    color:#0b2447;
}

.job h3 a:hover{
    color:#ffb703;
}

/* ===== LISTS ===== */

ul{
padding-left:20px;
}

li{
margin-bottom:8px;
}

/* ===== CONTACT ===== */

a{
color:#19376d;
text-decoration:none;
}

a:hover{
text-decoration:underline;
}

/* ===== FOOTER ===== */

footer{
background:#0b2447;
color:white;
text-align:center;
padding:25px;
margin-top:30px;
}

/* ===== ACHIEVEMENT CARDS ===== */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.stat-card{
background:#19376d;
color:white;
text-align:center;
padding:25px;
border-radius:12px;
}

.stat-card h3{
font-size:2rem;
color:#ffb703;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

header h1{
font-size:2.2rem;
}

section{
padding:20px;
}

section h2{
font-size:1.5rem;
}

}
