

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #17becf;
  --secondary-color: #00f4bb;
  --white-color: #ffffff;
  --black-color: #000000;
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  line-height: 22px;
  margin-bottom: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Montserrat", sans-serif;
}

.mob {
  display: none;
}
.desktp {
  display: block;
}
.breadcrumb-content {
  position: relative;
  z-index: 99;
}

.breadcrumb-area .breadcrumb-content .title {
  background: linear-gradient(90deg, #6351a2 4%, #4bc7ea 64.19%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Century Gothic", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
}

.breadcrumb-area .breadcrumb-content p {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}


/*=============  Common Title Css =============*/
.sec-title-info h2 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  margin: 0;
}

.sec-title-info .sub-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
}

/*============= // Common Title Css End =============*/

/*---------------LOADER CSS START HERE-------------*/
#loading img {
  width: 50px;
}
#loading {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 1;
  background-color: #fff;
  z-index: 9999999;
}

.parent {
  height: 100%;
  width: 100%;
  position: relative;
}

.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*---------------LOADER CSS END HERE-------------*/

/* ============================================
                HERO SEC CSS START
================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
 /* background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp); */
  background-size: cover;
}

.left-particles {
  position: absolute;
  left: -240px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.left-particles img {
  width: 550px;
}

.right-particles {
  position: absolute;
  right: -240px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.right-particles img {
  width: 550px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
}

.hero-badge {
  display: inline-block;
  padding: 5px 22px;
  border: 1px solid var(--white-color);
  border-radius: 30px;
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 35px;
}

.hero-btns {
  display: flex;
  justify-content: start;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #152739;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
  z-index: 1;
}

/* Fill Layer */
.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #000;
  transition: width 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

/* Hover */
.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary-custom:hover::before {
  width: 100%;
}

.btn-primary-custom i {
  transform: rotate(-45deg);
  margin-left: 5px;
}

.btn-outline-custom {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--white-color);
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
  z-index: 1;
}

/* Fill Layer */
.btn-outline-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 0%;
  height: 100%;

  background: #000;
  transition: width 0.45s cubic-bezier(0.77, 0, 0.175, 1);

  z-index: -1;
}

 .btn-primary-custom:focus,
.btn-outline-custom:focus
{
color:var(--white-color);
}


/* Hover */
.btn-outline-custom:hover {
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.btn-outline-custom:hover::before {
  width: 100%;
}

.btn-outline-custom i {
  transform: rotate(-45deg);
  margin-left: 5px;
}

/*==============================================
                HERO SEC CSS END
================================================ */

/* ============================================
          CONTROL TESTING SEC CSS START
================================================ */
.control-testing-sec
 {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
  background-position: center center;
}

.home-version
.control-testing-sec
{
    padding-top: 70px;
    padding-bottom: 35px;
    background:#155F70;
}

.home-version
.lsec
{
background:#155F70;
}

.home-version
.mob-layer-sec
{
background:#155F70;
}

.home-version
.workflow-sec
{
background:#155F70;
padding-top: 10px;
}

.home-version
.built-for-challenge-sec
{
    background:#155F70;
    padding-top: 70px;
    padding-bottom:35px;
}

.home-version
.continuous-infographic-sec
{
background:#155F70;
 padding-top: 35px;
    padding-bottom:0px;
}

.home-version
.risk-leaders-sec
{
background:#155F70;
padding-top: 70px;
    padding-bottom:35px;
}

.home-version 
.built-inside-circle-sec
{
background:#155F70;
padding-top: 35px;
        padding-bottom: 120px;

}

.home-version 
.risk-leaders-ask-sec
{
    background: #155F70;
    padding-top: 60px;
    padding-bottom: 0;
}

.home-version 
.resources-sec

{ 
    background: #155F70;
    padding-top: 70px;
    padding-bottom: 70px;
}


.home-version
.card-inner {
    position: relative;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(69, 126, 131, 1);
    /* backdrop-filter: blur(4px); */
    background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
border: 1px solid #e5dadaa8;
}

.control-testing-sec .container {
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-heading p {
  color: #d8e9ec;
  max-width: 850px;
  margin: auto;
}

.control-accordion {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  height: 280px;
}

.control-card {
  flex: 1;
  transition: 0.55s ease;
  cursor: pointer;
  overflow: hidden;
  height: 280px;
}

.control-card.active {
  flex: 3.5;
}

.card-inner {
  position: relative;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(69, 126, 131, 1);
  /* backdrop-filter:blur(4px); */
}

.control-card.active .card-inner {
  background: radial-gradient(
    circle at bottom,
    rgba(0, 220, 255, 0.5),
    rgba(0, 40, 50, 0.95) 70%
  );
}

.vertical-title {
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
  width: 220px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  white-space: normal;
  transition: 0.4s;
}

.card-content {
  opacity: 0;
  visibility: hidden;
  padding: 30px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  transform: translateY(40px);
  transition:
    opacity 0.45s ease,
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.control-card.active .card-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.control-card.active .vertical-title {
  opacity: 0;
}

.icon img {
  width: 60px;
  margin-bottom: 10px;
}

.card-content h3 {
  color:var(--white-color);
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

.card-content p {
  color: #d5e8eb;
  max-width: 350px;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #11d8ff;
  color: #001b23;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  font-size: 22px;
}

.stats-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.stat-box {
  text-align: center;
  border-right: 1px solid rgba(0, 255, 255, 0.25);
  padding: 0 40px;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box h3 {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}

.stat-box p {
  color: var(--white-color);
}

.control-card.active .icon,
.control-card.active h3,
.control-card.active p,
.control-card.active .arrow-btn {
  animation: contentUp 0.6s ease forwards;
}

.control-card.active .icon {
  animation-delay: 0.1s;
}

.control-card.active h3 {
  animation-delay: 0.2s;
}

.control-card.active p {
  animation-delay: 0.3s;
}

.control-card.active .arrow-btn {
  animation-delay: 0.4s;
  display: none;
}

.vertical-arrow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  display: none;
}

.vertical-arrow i {
  transform: rotate(45deg);
}

.vertical-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
}

.control-card.active .vertical-arrow {
  opacity: 0;
  visibility: hidden;
}
.arrow-btn i {
  transform: rotate(45deg);
}

@keyframes contentUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 767px) {
  .control-testing-sec {
    background-attachment: scroll;
  }

  .section-heading h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .control-card,
  .control-card.active {
    min-height: 220px;
  }

  .card-content h3 {
    font-size: 28px;
  }

  .stat-box h3 {
    font-size: 36px;
  }
}

/* ============================================
          CONTROL TESTING SEC CSS END
================================================ */

/* ============================================
               ANA LAYERS SEC CSS START
================================================ */

.lsec {
  height: 300vh;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
    padding-bottom: 50px;
}

.lsec-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lsec-heading {
  text-align: center;
  margin-bottom: 32px;
}

.lsec-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.lsec-heading p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.lsec-wrap {
  width: 1112px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 520px 1fr;
  align-items: flex-start;
  margin-top: 50px;
}

.lsec-left,
.lsec-right {
  position: relative;
  height: 340px;
}

/* slides */
.lslide {
  position: absolute;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.lslide.active {
  opacity: 1;
  pointer-events: auto;
}

.lslide-1 {
  top: 77px;
}
.lslide-2 {
  top: 192px;
}
.lslide-3 {
  top: 305px;
}

.lsec-left .lslide {
  padding-right: 15px;
  transform: translateX(-12px) translateY(-50%);
}
.lsec-left .lslide.active {
  transform: translateX(0) translateY(-50%);
}
.lsec-left .lslide-line {
  width: calc(100% + 75px);
  margin-right: -75px;
}
.lslide-3 .lslide-line {
  width: calc(100% + 100px);
  margin-right: -100px;
}

.lsec-right .lslide {
  padding-left: 36px;
  transform: translateX(12px) translateY(-50%);
}
.lsec-right .lslide.active {
  transform: translateX(0) translateY(-50%);
}
.lsec-right .lslide-line {
  width: calc(100% + 75px);
  margin-left: -75px;
}

.lslide h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  margin-bottom: 15px;
}

.lsec-left .lslide h3 {
  text-align: left;
}
.lsec-right .lslide h3 {
  text-align: right;
}

.lslide-line {
  position: relative;
  width: 100%;
  height: 1.5px;
  background: var(--primary-color);
  margin-bottom: 16px;
}
.lslide-line::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--primary-color);
  transform: translateY(-50%) rotate(45deg);
}
.lsec-left .lslide-line::before {
  right: -1px;
}
.lsec-right .lslide-line::before {
  left: -1px;
}

