/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:linear-gradient(120deg,#f8fafc,#e2e8f0);
color:#0f172a;
line-height:1.7;
}

/* NAVBAR */
/* NAVBAR */

.navbar{
background:white;
border-bottom:1px solid #e5e7eb;
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
max-width:1100px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 20px;
}

.logo{
font-size:20px;
font-weight:700;
}

.nav-links{
list-style:none;
display:flex;
gap:28px;
margin:0;
padding:0;
}

.nav-links a{
text-decoration:none;
color:#0f172a;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:#22c55e;
}

/* HAMBURGER */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
height:3px;
width:25px;
background:#0f172a;
margin:4px 0;
border-radius:2px;
}

/* MOBILE NAV */
/* MOBILE NAV */

@media(max-width:768px){

.menu-toggle{
display:flex;
}

.nav-links{
position:absolute;
top:60px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
gap:18px;
padding:25px 0;
display:none;
border-top:1px solid #e5e7eb;
}

.nav-links.active{
display:flex;
}

.nav-links li{
width:100%;
text-align:center;
}

}
/* HERO */

.hero{
padding:120px 8%;
text-align:center;
}

.hero h1{
font-size:52px;
margin-bottom:15px;
}

.hero h3{
color:#2563eb;
margin-bottom:20px;
font-size:22px;
}

.hero-desc{
max-width:700px;
margin:auto;
font-size:18px;
color:#475569;
}

.hero-buttons{
margin-top:30px;
}

/* BUTTON */

.btn{
background:#2563eb;
color:white;
padding:12px 28px;
border-radius:8px;
text-decoration:none;
margin:5px;
display:inline-block;
font-weight:600;
transition:0.3s;
}

.btn:hover{
background:#1d4ed8;
transform:translateY(-2px);
}

/* PROFILE IMAGE */

.profile-img{
width:170px;
height:170px;
border-radius:50%;
object-fit:cover;
object-position:center 15%;
border:5px solid #2563eb;
margin-bottom:20px;
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* SECTION */

.section-title{
text-align:center;
margin-top:80px;
margin-bottom:20px;
font-size:34px;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
padding:40px 8%;
}

/* GLASS CARD */

.glass-card{
background:rgba(255,255,255,0.7);
backdrop-filter:blur(12px);
padding:30px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.4);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.glass-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* TIMELINE */

.timeline{
max-width:900px;
margin:auto;
padding:60px 8%;
}

.timeline-item{
background:white;
padding:25px;
border-left:5px solid #2563eb;
margin-bottom:25px;
border-radius:8px;
box-shadow:0 5px 18px rgba(0,0,0,0.06);
}

/* CONTACT */

.contact-box{
max-width:700px;
margin:auto;
padding:40px;
}

.contact-item{
margin:12px 0;
font-size:17px;
}

/* FOOTER */

footer{
text-align:center;
padding:30px;
background:white;
margin-top:60px;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.navbar{
flex-direction:column;
gap:10px;
}

.hero{
padding:80px 6%;
}

.grid{
padding:40px 6%;
}

}

/* INFO CARDS */

.info-card{

background:white;

padding:28px;

border-radius:14px;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

transition:0.35s;

transform-style:preserve-3d;

border-top:4px solid #2563eb;

}

.info-card h3{

margin-bottom:12px;

color:#1e293b;

}

.info-card ul{

padding-left:18px;

color:#475569;

}

.info-card:hover{

transform:translateY(-8px) scale(1.02);

box-shadow:0 18px 40px rgba(0,0,0,0.15);

}



/* EDUCATION CARDS */

.edu-card{

background:white;

padding:30px;

border-radius:14px;

box-shadow:0 8px 20px rgba(0,0,0,0.08);

transition:0.3s;

border-left:5px solid #2563eb;

}

.edu-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,0.12);

}

/* SKILLS GRID */

.skills-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

padding:60px 8%;

}



/* SKILL CARD */

.skill-card{

background:white;

padding:28px;

border-radius:14px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:0.35s;

border-top:4px solid #2563eb;

transform-style:preserve-3d;

}



.skill-card:hover{

transform:translateY(-10px) rotateX(4deg);

box-shadow:0 20px 45px rgba(0,0,0,0.18);

}



