*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:#111;
  color:white;
}

/* Navbar */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  background:#1c1c1c;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  color:#ff4c60;
}

.nav-links a{
  color:white;
  text-decoration:none;
  margin-left:20px;
  transition:0.3s;
}

.nav-links a:hover{
  color:#ff4c60;
}

/* Hero */
.about-hero{
  text-align:center;
  padding:100px 20px 50px;
}

.about-hero h1{
  font-size:4rem;
  margin-bottom:20px;
}

.about-hero p{
  color:#ccc;
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

/* Content */
.about-content{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  padding:50px 8%;
}

.about-card{
  background:#1c1c1c;
  padding:30px;
  border-radius:20px;
  transition:0.4s;
  box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

.about-card:hover{
  transform:translateY(-10px);
}

.about-card h2{
  color:#ff4c60;
  margin-bottom:15px;
}

.about-card p{
  color:#ccc;
  line-height:1.7;
}

/* Back Button */
.back-container{
  text-align:center;
  padding-bottom:50px;
}

.back-btn{
  display:inline-block;
  padding:12px 25px;
  background:#ff4c60;
  color:white;
  text-decoration:none;
  border-radius:30px;
  transition:0.3s;
}

.back-btn:hover{
  background:#ff2e44;
  transform:scale(1.05);
}

/* Animation */
.fade-up{
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}