
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#070710;
  color:white;
  overflow-x:hidden;
}

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;

  padding:20px 60px;

  background:black;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:1000;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:#ff4d00;
  cursor:pointer
}

nav ul{
  display:flex;
  gap:40px;
  list-style:none;
}

nav ul li a{
  text-decoration:none;
  color:white;
  font-size:18px;
  transition:0.3s;
}

nav ul li a:hover{
  color:#ff4d00;
}

/* =========================
   PROFILE IMAGE
========================= */

.profile-img{

  width:230px;
  height:230px;

  object-fit:cover;

  border-radius:50%;

  border:4px solid #ff4d00;

  margin-bottom:30px;

  box-shadow:
    0 0 20px #ff4d00,
    0 0 50px rgba(255,77,0,0.6);

  transition:0.4s;
}

/* hover effect */

.profile-img:hover{

  transform:scale(1.05);

  box-shadow:
    0 0 30px #ff4d00,
    0 0 70px rgba(255,77,0,0.8);
}
/* =========================
   3D GRID BACKGROUND
========================= */

.grid-bg{
  position:fixed;
  inset:0;

  z-index:-2;

  background-image:
    linear-gradient(rgba(255,77,0,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,0,0.3) 1px, transparent 1px);

  background-size:80px 80px;

  transform:
    perspective(1000px)
    rotateX(75deg)
    scale(2);

  animation:gridMove 10s linear infinite;
}

/* moving animation */

@keyframes gridMove{

  from{
    background-position:0 0;
  }

  to{
    background-position:0 200px;
  }

}

/* glowing center */

.glow{
  position:fixed;
  inset:0;

  z-index:-1;

  background:
    radial-gradient(circle at center,
    rgba(255,77,0,0.2),
    transparent 60%);
}

/* =========================
   SECTION
========================= */

section{
  min-height:100vh;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:120px 20px;
}

section h1{
  font-size:60px;
  color:#ff4d00;

  margin-bottom:20px;
}

section p{
  max-width:700px;

  font-size:20px;
  color:#ddd;

  line-height:1.8;
}

/* =========================
   HERO
========================= */

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

.hero p{
  margin-top:20px;
  font-size:24px;
}

/* =========================
   CARDS
========================= */

.cards{
  display:flex;
  gap:30px;

  flex-wrap:wrap;
  justify-content:center;

  margin-top:40px;
}

.card{
  width:280px;

  padding:30px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,77,0,0.3);

  border-radius:20px;

  backdrop-filter:blur(10px);

  transition:0.4s;
}

.card:hover{

  transform:
    translateY(-10px)
    scale(1.03);

  box-shadow:
    0 0 30px rgba(255,77,0,0.5);
}

.card h3{
  color:#ff4d00;
  margin-bottom:15px;
}

/* =========================
   BUTTON
========================= */

button{

  margin-top:30px;

  padding:15px 40px;

  border:none;
  border-radius:40px;

  background:#ff4d00;
  color:white;

  font-size:18px;

  cursor:pointer;

  transition:0.3s;
}

button:hover{

  transform:scale(1.05);

  box-shadow:
    0 0 20px #ff4d00;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  header{
    padding:20px;
  }

  nav ul{
    gap:20px;
  }

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

  section h1{
    font-size:40px;
  }

  section p{
    font-size:18px;
  }

}
html{
  scroll-behavior:smooth;
}

.logo{
  text-decoration:none;
  color:#ff4d00;
}
/* =========================
   FOOTER
========================= */

footer{

  background:black;

  padding:60px 10% 20px;

  border-top:
  1px solid rgba(255,255,255,0.1);
}

/* container */

.footer-container{

  display:flex;

  justify-content:space-between;

  align-items:flex-start;

  flex-wrap:wrap;

  gap:50px;
}

/* left side */

.footer-left h2{

  color:#ff4d00;

  font-size:32px;

  margin-bottom:15px;
}

