/* General Styling */

body{
      font-family: "Poppins", sans-serif!important;
}
#hero {
  position: relative;
  min-height: 600px;
  /* overflow: hidden; */
  background: #6739B7;
  background: linear-gradient(1.74deg, rgba(255, 255, 255, 0.1) 2.96%, rgba(181, 151, 234, 0.962931) 44.57%, #6739B7 100.95%);
  /* vivid purple/indigo */
}
.bi-box{
  width: 165px;
  position: absolute;
  right: 25%;
  top: 40%;
  rotate: -15deg;
  opacity: .6;
}

#three-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  font-family: "Nunito", sans-serif;
}

.badge-box {
  background: rgba(0, 0, 0, 0.194);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 6px 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 6px;
  font-size: 0.9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 30px;
  /* bigger width */
  height: 50px;
  /* bigger height */
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.wheel {
  width: 12px;
  /* wider */
  height: 24px;
  /* taller */
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  margin-top: 8px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.card {
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 4rem;
  color: white;
  font-family: Caveat;
  font-weight: 900;
}

.hero-content h1 span {
  color: #58378d;
}

.hero-content p {
  font-size: 20px;
  text-align: center;
  color: #000000;
}

.ctaa .free {
  background-color: #6739B7;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border-radius: 10px;
}

.ctaa .free:hover {
  text-decoration: none;
  background-color: #6739B7;
}

.ctaa .watch {
  background-color: #e0e0e029;
  border: 1px solid #c7c7c7;
  padding: 10px 20px;
  text-decoration: none;
  color: #c7c7c7;
  border-radius: 10px;
}

.ctaa .watch:hover {
  text-decoration: none;
  box-shadow: 3px 3px 20px #c7c7c780;
}

.stats h3 {
  color: #000000;
  font-weight: bold;
  font-size: 50px;
  line-height: 50%;
  font-family: Caveat;
}

.stats p {
  color: #000000;
  font-size: 18px;
}

.stats img {
  margin-top: 10px;
  width: 240px;
  height: 280px;
  rotate: -40deg;
  position: absolute;
  left: 30px;
  top: -100px;
}



.floating-icons {
  position: absolute;
  inset: 0;
  /* full cover */
  z-index: 1;
  /* below .hero-content but above #three-bg */
  overflow: hidden;
  pointer-events: none;
  /* so clicks pass through */
}

.floating-icons i {
  position: absolute;
  font-size: 40px;
  color: #6739b7ea;
  /* subtle white glow */
  animation: floatIcon 12s infinite linear;
}

.floating-icons i:nth-child(1) {
  top: 20%;
  left: 10%;
  font-size: 50px;
  animation-duration: 18s;
}

.floating-icons i:nth-child(2) {
  top: 60%;
  left: 20%;
  font-size: 30px;
  animation-duration: 22s;
}

.floating-icons i:nth-child(3) {
  top: 40%;
  right: 15%;
  font-size: 45px;
  animation-duration: 20s;
}

.floating-icons i:nth-child(4) {
  bottom: 15%;
  left: 50%;
  font-size: 20px;
  animation-duration: 25s;
}

.floating-icons i:nth-child(5) {
  top: 30%;
  right: 5%;
  font-size: 40px;
  animation-duration: 16s;
}

.floating-icons i:nth-child(6) {
  bottom: 25%;
  left: 5%;
  font-size: 40px;
  animation-duration: 28s;
}

.floating-icons i:nth-child(7) {
  top: 70%;
  left: 90%;
  font-size: 55px;
  animation-duration: 24s;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0) rotate(20deg);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-40px) rotate(50deg);
    opacity: 0.6;
  }

  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
}


