/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2026 | 20:20:26 */
.borderless {
	border-left: solid 1px rgba(160,160,160,0.7);
	border-top: solid 1px transparent;
	border-bottom: solid 4px rgba(160,160,160,0.7);
	border-right: solid 1px rgba(160,160,160,0.7);
	border-radius: 25px;
}


/* ── Hide all radio inputs ── */
    .sol-radio { display: none; }

    /* ── Outer wrapper ── */
    .sol-wrapper {
      max-width: 1200px;
      margin: auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      border-radius: 25px;
      font-family: 'Raleway', sans-serif;
    }

    .content-wrapper {
      display: grid;
      grid-template-columns: 50% 50%;
      min-height: 500px;
    }

    /* ══════════════════════════════════════════
       LEFT PANEL — pain points
    ══════════════════════════════════════════ */
    .pain-points {
      background: #ffffff;
      padding: 32px 40px;
      position: relative;
      border-radius: 25px 0 0 0;
    }
    .pain-points::after {
      content: "";
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #4cb1f9, #001c58);
    }
    .pain-points h3 {
      font-size: 1.8rem;
      font-weight: 500;
      color: #c80c47;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Each pain point is a <label> targeting a radio */
    .pain-point {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      padding: 12px;
      border-radius: 12px;
      background: white;
      box-shadow: 0 4px 15px rgba(0,28,88,0.08);
      transition: all 0.3s ease;
      cursor: pointer;
      border-left: 4px solid transparent;
    }
    .pain-point:hover {
      transform: translateX(12px);
      box-shadow: 0 12px 35px rgba(0,28,88,0.18);
      border-left-color: #4cba76;
    }

    .pain-point-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 3px solid #000000;
      margin-right: 20px;
      flex-shrink: 0;
      position: relative;
      transition: all 0.3s ease;
    }
    .pain-point:hover .pain-point-icon {
      border-color: #4cba76;
      background: #4cba76;
      transform: scale(1.1);
    }

    .pain-point-text {
      font-size: 14px;
      font-weight: 500;
      color: #000000;
      line-height: 1.4;
      transition: color 0.3s ease;
      font-family: 'Poppins';
    }
    .pain-point:hover .pain-point-text {
      color: #4cba76;
    }

    /* ── Active pain point driven by :checked radio ── */
    /* Each radio controls its own label via the general sibling combinator (~) */

    #sol-1:checked ~ .content-wrapper .pain-point[for-radio="sol-1"],
    #sol-2:checked ~ .content-wrapper .pain-point[for-radio="sol-2"],
    #sol-3:checked ~ .content-wrapper .pain-point[for-radio="sol-3"],
    #sol-4:checked ~ .content-wrapper .pain-point[for-radio="sol-4"],
    #sol-5:checked ~ .content-wrapper .pain-point[for-radio="sol-5"],
    #sol-6:checked ~ .content-wrapper .pain-point[for-radio="sol-6"] {
      border-left-color: #4cb1f9;
      background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    }

    #sol-1:checked ~ .content-wrapper .pain-point[for-radio="sol-1"] .pain-point-icon,
    #sol-2:checked ~ .content-wrapper .pain-point[for-radio="sol-2"] .pain-point-icon,
    #sol-3:checked ~ .content-wrapper .pain-point[for-radio="sol-3"] .pain-point-icon,
    #sol-4:checked ~ .content-wrapper .pain-point[for-radio="sol-4"] .pain-point-icon,
    #sol-5:checked ~ .content-wrapper .pain-point[for-radio="sol-5"] .pain-point-icon,
    #sol-6:checked ~ .content-wrapper .pain-point[for-radio="sol-6"] .pain-point-icon {
      border-color: #4cba76;
      background: #4cba76;
      transform: scale(1.1);
    }

    /* Checkmark on active icon */
    #sol-1:checked ~ .content-wrapper .pain-point[for-radio="sol-1"] .pain-point-icon::after,
    #sol-2:checked ~ .content-wrapper .pain-point[for-radio="sol-2"] .pain-point-icon::after,
    #sol-3:checked ~ .content-wrapper .pain-point[for-radio="sol-3"] .pain-point-icon::after,
    #sol-4:checked ~ .content-wrapper .pain-point[for-radio="sol-4"] .pain-point-icon::after,
    #sol-5:checked ~ .content-wrapper .pain-point[for-radio="sol-5"] .pain-point-icon::after,
    #sol-6:checked ~ .content-wrapper .pain-point[for-radio="sol-6"] .pain-point-icon::after {
      content: "✓";
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 14px;
      font-weight: bold;
    }

    /* ══════════════════════════════════════════
       RIGHT PANEL — solution panels
    ══════════════════════════════════════════ */
    .solution-panel-wrap {
      background: linear-gradient(135deg, rgb(0,28,88) 0%, rgb(76,177,249) 100%);
      color: white;
      padding: 32px 26px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-radius: 0 25px 0 0;
    }
    .solution-panel-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(76,177,249,0.15) 0%, transparent 50%);
    }

    /* All solution panels hidden by default */
    .solution-panel {
      display: none;
      position: relative;
      z-index: 2;
    }

    /* Show the panel whose radio is checked */
    #sol-1:checked ~ .content-wrapper .solution-panel[data-panel="sol-1"],
    #sol-2:checked ~ .content-wrapper .solution-panel[data-panel="sol-2"],
    #sol-3:checked ~ .content-wrapper .solution-panel[data-panel="sol-3"],
    #sol-4:checked ~ .content-wrapper .solution-panel[data-panel="sol-4"],
    #sol-5:checked ~ .content-wrapper .solution-panel[data-panel="sol-5"],
    #sol-6:checked ~ .content-wrapper .solution-panel[data-panel="sol-6"] {
      display: flex;
      flex-direction: column;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .solution-title {
      font-size: 1.5rem !important;
      font-weight: 500 !important;
      color: #fff;
      margin: 0 0 30px;
      text-transform: uppercase !important;
      letter-spacing: 0.8px !important;
      text-align: left;
      line-height: 32px !important;
    }

    .video-placeholder {
      width: 100%;
      max-width: 500px;
      height: 280px;
      background: #000;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin: 0 auto 0;
    }
    .video-placeholder iframe,
    .video-placeholder img {
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 12px;
      object-fit: cover;
      display: block;
    }

    .solution-text {
      font-size: 14px;
	  font-weight: 500;	
      line-height: 1.6;
      color: #fff;
      padding: 3% 0;
      font-family: 'Poppins';
    }

    .cta-button {
      font-family: 'Poppins';
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 50px;
      color: #ffffff;
      border: solid 1px #ffffff;
      padding: 10px 30px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      align-self: center;
    }
    .cta-button:hover {
      background-color: transparent !important;
      color: white;
    }

    /* Per-panel CTA colours */
    .solution-panel[data-panel="sol-1"] .cta-button { background-color: #4cba76; }
    .solution-panel[data-panel="sol-2"] .cta-button { background-color: #4cba76; }
    .solution-panel[data-panel="sol-3"] .cta-button { background-color: #4cba76; }
    .solution-panel[data-panel="sol-4"] .cta-button { background-color: #4cba76; }
    .solution-panel[data-panel="sol-5"] .cta-button { background-color: #4cba76; }
    .solution-panel[data-panel="sol-6"] .cta-button { background-color: #4cba76; }

    /* ── Brand strip ── */
    .brand-strip {
      background: #001c58;
      padding: 20px 40px;
      text-align: center;
      border-radius: 0 0 25px 25px;
    }
    .brand-tagline {
      color: white;
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
	  font-family: "Poppins", sans-serif;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .content-wrapper { grid-template-columns: 1fr; }
      .pain-points,
      .solution-panel-wrap { padding: 30px 20px; }
      .pain-point:hover { transform: translateX(8px); }
      .solution-title { font-size: 1.5rem; }
      .video-placeholder { max-width: 100%; }
      .pain-points { border-radius: 25px 25px 0 0; }
      .solution-panel-wrap { border-radius: 0; }
    }
/* ══════════════════════════════════════════
   MOBILE ACCORDION – show/hide logic
   ══════════════════════════════════════════ */

/* Hide accordion on desktop */
.sol-accordion { display: none; }

@media (max-width: 1024px) {
  /* Hide the desktop radio version */
  .sol-radio,
  .content-wrapper { display: none !important; }

  /* Show the accordion */
  .sol-accordion { display: block; }
}

/* ══════════════════════════════════════════
   ACCORDION STYLES
   ══════════════════════════════════════════ */
.sol-accordion {
  font-family: 'Raleway', sans-serif;
}

.sol-acc-heading {
  font-size: 1.6rem;
  font-weight: 500;
  color: #c80c47;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 20px;
  padding: 0 4px;
}

/* ── Trigger button (the label row) ── */
.sol-acc-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,28,88,0.08);
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

.sol-acc-trigger.active {
  border-left-color: #4cb1f9;
  background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
}

/* ── Radio circle icon ── */
.sol-acc-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid #000;
  margin-right: 16px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.sol-acc-trigger.active .sol-acc-icon {
  border-color: #4cba76;
  background: #4cba76;
}

.sol-acc-trigger.active .sol-acc-icon::after {
  content: "\2713";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

/* ── Label text ── */
.sol-acc-label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  flex: 1;
}

/* ── Chevron arrow ── */
.sol-acc-arrow {
  width: 20px;
  height: 20px;
  margin-left: 12px;
  flex-shrink: 0;
  position: relative;
}
.sol-acc-arrow::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translate(-50%, -70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.sol-acc-trigger.active .sol-acc-arrow::before {
  transform: translate(-50%, -30%) rotate(-135deg);
  border-color: #4cb1f9;
}

/* ══ Panel (the content that expands below the trigger) ══ */
.sol-acc-panel {
  display: none;
  background: linear-gradient(135deg, rgb(0,28,88) 0%, rgb(76,177,249) 100%);
  color: #fff;
  padding: 24px 20px 28px;
  border-radius: 0 0 12px 12px;
  margin-bottom: 12px;
  animation: solAccFadeIn 0.3s ease;
}

.sol-acc-panel.open {
  display: block;
}

@keyframes solAccFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Panel inner elements ── */
.sol-acc-title {
  font-size: 1.3rem !important;
  font-weight: 100 !important;
  color: #fff !important;
  margin: 0 0 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  line-height: 1.3 !important;
}

.sol-acc-media {
  width: 100%;
  height: 220px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.sol-acc-media iframe,
.sol-acc-media img {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.sol-acc-text {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 20px;
}

.sol-acc-cta {
  font-family: 'Raleway', sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  border-radius: 50px !important;
  color: #fff !important;
  border: solid 1px #fff !important;
  padding: 10px 28px !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block !important;
  background-color: #4cba76 !important;
  transition: background-color 0.3s ease;
  text-align: center;
}
.sol-acc-cta:hover {
  background-color: transparent;
  color: #fff;
}

/* ── Small phone tweaks ── */
@media (max-width: 480px) {
  .sol-acc-heading { font-size: 1.3rem !important; }
  .sol-acc-trigger { padding: 12px 12px; }
  .sol-acc-icon { width: 20px; height: 20px; margin-right: 12px; }
  .sol-acc-label { font-size: 13px; }
  .sol-acc-media { height: 180px; }
  .sol-acc-title { font-size: 1.1rem !important;; }
  .sol-acc-text { font-size: 14px; }
}
/* ══════════════════════════════════════════
   END MOBILE ACCORDION – show/hide logic
   ══════════════════════════════════════════ */

/* Memberships and Affiliations */

    .brand-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 3%;
      flex-wrap: wrap;
      padding: 5px;
    }

    .brand-item {
      background: white;
      border-radius: 15px;
      border: solid 1px #e2e2e2;
      /* height: 100px;
      width: 130px; */
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .brand-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .brand-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      text-decoration: none;
    }

    .brand-img {
      max-width: 80px;
      max-height: 100px;
      object-fit: contain;
    }

    @media (max-width: 1024px) {
      .brand-item {
        /* width: 150px;
        height: 120px; */
      }
	 .brand-strip { display: none; }	
		
	.groupd_linx	{
			display: flex !important;
    		max-width: 45% !important;
		margin-bottom: 9%;
		}
		
		#wrapper #main .fullwidth-box .fusion-row .groupd-linx-row {
			display: flex;
    		flex-wrap: wrap;
			column-gap: 3%;
			justify-content: center;
		}
    }

    @media (max-width: 768px) {
      .brand-row {
        gap: 1rem;
      }
      
      /* .brand-item .fusion-body .fusion-layout-column:not(.fusion-flex-column) {
        width: 45% !important;
        height: 100px;
      } */
      .brand-img {
        max-width: 110px;
      }
    }

    @media (max-width: 500px) {
      .brand-row {
        flex-wrap: wrap;
      }
      .brand-item {
        width: 45% !important;
        height: 90px;
      }
    }
/* ══════════════════════════════════════════
   LOGO CAROUSEL – FIXED RESPONSIVE
   ══════════════════════════════════════════ */
.logo-carousel-container {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  min-height: 100px;
  height: auto;
}

.logo-carousel-container .carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 1000px;
}

.logo-carousel-container .carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}

.logo-carousel-container .carousel-track:active {
  cursor: grabbing;
}

/* Default: 4 slides */
.logo-carousel-container .carousel-slide {
  flex: 0 0 calc(25% - 20px);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  margin: 20px 10px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: solid 1px #e2e2e2;
  box-sizing: border-box;
}

.logo-carousel-container .carousel-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo-carousel-container .logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.logo-carousel-container .logo-link:hover {
  transform: scale(1.05);
}

.logo-carousel-container .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-carousel-container .logo img {
  max-width: 130px;
  max-height: 80px;
  object-fit: contain;
}

.logo-carousel-container .carousel-arrow {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-carousel-container .carousel-arrow:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 3 slides: 769px – 1024px */
@media (max-width: 1024px) {
  .logo-carousel-container .carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
  }
}

/* 2 slides: 601px – 768px */
@media (max-width: 768px) {
  .logo-carousel-container .carousel-slide {
    flex: 0 0 calc(50% - 20px);
    margin: 15px 10px;
  }
  .logo-carousel-container .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* 1 slide: 600px and below */
@media (max-width: 600px) {
  .logo-carousel-container .carousel-slide {
    flex: 0 0 calc(100% - 20px);
    margin: 15px 10px;
    overflow: hidden;
  }
  .logo-carousel-container .logo img {
    max-width: 170px;
    max-height: 100px;
  }
}
/* 5 Yellow Stars */

    .stars-container {
      display: flex;
      gap: 27px;
      align-items: center;
      justify-content: center;
      margin-bottom: 1%
    }

    .star {
      width: 40px;
      height: 40px;
    }
/* Phone Type Slider */
.slider-container {
			transition: transform 0.5s ease-in-out;

		}

		.slide-card {
			background: white;
			border-radius: 25px;
			overflow: hidden;
			transition: box-shadow 0.3s ease;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		}

		.slide-image {
			background: #ffffff;
			overflow: hidden;
		}

		.slide-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.3s ease;
			margin: auto;
			height: 142px;
		}

		.slide-card:hover .slide-image img {
			transform: scale(1.05);
		}

		.nav-button {
			padding: 8px;
			border-radius: 50%;
			border: 1px solid #d1d5db;
			background: white;
			transition: background-color 0.2s ease;
			cursor: pointer;
		}

		.nav-button:hover {
			background: #f9fafb;
		}

		.dot {
			width: 8px;
			height: 8px;
			border-radius: 50%;
			transition: background-color 0.2s ease;
			cursor: pointer;
			border: none;
		}

		.dot.active {
			background: #2563eb;
		}

		.dot.inactive {
			background: #d1d5db;
		}

		.dot.inactive:hover {
			background: #9ca3af;
		}

		.slide {
			flex-shrink: 0;
			padding: 0 12px;
			box-sizing: border-box;
			width: 25%;
			/* 4 slides on large screens */
		}

		.phone-types-btn {
			background: linear-gradient(297deg, rgba(76, 177, 249, 1) 0%, rgba(76, 186, 118, 1) 100%);
			color: #ffffff;
			padding: 12px 20px;
			border: none;
			border-radius: 40px;
			font-size: 0.95rem;
			font-weight: 600;
			font-family: "Poppins", sans-serif;
			width: 100%;
			text-align: center;
		}

		.phone-types-btn:hover {
			background: linear-gradient(135deg, #45be76 0%, #1d5f3a 100%);
		}

		.pt-head {
			font-size: 21px !important;
			margin-bottom: 4%;
			color: #4cb1f9 !important;
			font-weight: 300 !important;
			text-transform: uppercase !important;
		}

		.btn-spacing {
			padding: 8px 0px;
			font-size: 20px;
		}

		@media (max-width: 1279px) {
			.slide {
				width: 33.333333%;
				/* 3 slides on medium screens */
			}
		}

		@media (max-width: 1023px) {
			.slide {
				width: 50%;
				/* 2 slides on tablets */
			}
		}

		@media (max-width: 767px) {
			.slide {
				width: 100%;
				/* 1 slide on mobile */
			}
		}

/* Embeded Form */
.centered-form {
max-width: 1041px;
}

  /* ── OUTER WRAPPER – anchor for the floating image ── */
  .hero-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1020px;
  }

  /* ── GRADIENT BORDER SHELL ── */
  .form-card-shell {
    position: relative;
    z-index: 2;
    /* gradient background acts as the border */
    background: linear-gradient(135deg, #4CB1F9 0%, #4CBA76 100%);
    border-radius: 18px; /* slightly larger than inner radius to show border */
    padding: 3px;        /* border thickness */
    width: 560px;
    flex-shrink: 0;
  }

  /* ── FORM CARD (sits inside the shell) ── */
  .form-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px 24px;
    width: 100%;
    box-sizing: border-box;
  }

  /* ── IMAGE PEEKS BEHIND THE FORM'S RIGHT EDGE ── */
  .image-frame {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 96%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
  }

  .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* ── SECTION HEADER ── */
  .form-header {
    text-align: center;
    margin-bottom: 16px;
  }
  .form-header h2 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a2e1a;
    line-height: 1.35;
    margin-bottom: 6px;
  }
  .form-header p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
  }

  /* ── FIELDS ── */
  .row-flex {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
  }
  .row-flex > div, .field-full { flex: 1; }
  .field-full { margin-bottom: 8px; }

  input[type="text"],
  input[type="email"],
  select,
  textarea {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #c8c8c8;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px !important;
    color: #333 !important;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
  }
  input::placeholder { color: #a2a9b9; font-size: 12.5px; }
  select { color: #333 !important; }
  select:valid { color: #333 !important; ; }
  input:focus, select:focus, textarea:focus {
    border-color: #4CBA76;
    outline: none;
  }

  /* ── CAPTCHA ── */
  .captcha-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 2px;
  }
  .captcha-hint {
    font-size: 11px;
    color: #888;
    font-style: italic;
    display: block;
    margin-bottom: 5px;
  }

  /* ── SUBMIT BUTTON ── */
  .submit-btn {
    display: block;
    width: 100%;
    padding: 11px 0;
    margin-top: 12px;
    background: linear-gradient(90deg, #4CBA76 0%, #2d7047 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: opacity .2s, transform .1s;
  }
  .submit-btn:hover { opacity: .9; }
  .submit-btn:active { transform: scale(0.98); }

  /* ── DISCLAIMER ── */
  .disclaimer {
    font-size: 10.5px;
    color: #999;
    text-align: center;
    margin-top: 12px !important;
    line-height: 1.5;
  }
  .disclaimer a { color: #999; text-decoration: underline; }

  /* ── RESPONSIVE ── */

  /* Tablet: shrink form, shrink image peek */
  @media (max-width: 960px) {
    .hero-wrapper {
      max-width: 100%;
      padding: 0 16px;
    }
    .form-card-shell {
      width: calc(100% - 180px);
    }
    .form-card {
      padding: 22px 22px 20px;
    }
    .image-frame {
      width: 280px;
      min-height: 340px;
    }
  }

  /* Small tablet / large phone: collapse to stacked layout */
  @media (max-width: 620px) {

    .hero-wrapper {
      flex-direction: column;
      align-items: stretch;
      padding: 0;
    }

    /* Shell goes full width */
    .form-card-shell {
      width: 100%;
      border-radius: 14px;
    }

    .form-card {
      padding: 20px 16px 18px;
      border-radius: 12px;
    }

    /* Image sits below the form, full width, fixed height banner */
    .image-frame {
      position: relative;        /* back to normal flow */
      top: auto;
      right: auto;
      transform: none;
      width: 100%;
      height: 200px;
      min-height: unset;
      border-radius: 12px;
      margin-top: 12px;
      z-index: 1;
    }

    .image-frame img {
      object-position: center 30%; /* show faces, not feet */
    }

    .row-flex {
      flex-direction: column;
      gap: 8px;
    }

    .form-header h2 { font-size: 13px; }
    .form-header p  { font-size: 11.5px; }
  }

  /* Very small phones */
  @media (max-width: 380px) {
    .form-card { padding: 16px 12px; }
    input[type="text"],
    input[type="email"],
    select { height: 38px; font-size: 13px; }
    .submit-btn { font-size: 12px; padding: 12px 0; }
  }
/* General CSS Mobile Fixes */
@media (max-width: 1024px) {
    .button-size {
        font-size: 20px !important;
    }
	
.fusion-builder-row-1 .fusion-align-block {
    padding-left: 15px !important;
    padding-right: 15px !important;
	display: block;  
  }
}
/* ══════════════════════════════════════════
   HOMEPAGE FORM CARD – v3 final
   Styles the original Act-On form markup
   ══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   FORM + IMAGE SECTION – desktop only
   ══════════════════════════════════════════ */

/* ── Card container ── */
.hp-form-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 28px 24px 5px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: none;
}

/* ── Row: gradient border via background-clip ── */
.form-hero-row .fusion-row {
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #4CB1F9, #4CBA76) border-box;
  border-radius: 25px;
  overflow: hidden;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex !important;
  align-items: stretch !important;
}

/* ── Form column ── */
.form-hero-row .hp-form-card {
  max-width: none;
  margin: 0;
}

.form-hero-row .fusion-layout-column:first-child .fusion-column-wrapper {
  background: #fff;
}

/* ── Image column ── */
.form-hero-row .fusion-layout-column:last-child > .fusion-column-wrapper {
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.form-hero-row .fusion-layout-column:last-child,
.form-hero-row .fusion-layout-column:last-child > .fusion-column-wrapper {
  align-self: stretch !important;
  height: auto !important;
}

.form-hero-row .fusion-image-element {
  height: 100% !important;
  flex: 1 !important;
}

.form-hero-row span.fusion-imageframe {
  height: 100% !important;
  display: block !important;
}

.form-hero-row .fusion-imageframe img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── Font Override ── */
.hp-form-card,
.hp-form-card * {
  font-family: "Poppins", sans-serif !important;
}

/* ── Header ── */
.hp-form-header {
  text-align: center;
  margin-bottom: 14px;
}

.hp-form-header h2 {
  font-family: "Poppins", sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0 0 6px;
}

.hp-form-header p {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* ── Hide Act-On default form title ── */
.hp-form-card .title-form,
.hp-form-card .formSectionDescription {
  display: none !important;
}

/* ── Act-On container reset ── */
.hp-form-card .aoFormContainer,
.hp-form-card #ao_alignment_container {
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Nuclear alignment reset inside the form ── */
.hp-form-card form td,
.hp-form-card form div[align="left"],
.hp-form-card form .formField,
.hp-form-card form .ao_tbl_cell {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Vertical spacing on cells */
.hp-form-card form .ao_tbl_cell,
.hp-form-card form td {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.hp-form-card .formField {
  margin-bottom: 4px !important;
}

/* ── All tables fill full width ── */
.hp-form-card form table {
  width: 100% !important;
}

/* ── Spacer row between names and email – controlled height ── */
.hp-form-card tr[style*="margin-bottom"][style*="display: block"] {
  height: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── Collapse rows that only contain a hidden input ── */
.hp-form-card tr:has(> td > div > input[type="hidden"]:only-child) {
  display: none !important;
}

/* ── All text inputs, selects, textarea ── */
.hp-form-card .formFieldText,
.hp-form-card input.formFieldText,
.hp-form-card select.formFieldText,
.hp-form-card textarea.formFieldText,
.hp-form-card .formFieldMediumLeft,
.hp-form-card .formFieldMediumRight,
.hp-form-card .formFieldLarge,
.hp-form-card .formFieldSmall,
.hp-form-card .formFieldMedium {
  width: 100% !important;
  max-width: none !important;
  padding: 8px 14px !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  color: #333 !important;
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  outline: none !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s ease;
}

.hp-form-card .formFieldText:focus,
.hp-form-card input.formFieldText:focus,
.hp-form-card select.formFieldText:focus,
.hp-form-card textarea.formFieldText:focus {
  border-color: #3db89a !important;
}

.hp-form-card input::placeholder,
.hp-form-card textarea::placeholder {
  color: #999 !important;
  font-family: "Poppins", sans-serif !important; /* ── CV added 6/4/26 ── */
}

/* ── Select dropdown arrow ── */
.hp-form-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 32px !important;
  cursor: pointer;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

/* ── Side-by-side name fields gap ── */
.hp-form-card .sideBySideCell {
  padding-right: 6px !important;
}
.hp-form-card .sideBySideCell + .sideBySideCell {
  padding-left: 6px !important;
  padding-right: 0 !important;
}

/* ── Property Type / Referrer selects – alignment + gap to adjacent field ── */
.hp-form-card select.formFieldSmall,
.hp-form-card select.formFieldMedium {
  margin-left: 0 !important;
  margin-right: 10px !important;
}

/* ── Textarea ── */
.hp-form-card textarea {
  height: 40px !important;
  min-height: 40px !important;
  max-height: 150px !important;
  resize: vertical !important;
}

/* ── CAPTCHA ── */
.hp-form-card #captchaLabel,
.hp-form-card .formFieldLabel label {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ── Submit button ── */
.hp-form-card #form_0037_ao_submit_href {
  display: block !important;
  width: 100% !important;
  padding: 14px 0 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important; /* ── CV Updated 6/4/26 from 700 ── */
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  text-decoration: none !important;
  color: #fff !important;
  /* background: linear-gradient(135deg, #3db89a 0%, #2d8f78 100%) !important; */
  background: linear-gradient(135deg, #45be76 0%, #1d5f3a 100%) !important;
  border: none !important;
  border-radius: 30px !important; /* ── CV Updated 6/4/26 from 8 px ── */
  cursor: pointer !important;
  transition: opacity 0.2s ease;
  box-sizing: border-box !important;
}

.hp-form-card #form_0037_ao_submit_href:hover {
  /* opacity: 0.9; */
background: linear-gradient(16deg, rgba(76, 177, 249, 1) 21%, rgba(33, 92, 157, 1) 89%, rgba(14, 56, 118, 1) 98%, rgba(0, 28, 88, 1) 100%) !important; /* ── CV Updated 6/4/26 ── */
}
#form_0037 .ao_tbl_container > tbody select {
    color: #333 !important; 
    font-family: "Poppins", sans-serif !important;
}

/* ── Disclaimer ── */
.hp-disclaimer {
  font-family: "Poppins", sans-serif !important;
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.4;
}

.hp-disclaimer a {
  color: #3db89a;
  text-decoration: underline;
}

/* ── Hide validation label rows ── */
.hp-form-card .formFieldLabel[style*="display: none"] {
  display: none !important;
}

/* ── Act-On validation error styling ── */
.hp-form-card .formFieldError,
.hp-form-card .formErrorField {
  border-color: #e74c3c !important;
}
.hp-form-card #form_0037 .ao_tbl_container > tbody > tr td {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.hp-form-card #form_0037 .sideBySideCell:first-child {
  padding-right: 8px !important;
}
/* Property Type cell – gap on right */
.hp-form-card td:has(#form_0037_fld_4) {
  padding-right: 6px !important;
}

/* Zip Code cell – gap on left */
.hp-form-card td:has(#form_0037_fld_5) {
  padding-left: 6px !important;
}

/* Referrer cell – gap on right */
.hp-form-card td:has(#form_0037_fld_7) {
  padding-right: 6px !important;
}

/* Other cell – gap on left */
.hp-form-card td:has(#form_0037_fld_8) {
  padding-left: 6px !important;
}
/* ── Form + Image hero row ── */
.form-hero-row .fusion-builder-row {
  display: flex !important;
  align-items: stretch !important;
}

/* Kill the gap between columns */
.form-hero-row .fusion-layout-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Make the image fill the full column height */
.form-hero-row .fusion-imageframe,
.form-hero-row .fusion-imageframe img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Round only the right side of the image to match the form card */
.form-hero-row .fusion-imageframe img {
  border-radius: 0 16px 16px 0;
}

/* Remove the form card's right border-radius so it butts flush against image */
.form-hero-row .hp-form-card {
  max-width: none;
  margin: 0;
  border-radius: 16px 0 0 16px;
  border-right: none;
}
.form-hero-row .fusion-layout-column:last-child .fusion-column-wrapper {
  height: 100% !important;
}

.form-hero-row .fusion-image-element {
  height: 100% !important;
  flex: 1 !important;
}

.form-hero-row span.fusion-imageframe {
  height: 100% !important;
  display: block !important;
}

.form-hero-row .fusion-imageframe img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
/* ── Image border treatment – matches form card ── */
.form-hero-row .fusion-image-element {
  border-left: none;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}
/* ── Mobile – image hidden, border wraps form only ── */
@media (max-width: 1024px) {
  .form-hero-row .fusion-row {
    border-radius: 25px;
  }
  .form-hero-row .hp-form-card {
    border-radius: 22px;
  }

  .hp-form-header h2 {
    font-size: 20px !important;
    line-height: 23px !important;
  }
}
/* ── Mobile ── */
@media (max-width: 600px) {
  .hp-form-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  /* .hp-form-header h2 { font-size: 1rem; } */
  .hp-form-header p { font-size: 13px; }
  .hp-form-header p br,
  .hp-form-header h2 br { display: none; }

  .hp-form-card .sideBySideCell {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin-bottom: 6px;
  }

  .hp-form-card form table[cellspacing] { width: 100% !important; }
  .hp-form-card td[colspan] {
    display: block !important;
    width: 100% !important;
  }
}
/* Company + Phone side by side */
.hp-form-card tr:has(#form_0037_fld_2),
.hp-form-card tr:has(#form_0037_fld_3) {
  display: block !important;
  float: left !important;
  width: calc(50% - 3px) !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

.hp-form-card tr:has(#form_0037_fld_3) {
  padding-left: 6px !important;
  margin-left: 6px !important;	
}

/* Clear float after the pair */
.hp-form-card tr:has(#form_0037_fld_4) {
  clear: both !important;
}
/* ══════════════════════════════════════════
   HERO SECTION – responsive fixes
   ══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .banner-mobile {
    margin-top: 230px !important;
  }
}
@media (max-width: 1024px) {
	
	/* 	YOURE IN GOOD COMPANY BORDER REMOVAL */
	.borderless {
		border: none !important;
	}
	
  /* Hide products column at ALL mobile/tablet widths */
  .products-mobile {
    display: none !important;
  }
  /* Slash section padding */
  .fusion-builder-row-1 {
    --awb-padding-top: 0 !important;
    --awb-padding-bottom: 1% !important;
  }
  /* Text column: full width, minimal padding */
  .banner-left-pad {
    --awb-padding-top: 2vh !important;
    --awb-padding-bottom: 2% !important;
    width: 100% !important;
  }
  /* Reduce Challenges section overlap */
 .fusion-fullwidth.after-white, .fusion-fullwidth.logoSlider  {
    --awb-margin-top: 0px !important;
    margin-top: 0 !important;
  }
	.fusion-fullwidth.home_stats_block{
    --awb-margin-top: 0px !important;
    margin-top: 0 !important;
  }	
  /* Fix subheading font-size */
  .banner-left-pad h3[style*="1.7vw"] {
    font-size: 24px !important;
  }
	/* fix cards for mobile */
	.border-card {
    	max-width: 420px !important;
    	height: 500px !important;
	}	
	/* fix form div for mobile */
	.fusion-fullwidth.form-hero-row {
		padding: 0 40px !important;
		margin-bottom: 60px;
	}
	/* fix h3 alignment for our members */
	.our_ma {width: 100% !important;}
	.our_ma h3  {text-align: center !important;}
	.our_ma_logos {width: 100% !important;}
	
	/* in great company text fix mobile */
		.gc_text {line-height: 1.4; 
		letter-spacing: 2px; 
		text-align: center; 
		font-family: 'Poppins', sans-serif; 
		font-weight: 400; 
		font-size: 24px; 
		text-transform: uppercase;
		margin-bottom: 0 !important;
		background: linear-gradient(90deg, #4CB1F9, #45BE76); 
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent; 
		background-clip: text; 
		color: transparent;
	}
	
}

@media (max-width: 768px) {
  .fusion-fullwidth.after-white {
    --awb-margin-top: 0px !important;
  }
	/* fix cards for mobile */
    .border-card {
        max-width: 700px !important;
        height: auto !important;
        margin: 20px 1px !important;
    }
	/* fix form div for mobile */
	.fusion-fullwidth.form-hero-row {
		padding: 0 10px !important;
		margin-bottom: 40px;
	}
		/* fix h3 alignment for our members */
	.our_ma h3 {text-align: center !important;}
	
		/* in great company text fix mobile */
		.gc_text {line-height: 1.4; 
		letter-spacing: 2px; 
		text-align: center; 
		font-family: 'Poppins', sans-serif; 
		font-weight: 400; 
		font-size: 36px; 
		text-transform: uppercase;
		margin-bottom: 0 !important;
		background: linear-gradient(90deg, #4CB1F9, #45BE76); 
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent; 
		background-clip: text; 
		color: transparent;
	}
	

}

@media (max-width: 480px) {
  .banner-left-pad {
    --awb-padding-top: 1vh !important;
  }
  .banner-left-pad h3[style*="1.7vw"] {
    font-size: 14px !important;
  }
	/* fix cards for mobile */
	.border-card {
		height: auto !important;
		margin: 10px auto !important;
	}	
	/* in great company text fix mobile */
		.gc_text {line-height: 1.4; 
		letter-spacing: 2px; 
		text-align: center; 
		font-family: 'Poppins', sans-serif; 
		font-weight: 400; 
		font-size: 36px; 
		text-transform: uppercase;
		margin-bottom: 0 !important;
		background: linear-gradient(90deg, #4CB1F9, #45BE76); 
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent; 
		background-clip: text; color: transparent;
	}
}
@media (min-width: 1280px){
	.border-card {
    min-height: 495px;
	}
}

/* ── YouTube facade ── */
.yt-facade {
  position: relative;
  cursor: pointer;
}

.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 68px;
  height: 48px;
}

.yt-play-btn svg {
  width: 100%;
  height: 100%;
}

.yt-facade.playing iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.sol-acc-media.yt-facade {
  aspect-ratio: 16/9;
  height: auto !important;
}
@media screen and (max-width: 1366px) {
  .looking-for-card {
    flex: 1 1 calc(50% - 10px) !important;
    margin: 10px 5px !important;
  }
}

@media screen and (max-width: 700px) {
  .looking-for-card {
    flex: 1 1 100% !important;
    margin: 10px 5px 0 !important;
  }
}