.lslide p {
  font-size: 14px;
  line-height: 24px;
  color: var(--white-color);
}

.lsec-left .lslide p {
  text-align: left;
}
.lsec-right .lslide p {
  text-align: right;
}

/* stack */
.lsec-stack {
  position: relative;
  height: 340px;
}
.lsec-stack img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}
.lyr-top {
  top: 0;
  width: 287px;
  cursor: pointer;
  z-index: 6;
}
.lyr-mid1 {
  top: 49px;
  width: 308px;
  z-index: 5;
}
.lyr-center {
  top: 119px;
  width: 287px;
  cursor: pointer;
  z-index: 4;
}
.lyr-mid2 {
  top: 172px;
  width: 308px;
  z-index: 3;
}
.lyr-bottom {
  top: 225px;
  width: 252px;
  cursor: pointer;
}

/* click zones — sit above all images, cover each layer's hit area */
.lyr-zone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 287px;
  height: 70px;
  cursor: pointer;
  z-index: 10;
}
.lyr-zone-1 {
  top: 0px;
}
.lyr-zone-2 {
  top: 102px;
}
.lyr-zone-3 {
  top: 210px;
}

/* ---- Sandwich open/close animation ---- */

/* Centre layer peels first, mid layers next, outer layers last */
.lsec-stack .lyr-center {
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1) 0s,
              opacity  1.2s ease 0s;
}
.lsec-stack .lyr-mid1,
.lsec-stack .lyr-mid2 {
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s,
              opacity  1.2s ease 0.2s;
}
.lsec-stack .lyr-top,
.lsec-stack .lyr-bottom {
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1) 0.4s,
              opacity  1.2s ease 0.4s;
}

/* Closed state — all layers converge to the centre of the stack */
.lsec-stack.lsec-closed .lyr-top    { transform: translateX(-50%) translateY(110px);  opacity: 0.55; }
.lsec-stack.lsec-closed .lyr-mid1   { transform: translateX(-50%) translateY(62px);   opacity: 0.55; }
.lsec-stack.lsec-closed .lyr-center { transform: translateX(-50%) translateY(-7px);   }
.lsec-stack.lsec-closed .lyr-mid2   { transform: translateX(-50%) translateY(-60px);  opacity: 0.55; }
.lsec-stack.lsec-closed .lyr-bottom { transform: translateX(-50%) translateY(-112px); opacity: 0.55; }

/* Instant snap (used when resetting off-screen — no visible flicker) */
.lsec-stack.lsec-no-transition .lyr-top,
.lsec-stack.lsec-no-transition .lyr-mid1,
.lsec-stack.lsec-no-transition .lyr-center,
.lsec-stack.lsec-no-transition .lyr-mid2,
.lsec-stack.lsec-no-transition .lyr-bottom {
  transition: none !important;
}


/* ============================================
               ANA LAYERS SEC CSS END
================================================ */

/* ============================================
          WORKFLOW SEC CSS START
================================================ */

.workflow-sec {
  position: relative;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
  background-position: center center;
  padding-top: 40px;
  padding-bottom: 250px;
}

#wave-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
 /* background-image: url(images/sec-common-bg.webp);*/
  background-size: cover;
  position: absolute;
  bottom: 0;
}

/* .particle-area {
  padding-top: 50px;
}

#particleWave {
 /* background-image: url(images/sec-common-bg.webp); */
  background-size: cover;
  position: relative;
  inset: 0;
  width: 100%;
  height: 320px;
  z-index: 1;
  display: block;
  pointer-events: none; 
} */

.workflow-sec .container {
  position: relative;
  z-index: 2;
}

.wf-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 58%;
  z-index: 0;
  display: block;
}

/* Steps row */
.wf-steps {
  display: flex;
  /* align-items: flex-end; */
  gap: 12px;
  margin-top: 30px;
  position: relative;
  height: 120px;
}

/* .wf-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
} */

/* .wf-step:nth-child(1) {
  flex: 0.6;
}
.wf-step.wf-active {
  flex: 2;
} */

/* Terrain-profile heights */
.wf-step:nth-child(1) {
  width: 240px;
  /* padding-bottom: 55px; */
}

.wf-step:nth-child(1).wf-active .wf-card::after {
  content: "";
  position: absolute;
  top: 138px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, #17becf, transparent);
}

.wf-step:nth-child(1).wf-active::after {
  content: "";
  position: absolute;
  bottom: -175px;
  top: auto;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #17becf;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(23, 190, 207, 0.5);
  z-index: 2;
}

.wf-step:nth-child(1).wf-active .wf-active-card-info {
    display: block;
    min-height: 75px;
}

.wf-step:nth-child(2) {
  position: relative;
  top: 0;
  width: 280px;
  margin-top: 25px;
}

.wf-step:nth-child(2).wf-active .wf-card::after {
  content: "";
  position: absolute;
  top: 138px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, #17becf, transparent);
}

.wf-step:nth-child(2).wf-active::after {
  content: "";
  position: absolute;
  bottom: -200px;
  top: auto;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #17becf;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(23, 190, 207, 0.5);
  z-index: 2;
}

.wf-step:nth-child(2).wf-active .wf-active-card-info {
    display: block;
    min-height: 60px;
}


.wf-step:nth-child(3) {
  /* padding-bottom: 210px; */
  width: 375px;
}