/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  #hero {
    min-height: auto;
    /* shorter height for tablets */
  }

  .hero-content h1 {
    font-size: 3rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 20px;
    padding: 0 20px;
  }

  .ctaa {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .stats h3 {
    font-size: 1.8rem;
  }

  .stats p {
    font-size: 18px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  #hero {
    min-height: 500px;
    /* reduce height */
    padding: 20px 10px;
  }

  .trust {
    display: none;
  }

  .badge-box {
    display: none;
    font-size: 8px;
    padding: 5px;
  }



  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    text-align: center;
  }

  .hero-content p {
    font-size: 16px;
    padding: 0 10px;
  }

  .ctaa {
    flex-direction: column;
    /* stack buttons */
    align-items: center;
    gap: 12px;
    margin-top: 20px;
  }

  .ctaa .free,
  .ctaa .watch {
    width: 80%;
    /* full-width buttons */
    text-align: center;
  }

  .stats {
    text-align: center;
    margin-top: 20px;
  }

  .stats h3 {
    font-size: 1.5rem;
  }

  .stats p {
    font-size: 16px;
  }

  .scroll-indicator {
    bottom: 10px;
  }

  .section-heading {
    font-size: 22px !important;
    font-weight: 900 !important;

  }

  .empower-section {
    /* background-color: #350808 !important; */
    border-top-left-radius: 90px !important;
    border-top-right-radius: 90px !important;
  }

  .empower-section .section-text p {

    font-size: 14px !important;
    text-align: justify;
  }

  .powerfull {
    font-size: 1.5rem !important;
  }

  .pp p {
    font-size: 16px !important;
  }

 

  .Process-header {
    font-family: poppins !important;
  }
}

/* .video-wrapper {
  width: 100% !important;

} */



@media (min-width: 992px) {
  .empower-section {
    margin-top: 24px;
  }

  .empower-section .section-heading {
    font-size: 1rem;
  }
}

/* Highlight text */
.empower-section .highlight-text {
  font-size: 56px;
  font-family: Caveat;
  color: #000000;
  /* Bootstrap primary */
}

/* Body text */
.empower-section .section-text p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  margin-bottom: 1.5rem;

  /* Smooth light-to-purple text gradient */


  /* Optional slight shadow for better contrast on white backgrounds */
  /* text-shadow: 0 0 0.3px rgba(0, 0, 0, 0.1); */
}

.section-text>p::before {
  content: "";
  position: absolute;
  right: 160px;
  bottom: 90px;
  width: 600px;
  height: 250px;
  background: radial-gradient(circle at center,
      rgba(181, 151, 234, 0.377),
      rgba(255, 255, 255, 0));
  border-radius: 50%;
  z-index: 0;
  filter: blur(30px);
}

  @media (max-width: 576px) {
    .integration-section {
      padding: 30px 0;
      overflow: hidden;
    }

    .ecosystem-container {
      width: 100%;
      max-width: 260px;
      height: 260px;
      position: relative;
    }

    /* Orbit sizes – reduced */
    .orbit-1 { width: 110px; height: 110px; }
    .orbit-2 { width: 160px; height: 160px; }
    .orbit-3 { width: 210px; height: 210px; }
    .orbit-4 { width: 260px; height: 260px; }

    /* Planet images – smaller */
    .orbit img {
      width: 34px !important;
    }

    /* Center logo */
    .orbit-1 img {
      width: 90px !important;
    }
  }

  @media (min-width: 577px) and (max-width: 768px) {
    .ecosystem-container {
      max-width: 420px;
      height: 420px;
    }

    .orbit-1 { width: 180px; height: 180px; }
    .orbit-2 { width: 260px; height: 260px; }
    .orbit-3 { width: 340px; height: 340px; }
    .orbit-4 { width: 420px; height: 420px; }

    .orbit img {
      width: 60px !important;
    }

    .orbit-1 img {
      width: 150px !important;
    }
  }


.trust-section {
  background-image: url('../eopsify_home_page/Group.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.trust-section .section-heading {
  font-size: 56px;
  font-weight: 700;
  color: #111827;
  font-family: "Caveat";
}

.integration-section {

  /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#features {
  background: #6739B7;
  background: linear-gradient(180deg, rgba(103, 57, 183, 1) 15%, rgba(181, 151, 234, 1) 73%, rgba(181, 151, 234, 1) 54%, rgba(255, 255, 255, 1) 100%);
  padding: 30px 0;
}

/* Stats cards */
.stat-card {
  background: linear-gradient(180deg,
      rgba(103, 57, 183, 1) 15%,
      rgba(181, 151, 234, 1) 73%,
      rgba(181, 151, 234, 1) 54%,
      rgba(255, 255, 255, 1) 100%);
  border-radius: 0.75rem;
  padding: 1.6rem;
  transition: all 0.3s ease;
}

/* Hover effect for the entire card */
.stat-card:hover {
  background: #ffffff;
  color: #6739b7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 5px solid #6739b7;
}

/* Change number & label color when card is hovered */
.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
  color: #6739b7;
}