.skill-card h3{

margin-bottom:15px;

color:#1e293b;

}



/* SKILL BAR */

.skill{

margin-bottom:12px;

}



.bar{

height:8px;

background:#e2e8f0;

border-radius:20px;

overflow:hidden;

margin-top:4px;

}



.fill{

height:100%;

background:linear-gradient(90deg,#2563eb,#3b82f6);

}



/* SKILL LIST */

.skill-list{

padding-left:18px;

color:#475569;

}



.skill-list li{

margin-bottom:8px;

}



/* AWARDS */

.awards-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

padding:60px 8%;

}



.award-card{

background:white;

padding:30px;

border-radius:14px;

box-shadow:0 10px 30px rgba(0,0,0,0.08);

transition:0.3s;

border-left:5px solid #2563eb;

}



.award-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 40px rgba(0,0,0,0.15);

}

/* PROJECTS GRID */

.projects-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
padding:60px 8%;
}


/* PROJECT CARD */

.project-card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.35s;
border-top:5px solid #2563eb;
position:relative;
overflow:hidden;
}

.project-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,0.18);
}

/* PROJECT TITLE */

.project-card h3{
margin-bottom:10px;
font-size:22px;
}

/* DESCRIPTION */

.project-desc{
color:#475569;
margin-bottom:15px;
}

/* TECH STACK */

.project-tech{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:15px;
}

.project-tech span{
background:#e2e8f0;
padding:6px 10px;
border-radius:6px;
font-size:13px;
}

/* FEATURES */

.project-features{
padding-left:18px;
margin-bottom:20px;
color:#475569;
}

.project-features li{
margin-bottom:6px;
}

/* BUTTONS */

.project-buttons{
margin-top:10px;
}

.project-buttons a{
margin-right:10px;
}

/* SERVICES GRID */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
padding:60px 8%;
}


/* SERVICE CARD */

.service-card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.35s;
border-top:5px solid #22c55e;
position:relative;
overflow:hidden;
}


/* HOVER EFFECT */

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(0,0,0,0.18);
}


/* TITLE */

.service-card h3{
margin-bottom:10px;
font-size:20px;
}


/* DESCRIPTION */

.service-card p{
color:#475569;
margin-bottom:15px;
}


/* LIST */

.service-card ul{
padding-left:18px;
color:#475569;
}

.service-card li{
margin-bottom:6px;
}

/* CONTACT PAGE */

.contact-container{
max-width:900px;
margin:auto;
padding:50px 8%;
}


/* INTRO */

.contact-intro{
text-align:center;
margin-bottom:40px;
}

.contact-intro h3{
font-size:24px;
margin-bottom:10px;
}

.contact-intro p{
color:#475569;
max-width:650px;
margin:auto;
}

.availability{
margin-top:10px;
font-weight:600;
color:#16a34a;
}


/* CONTACT GRID */

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:35px;
}


/* CONTACT CARD */

.contact-card{
background:white;
padding:20px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
border-left:4px solid #2563eb;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.contact-card h4{
margin-bottom:8px;
font-size:16px;
}

.contact-card p{
color:#475569;
word-break:break-word;
}


/* SOCIAL */

.contact-social{
text-align:center;
margin-top:40px;
}

/* HERO GLASS CARD */

.hero-card{
max-width:900px;
margin:40px auto 0 auto;
padding:35px 40px;

background:rgba(255,255,255,0.65);
backdrop-filter:blur(14px);
-webkit-backdrop-filter:blur(14px);

border-radius:16px;
border:1px solid rgba(255,255,255,0.5);

box-shadow:0 15px 35px rgba(0,0,0,0.12);

transition:all 0.35s ease;
}


/* HOVER EFFECT */

.hero-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.18);
}


/* TEXT */

.hero-desc{
font-size:18px;
color:#334155;
line-height:1.9;
text-align:justify;
max-width:760px;
margin:auto;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.hero-card{
padding:25px;
margin-top:30px;
}

.hero-desc{
text-align:left;
}

}


@media (max-width:480px){

.hero-card{
padding:20px;
}

.hero-desc{
font-size:15px;
}

}