.wf-step:nth-child(3).wf-active .wf-card::after {
  content: "";
  position: absolute;
  top: 138px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 165px;
  background: linear-gradient(to bottom, #17becf, transparent);
}

.wf-step:nth-child(3).wf-active::after {
  content: "";
  position: absolute;
  bottom: -220px;
  top: auto;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #17becf;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(23, 190, 207, 0.5);
  z-index: 2;
}

.wf-step:nth-child(4) {
  /* padding-bottom: 135px; */
  position: relative;
  top: 25px;
  width: 370px;
}

.wf-step:nth-child(4).wf-active .wf-card::after {
  content: "";
  position: absolute;
  top: 105px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 160px;
  background: linear-gradient(to bottom, #17becf, transparent);
}

.wf-step:nth-child(4).wf-active::after {
  content: "";
  position: absolute;
  bottom: -188px;
  top: auto;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #17becf;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(23, 190, 207, 0.5);
  z-index: 2;
}

.wf-step:nth-child(5) {
  /* padding-bottom: 165px; */
  position: relative;
  top: 55px;
  width: 278px;
}

.wf-step:nth-child(5).wf-active .wf-card::after {
  content: "";
  position: absolute;
  top: 122px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, #17becf, transparent);
}

.wf-step:nth-child(5).wf-active::after {
  content: "";
  position: absolute;
  bottom: -140px;
  top: auto;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #17becf;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(23, 190, 207, 0.5);
  z-index: 2;
}

.wf-step:nth-child(6) {
  /* padding-bottom: 225px; */
  width: 250px;
}

.wf-step:nth-child(6).wf-active .wf-card::after {
  content: "";
  position: absolute;
  top: 122px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 150px;
  background: linear-gradient(to bottom, #17becf, transparent);
}

.wf-step:nth-child(6).wf-active::after {
  content: "";
  position: absolute;
  bottom: -189px;
  top: auto;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #17becf;
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(23, 190, 207, 0.5);
  z-index: 2;
}

.wf-num {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white-color);
  margin-bottom: 5px;
  width: 100%;
}

.home-version
.wf-card {
    border: 2px solid var(--primary-color);
    padding: 10px;
    background: transparent;
    backdrop-filter: blur(8px);
    width: 100%;
    transition: border-color 0.3s;
    background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
}

.wf-step.wf-active {
  position: relative;
}

.wf-active-card-info {
  display: none;
}

.wf-active .wf-active-card-info {
  display: block;
}

.wf-step.wf-active::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;

  width: 28px;
  height: 28px;

  background: #17becf;

  transform: translateX(-50%) rotate(45deg);

  border: 2px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 0 20px rgba(23, 190, 207, 0.5);

  z-index: 2;
}

.home-version
.wf-step.wf-active .wf-card {
  border: 2px solid #17becf;
 background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
  padding: 10px;
  position: relative;
  transition: all 0.3s ease-in;
}


.wf-step.wf-active .wf-card::after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 55px;
  background: linear-gradient(to bottom, #17becf, transparent);
}

.wf-card h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 14px;
}

/* .wf-step.wf-active .wf-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
} */

.wf-card p {
  color: var(--white-color);
  font-size: 10px;
  line-height: 16px;
  margin-bottom: 0;
}

.wf-card em {
  color: var(--white-color);
  font-style: italic;
}

/* .wf-step.wf-active .wf-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
} */

.wf-divider {
  border: none;
  border-top: 2px solid #17becf;
  margin: 8px 0;
  opacity: 1;
}

/* .wf-detail {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  line-height: 22px !important;
  margin-top: 0 !important;
} */

@media (max-width: 767px) {
  .wf-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .wf-step {
    padding-bottom: 0 !important;
    margin-bottom: 12px;
  }
  .wf-canvas {
    display: none;
  }
}

/* ============================================
          WORKFLOW SEC CSS END
================================================ */

/* ============================================
          CHALLENGE  SEC CSS START
================================================ */
.built-for-challenge-sec {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  overflow: hidden;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
  background-position: center center;
}

