/* ===== EACH COLUMN ===== */
.main-cont {
  position: relative;
  overflow: hidden;
}

/* ===== WHITE FROSTED BLUR (BACKGROUND ONLY) ===== */
.main-cont::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35); /* white blur */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

/* ===== CONTENT ABOVE BLUR ===== */
.main-cont .sec-con {
  position: relative;
  z-index: 2;
}

/* ===== HEADING (VISIBLE BY DEFAULT) ===== */
.main-cont .heading {
  transition: opacity 0.3s ease;
}

/* ===== TEXT + BUTTON (HIDDEN INITIALLY) ===== */
.main-cont .text,
.main-cont .button {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ===== HOVER (INDEPENDENT PER COLUMN) ===== */
.main-cont:hover::after {
  opacity: 1;
}

.main-cont:hover .text,
.main-cont:hover .button {
  opacity: 1;
  transform: translateY(0);
}

/* Optional subtle heading fade */
.main-cont:hover .heading {
  opacity: 0.9;
}
.elementor-1289 .elementor-element.elementor-element-4b7e0ff .elementor-heading-title {
		margin:0;
}
html, body {
  scroll-snap-type: none !important;
}

section, div {
  scroll-snap-align: unset !important;
}