*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:linear-gradient(135deg,#617dec,#9215e6);
  color:white;
  overflow-x:hidden;
}

/* PARTICLES BACKGROUND */
#particles-js{
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:-1;
}

/* NAV */
.nav{
  position:fixed;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:1rem 2rem;
  background:rgba(0,0,0,0.25);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.nav a{
  margin-left:20px;
  color:white;
  text-decoration:none;
  font-weight:400;
}

.nav a:hover{
  color:#ffd369;
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding-top:60px;
}

.hero h1{
  font-size:3.2rem;
  font-weight:600;
  margin-bottom:10px;
}

.tagline{
  color:#ffd369;
  margin-bottom:25px;
  font-size:1.1rem;
}

/* BUTTONS */
.buttons a{
  margin:10px;
  padding:12px 25px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.3);
  border-radius:30px;
  text-decoration:none;
  color:white;
  transition:0.3s;
}

.buttons a:hover{
  background:#ffd369;
  color:#333;
}

/* SECTION */
.section{
  padding:5rem 2rem;
  text-align:center;
  scroll-margin-top:80px;
}

/* ABOUT */
.about-text{
  max-width:700px;
  margin:15px auto;
  line-height:1.8;
  opacity:0.95;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:30px;
}

/* CARDS */
.card{
  background:rgba(255,255,255,0.08);
  padding:25px;
  border-radius:15px;
  backdrop-filter:blur(10px);
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.1);
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* WORK CARDS */
.work-card{
  position:relative;
  overflow:hidden;
  border-radius:15px;
}

.work-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.4s;
}

.work-card:hover img{
  transform:scale(1.08);
}

/* OVERLAY */
.overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:15px;
  background:linear-gradient(to top,rgba(0,0,0,0.85),transparent);
}

.overlay h3{
  color:white;
  font-weight:500;
}

.overlay p{
  color:#ffd369;
  font-size:0.9rem;
}

/* CONTACT */
.contact-text{
  margin:20px 0;
}

.links a{
  margin:0 15px;
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.links a:hover{
  color:#ffd369;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:25px;
  background:rgba(0,0,0,0.25);
  margin-top:40px;
}

/* ANIMATION */
.fade{
  opacity:0;
  transform:translateY(30px);
  transition:0.8s;
}

.fade.show{
  opacity:1;
  transform:translateY(0);
}