*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Poppins", sans-serif;
}

body{
  background:#f5f7fb;
  color:#333;
}

/* ===== NAVBAR ===== */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  background:#0f172a;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  z-index:1000;
}

.navbar ul{
  list-style:none;
  display:flex;
  gap:20px;
}

.navbar a{
  color:white;
  text-decoration:none;
}

/* ===== HERO ===== */
.hero{
  height:100vh;
  background:url("https://picsum.photos/1600/900") center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:60px;
}

.hero-content{
  background:rgba(0,0,0,0.6);
  color:white;
  padding:40px;
  border-radius:10px;
  text-align:center;
}

.hero-content h1{
  font-size:48px;
}

/* ===== SECTIONS ===== */
.section{
  padding:80px 10%;
  text-align:center;
}

.section.dark{
  background:#0f172a;
  color:white;
}

.section h2{
  font-size:32px;
  margin-bottom:20px;
}

/* ===== BLOG CARDS ===== */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.card{
  background:white;
  padding:25px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.dark .card{
  background:#1e293b;
}

/* ===== GALLERY ===== */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}

.gallery img{
  width:100%;
  border-radius:10px;
}

/* ===== DEVELOPERS ===== */
.devs{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.dev-card{
  background:#1e293b;
  padding:25px;
  border-radius:15px;
}

.dev-card img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
}

/* ===== FOOTER ===== */
.footer{
  background:#020617;
  color:white;
  text-align:center;
  padding:20px;
}
/* ===== ABOUT IMAGES ===== */
.about-gallery{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.about-gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
}

/* ===== BLOG CARDS WITH IMAGES ===== */
.blog-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:15px;
}

.blog-card span{
  display:inline-block;
  margin-top:10px;
  color:#38bdf8;
  font-weight:500;
  cursor:pointer;
}

/* ===== NOTIFICATIONS ===== */
.notify-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.notify-card{
  background:#ffffff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  text-align:left;
}

.notify-card h3{
  margin-bottom:15px;
  color:#0f172a;
}

.notify-card ul{
  list-style:disc;
  padding-left:20px;
}

.notify-card li{
  margin-bottom:8px;
  font-size:15px;
}