/* Individual element styles */
.stat-number {
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
}

.stat-label {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}
@media (max-width: 576px) {
  .stat-card {
    padding: 1rem;
    border-radius: 0.6rem;
  }

  .stat-number {
    font-size: 1.35rem;
    font-weight: 800;
  }

  .stat-label {
    font-size: 0.85rem;
  }
  
}
@media (max-width: 360px) {
  .stat-card {
    padding: 0.8rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}


/* .feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  height: 400px;
  font-family: "Nunito", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
} */

/* .feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
} */

/* .feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
} */

/* .feature-card:hover .feature-title {
  color: #94568e; */
  /* primary color */
/* } */

.powerfull {
  font-size: 3.5rem;
  font-family: "Caveat";
  font-weight: 900;
  color: #ffffff;
  /* Tailwind's text-foreground */
}

.tab-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tab-header {
  max-width: 1000px;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: center;
  background: #000000;
  overflow: hidden;
}

.tab-btn:focus {
  outline: none;
  box-shadow: none;
}
.tab-item {
  pointer-events: none;
}
.tab-content > .active {
  pointer-events: auto;
}

.tab-btn {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  overflow: hidden;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s ease;
}

.btn-icon {
  width: 54px;
  height: 42px;
  border-radius: 50px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.btn-icon img {
  width: 25px;
  height: 25px;
  margin: 5px;
}

.tab-btn.active {
  background: #f9f8fa;
  color: #6739B7;
  border: none;
  border-bottom: 3px solid #fff;
}

.tab-content {
  padding: 40px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  position: relative;
}

.tab-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.9s ease;
  position: absolute;
}

.tab-content > .active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.tab-left {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.29);
  background-color: transparent;
  border: 4px solid rgb(255, 255, 255);
  border-radius: 12px;
  overflow: hidden;            
}

.tab-left img {
  width: 420px;
  height: 320px;
  object-fit: cover;            
  transition: transform 0.4s ease-in-out;
}

.tab-left img:hover {
  transform: scale(1.20);       
}


.tab-card {
  position: relative;
  width: 460px;
  padding: 30px 30px 60px;
  border: none;
  border-left: 2px solid rgba(97, 37, 37, 0.6);
  border-bottom: 2px solid rgba(97, 37, 37, 0.6);
  border-radius: 20px;
  background-color: transparent;
  color: #000000;
  font-family: "Poppins";
}

.tab-card legend {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0 10px;
  margin-left: 15px;
}

.tab-card legend > span {
  font-size: 1.6rem;
  font-weight: 700;
}

.tab-card p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.see-more {
  position: absolute;
  bottom: -15px;
  right: 35px;
  background: #6739B7;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.see-more:hover {
  background: #7a3ef8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
#features {
  background: #6739B7;
  background: linear-gradient(180deg, rgba(103, 57, 183, 1) 15%, rgba(181, 151, 234, 1) 73%, rgba(181, 151, 234, 1) 54%, rgba(255, 255, 255, 1) 100%);
  margin-top: 100px;
}
  .tab-section,
  .tab-content {
    width: 100%;
    max-width: 100%;
  }

  /* ===== TAB HEADER SCROLL ===== */
  .tab-header {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .tab-btn {
    flex-direction: column;
    font-size: 0.75rem;
    min-width: 100px;
  }
    .tab-btn .btn-icon {
    display: none;
  }

  /* Center text properly */
  .tab-btn {
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    font-size: 0.6rem;
    text-wrap: wrap;
    font-weight: 400;
    min-width: auto;
    text-align: center;
  }

  /* ===== FIX CONTENT VISIBILITY ===== */
  .tab-content {
    min-height: auto;
    padding: 16px;
    position: relative;
  }

  .tab-item {
    position: relative !important;   /* 🔥 MOST IMPORTANT */
    flex-direction: column;
    gap: 16px;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    display: none;
  }

  .tab-content > .active {
    display: flex !important;        /* SHOW ACTIVE TAB */
  }

  /* ===== IMAGE ===== */
  .tab-left {
    width: 100%;
  }

  .tab-left img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* ===== CARD ===== */
  .tab-card {
    width: 100%;
    padding: 16px;
    border: none;
  }

  /* ===== BUTTON ===== */
  .see-more {
    position: static;
    margin-top: 10px;
    text-wrap: nowrap;
  }
}

