.elementor-655 .elementor-element.elementor-element-64a6293{--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;}.elementor-655 .elementor-element.elementor-element-ddd98f9{--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;}.elementor-655 .elementor-element.elementor-element-df2d8d8{--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;}/* Start custom CSS for html, class: .elementor-element-51b17af */.data-hero {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8fffb, #f3fbff);
}

.data-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT SIDE */
.data-hero-left {
  flex: 1 1 50%;
  animation: slideInLeft 0.8s ease forwards;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0599AD;
  display: inline-block;
  margin-bottom: 12px;
}

.gradient-text {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(-45deg, #6FD062, #0599AD, #6FD062);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease infinite;
}

.data-hero-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
}

/* Pills */
.data-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.data-pills span {
  background-color: #e0f7eb;
  color: #055a66;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(111, 208, 98, 0.7);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.data-pills span:hover {
  background-color: #d2f0f9;
  transform: translateY(-2px);
}

/* CTA Button */
.data-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #6FD062;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.data-cta-btn:hover {
  background-color: #0599AD;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* RIGHT SIDE IMAGE */
.data-hero-right {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  animation: slideInRight 0.8s ease forwards;
}

.data-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4ace50d *//* ===========================
   DISCOVERY CALL BANNER
   =========================== */

.discovery-call-banner {
  padding: 60px 20px 70px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 40%, #f4fff8 100%);
  font-family: "Inter Tight", sans-serif;
}

.discovery-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Animated gradient heading text */
.discovery-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw + 1.4rem, 3rem);
  line-height: 1.25;
  margin: 0 0 26px;
  background: linear-gradient(
    90deg,
    #004a5a,
    #0599AD,
    #6FD062
  );
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: discoveryGradientMove 6s ease-in-out infinite;
}

/* CTA – FORCE theme gradient on this button */
.discovery-call-banner .ops-btn.discovery-btn {
  padding: 14px 38px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  /* 🔹 theme gradient forced */
  background: linear-gradient(135deg, #6FD062, #0599AD) !important;
  color: #ffffff !important;
  border: none !important;

  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(5, 153, 173, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: ops-cta-radiate 2.8s ease-in-out infinite;
}

/* Hover state */
.discovery-call-banner .ops-btn.discovery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(5, 153, 173, 0.35);
  filter: brightness(1.03);
}

/* Animated gradient movement for heading */
@keyframes discoveryGradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Radiating CTA animation */
@keyframes ops-cta-radiate {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 153, 173, 0.45);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(5, 153, 173, 0);
    transform: translateY(-1px) scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 153, 173, 0);
    transform: translateY(0) scale(1);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .discovery-call-banner {
    padding: 40px 16px 50px;
  }

  .discovery-heading {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .discovery-call-banner .ops-btn.discovery-btn {
    padding: 13px 32px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-90c9eb6 */.data-why-us {
  padding: 80px 20px;
  background-color: #ffffff;
}

.data-why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT: IMAGE */
.data-why-left {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  animation: slideInLeft 0.8s ease forwards;
}

.data-why-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.data-why-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(111, 208, 98, 0.25), transparent 55%),
              radial-gradient(circle at bottom right, rgba(5, 153, 173, 0.25), transparent 55%);
  pointer-events: none;
}

.data-why-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.data-why-image-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.data-why-image-wrap:hover img {
  transform: scale(1.04);
}

/* RIGHT: TEXT */
.data-why-right {
  flex: 1 1 50%;
  animation: slideInRight 0.8s ease forwards;
}

.data-why-right h2 {
  font-size: 2.1rem;
  color: #0599AD;
  margin-bottom: 24px;
  position: relative;
}

.data-why-right h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 110px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #6FD062, #0599AD);
}

/* LIST */
.data-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
}

.data-why-list li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background-color: #f4fbf7;
  border-radius: 8px;
  border-left: 4px solid #6FD062;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  transition: background-color 0.3s ease,
              transform 0.3s ease,
              box-shadow 0.3s ease,
              border-left-color 0.3s ease;
}

.data-why-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #6FD062 0%, #0599AD 100%);
}

/* Hover effect */
.data-why-list li:hover {
  background-color: #e4f6ff;
  border-left-color: #0599AD;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Tagline */
.data-why-tagline {
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #055a66;
}

/* Reuse animations already defined elsewhere,
   but include here in case */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .data-why-container {
    flex-direction: column;
  }

  .data-why-left,
  .data-why-right {
    flex: 1 1 100%;
  }

  .data-why-right {
    order: 1;
    text-align: center;
  }

  .data-why-right h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .data-why-left {
    order: 2;
    margin-top: 24px;
  }
}/* End custom CSS */