/* HERO IMAGE */
.blog-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTERFLIES */
.butterfly {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd700;
  border-radius: 50%;
  animation: fly 10s infinite ease-in-out alternate;
  opacity: 0.9;
}

.b1 { top: 25%; left: 15%; }
.b2 { top: 40%; left: 70%; }
.b3 { top: 60%; left: 30%; }
.b4 { top: 35%; left: 80%; }
.b5 { top: 55%; left: 50%; }
.b6 { top: 45%; left: 10%; }
.b7 { top: 30%; left: 60%; }

@keyframes fly {
  0% { transform: translate(0,0); }
  50% { transform: translate(20px,-25px); }
  100% { transform: translate(-15px,15px); }
}

/* BLOG SECTION */
.blogs-section {
  padding: 80px 8%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.blog-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card h3 {
  margin-bottom: 15px;
  color: #6b0f1a;
}

.blog-card p {
  margin-bottom: 20px;
  color: #555;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    height: 45vh;
  }
}
/* .full-text {
  display: none;
  margin-top: 15px;
  color: #444;
  line-height: 1.7;
} */

.blog-card.expanded {
  grid-column: span 2;
  z-index: 10;
}

.blog-card.hide {
  display: none;
}












/* MOBILE FIX */
@media (max-width: 768px) {

  .blog-card.expanded {
    grid-column: span 1 !important;
  }

  .blog-card.hide {
    display: block !important;
  }

  .full-text {
    width: 100%;
  }

}











/* =========================
   3D PREMIUM BUTTON
========================= */

.read-more {
  background: linear-gradient(145deg, #7d1321, #5a0d17);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 0 #3e0810, 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
  position: relative;
}

/* Hover lift */
.read-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #3e0810, 0 12px 25px rgba(0,0,0,0.3);
}

/* Click press effect */
.read-more:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #3e0810, 0 4px 10px rgba(0,0,0,0.2);
}

/* Arrow icon animation */
.read-more::after {
  content: " ▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-card.expanded .read-more::after {
  transform: rotate(180deg);
}

.full-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  opacity: 0;
}

.blog-card.expanded .full-text {
  opacity: 1;
}


.insights-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #faf8f5, #ffffff);
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.insights-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 80px;
  animation: fadeDown 1.2s ease forwards;
}

.insights-header h2 {
  font-size: 38px;
  color: #4b2c5e;
  margin-bottom: 20px;
}

.insights-header p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

/* GRID */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.insight-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insight-card:nth-child(1) { animation-delay: 0.2s; }
.insight-card:nth-child(2) { animation-delay: 0.4s; }
.insight-card:nth-child(3) { animation-delay: 0.6s; }
.insight-card:nth-child(4) { animation-delay: 0.8s; }
.insight-card:nth-child(5) { animation-delay: 1s; }

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.insight-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #2d2d2d;
}

.insight-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* GOLDEN GLOW EFFECT */
.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212,175,55,0.4), transparent);
  transform: rotate(25deg);
}

/* ANIMATIONS */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .insights-header h2 {
    font-size: 28px;
  }

  .insight-card {
    padding: 30px;
  }
}
/* Initial hidden state */
.insight-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state */
.insight-card.show {
  opacity: 1;
  transform: translateY(0);
}