.stack-container {
  margin-top: 100px;
  position: relative;
  height: auto;
  /* extra height to allow scroll stacking */
}

.stack-section {
  position: sticky;
  top: 0;
  min-height: 40vh;
  margin: 5vh auto;
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 25px;
  background-color: #fff;
  padding: 50px 20px;
  max-width: 900px;
  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.1);
  transform-origin: center;
  transition: transform 0.3s ease-out;
}

/* ========== CARD CONTENT (TEXT SIDE) ========== */
.card-content {
  flex: 1;
}

.card-content h2 {
  color: #6739b7;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.card-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 400px;
}

.card-content a {
  color: #6739b7;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.card-content a:hover {
  text-decoration: underline;
  transform: translateX(3px);
}

/* ========== SVG SIDE ========== */
.card-img {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}

/* 🔹 Soft purple background glow behind SVG */
.card-img::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center,
      rgba(181, 151, 234, 0.6),
      rgba(255, 255, 255, 0));
  border-radius: 50%;
  z-index: 0;
  filter: blur(10px);
}

.card-img svg {
  width: 300px;
  height: auto;
  position: relative;
  z-index: 1;
}


@media (max-width: 992px) {

  .why-leading {
  font-size: 2rem !important;
}
  .powerfull {
    font-size: 2.8rem;
    text-align: center;
  }
}

@media (max-width: 576px) {

  .why-leading {
  font-size: 1.7rem !important;
}

  .powerfull {
    font-size: 2.2rem;
    text-align: center;
  }
  /* STACK SECTION FIX */
  .stack-container {
    margin-top: 60px;
  }

  .stack-section {
    position: relative;
    top: auto;
    flex-direction: column;
    width: 95%;
    padding: 30px 20px;
    min-height: auto;
  }

  .card-content h2 {
    font-size: 1.4rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .card-img {
    justify-content: center;
    margin-top: 20px;
  }

  .card-img svg {
    width: 180px;
  }

  .card-img::before {
    width: 220px;
    height: 220px;
    right: 50%;
    transform: translateX(50%);
  }
}



.feature-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #6f42c1;
  border-radius: 50%;
  margin-right: 8px;
}

.product-btn {
  color: #7e3974;
  border: 1px solid #7e3974;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  transition: 0.4s ease-in-out;
}

.product-btn:hover {
  background-color: #7e3974;
  text-decoration: none;
  color: white;
}

.productbtn {
  background-color: black;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
}

.productbtn:hover {
  box-shadow: 2px 2px 20px #000;
  transition: 0.2s ease-in;
}

.why-leading {
  font-size: 3rem;
  font-weight: 800;
  font-family: "Nunito", sans-se;
}

.why-leading span {
  color: #7e3974;
}

.benefit-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.benefit-card {
  border-radius: 70px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Nunito", sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  max-width: 80%;
  height: 100%;
  /* ensures equal height if parent uses flex */
  /* padding: 1rem; */
}

.benefit-content {
  width: calc(100% - 88px);
  /* adjust based on icon size + padding */
  margin-left: 20px;
  padding: 20px 16px;
  position: relative;

}


.icon-container {
  width: 448px;
  height: 215px;
  background-color: rgba(250, 246, 249, 0.952);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  overflow: hidden;      /* IMPORTANT: prevents overflow */
  transition: all 0.3s ease;
}

.icon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* FULL FILL */
  border-radius: 70px;   /* Matches container */
}


.benefit-card:hover .icon-container {
  background: linear-gradient(180deg,
      rgba(103, 57, 183, 1) 15%,
      rgba(181, 151, 234, 1) 73%,
      rgba(181, 151, 234, 1) 54%,
      rgba(181, 151, 234, 1) 100%);
}