.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.card {
  position: relative;
  min-height: 210px;
  flex: 1 1 calc(33.333% - 14px);
  background: url("images/card-bg.jpg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 29, 42, 0.65);
} */

.features-wrapper .card:nth-child(1) {
  background-image: url(/wp-content/uploads/2026/06/bento-img-bg-01.webp);
  background-size: 100% 100%;
}

.features-wrapper .card:nth-child(2) {
  background-image: url(/wp-content/uploads/2026/06/bento-img-bg-02.webp);
  background-size: 100% 100%;
}

.features-wrapper .card:nth-child(3) {
  background-image: url(/wp-content/uploads/2026/06/bento-img-bg-03.webp);
  background-size: 100% 100%;
}

.features-wrapper .card:nth-child(4) {
  background-image: url(/wp-content/uploads/2026/06//bento-img-bg-04.webp);
  background-size: 100% 100%;
}

.features-wrapper .card:nth-child(5) {
  background-image: url(/wp-content/uploads/2026/06/bento-shield-bg.webp);
  background-size: 100% 100%;
}

.features-wrapper .card:nth-child(6) {
  background-image: url(/wp-content/uploads/2026/06/bento-img-bg-05.webp);
  background-size: 100% 100%;
}



.content {
  position: relative;
  z-index: 2;
  padding: 22px;
  max-width: 260px;
}

.content h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
}

.line {
  display: block;
  width: 45px;
  height: 4px;
  background: #00f5d4;
  margin-bottom: 14px;
}

.content p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

/* Small Cards */
.small {
  flex: 1 1 calc(20% - 14px);
}

/* Wide Card */
.wide {
  flex: 1 1 calc(35% - 14px);
}

/* Tablet */
@media (max-width: 991px) {
  .card,
  .small,
  .wide {
    flex: 1 1 calc(50% - 14px);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .card,
  .small,
  .wide {
    flex: 1 1 100%;
  }

  .content h3 {
    font-size: 24px;
  }
}

/* ============================================
          CHALLENGE  SEC CSS END
================================================ */

/* ============================================
          CONTINUOUS STEPS  SEC CSS START
================================================ */

.continuous-infographic-sec {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  overflow: hidden;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
  background-position: center center;
}

.metric-card {
  position: relative;
  height: 142px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #65efce;
  cursor: pointer;
margin: 5px;
     background: rgba(34, 32, 32, 0.04);
    background-blend-mode: luminosity;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

  transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* FRONT CONTENT */
.card-front {
  position: absolute;
  left: 0;
  right: 0;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: left;
  transition: 0.5s ease;
}

.card-tag {
  /* border: 1px solid var(--white-color); */
  border-radius: 40px;
  /* padding: 8px 20px; */
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
}

.card-value {
         font-size: 28px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 35px;
    margin-top: 5px;
    margin-bottom: 8px;
}

.card-divider {
  width: 100%;
  height: 1px;
  background: var(--white-color);
  margin-bottom: 5px;
}

.card-text {
      color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* HOVER LAYER */
.home-version
.card-hover-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  padding: 35px;

  background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);

  display: flex;
  align-items: center;
}

.card-hover-content ul {
  margin: 0;
  padding-left: 20px;
}

.card-hover-content li {
  color: var(--white-color);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}

/* HOVER EFFECT */
.home-version
.metric-card:hover {
  background:radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
}

.metric-card:hover .card-hover-content {
  transform: translateY(0);
}

.metric-card:hover .card-front {
  transform: translateY(-20px);
  opacity: 0;
}

/*##### 6 STEPS GRAPH START HERE ######*/
.infography-area1 {
  position: relative;
  display: flex;
  justify-content: center;
}

.graph-11 img {
  width: 240px;
}

.graph-22 img {
  width: 235px;
}

.graph-33 img {
  width: 180px;
}

.graph-44 img {
  width: 190px;
}

.graph-55 img {
  width: 235px;
}

.graph-66 img {
  width: 240px;
}

.graph-11:hover,
.graph-22:hover,
.graph-33:hover,
.graph-44:hover,
.graph-55:hover,
.graph-66:hover {
  cursor: pointer;
}

.graph-11 {
  position: relative;
  top: 292px;
  left: 301px;
  z-index: 999;
}

.graph-22 {
  position: relative;
  top: 154px;
  left: 125px;
  z-index: 9;
}

.graph-33 {
  position: relative;
  top: 95px;
  left: 32px;
  transform: rotate(-1deg);
  z-index: 9;
}

.graph-44 {
  position: relative;
  top: 94px;
  left: -13px;
}

.graph-55 {
  position: relative;
  top: 154px;
  right: 110px;
  z-index: 99;
}

.graph-66 {
  position: relative;
  top: 291px;
  right: 295px;
  z-index: 99;
}

.infographic-sixes {
  position: relative;
}

.graph-contents1 {
  padding: 15px 65px 8px 65px;
  position: relative;
  z-index: 99999;
  width: 338px;
  margin: 0 auto;
}

.graph-contents1 ul {
  margin: 0 auto;
  padding: 0;
  width: 280px;
  overflow-y: scroll;
  height: 135px;
  padding-left: 15px;
}

.graph-contents1 ul {
  overflow-y: auto;
  scrollbar-width: none;
}

.graph-contents1 ul::-webkit-scrollbar {
  display: none;
}

/* .graph-contents1 ul{
    height:135px;
    overflow-y:auto;
    padding-left:15px;

    scrollbar-width: thin;
    scrollbar-color: #00a9bb #d9a0a9;
} */

/* Chrome, Edge, Safari */
/* .graph-contents1 ul::-webkit-scrollbar{
    width:10px;
}

.graph-contents1 ul::-webkit-scrollbar-track{
    background:#d9a0a9;
    border-radius:30px;
    box-shadow: inset 0 0 4px rgba(0,0,0,.15);
}

.graph-contents1 ul::-webkit-scrollbar-thumb{
    background:#00a9bb;
    border-radius:30px;
    min-height:50px;
}

.graph-contents1 ul::-webkit-scrollbar-button{
    display:none;
} */

.graph-contents1 .g11,
.graph-contents1 .g22,
.graph-contents1 .g33,
.graph-contents1 .g44,
.graph-contents1 .g55,
.graph-contents1 .g66 {
  color: #fff;
  max-width: 320px;
  margin: 55px auto 0;
  text-align: center;
  line-height: 23px;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.85);
  animation: zoomFade 0.7s ease-out forwards;
}

@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.graph-contents1 ul li {
  font-family: var(--tg-heading-font-family);
  font-size: var(--paragraph-font-size);
  line-height: var(--paragraph-lh);
  color: var(--tg-paragraph-color);
  margin: 5px 0;
}

.center-graph1 {
  width: 35%;
}

.infograph-sec {
  background: #f6f8fd;
  padding-top: 60px;
}

.color-g11 {
  background-image: url(../img/step/mid-circle.svg);
  background-size: 100% 100%;
}

.color-g22 {
  background-image: url(../img/step/mid-circle.svg);
  background-size: 100% 100%;
}

.color-g33 {
  background-image: url(../img/step/mid-circle.svg);
  background-size: 100% 100%;
}

.color-g44 {
  background-image: url(../img/step/mid-circle.svg);
  background-size: 100% 100%;
}

.color-g55 {
  background-image: url(../img/step/mid-circle.svg);
  background-size: 100% 100%;
}

.color-g66 {
  background-image: url(../img/step/mid-circle.svg);
  background-size: 100% 100%;
}

.g22,
.g33,
.g44,
.g55,
.g66 {
  display: none;
}

.steps-circle-info-01 {
  position: absolute;
  top: 25px;
  background: #17becf;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  left: -33px;
  padding: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Active Circle */
.steps-circle-info-01.active,
.steps-circle-info-02.active,
.steps-circle-info-03.active,
.steps-circle-info-04.active,
.steps-circle-info-05.active,
.steps-circle-info-06.active {
  width: 103px;
  height: 103px;
  transform: translate(-6px, -6px);
  /* center same rahe */
}

.steps-circle-info-02 {
  position: absolute;
  top: -6px;
  background: #17becf;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  left: -3px;
  padding: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.steps-circle-info-03 {
  position: absolute;
  top: -37px;
  background: #17becf;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  left: 17px;
  padding: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.steps-circle-info-04 {
  position: absolute;
  top: -33px;
  background: #17becf;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  right: 22px;
  padding: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.steps-circle-info-05 {
  position: absolute;
  top: -4px;
  background: #17becf;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  right: -8px;
  padding: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.steps-circle-info-06 {
  position: absolute;
  top: 27px;
  background: #17becf;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  text-align: center;
  right: -36px;
  padding: 10px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.steps-circle-info-01 p,
.steps-circle-info-02 p,
.steps-circle-info-03 p,
.steps-circle-info-04 p,
.steps-circle-info-05 p,
.steps-circle-info-06 p {
  margin: 0;
  line-height: 18px;
  font-size: 14px;
  font-weight: 600;
}

.steps-circle-info-01::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50%;

  background: linear-gradient(
    90deg,
    rgba(23, 190, 207, 0) 36.35%,
    #00f4bb 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.steps-circle-info-02::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50%;

  background: linear-gradient(
    90deg,
    rgba(23, 190, 207, 0) 36.35%,
    #00f4bb 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.steps-circle-info-03::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50%;

  background: linear-gradient(
    180deg,
    rgba(23, 190, 207, 0) 36.35%,
    #00f4bb 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.steps-circle-info-04::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50%;

  background: linear-gradient(
    180deg,
    rgba(23, 190, 207, 0) 36.35%,
    #00f4bb 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.steps-circle-info-05::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(
    -90deg,
    rgba(23, 190, 207, 0) 36.35%,
    #00f4bb 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.steps-circle-info-06::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(
    -90deg,
    rgba(23, 190, 207, 0) 36.35%,
    #00f4bb 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ============================================
          CONTINUOUS STEPS  SEC CSS END
================================================ */

/* ============================================
          RESOURCES  SEC CSS START
================================================ */

.resources-sec {
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
}

.resources-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(38, 128, 142, 0.6) 0%,
    rgba(0, 18, 28, 0.9) 100%
  );
}

.resources-section .container {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 60px;
}

.home-version
  .resource-card 
{
    background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    height: 100%;
    transition: 0.3s;
    margin: 5px;

}

.resource-card:hover {
  transform: translateY(-5px);
}

.home-version
.tag {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
}

.resource-card h4 {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 15px;
}

.resource-card .resource-line {
  width: 100%;
  height: 1px;
  background: var(--white-color);
  margin-bottom: 20px;
}

.resource-card p {
  color: var(--white-color);
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px;

display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-resource {
  display: inline-block;
  color: var(--white-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  padding: 8px 15px;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease-in;
  font-weight: 600;
}

.btn-resource:hover {
  background: var(--white-color);
  transition: all 0.3s ease-in-out;
  color: #000;
}

/* ============================================
          RESOURCES  SEC CSS START
================================================ */

.usecase-wrap {
  max-width: 1400px;
  margin: auto;
}

.panels {
  display: flex;
  gap: 18px;
  height: 350px;
}


.home-version
.panel {
  flex: 1;
  border: 1px solid rgba(101, 239, 206, 0.25);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  /* background: linear-gradient(180deg, #002228, #02151c); */

  border-color: rgba(23,190,207,0.28);
  box-shadow: 0 30px 64px -34px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(23, 190, 207, 0.22);

      /* box-shadow: 2px 2px 8px 0px rgba(255, 255, 255, 0.3) inset; */
    background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
    background-blend-mode: luminosity;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.panel.active {
  flex: 0 0 55%;
  border-color: #00d7ff66;
}

.panel-small {
  position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.panel-no {
      font-size: 18px;
    font-weight: bold;
    color: var(--white-color);
       
}

.panel-no img
{
width:80px; 
}

.slide-vertical-title {
  color: var(--white-color);
  writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.arrow-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.panel-content {
  opacity: 0;
  visibility: hidden;
  height: 100%;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
}

.panel.active .panel-content {
  opacity: 1;
  visibility: visible;
}

.panel.active .panel-small {
  display: none;
}

/* .left h5 {
            color: #20d9ff;
            letter-spacing: 3px;
            margin-bottom: 18px
        } */

.left h3 {
  color: var(--white-color);
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 20px;
}

.left p {
  max-width: 420px;
  color: var(--white-color);
  line-height: 1.8;
  margin-bottom: 25px;
}

.tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tags span {
  padding: 6px 18px;
  border: 1px solid var(--white-color);
  border-radius: 30px;
  color: var(--white-color);
  font-size: 14px;
  line-height: 16px;
}

.rotating-icon {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 18s linear infinite;
}

.rotating-icon img {
  max-width: 100%;
  max-height: 100%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.navs {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 5px;
  background: var(--primary-color);
  font-size: 16px;
  line-height: 26px;
    padding: 0 !important;
    transition: all 0.3s ease-in;
}

.nav-btn:focus { 
background: var(--secondary-color);
    color: #000;
    transition: all 0.3s ease-in;
}

.nav-btn:hover { 
background: var(--secondary-color);
    color: #000;
    transition: all 0.3s ease-in;
}

.explore {
  padding: 18px 32px;
  border: 2px solid #00d7ff;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
}

/* 
.panel-wrapper {
  display: flex;
  gap: 8px;
  height: 450px;
  margin: 40px 0;
  width: 100%;
}

.panel {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  min-width: 0;
  transition: flex 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


.panel-1:not(.active) {
  flex: 7;
}
.panel-2:not(.active) {
  flex: 5;
}
.panel-3:not(.active) {
  flex: 4;
}
.panel-4:not(.active) {
  flex: 3;
}
.panel-5:not(.active) {
  flex: 2;
}
.panel-6:not(.active) {
  flex: 1.5;
}
.panel-7:not(.active) {
  flex: 1.2;
}
.panel-8:not(.active) {
  flex: 1;
}


.panel.active {
  flex: 0 0 40% !important;
  order: -1;
}

.panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
}


.panel-content {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.4s ease 0.5s,
    transform 0.4s ease 0.5s;
  pointer-events: none;
  white-space: nowrap;
}

.panel.active .panel-content {
  opacity: 1;
  transform: translateX(0);
}

.panel-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.panel-line {
  width: 100%;
  height: 1.5px;
  background: var(--white-color);
  margin-bottom: 10px;
}

.panel-content p {
  color: var(--white-color);
  font-size: 14px;
  line-height: 24px;
  max-width: 250px;
  white-space: normal;
}

.panel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-arrows {
  display: flex;
  gap: 10px;
}

.panel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #2ab3b0;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.panel-arrow:hover {
  background: #1e9896;
}

.panel-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 1.5px solid #2ab3b0;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.panel-explore-btn:hover {
  background: #2ab3b0;
  color: #fff;
} */

/* ============================================
          BUILD CIRCLE SEC CSS START
================================================ */
.built-inside-circle-sec {
  padding-top: 40px;
  padding-bottom: 150px;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}


.circle-main-area {
  position: relative;
  margin-top: 140px;
}

.cir-bg-lines {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}

.cir-bg-lines img {
  width: 100%;
    opacity: .5;
}

.report-circle-items {
  position: relative;
  background: #102B32;
    flex: 0 0 80px;
    box-shadow: 0px 4px 6px 0px rgba(0, 136, 153, 0.24);
    display: grid;
    align-items: center;
    height: 80px;
    width: 80px;
    justify-content: center;
    border-radius: 50%;
 
}

.report-circle-items::before {
            content: "";
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(89.79% 89.79% at 25.82% 50%, rgba(65, 127, 139, .4) 55%, rgba(65, 127, 139, 0.8) 80%, rgba(125, 220, 240, 0.8) 100%);
    border: 1px solid rgba(125, 220, 240, 0.3);
    z-index: -1;
}

.report-circle-items .cir-inner-icon {
  width: 40px;
  height: 40px;
}

.desc-node-01 h3,
.desc-node-02 h3,
.desc-node-03 h3,
.desc-node-04 h3,
.desc-node-05 h3,
.desc-node-06 h3 {
 color: var(--white-color);
  font-size: 16px;
  margin: 0;
}

.circle-node-01 {
      position: absolute;
    bottom: -70px;
    left: 28px;
    z-index: -1;
}

.circle-node-01 img { 
width: 25px;
    opacity: .7;
}

.desc-node-01 {
 position: absolute;
    bottom: -78px;
    left: 65px;
    width: 200px;
}

.circle-node-02 {
     position: absolute;
    top: -70px;
    left: 30px;
    z-index: -1;

}

.circle-node-02 img { 
  width: 25px;
 opacity: .7;
}

.desc-node-02 {
          position: absolute;
    top: -78px;
    left: -60px;
    width: 150px;
}

.circle-node-03 {
 position: absolute;
    bottom: -70px;
    left: 27px;
    z-index: -1;
}

.circle-node-03 img { 
  width: 25px;
 opacity: .7;
}

.desc-node-03 {
    position: absolute;
    bottom: -78px;
    left: 65px;
    width: 150px;
}

.circle-node-04 {
     position: absolute;
    top: -70px;
    left: 28px;
    z-index: -1;
}

.circle-node-04 img { 
  width: 25px;
 opacity: .7;
}

.desc-node-04 {
      position: absolute;
    top: -78px;
    left: -130px;
    width: 150px;
    text-align: right;
}

.circle-node-05 {
      position: absolute;
    bottom: -70px;
    left: 27px;
    z-index: -1;
}

.circle-node-05 img { 
  width: 25px;
 opacity: .7;
}

.desc-node-05 
{
      position: absolute;
    bottom: -78px;
    left: 65px;
    width: 150px;
}

.circle-node-06 {
     position: absolute;
    top: -70px;
    left: 28px;
    z-index: -1;
}

.circle-node-06 img {
  width: 25px;
 opacity: .7;
}

.desc-node-06 {
    position: absolute;
    top: -78px;
    left: -130px;
    width: 150px;
    text-align: right;
}

.circle-row {
  display: flex;
  gap: 110px;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.report-circle-items {
  position: relative;
}

/**----- For Mobile -----------*/
      .circle-slides
        .circles-items {
padding: 15px;
        }

        .ana-circle-info {
    box-shadow: 0px 4px 6px 0px rgba(0, 136, 153, 0.24);
    padding: 20px;
    border-radius: 20px;
}

.ana-circle-info  h3{ 
  font-size: 20px;
}

.cir-iconbox
 {
  margin: auto;
    box-shadow: 0px 4px 6px 0px rgba(0, 136, 153, 0.24);
    height: 150px;
    width: 150px;
    display: grid;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.circle-slides
.slick-slide img {
    margin: auto;
    width: 60px;
    height: 60px;
}

.circle-slides
.slick-slide 
{
padding:10px;
}

.circle-slides
.slick-dots 
{
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 10px; 
}

.circle-slides
.slick-dots li 
{
	list-style: none;
	line-height: 0;
}

.circle-slides
.slick-dots li button 
{
	text-indent: -9999999999px;
	padding: 0;
	border: none;
	border-radius: 10px;
	width: 20px;
	height: 10px;
	background: var(--theme-lightblue)!important;
}

.circle-slides
.slick-dots li.slick-active button 
{
	border: none;
	background:var(--theme-darkblue) !important;
        width: 35px;
}


#heading-01,
#heading-02,
#heading-03,
#heading-04,
#heading-05,
#heading-06 {
  opacity: 1;

  transform: scale(1) translateY(0);

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform, opacity;

  backface-visibility: hidden;
}

/* ===================================================== */
/* HIDE */
/* ===================================================== */

.heading-hide {
  opacity: 0 !important;

  transform: scale(0.65) translateY(12px);

  pointer-events: none;
}

/* ===================================================== */
/* SHOW */
/* ===================================================== */

.heading-show {
  animation: headingZoomIn 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================================================== */
/* KEYFRAME */
/* ===================================================== */

@keyframes headingZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.65) translateY(12px);
  }

  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-2px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* HIDE PARA */
.hover-para {
  position: absolute;
  width: 170px;
  text-align: center;
  font-size: 13px;
  line-height: 22px;
  color: var(--white-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  font-weight: 500;
}

#para-01 {
  top: -105px;
  left: 50%;
  transform: translateX(-50%) translateY(30px) scale(0.8);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  will-change: transform, opacity;
}

.report-circle-items.active #para-01 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px) scale(1);
}

#para-02 {
  bottom: -105px;
  left: 50%;
  transform: translateX(-50%) translateY(-30px) scale(0.8);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  will-change: transform, opacity;
}

.report-circle-items.active #para-02 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px) scale(1);
}

#para-03 {
  top: -105px;
  left: 50%;

  transform: translateX(-50%) translateY(30px) scale(0.8);

  opacity: 0;
  visibility: hidden;

  transition:
    transform 0.45s ease,
    opacity 0.45s ease;

  will-change: transform, opacity;
}

/* ===================================================== */
/* HOVER ANIMATION */
/* ===================================================== */

.report-circle-items.active #para-03 {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0px) scale(1);
}

#para-04 {
  bottom: -105px;
  left: 50%;

  transform: translateX(-50%) translateY(-30px) scale(0.8);

  opacity: 0;
  visibility: hidden;

  transition:
    transform 0.45s ease,
    opacity 0.45s ease;

  will-change: transform, opacity;
}

/* ===================================================== */
/* HOVER ANIMATION */
/* ===================================================== */

.report-circle-items.active #para-04 {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0px) scale(1);
}

#para-05 {
  top: -105px;
  left: 50%;

  transform: translateX(-50%) translateY(30px) scale(0.8);

  opacity: 0;
  visibility: hidden;

  transition:
    transform 0.45s ease,
    opacity 0.45s ease;

  will-change: transform, opacity;
}

/* ===================================================== */
/* HOVER ANIMATION */
/* ===================================================== */

.report-circle-items.active #para-05 {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0px) scale(1);
}

#para-06 {
  bottom: -105px;
  left: 50%;

  transform: translateX(-50%) translateY(-30px) scale(0.8);

  opacity: 0;
  visibility: hidden;

  transition:
    transform 0.45s ease,
    opacity 0.45s ease;

  will-change: transform, opacity;
}

/* ===================================================== */
/* HOVER ANIMATION */
/* ===================================================== */

.report-circle-items.active #para-06 {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0px) scale(1);
}

.report-circle-items.active .hover-para {
  opacity: 1;
  visibility: visible;
}



/* d-none */

.timeline-wrap {
  max-width: 1600px;
  margin: auto;
  position: relative;
}

/* Center Line */
.center-line {
  position: absolute;
  top: 100px;
  left: 3px;
  width: 100%;
  height: 4px;
  background: #17becf;
  z-index: 11;
}

/* Timeline */
.timeline {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  width: 1110px;
  margin: auto;
}

.timeline .item:nth-child(1) {
  z-index: 6;
}

.timeline .item:nth-child(2) {
  z-index: 5;
}

.timeline .item:nth-child(3) {
  z-index: 4;
}

.timeline .item:nth-child(4) {
  z-index: 3;
}

.timeline .item:nth-child(5) {
  z-index: 2;
}

.timeline .item:nth-child(6) {
  z-index: 1;
}

.timeline .item:nth-child(1) .title {
  position: absolute;
  top: -105px;
  right: -178px;
  max-width: 250px;
  margin: auto;
}

.timeline .item:nth-child(2) .title {
  position: absolute;
  top: -105px;
  right: -178px;
  max-width: 150px;
  margin: auto;
}

.timeline .item:nth-child(3) .title {
  position: absolute;
  top: -105px;
  right: -178px;
  max-width: 170px;
  margin: auto;
}

.timeline .item:nth-child(4) .title {
  position: absolute;
  top: -105px;
  right: -178px;
  max-width: 170px;
  margin: auto;
}

.timeline .item:nth-child(5) .title {
  position: absolute;
  top: -105px;
  right: -178px;
  max-width: 190px;
  margin: auto;
}

.timeline .item:nth-child(6) .title {
  position: absolute;
  top: -105px;
  right: -178px;
  max-width: 170px;
  margin: auto;
}

.timeline .item:nth-child(1) .circle-content {
  position: relative;
  top: -85px;
  right: 20px;
  left: 86px;
  margin: auto;
  text-align: center;
  max-width: 220px;
}

.timeline .item:nth-child(2) .circle-content {
  position: relative;
  top: -85px;
  right: 20px;
  left: 86px;
  margin: auto;
  text-align: center;
  max-width: 160px;
}

.timeline .item:nth-child(3) .circle-content {
  position: relative;
  top: -85px;
  right: 20px;
  left: 86px;
  margin: auto;
  text-align: center;
  max-width: 160px;
}

.timeline .item:nth-child(4) .circle-content {
  position: relative;
  top: -85px;
  right: 20px;
  left: 86px;
  margin: auto;
  text-align: center;
  max-width: 160px;
}

.timeline .item:nth-child(5) .circle-content {
  position: relative;
  top: -85px;
  right: 20px;
  left: 86px;
  margin: auto;
  text-align: center;
  max-width: 160px;
}

.timeline .item:nth-child(6) .circle-content {
  position: relative;
  top: -85px;
  right: 20px;
  left: 86px;
  margin: auto;
  text-align: center;
  max-width: 160px;
}

.item {
  width: 260px;
  text-align: center;
  position: relative;
  margin-left: -55px;
}

.item:first-child {
  margin-left: 0;
}

/* Circle */
.circle {
  width: 200px;
  height: 200px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;

  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.12),
    rgba(0, 255, 255, 0.12) 60%,
    rgba(0, 0, 0, 0.25)
  );
}

.fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background:
    linear-gradient(0deg, rgba(10, 22, 23, 0), rgba(10, 22, 23, 0)),
    linear-gradient(
      180deg,
      rgba(23, 190, 207, 0.4) 0%,
      rgba(102, 102, 102, 0.4) 100%
    );
  backdrop-filter: blur(5px);
  /* background: linear-gradient(104.87deg, #155F70 0%, #54AAB3 23.56%, #6FB1B4 50%, #A6D2CE 75.96%, #C4D7D5 100%); */
  transition: 1.5s ease;
}

.item.active .fill {
  width: 100%;
}

.title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  z-index: 3;
}

