    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }


    .about-section {
      position: relative;
      height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background:radial-gradient(circle at 20% 30%, rgba(180, 75, 210, 0.15), transparent 40%), radial-gradient(circle at 80% 20%, rgba(180, 75, 210, 0.12), transparent 45%);
      overflow: hidden;
    }

    .about-container {
      max-width: 900px;
      padding: 40px 20px;
      z-index: 2;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      border-radius: 999px;
      background: white;
      color: #333;
      font-size: 14px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      margin-bottom: 30px;
    }

    .badge i {
      color: #e042b2;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 64px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1f1f1f;
    }

    h1 span {
      color: #b95ad8;
    }

    .description {
      font-size: 20px;
      line-height: 1.6;
      color: #6d5f78;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Floating Icons */
    .floating-icon {
      position: absolute;
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #e042b2;
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .icon-left {
      left: 80px;
      bottom: 120px;
    }

    .icon-right {
      right: 80px;
      top: 120px;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 42px;
      }

      .description {
        font-size: 16px;
      }

      .icon-left,
      .icon-right {
        display: none;
      }
    }
  
    /* ===== OUR STORY SECTION ===== */
    .story-section {
      padding: 100px 60px;
      background: #fffafa;
    }

    .story-container {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .story-images {
      position: relative;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .story-images .img {
      width: 100%;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    }

   

    .location-badge {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      background: #b54fd8;
      color: white;
      padding: 16px 22px;
      border-radius: 20px;
      display: flex;
      gap: 14px;
      align-items: center;
      box-shadow: 0 20px 50px rgba(181,79,216,0.45);
    }

    .location-badge i {
      font-size: 22px;
    }

    .story-label {
      color: #d84bb7;
      letter-spacing: 2px;
      font-size: 14px;
      font-weight: 600;
    }

    .story-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      margin: 16px 0 24px;
      color: #1f1f1f;
    }

    .story-content p {
      font-size: 18px;
      color: #6d5f78;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .story-badges {
      display: flex;
      gap: 16px;
      margin-top: 30px;
    }

    .story-badges span {
      background: #f6eef9;
      padding: 12px 20px;
      border-radius: 999px;
      font-size: 15px;
      color: #1f1f1f;
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }

    .story-badges i {
      color: #d84bb7;
    }

    @media (max-width: 992px) {
      .story-container {
        grid-template-columns: 1fr;
      }

      .story-section {
        padding: 70px 24px;
      }

      .story-content h2 {
        font-size: 34px;
      }
    }

  
    /* ===== STATS SECTION ===== */
    .stats-section {
      background: linear-gradient(90deg, #d84bb7, #a45ad8, #7b4cc9);
      padding: 90px 40px;
    }

    .stats-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
      color: #fff;
    }

    .stat-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 56px;
      margin: 18px 0 6px;
    }

    .stat-card p {
      font-size: 18px;
      opacity: 0.9;
    }

    .stat-icon {
      width: 64px;
      height: 64px;
      margin: auto;
      border-radius: 20px;
      background: rgba(255,255,255,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
    }

    @media (max-width: 992px) {
      .stats-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

      .stat-card h3 {
        font-size: 44px;
      }
    }

  
    /* ===== CORE VALUES SECTION ===== */
    .values-section {
      padding: 110px 60px;
      background: #fdf8fb;
    }

    .values-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .values-header span {
      color: #e44ab4;
      letter-spacing: 2px;
      font-size: 14px;
      font-weight: 600;
    }

    .values-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      margin-top: 14px;
      color: #1f1f1f;
    }

    .values-grid {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .value-card {
      background: white;
      border-radius: 28px;
      padding: 40px 34px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.08);
      position: relative;
    }

    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      border-radius: 28px 28px 0 0;
    }

    .value-card.pink::before { background: linear-gradient(90deg, #ff4f87, #ff6fb1); }
    .value-card.purple::before { background: linear-gradient(90deg, #8b5cf6, #b07cff); }
    .value-card.blue::before { background: linear-gradient(90deg, #3b82f6, #22d3ee); }
    .value-card.orange::before { background: linear-gradient(90deg, #fb923c, #f97316); }

    .value-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
      margin-bottom: 22px;
    }

    .pink .value-icon { background: #ff4f87; }
    .purple .value-icon { background: #8b5cf6; }
    .blue .value-icon { background: #3b82f6; }
    .orange .value-icon { background: #fb923c; }

    .value-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      margin-bottom: 14px;
      color: #1f1f1f;
    }

    .value-card p {
      font-size: 16px;
      color: #6d5f78;
      line-height: 1.7;
    }

    @media (max-width: 1100px) {
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .values-section {
        padding: 80px 24px;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .values-header h2 {
        font-size: 36px;
      }
    }

  
    /* ===== TEAM SECTION ===== */
    .team-section {
      padding: 110px 60px;
      background: #fdfbfc;
    }

    .team-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .team-header span {
      color: #e44ab4;
      letter-spacing: 2px;
      font-size: 14px;
      font-weight: 600;
    }

    .team-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      margin-top: 14px;
      color: #1f1f1f;
    }

    .team-grid {
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .team-card {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    }

    .team-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .team-info {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 26px 24px;
      background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
      color: #fff;
    }

    .team-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      margin-bottom: 6px;
    }

    .team-info p {
      font-size: 15px;
      opacity: 0.9;
      margin-bottom: 10px;
    }

    .rating {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 500;
    }

    .rating i {
      color: #facc15;
    }

    @media (max-width: 1200px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .team-section {
        padding: 80px 24px;
      }

      .team-grid {
        grid-template-columns: 1fr;
      }

      .team-header h2 {
        font-size: 36px;
      }
    }

  
    /* ===== CTA SECTION ===== */
    .cta-section {
      padding: 120px 40px;
      background: radial-gradient(circle at left, #edd9f4, #f7e9f6, #fbeff7);
      text-align: center;
    }

    .cta-container {
      max-width: 900px;
      margin: auto;
    }

    .cta-container h2 {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      color: #1f1f1f;
      margin-bottom: 18px;
    }

    .cta-container p {
      font-size: 20px;
      color: #6d5f78;
      margin-bottom: 40px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      border-radius: 999px;
      background: linear-gradient(90deg, #d84bb7, #a45ad8);
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 20px 50px rgba(216,75,183,0.45);
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 30px 70px rgba(216,75,183,0.6);
    }

    @media (max-width: 600px) {
      .cta-section {
        padding: 90px 24px;
      }

      .cta-container h2 {
        font-size: 34px;
      }

      .cta-container p {
        font-size: 16px;
      }
    }

.gallery-section {
  padding: 100px 20px;
  background: #faf7fb;
}

.gallery-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
}

.gallery-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: #f1e6fa;
  color: #b44bd2;
  font-size: 13px;
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallery-header p {
  color: #666;
  font-size: 15px;
}

/* GRID */
.gallery-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* Hover Effect */
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(180,75,210,.35), transparent);
  opacity: 0;
  transition: .4s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover::after {
  opacity: 1;
}

/* VARIANTS */
.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