.benefit-card:hover .icon-container {
  transition: all 0.3s ease;

  color: #ffffff;
  
}

@media (max-width: 768px) {

  /* Section heading */
  .why-leading {
    font-size: 2rem;
    text-align: center;
  }

  /* Card wrapper */
  .benefit-card {
    max-width: 100%;
    border-radius: 30px;
    border: none;
  }

  /* Stack image + content vertically */
  .benefit-card > .d-flex {
    flex-direction: column;
    align-items: center;
  }

  /* Image container on top */
 .icon-container {
    width: 100%;
    height: 180px;
    border-radius: 25px;
    margin-bottom: 15px;

    overflow: hidden;   /* 🔥 THIS IS THE KEY */
  }

  .icon-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* fills container without distortion */
    border-radius: 25px;
  }


  /* Content below image */
  .benefit-content {
    width: 100%;
    margin-left: 0;
    padding: 10px 15px;
    text-align: center;
  }

  .benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .benefit-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}



/* 
.read-more-btn {
  position: absolute;
  bottom: 15px;
  background: #6739B7;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 22px;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  background: #ffffff;
  color: #6739B7;
  border: 1px solid #6739B7;
}

.read-more-btn:focus {
  outline: none;
  border: none;
} */

/* Step numbers */
.step-number {
  font-weight: bold;
  font-size: 1.5rem;
  color: #6739b7;
}

.list-group-item,
.list-group {
  border-radius: 20px;
  border: none;
  color: black;
  font-family: "Nunito", sans-serif;
}

.list-group-item:hover .step-content-header {
  background-color: #6739b7; /* background changes when card is hovered */
  color: #fff;               /* text turns white */
  cursor: pointer;           /* shows pointer cursor */
}
.list-group-item:hover .step-content-header > h5{
  color: #fff;  
}



.list-group-item.active-step .step-number {
  color: #fff;
}

/* Step details slide up animation */
.step-details {
  max-height: 0;
  opacity: 0;
  transform: translateY(20px);
  overflow: hidden;
  transition: all 0.5s ease;
  color: #7e3974;
}



/* Show details */
.list-group-item.active-step .step-details {
  max-height: 500px;
  /* adjust as needed */
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect */
.list-group-item:hover {
  cursor: pointer;
  background-color: #fce4ff;
  transition: all 0.3s ease;
}

/* Play button hover */
.card .rounded-circle {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.card .rounded-circle:hover {
  transform: scale(1.1);
  background-color: rgba(255, 255, 255, 0.8);
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.process-section {
  position: relative;
}

.process-bg-image {
  position: absolute;
  top: 20%;
}

.Process-header h2 {
  font-size: 3.5rem;
  font-family: "Caveat";
  font-weight: 900;
  color: #000000;
  padding: 0px 90px;
}

.Process-header h2 span {
  color: #6739B7;
}

.Process-header p span {
  color: #6739B7;
}

.Process-header p {
  font-size: 20px;
  text-align: center;
  color: #505050;
}

.process-steps-container::before {
  content: "";
  position: absolute;
  right: 10%;
  top: -20%;
  width: 80%;
  height: 130%;
  background: radial-gradient(circle at center,
      rgba(181, 151, 234, 0.6),
      rgba(255, 255, 255, 0));
  border-radius: 25%;
  z-index: 0;
  filter: blur(10px);
}



/* Individual step cards */
.process-steps-container .list-group-item {
  border: none;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(103, 57, 183, 0.1);
  transition: all 0.3s ease;
  color: #4b3a76;
  position: relative;
  overflow: hidden;
}

/* Step number badge */
.process-steps-container .step-number {
  background: #6739b7;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 0px 20px;
  min-width: 38px;
  text-align: center;
  position: absolute;
  bottom: 0%;
  left: 0%;
}

.step-heading {
  width: 90%;
}

.step-content {
  width: 90%;
  margin-left: 10%;
  position: relative;

}

.step-content-header {
  width: 100%;
  position: absolute;
  top: -15px;
  right: -20px;
  padding: 5px 12px;
  box-shadow: 0 14px 12px rgba(103, 57, 183, 0.1);
  border-radius: 12px;
}

/* Headings */
.step-content-header > h5 {
  margin: 0%;
  color: #5e3da2;
  font-weight: 700;
}

/* Step details section */
#process-steps .step-details {
  background: rgba(103, 57, 183, 0.05);
  color: #5e3da2;
}

/* Small hover accent line */
#process-steps .list-group-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background-color: #6739b7;
  border-radius: 0 0 12px 12px;
  transition: width 0.3s ease;
}




.step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6739b7;
}