/* Dot */
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #17becf;
  position: absolute;
  left: 98%;
  top: 95px;
  transform: translateX(-50%);
  z-index: 99;
}

/* Content */
.circle-content {
  margin-top: 60px;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s;
  padding: 0 15px;
}

.item.active .circle-content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .timeline {
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .item {
    min-width: 260px;
  }
}

/* ============================================
          BUILD CIRCLE SEC CSS END
================================================ */

/* FAQ Satart */

.risk-leaders-sec {
  /* min-height: 100vh;*/
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: #c7d4dd;
  max-width: 700px;
  margin: auto;
}

.home-version
.faq-content-box {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
}

.faq-content-box h4 {
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 15px;
  font-weight: 500;
  color: var(--white-color);
  border-bottom: 2px solid var(--primary-color);
}

.faq-content-box p {
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
}

.text-content {
  animation: textSlide 0.45s ease;
}

@keyframes textSlide {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-accordion .accordion-item {
  background: transparent;
  border: 2px solid var(--primary-color);
  margin-bottom: 15px;
  border-radius: 8px !important;
  overflow: hidden;
}


.home-version
.custom-accordion .accordion-button {
  background: transparent;
  color: var(--white-color);
  box-shadow: none;
  font-size: 16px;
  padding: 12px 20px;
  position: relative;
  line-height: 24px;
  transition: all 0.3s ease-in;
}

.home-version
.custom-accordion .accordion-button:not(.collapsed) {
  background: radial-gradient(circle at bottom, rgba(0, 220, 255, 0.5), rgba(0, 40, 50, 0.95) 70%);
  color: var(--white-color);
  transition: all 0.3s ease-in;
}

.custom-accordion .accordion-button::after {
  display: none;
}

#faqAccordion .accordion-item:last-child {
  margin-bottom: 0;
}