.footer-left p{

  color:#ccc;

  margin-bottom:10px;

  line-height:1.6;
}

/* contact info */

.contact-info{

  margin-top:20px;
}

/* right side */

.footer-right{

  display:flex;

  flex-direction:column;

  gap:15px;
}

.footer-right h3{

  color:#ff4d00;

  margin-bottom:10px;
}

.footer-right a{

  text-decoration:none;

  color:white;

  transition:0.3s;
}

.footer-right a:hover{

  color:#ff4d00;

  transform:translateX(5px);
}

/* bottom */

.footer-bottom{

  text-align:center;

  margin-top:40px;

  padding-top:20px;

  border-top:
  1px solid rgba(255,255,255,0.1);

  color:#777;

  font-size:14px;
}

/* responsive */

@media(max-width:768px){

  .footer-container{

    flex-direction:column;

    text-align:center;
  }

  .footer-right{

    width:100%;
  }

}
/* =========================
   SOCIAL ICONS
========================= */

.social-icons{

  display:flex;

  gap:20px;

  margin-top:25px;
}

.social-icons a img{

  width:40px;

  height:40px;

  object-fit:cover;

  transition:0.3s;
}

/* hover */

.social-icons a img:hover{

  transform:scale(1.15);

  filter:
  drop-shadow(0 0 10px #ff4d00);
}

/* THEME BUTTON */

.theme-btn{

  padding:10px 20px;

  border:2px solid currentColor;

  border-radius:30px;

  text-decoration:none;

  font-size:15px;

  font-weight:bold;

  transition:0.3s;
}

/* hover */

.theme-btn:hover{

  transform:translateY(-2px);
}
/* RESUME BUTTON */

.resume-btn{

  padding:10px 20px;

  border:2px solid currentColor;

  border-radius:30px;

  text-decoration:none;

  font-size:15px;

  font-weight:bold;

  transition:0.3s;
}

.resume-btn:hover{

  transform:translateY(-2px);

  background:black;

  color:white !important;
}
/* =========================
   BIG PROJECT CARD
========================= */

.project-card{

  width:380px;

  padding:25px;
}

/* project image */

.project-img{

  width:100%;

  height:220px;

  object-fit:cover;

  border-radius:15px;

  border:2px solid black;

  margin-bottom:20px;

  transition:0.4s;
}

/* hover */

.project-card:hover .project-img{

  transform:scale(1.03);
}

/* heading */

.project-card h3{

  font-size:30px;

  margin-bottom:15px;
}

/* text */

.project-card p{

  font-size:17px;

  line-height:1.7;
}
/* =========================
   TIMELINE
========================= */

.timeline{
  position:relative;
  max-width:900px;
  margin:80px auto;
  padding-left:80px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:20px;
  top:0;
  width:4px;
  height:100%;
  background:lch(38.96% 115.65 305.73);
}

.timeline-item{
  position:relative;
  margin-bottom:90px;
  transition:0.5s;
}

.timeline-dot{
  position:absolute;
  left:-71px;
  top:10px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:white;
  border:4px solid #cfe622;
  transition:0.5s;
}

.timeline-content{
  text-align:left;
}

.timeline-content h2{
  font-size:40px;
  color:rgb(44, 28, 168);
  margin-bottom:15px;
  transition:0.5s;
}

.timeline-content p{
  color:#ffffff;
  line-height:1.8;
}

/* Glow Effect */

.timeline-item:hover .timeline-dot{
  box-shadow:
    0 0 10px #ff4d00,
    0 0 25px #ff4d00,
    0 0 50px #ff4d00;
}

.timeline-item:hover h2{
  color:#ff4d00;
  text-shadow:
    0 0 10px #ff4d00,
    0 0 20px #ff4d00;
}

.timeline-item:hover{
  transform:translateX(10px);
}

@media(max-width:768px){

  .timeline{
    padding-left:50px;
  }

  .timeline-dot{
    left:-42px;
  }

  .timeline-content h2{
    font-size:28px;
  }
}