.blog-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.blog-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trial .free {
  background-color: #7e3974;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  border-radius: 10px;
}

.trial .free:hover {
  text-decoration: none;
  background-color: #4b1846;
}

.trial .watch {
  border: 1px solid #4b1846;
  padding: 10px 20px;
  text-decoration: none;
  color: #4b1846;
  border-radius: 10px;
}

.trial .watch:hover {
  text-decoration: none;
  color: white;
  background-color: #4b1846;
}

#faqAccordion .btn {
  text-align: start !important;
  padding: 0 !important;
  font-family: "Nunito", sans-serif;
}

#faqAccordion .card-body {
  text-align: start !important;
  font-family: "Nunito", sans-serif;
}

/* Allow FAQ heading text to wrap on small screens */
#faqAccordion .card-header .btn-link {
  white-space: normal;
  /* allow text to break into multiple lines */
  word-break: break-word;
  text-align: left;
  /* keep text aligned properly */
}

@media (max-width: 576px) {
  #faqAccordion .card-header .btn-link {
    white-space: normal;
    word-break: break-word;
    font-size: 1rem;
    /* optional: slightly smaller for mobile */
  }
}


.faq-section {
  font-family: "Poppins", sans-serif;
}

.faq-item {
  background: #7d4ecf;
  background: linear-gradient(90deg, #6739B7 0%, #0F0F43 94.63%);
  /* background: linear-gradient(90deg, rgba(125, 78, 207, 1) 45%, rgba(72, 38, 128, 1) 69%, rgba(45, 3, 112, 1) 100%, rgba(34, 18, 61, 1) 100%); */
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s ease-in-out;
}

.faq-question {
  width: 100%;
  padding: 0px 0px 0px 30px;
  background: transparent;
  border: none;
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none !important;
}

.faq-answer {
  background: #ffffff;
  color: #333;
  padding: 18px 22px;
  font-size: 15px;
}

.icon-circle {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-top-left-radius: 90%;
  border-bottom-left-radius: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}


.icon-circle i::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  font-size: 16px;
  color: #4c1c9c;
  transition: content 0.3s ease-in-out;
}

.icon-circle i::before {
  content: "\f067";
}

.faq-question[aria-expanded="true"] .icon-circle i::before {
  content: "\f068";
}