.custom-icon {
  margin-left: auto;
  font-size: 23px;
  color: var(--primary-color);
  line-height: 13px;
  border: 2px solid var(--white-color);
  border-radius: 30px;
  padding: 3px;
}

.mobile-content {
  display: none;
}

.accordion-body.mobile-content p{
    color: var(--white-color);
}

.accordion-body {
  color: #d8e2e8;
  line-height: 1.7;
  border-top: 1px solid rgba(0, 217, 255, 0.3);
}

/* Mobile */

@media (max-width: 767px) {
  .desktop-content {
    display: none;
  }

  .mobile-content {
    display: block;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

.risk-leaders-ask-sec {
    /*min-height: 100vh; */
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
    background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
} 

/* New  Sec */
.home-version
.ana-footer-sec {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  background: url(/wp-content/uploads/2026/06/Built-by-Anaptyss-bg-image-scaled.webp);
  background-size: 100% 100%;
  background-position: center center;
}

.anaptyss-section .container {
  position: relative;
  z-index: 2;
}

.main-title {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 25px;
}

.intro-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* .build-stats-row
{
    margin-top: 2p;
    margin-bottom: 50px;
} */

.bulid-stat-box {
  background: #00000042;
  border-radius: 10px;
  padding: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  min-height: 130px;
}

.bulid-stat-box h3 {
  color: #00f4bb;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 8px;
}

.bulid-stat-box p {
     color: var(--white-color);
    font-size: 14px;
    line-height: 20px;
    max-width: 200px;
    margin: 0 auto;
    font-weight: 600;
}

.build-text p {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
}

/* new */

.ana-action-section {
  position: relative;
  background: url("/wp-content/uploads/2026/06/ana-footer-bg-image-scaled.webp") center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 30px;
}

.ana-action-section .container {
  position: relative;
  z-index: 2;
}

.content-box {
  max-width: 460px;
  padding-top: 100px;
}

.content-box h2 {
  color: #fff;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
}

.content-box p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 35px;
}

/* Buttons */
.hero-btns.footer-buttons {
  justify-content: start;
}

.footer-buttons {
  margin-bottom: 160px;
}

.btn-group-custom {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.btn-demo {
  background: #18d4f4;
  color: #fff;
  padding: 14px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-demo:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-talk {
  border: 1px solid #18d4f4;
  color: #fff;
  padding: 14px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.btn-talk:hover {
  color: #fff;
  background: rgba(24, 212, 244, 0.08);
}

.btn-group-custom i {
  margin-left: 8px;
}

.certification-logos {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.certification-logos .logo-item {
background: var(--white-color);
    border-radius: 50%;
    padding: 5px
}

.logo-item img {
  width: 60px;
  height:60px;
}

.footer-links a {
  color: var(--white-color);
  text-decoration: none;
  font-size: 13px;
}

.footer-links span {
  color: var(--white-color);
  margin: 0 10px;
}

.copyright-text {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

/* Responsive */

@media (max-width: 991px) {
 

  

  .content-box h2 {
    font-size: 40px;
  }

  .btn-group-custom {
    justify-content: center;
    margin-bottom: 60px;
  }

  .certification-logos {
    justify-content: center;
  }

 
}

@media (max-width: 576px) {
  .content-box h2 {
    font-size: 32px;
  }

  .content-box p {
    font-size: 15px;
  }

  .btn-demo,
  .btn-talk {
    width: 100%;
    text-align: center;
  }

 }




/* ================ CASE STUDY PAGE CSS START HERE  =================*/
.case-study-hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url(/wp-content/uploads/2026/06/sec-common-bg-scaled.webp);
  background-size: cover;
}

.case-study-page
{
      background:linear-gradient(180deg, #17becfab 0%, #FFFFFF 4%, #D3D3D3 45.53%, #D3D3D3 77.41%, #155F70 93.29%);
}

.client-intro-sec{
  padding-top:40px;
  padding-bottom: 30px;
}

.problem-statement-sec {
  padding-top:30px;
  padding-bottom: 30px;
}

.our-approch-sec{
  padding-top:30px;
  padding-bottom: 30px;
}

.problem-statement-num {
      display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.pro-num-info h3{
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pro-num-info h3::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #7A8A91;
    min-width: 80px;
}


.approach-grid{
    margin-top:50px;
}

.approach-item{
    text-align:center;
    padding:20px;
    position:relative;
    min-height: 260px;
}


.approach-item:not(:nth-child(2)){
    border-right:2px solid #000;
}


.approach-icon img {
   width: 70px;
   height: 70px;
}

.approach-item h5
{
    position: relative;
    padding-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    max-width: 200px;
    margin: auto;
    line-height: 22px;
}

.approach-item h5::after{
       content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: var(--primary-color);
}

.approach-item p{
        font-size: 14px;
    color: #000;
    line-height: 20px;
    max-width: 250px;
    margin: 12px auto 0 auto;
}

.outcomes-sec {
padding-top: 30px;
padding-bottom: 60px;
}

.outcome-card
{
   background: linear-gradient(180deg, #002228 0%, #01222B 25%, #02202A 50%, #001A23 75%, #02151C 100%);
    border-radius:25px;
    padding:20px;
    color:#fff;
    height:100%;
    overflow:hidden;
    transition: transform 0.4s ease;
}

.outcome-card:hover{
    transform: translateY(-5px);
    
}

.outcome-card .diagonal-arrow img {
    width: 60px;
}

.outcome-card h3{
       color: var(--primary-color);
    font-size: 28px;
    margin: 5px 0;
    font-weight: 600;
}

.outcome-card h4{
       color: var(--white-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.outcome-card p{
    color: var(--white-color);
    font-size:13px;
    margin-bottom:0;
}

.outcome-divider{
        height: 1px;
    background: var(--white-color);
    margin: 10px 0;
}

/* ================ CASE STUDY PAGE CSS END HERE  =================*/

/* ================ BLOG  PAGE CSS START HERE  =================*/

.inner-blogs-hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url(/wp-content/uploads/2026/06/blog-sec-bg-scaled.webp);
  background-size: 100% 100%;
}

.blogs-title-info {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.blogs-hero-title-info h1 {
  color: var(--white-color);
  font-weight: 600;
  font-size: 38px;
}

.blogs-hero-title-info h1 
.blog-spn {
  color: var(--primary-color);
}

.process-flow
.flow-arrow img {
  width: 12px;
  margin: 10px 0;
}

.process-flow
.flow-item h3 {
color: #00A4B5;
font-size: 16px;
font-weight: 700;
margin-bottom: 0;
}

.blogs-page {
         background: linear-gradient(180deg, #17becf94 0%, #FFFFFF 2.19%, #D3D3D3 45.53%, #D3D3D3 77.41%, #155F70 93.29%);
}


 .report-section {
            padding-bottom: 120px;
            scroll-margin-top: 100px
        }

        .overview-sidebar {
            position: sticky;
            top: 100px;
            background-image: url(/wp-content/uploads/2026/06/blog-sticky-bg.webp);
            background-size: 100% 100%;
            color: #fff;
            padding: 24px;
            border-radius: 20px;
                margin-left: 65px;
        }

        .overview-sidebar ol {
           
            padding: 0;
            margin: 0;
            padding-left: 18px;
        }

        .overview-sidebar li {
           margin: 10px 0;
        }

        .overview-sidebar li a {
          font-family: "Montserrat", sans-serif;
          color: var(--white-color);
          font-size: 14px;
        }

        .overview-link {
            display: block;
            text-decoration: none;
            color: #d7e4ea;
            padding-left: 12px;
            border-left: 2px solid rgba(255, 255, 255, .2);
        }

        .overview-link.active,
        .overview-link:hover {
            color: #39dfff;
            border-left-color: #39dfff;
        }

        .placeholder {
            height: 280px;
            border-radius: 12px;
            background: #d9e3e7;
            margin: 20px 0;
        }


        .banking-ai-section{
    background: linear-gradient(
        180deg,
        #d9f0f1 0%,
        #f7f7f7 100%
    );
    font-family: sans-serif;
}

.banking-heading{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    color: #17353c;
    max-width: 900px;
    margin-bottom: 40px;
}

.banking-table-box{
    border: 1.5px solid #476c73;
    border-radius: 22px;
    padding: 25px 40px;
    background: rgba(255,255,255,0.2);
}

.table-head{
    margin-bottom: 10px;
}

.table-head h4{
   font-size: 20px;
    font-weight: 700;
    color: #17353c;
    margin: 0;
}

.table-row{
   display: grid;
    grid-template-columns: 1fr 158px;
    column-gap: 40px;
    align-items: center;
    /* padding: 18px 0; */
}

.table-row .kw{
        position: relative;
    color: #00a9c6;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 11px;
    padding-top: 10px;
}

.table-row .kw:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 85%;
    height: 1px;
    background: #9bb2b7;
}

.table-row .vol{
    position: relative;
    color: #00a9c6;
    font-size: 18px;
    font-weight: 600;
      padding-bottom: 11px;
    padding-top: 10px;
    text-align: left;
}

.table-row .vol:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #9bb2b7;
}

.table-row.border-0 .kw:after,
.table-row.border-0 .vol:after{
    display:none;
}


.blog-section ul {
  padding: 0;
  margin: 0;
  padding-left: 16px;
  margin-top: 15px;

}

.blog-section ul  li,
.blog-section ol  li
{ 
font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    line-height: 22px;
    margin: 5px 0;
}


/* ================ BLOG  PAGE CSS END HERE  =================*/

#ast-scroll-top {
    background-color: #fff;
    font-size: 15px;
    color: #000;
    border-radius: 30px;
}



.snap-section{
    min-height:100vh;
    scroll-margin-top:80px; /* header height */
}

/* Right Side Navigation */
.section-dots{
    position:fixed;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
}

.section-dots .dots{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#666;
    margin:12px 0;
    cursor:pointer;
    transition:.3s;
}

.section-dots .dots.active{
    background:#17becf;
    transform:scale(1.4);
}

#watch-ana  
{
    z-index: 9999;
}

#watch-ana 
.btn-close 
{
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: none;
    border: 0;
    border-radius: .25rem;
    opacity: 9;
    background: var(--primary-color);
    color: var(--white-color);
    line-height: 15px;
    border-radius: 20px;
    font-size: 15px;
    position: absolute;
    right: -3px;
    top: -6px;
    z-index: 1;
}

#watch-ana 
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 5px;
}

#watch-ana 
.modal-body iframe
 {
width:100%;
height:500px;
}


@media (min-width: 576px) {
    #watch-ana 
    .modal-dialog {
        max-width: 800px;
        margin: 1.75rem auto;
    }
}
