.elementor-21383 .elementor-element.elementor-element-56bf899{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:50px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-4f25b14 *//* HEADER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.section-header .tag {
  color: #ff6600;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

.section-header h2 {
  font-size: 34px;
  margin: 10px 0;
}

.section-header p {
  color: #666;
  line-height: 1.6;
}

/* GRID */
.temple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.temple-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* IMAGE */
.img-box {
  height: 180px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.temple-card:hover img {
  transform: scale(1.1);
}

/* ICON */
.temple-card .icon {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6600;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border: 3px solid #fff;
}

/* TITLE */
.temple-card h3 {
  margin: 45px 0 20px;
  font-size: 18px;
  font-weight: 600;
}

/* HOVER EFFECT */
.temple-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .temple-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .temple-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
}/* End custom CSS */