*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  font-family:Arial, sans-serif;
}

body{
  background:#0f172a;
  color:white;
}

/* HEADER */

header{
  width:100%;
  padding:20px 10%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#111827;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:#38bdf8;
}

nav a{
  color:white;
  text-decoration:none;
  margin-left:25px;
  font-size:18px;
  transition:0.3s;
}

nav a:hover{
  color:#38bdf8;
}

/* HOME */

.home{
  min-height:100vh;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:120px 10%;
  gap:50px;
  flex-wrap:wrap;
}

.home-text{
  flex:1;
}

.home-text h1{
  font-size:55px;
}

.home-text h3{
  color:#38bdf8;
  margin:15px 0;
  font-size:30px;
}

.home-text p{
  line-height:1.7;
  margin-bottom:25px;
}

.btn{
  display:inline-block;
  padding:12px 28px;
  background:#38bdf8;
  color:white;
  text-decoration:none;
  border-radius:8px;
  transition:0.3s;
}

.btn:hover{
  background:#0284c7;
}

.home-image{
  flex:1;
  text-align:center;
}

.home-image img{
  width:200px;
  border-radius:50%;
  border:5px solid #38bdf8;
}

/* GENERAL SECTION */

section{
  padding:100px 10%;
}

.title{
  text-align:center;
  font-size:40px;
  margin-bottom:50px;
  color:#38bdf8;
}

/* ABOUT */

.about p{
  text-align:center;
  max-width:800px;
  margin:auto;
  line-height:1.8;
  font-size:18px;
}

/* SKILLS */

.skills-container{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.skill-box{
  background:#1e293b;
  padding:40px;
  width:220px;
  text-align:center;
  border-radius:15px;
  transition:0.3s;
}

.skill-box:hover{
  transform:translateY(-10px);
}

.skill-box i{
  font-size:60px;
  margin-bottom:20px;
  color:#38bdf8;
}

/* JOURNEY */

.journey-container{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  justify-content:center;
}

.journey-box{
  background:#1e293b;
  padding:30px;
  width:320px;
  border-radius:15px;
}

.journey-box h3{
  color:#38bdf8;
  margin-bottom:15px;
}

/* CONTACT */

.contact-box{
  text-align:center;
  line-height:3;
  font-size:20px;
}

.contact-box i{
  color:#38bdf8;
  margin-right:10px;
}

/* FOOTER */

footer{
  text-align:center;
  padding:20px;
  background:#111827;
}

/* RESPONSIVE */

@media(max-width:900px){

  header{
    flex-direction:column;
    gap:15px;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  .home{
    flex-direction:column-reverse;
    text-align:center;
  }

  .home-text h1{
    font-size:40px;
  }

}