*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  background: linear-gradient(180deg, #0f1c24 0%, #0b141a 100%);
  color:white;
  scroll-behavior:smooth;
}

/* ===== NAVBAR ===== */

header{
  padding:20px 80px;
  position:fixed;
  width:100%;
  top:0;
  backdrop-filter:blur(10px);
  background:rgba(15,28,36,0.7);
  z-index:1000;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  color:#ff6a3d;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav a{
  text-decoration:none;
  color:white;
  transition:0.3s;
  font-weight:500;
}

nav a:hover{
  color:#ff6a3d;
}

/* ===== HERO ===== */

.hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:180px 80px 100px;
}

.hero-text h1{
  font-size:48px;
  margin:10px 0;
}

.hero-text h1 span{
  color:#ff6a3d;
}

.hero-text h2{
  font-weight:400;
  color:#cfd8dc;
}

.hero-text p{
  margin-top:20px;
  line-height:1.7;
  max-width:520px;
  color:#cfd8dc;
}

.buttons{
  margin-top:30px;
}

button{
  padding:12px 25px;
  margin-right:15px;
  border:none;
  cursor:pointer;
  transition:0.3s;
  border-radius:6px;
  font-weight:600;
}

.primary{
  background:#ff6a3d;
  color:white;
  box-shadow:0 8px 20px rgba(255,106,61,0.4);
}

.secondary{
  background:transparent;
  border:1px solid #ff6a3d;
  color:#ff6a3d;
}

button:hover{
  transform:translateY(-3px);
}

/* ===== HERO IMAGE ===== */

.hero-img .circle{
  width:350px;
  height:350px;
  background:#ff6a3d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 50px rgba(255,106,61,0.3);
}

.hero-img img{
  width:320px;
  height:320px;
  object-fit:cover;
  border-radius:50%;
}

/* ===== ABOUT ===== */

.about{
  padding:100px 80px;
  text-align:center;
}

.about h2{
  font-size:32px;
}

.about p{
  max-width:700px;
  margin:25px auto;
  line-height:1.8;
  color:#cfd8dc;
}

.stats{
  display:flex;
  justify-content:center;
  gap:60px;
  margin-top:40px;
}

.stats h3{
  color:#ff6a3d;
  font-size:32px;
}

/* ===== SKILLS ===== */

.skills{
  padding:100px 80px;
  text-align:center;
}

.skills-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:40px;
}

.skill-box{
  background:#162a35;
  padding:30px;
  width:250px;
  border-radius:12px;
  transition:0.3s;
}

.skill-box:hover{
  transform:translateY(-8px);
}

.skill-box h3{
  color:#ff6a3d;
  margin-bottom:15px;
}

/* ===== PROJECTS ===== */

.projects{
  padding:100px 80px;
  text-align:center;
}

.projects-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:50px;
}

.project-card{
  background:#162a35;
  padding:35px;
  width:320px;
  border-radius:15px;
  transition:0.3s;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.project-card:hover{
  transform:translateY(-10px);
}

.project-card h3{
  color:#ff6a3d;
  margin-bottom:15px;
}

.project-card p{
  font-size:14px;
  line-height:1.8;
  margin-bottom:15px;
  color:#cfd8dc;
}

.project-card .tech{
  font-size:13px;
  color:#ff6a3d;
  margin-bottom:20px;
}

.project-card a{
  text-decoration:none;
  color:white;
  background:#ff6a3d;
  padding:10px 18px;
  border-radius:6px;
  transition:0.3s;
  display:inline-block;
}

.project-card a:hover{
  background:white;
  color:#ff6a3d;
}

/* ===== FOOTER ===== */

footer{
  padding:60px;
  text-align:center;
  background:#0b141a;
}

footer h3{
  margin-bottom:20px;
}

footer a{
  color:#ff6a3d;
  text-decoration:none;
}

/* ===== RESUME ===== */

.resume-container{
  max-width:900px;
  margin:120px auto;
  padding:50px;
  background:#121f27;
  border-radius:15px;
  box-shadow:0 20px 50px rgb(255, 255, 255);
}

.resume-header{
  text-align:center;
}

.resume-header h1{
  color:#ff6a3d;
  margin-bottom:10px;
}

.resume-section{
  margin-top:35px;
}

.resume-section h2{
  color:#ff6a3d;
  margin-bottom:10px;
  border-bottom:2px solid #ff6a3d;
  display:inline-block;
  padding-bottom:5px;
}

.resume-section ul{
  margin-left:20px;
  margin-top:10px;
}

.back-btn{
  display:inline-block;
  margin-top:40px;
  color:#ff6c22;
  font-weight:600;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

  header{
    padding:20px;
  }

  .hero{
    flex-direction:column;
    text-align:center;
    gap:50px;
    padding:150px 30px 80px;
  }

  .stats{
    flex-direction:column;
    gap:25px;
  }

  .skills,
  .projects,
  .about{
    padding:80px 30px;
  }
}
.project-page{
  max-width:900px;
  margin:80px auto;
}

.project-title{
  color:#ff6a3d;
  text-align:center;
  margin-bottom:30px;
}

.project-images{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:30px;
}

.project-images img{
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.project-description{
  line-height:1.9;
}

.project-description ul{
  margin:15px 0 20px 20px;
}

.project-description li{
  margin-bottom:8px;
}

.project-tech h3{
  color:#ff6a3d;
  margin-top:20px;
}

.project-buttons{
  margin-top:25px;
  display:flex;
  gap:15px;
}
