.flyer-card {
      margin-top: 70px;
      padding: 60px 8%;
      width: 100%;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 500;
      margin-bottom: 20px;
      color: #333;
    }

    .italic-word {
      font-style: italic;
    }

    .soft-text {
      color: #666;
      line-height: 1.9;
      font-size: 1.05rem;
    }

    /* Image styles */
    .img-large {
      width: 100%;
      height: 320px;
      background-size: cover;
      background-position: center;
    }

    .img-small {
      width: 70%;
      height: 160px;
      background-size: cover;
      background-position: center;
      margin-top: -60px;
      margin-left: 40px;
    }

    .img-vertical {
      width: 100%;
      height: 420px;
      background-size: cover;
      background-position: center;
    }

    ul {
      padding-left: 18px;
    }

    ul li {
      margin-bottom: 10px;
    }

    @media(max-width:768px){
      .img-small{
        margin-left: 0;
        width: 100%;
      }
    }


    /* ===== Animations & Hover Effects ===== */

    /* Smooth fade-in for sections */
    .flyer-card > div {
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 1s ease forwards;
    }

    .flyer-card > div:nth-child(1){animation-delay: .2s;}
    .flyer-card > div:nth-child(2){animation-delay: .4s;}
    .flyer-card > div:nth-child(3){animation-delay: .6s;}

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Image hover zoom & glow */
    .placeholder-img {
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
    }

    .placeholder-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(255,255,255,0.2));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .placeholder-img:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .placeholder-img:hover::after {
      opacity: 1;
    }

    /* Heading hover underline animation */
    .section-title {
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: #000;
      transition: width 0.4s ease;
    }

    .section-title:hover::after {
      width: 100%;
    }

    /* List hover effect */
    .text-block ul li {
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .text-block ul li:hover {
      transform: translateX(8px);
      color: #000;
    }

    /* Soft card entrance */
    .flyer-card {
      animation: cardPop 1s ease;
    }

    @keyframes cardPop {
      from {
        transform: scale(0.96);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }
  

    /* ===== Scroll Triggered Animations ===== */

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s ease;
    }

    .animate-on-scroll.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hover Animations */
    .placeholder-img {
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
    }

    .placeholder-img:hover {
      transform: scale(1.05);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .section-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: #000;
      transition: width 0.4s ease;
    }

    .section-title:hover::after {
      width: 100%;
    }
  
/* ===== CINEMATIC SCROLL ANIMATION ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(80px) scale(0.96);
  transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== STAGGER EFFECT ===== */
.animate-on-scroll.show .soft-text ul li {
  opacity: 0;
  transform: translateX(30px);
  animation: staggerFade 0.6s ease forwards;
}

.animate-on-scroll.show .soft-text ul li:nth-child(1){ animation-delay: .2s; }
.animate-on-scroll.show .soft-text ul li:nth-child(2){ animation-delay: .4s; }
.animate-on-scroll.show .soft-text ul li:nth-child(3){ animation-delay: .6s; }
.animate-on-scroll.show .soft-text ul li:nth-child(4){ animation-delay: .8s; }

@keyframes staggerFade{
  to{
    opacity:1;
    transform: translateX(0);
  }
}

/* ===== PARALLAX BACKGROUND ===== */
.hero-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ===== IMAGE REVEAL + HOVER CINEMATIC ===== */
.img-large,
.img-small,
.img-vertical {
  transition: all 0.6s ease;
  overflow: hidden;
  position: relative;
}

.img-large::after,
.img-small::after,
.img-vertical::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.img-large:hover::after,
.img-small:hover::after,
.img-vertical:hover::after {
  left: 100%;
}

.img-large:hover,
.img-small:hover,
.img-vertical:hover {
  transform: scale(1.08);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* ===== GLASSMORPHISM TEXT BLOCK ===== */
.text-block {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: all 0.5s ease;
}

.text-block:hover {
  transform: translateY(-5px);
}

/* ===== HEADING LUXURY UNDERLINE ===== */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #000, #666);
  transition: width 0.5s ease;
}

.section-title:hover::after {
  width: 100%;
}

/* ===== SOFT LIST HOVER ===== */
.soft-text ul li {
  transition: transform 0.3s ease, color 0.3s ease;
}

.soft-text ul li:hover {
  transform: translateX(10px);
  color: #000;
}