/*
Theme Name: Total Child Theme
Theme URI: https://your-site.com
Description: Your site description. Go to Appearance > Editor to modify this file.
Author: Your Name
Author URI: https://your-site.com
Template: Total
Version: 1.0
*/

.ftg-teal-hero {
  position: relative;
  overflow: hidden; /* keeps shapes from spilling outside the section */
}

.ftg-teal-hero::before,
.ftg-teal-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none; /* won't block clicks on buttons/links */
}

/* top-right blob */
.ftg-teal-hero::before {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
  background: rgba(255, 255, 255, 0.06); /* subtle lighter tint */
}

/* bottom-left blob */
.ftg-teal-hero::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -100px;
  background: rgba(0, 0, 0, 0.08); /* subtle darker tint */
}

/* make sure your actual content sits above the shapes */
.ftg-teal-hero .vc_row-fluid,
.ftg-teal-hero .wpb_column {
  position: relative;
  z-index: 1;
}