.elementor-kit-512{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-512 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================
   MAIN COLUMN CONTAINER (the outer column widget)
   ============================================ */
.img-card-col {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* ============================================
   IMAGE WIDGET (inside the column)
   ============================================ */
.img-card-col .img-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.img-card-col .img-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Zoom effect on hover — hovering the column zooms the image */
.img-card-col:hover .img-card-image img {
  transform: scale(1.15);
}

/* ============================================
   INNER CONTAINER (holds tagline, heading, button)
   Positioned absolutely over the image, bottom-aligned
   ============================================ */
.img-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ============================================
   TAGLINE (small text widget)
   ============================================ */
.img-card-tagline {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #345779;
  margin-bottom: 6px;
}

/* ============================================
   HEADING widget
   ============================================ */
.img-card-heading {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 14px 0;
}

/* ============================================
   BUTTON widget
   ============================================ */
.img-card-button {
  display: inline-block;
  padding: 8px 20px;
  background: #345779;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.img-card-button:hover {
  background: #1f3547;
  color: #ffffff;
}

/* ============================================
   RESPONSIVE (optional, adjust as needed)
   ============================================ */
@media (max-width: 600px) {
  .img-card-heading {
    font-size: 18px;
  }
  .img-card-overlay {
    padding: 14px;
  }
}/* End custom CSS */