    .heading {
                text-align: center;
                color: #cda45e,;
            }
        .center-heading {
                text-align: center;
                color: #fff;
            }
    .box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* width: 300px;
            height: 400px; */
        padding: 25px;
        color: #fff;
        background-color: rgb(0, 0, 0);
        box-sizing: border-box;
        z-index: 9;
    }

      .box:before {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        bottom: -2px;
        left: -2px;
        z-index: -1;
    }

    .box:after {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        bottom: -2px;
        left: -2px;
        z-index: -2;
        filter: blur(10px);
    }

    .box:before,
    .box:after {
        background: linear-gradient(135deg, #cda45e, rgb(0, 0, 0), #cda45e);
    }

    .border-gallery {
        border: 3px solid #cda45e !important;
    }

    .border-food {
        border: 5px solid #cda45e !important;
    }

/* ==============================
   STONE PALACE SECTION
================================ */
.stone-palace-section {
  padding: 80px 0;
  background: #000;
}

/* GRID LAYOUT */
.stone-palace-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.stone-palace-row.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.stone-palace-row.reverse > * {
  direction: ltr;
}

/* IMAGE CONTAINER – SAME SIZE FOR ALL */
.stone-palace-image {
  width: 100%;
  height: 360px;                 /* EQUAL HEIGHT */
  overflow: hidden;
  border-radius: 16px;
  border: 3px solid #050505;
}

/* IMAGE */
.stone-palace-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* NO DISTORTION */
  border-radius: 16px;
}

/* CONTENT BOX */
.stone-palace-content {
  background: #0b0b0b;
  border: 2px solid #cda45e;
  padding: 30px;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* HEADING */
.stone-palace-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* SUBTITLE */
.stone-palace-content .subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #cda45e;
}

/* LIST */
.stone-palace-content ul {
  padding-left: 18px;
}

.stone-palace-content ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* PARAGRAPH */
.stone-palace-content p {
  font-size: 16px;
  line-height: 1.8;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .stone-palace-row,
  .stone-palace-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .stone-palace-image {
    height: 260px;
  }

  .stone-palace-content {
    padding: 22px;
  }

  .stone-palace-content h2 {
    font-size: 24px;
  }

  .stone-palace-row {
    margin-bottom: 60px;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .stone-palace-row,
  .stone-palace-row.reverse {
    grid-template-columns: 1fr;
  }

  .stone-palace-content h2 {
    font-size: 24px;
  }

  .stone-palace-row {
    margin-bottom: 60px;
  }
}

/* BUTTON */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border: 2px solid #cda45e;
  color: #ffffff;
  font-weight: 600;
  border-radius: 6px;
}

.btn-arrow:hover {
  background: #cda45e;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .stone-palace-grid {
    grid-template-columns: 1fr;
  }
}
