/* BLOG HERO */
.blog-hero {
  padding: 110px 8% 70px;
  background: #05050c;
  color: white;
}

.mini-label {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #3456d3;
  margin-bottom: 15px;
}

.blog-hero-content {
  max-width: 850px;
}

.blog-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 18px 0;
  line-height: 1.15;
}

.hero-subtext {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* FEATURED */
.featured-post {
  padding: 0 8% 90px;
  background: #05050c;
}

.featured-card {
  display: flex;
  gap: 40px;
  padding: 35px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
}

.post-tag {
  color: #3456d3;
  font-weight: 700;
  font-size: 14px;
}

.featured-text h2 {
  font-size: 30px;
  margin: 14px 0;
}

.featured-text p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.read-btn {
  display: inline-block;
  margin-top: 18px;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.read-btn:hover {
  color: #3456d3;
}

.featured-image img {
  width: 320px;
  border-radius: 18px;
  object-fit: cover;
}

/* BLOG GRID */
.blog-section {
  padding: 0 8% 110px;
  background: #05050c;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.blog-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(52, 86, 211, 0.6);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-info {
  padding: 18px;
}

.date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.blog-info h3 {
  margin: 10px 0;
  font-size: 17px;
}

.blog-info p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.blog-info a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.blog-info a:hover {
  color: #3456d3;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card {
    flex-direction: column;
    text-align: left;
  }

  .featured-image img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    font-size: 34px;
  }
}
:root {
  --bg-dark: #0b0e14;
  --bg-card: #121725;
  --text-main: #ffffff;
  --text-muted: #aab0c3;
  --primary: #3456d3;
  --border: rgba(255,255,255,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

section {
  padding: 90px 8%;
}
/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right */
  width: 60px;        /* icon size */
  height: 60px;
  z-index: 1000;      /* ensures it stays on top */
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* slight hover effect */
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}