.home-land-card{
        background-color: #2e2b33;
        border: 1px solid rgba(111, 111, 111, 0.125);
        border-radius: .50rem !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(255, 255, 255, 0.05);
        padding: 40px;
    }
    
    .review-section {
      padding: 40px 20px;
    }

    .review-title {
      font-weight: 600;
      margin-bottom: 30px;
    }

    .review-card {
      background-color: #2e2b33;
      border: 1px solid rgba(111, 111, 111, 0.125);
      border-radius: 15px;
      padding: 20px;
      height: 100%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(255, 255, 255, 0.05);
      transition: transform 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-5px);
    }

    .review-stars {
      color: #f1c40f;
      margin-bottom: 5px;
    }

    .review-name {
      font-weight: 700;
      font-size: 14px;
    }

    .review-user {
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .review-text {
      font-size: 12px;
      color: #e1e1e1;
    }
    
    .owl-item {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    @media (max-width: 767px) {
        .gift-for-every{
            width: 100%;
            max-width: unset !important;
        }
    }
    
  
.container {
  max-width: 1300px;
  margin: auto;
}

.title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* 4 Cards per row */
.card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.card {
  height: 120px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none !important;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Background Images */
.bg1 { background-image: url("/public/img/newimg/like1.jpg"); }
.bg2 { background-image: url("/public/img/newimg/like2.jpg"); }
.bg3 { background-image: url("/public/img/newimg/like3.jpg"); }
.bg4 { background-image: url("/public/img/newimg/like4.jpg"); }

/* Dark Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.45)
  );
}

/* Badge */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b3b;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 2;
}

/* Content */
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

/* Icons */
.icon {
  width: 55px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon.pink { background: #ff4d8d; }
.icon.green { background: #20c997; }
.icon.purple { background: #845ef7; }
.icon.orange { background: #ff922b; }

/* Text */
.text h3 {
  font-size: 16px;
  font-weight: 600;
}

.text p {
  font-size: 13px;
  color: #e0e0e0;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .card-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(90deg, #000000, #111111);
  border-radius: 14px;
  padding: 40px 50px;
  color: #ffffff;
}

/* Layout */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Left Content */
.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 15px;
  color: #d1d1d1;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Button */
.cta-btn {
  background: #20c997;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #17b187;
  transform: translateY(-2px);
}

/* Right Images */
.hero-images {
  display: flex;
  /*gap: 12px;*/
}

.hero-images img {
  width: 100px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  border: 2px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-images {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-images img {
    width: 64px;
    height: 90px;
  }
}

/* Section */
.impact {
  background: #e0264a;
  border-radius: 16px;
  padding: 60px;
  color: #ffffff;
}

/* Layout */
.impact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Content */
.impact-content {
  max-width: 560px;
}

.impact-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.impact-content .lead {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #ffe3e8;
}

.impact-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #ffd2db;
}

/* Button */
.cta {
  display: inline-block;
  background: #ffffff;
  color: #e0264a !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Image Card */
.impact-image {
  /*background: #ffffff;*/
  padding: 14px;
  border-radius: 20px;
}

.impact-image img {
  width: 380px;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .impact {
    padding: 40px;
  }

  .impact-container {
    flex-direction: column;
    text-align: center;
  }

  .impact-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .impact {
    padding: 30px 20px;
  }

  .impact-content h2 {
    font-size: 26px;
  }
}