.cta-image-section {
  font-family: 'Poppins', sans-serif;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.cta-background-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 780px;
  background: #eae3f773;
  border-radius: 30%;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.cta-card-image {
  background: #6739B7;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.cta-container::before,
.cta-container::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
  transform: translateY(-50%);
}

.cta-container::before {
  left: 0;
  background-image: url('../eopsify_home_page/cta-left.svg');
  width: 300px;
  height: 300px;
}

.cta-container::after {
  right: -150px;
  background-image: url('../eopsify_home_page/elem.svg');
  width: 300px;
  height: 300px;
}


.cta-badge {
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.rating-badge {
  background-color: rgba(255, 255, 255, 0.15);
}

.trial-badge {
  background-color: rgba(255, 255, 255, 0.15);
}

.cta-title-image {
  font-family: "Caveat", cursive;
  font-size: 3.5em;
  line-height: 1.1;
  color: #fff;
  font-weight: bold;
}

.cta-subtitle-image {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn-primary-image {
  background-color: #fff;
  color: #6739B7;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
}

.cta-btn-primary-image:hover {
  background-color: #f0f0f0;
  color: #49238b;
  text-decoration: none;
}

.cta-btn-outline-image {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

.cta-btn-outline-image:hover {
  background-color: #fff;
  color: #4a258b;
  text-decoration: none;
}

.support-icon-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  color: #5f355a;
}

.support-text-image h5 {
  font-weight: 700;
  font-size: 1.1em;
}

.support-text-image p {
  color: rgba(255, 255, 255, 0.7);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-card-image {
    padding: 40px 20px;
  }

  .cta-title-image {
    font-size: 3em;
  }

  .cta-subtitle-image {
    font-size: 1em;
  }

  .cta-container::before,
  .cta-container::after {
    width: 200px;
    height: 200px;
    opacity: 0.05;
  }
}











@media (max-width: 480px) {
  
  
  #hero {
    height: 700px;
  }

  .empower-section .highlight-text {
    font-size: 30px;
  }

  .trust-section .section-heading {
    font-size: 30px !important;
  }

  .Process-header h2 {
    font-size: 30px !important;
    padding: 0px 10px;
    text-align: center;
  }
  .Process-header p {
  font-size: 15px;
  text-align: center;
  color: #505050;
}
  .cta-background-shape{
    display: none;
  }
  .stats img{
    display: none;
  }
  .process-bg-image{
    top: 18%;
  }
  .Process-header h2 {
    font-size: 52px;
    padding: 12px 24px;
  }

}


@media (min-width: 481px) and (max-width: 640px) {
  #hero {
    height: 700px;
  }

  .empower-section {
    margin-top: 20px;
  }

  .empower-section .highlight-text {
    font-size: 36px;
  }

  .trust-section .section-heading {
    font-size: 30px;
  }

  .Process-header h2 {
    font-size: 30px !important;
    padding: 0px 10px;
    text-align: center;
  }
    .Process-header p {
  font-size: 15px;
  text-align: center;
  color: #505050;
}
  .cta-background-shape{
    display: none;
  }
  .stats img{
    display: none;
  }
  .process-bg-image{
    top: 18%;
  }
  .empower-section .highlight-text {
    font-size: 52px;
  }
  .Process-header h2 {
    font-size: 52px;
    padding: 12px 24px;
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  #hero {
    height: 700px;
  }

  .empower-section {
    margin-top: 20px;
  }

  .empower-section .highlight-text {
    font-size: 36px;
  }

  .trust-section .section-heading {
    font-size: 36px;
  }

  .Process-header h2 {
    font-size: 36px;
    padding: 0px 10px;
    text-align: center;
  }
  .cta-background-shape{
    display: none;
  }
  .stats img{
    display: none;
  }
  .process-bg-image{
    top: 18%;
  }
  .empower-section .highlight-text {
    font-size: 52px;
  }
  .Process-header h2 {
    font-size: 52px;
    padding: 12px 24px;
  }
    .Process-header p {
  font-size: 18px;
  text-align: center;
  color: #505050;
}
}


@media (min-width: 769px) and (max-width: 1024px) {

  .process-section img{
    height: 200px;
  }

  .empower-section {
    margin-top: 28px;
  }

  .empower-section .section-heading {
    font-size: 52px;
    /* lg:text-5xl */
  }

  .trust-section .section-heading {
    font-size: 52px;
  }
  #features {
    display: none;
  }
  .Process-header h2 {
    font-size: 52px;
    padding: 0px 10px;
    text-align: center;
  }
  .cta-background-shape{
    display: none;
  }
  #why-us {
    margin-top: 80px;
  }
  .stats img{
    display: none;
  }
  .process-bg-image{
    top: 18%;
  }
  .empower-section .highlight-text {
    font-size: 52px;
  }


}

/* 🔹 Extra Large Devices (desktops) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .stat-card {
    padding: 1.6rem 0.9rem;
  }

  .stats img {
    left: 23px;
    margin-top: 18px;
    width: 200px;
    height: 275px;
  }
  .Process-header h2 {
    font-size: 52px;
    padding: 0px 10px;
    text-align: center;
  }
  .cta-background-shape{
    display: none;
  }
  #why-us {
    margin-top: 80px;
  }

}

/* 🔹 2XL Screens (large desktops) */
@media (min-width: 1281px) and (max-width: 1536px) {}

/* 🔹 Ultra Wide Screens (TVs, monitors) */
@media (min-width: 1537px) {}