@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif !important;
}
/* Colors */
.text-orange {
  color: #641aaa !important;
}
.btnorange {
  background-color: #641aaa;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(182, 139, 220, 0.3);
  transition: all 0.3s ease;
}
.btnorange:hover {
  color: white;
  background-color: #581497;
  box-shadow: 0 8px 20px rgba(137, 96, 180, 0.465);
}
.btnoutlineorange {
  color: #641aaa;
  border: 2px solid #641aaa;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btnoutlineorange:hover {
  background-color: #eee8ff;
  color: #641aaa;
}
.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(79, 0, 227, 0.3);
}

/* Icons */
.iconorange {
  width: 20px;
  height: 20px;
  color: #dc8bbd;
}

/* Rounded corners & shadows */
.rounded-xl {
  border-radius: 1rem !important;
}
.custom-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 1.5rem;
}
.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Image control */
.object-cover {
  object-fit: cover;
}

/* Responsive width helpers */
.w-sm-auto {
  width: auto !important;
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }
}
/* ===== Mobile (xs: <576px) ===== */
@media (max-width: 575.98px) {
  #hero-pod h2 {
    font-size: 2rem !important;
    line-height: 1.2;
    text-align: center;
  }

  #hero-pod p {
    font-size: 14px;
    text-align: center;
  }

  .btnorange,
  .btnoutlineorange {
    width: 100% !important;
    font-size: 14px;
    padding: 12px 0;
  }

  .row.no-gutters > .col-6 {
    padding: 2px; /* reduce padding for small screens */
  }
}

/* ===== Small Tablets (sm: 576px – 767px) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
  #hero-pod h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    text-align: center;
  }

  #hero-pod p {
    font-size: 15px;
    text-align: center;
  }

  .btnorange,
  .btnoutlineorange {
    width: 100% !important;
    font-size: 15px;
    padding: 14px 0;
  }

  .col-lg-6.d-none.d-lg-block {
    display: block !important;
    margin-top: 20px;
  }

  .row.no-gutters > .col-6 {
    padding: 4px;
  }
}

/* ===== Medium Tablets (md: 768px – 991px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
  #hero-pod h2 {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  #hero-pod p {
    font-size: 15px;
  }

  .btnorange,
  .btnoutlineorange {
    width: auto !important;
    padding: 16px 30px;
    font-size: 15px;
  }

  .col-lg-6.d-none.d-lg-block {
    display: block !important;
  }

  .row.no-gutters > .col-6 {
    padding: 6px;
  }
}

/* Optional: adjust feature icons for small screens */
@media (max-width: 768px) {
  .iconorange {
    width: 16px;
    height: 16px;
  }
  .col-sm-6.mb-1 {
    font-size: 14px;
  }
}

#section-2-integrations {
  padding-top: 2rem;
  padding-bottom: rem;
  font-family: "Caveat", cursive;
}
#section-2-integrations p {
  font-size: 14px;
  font-weight: 500;
  color: #5a6270;
  font-family: "Poppins", sans-serif !important;
}
.btnorange:focus {
  box-shadow: 0 0 0 0.2rem rgba(61, 0, 227, 0.3);
}

.integration-circle {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  max-width: 500px;
  margin: 0 auto;

  /* Apply spin animation only after the initial explosion */
  animation: spin-around 40s linear infinite paused;
}
.integration-circle.rotating {
  /* Play the animation when this class is added by JS */
  animation-play-state: running;
}

/* CSS Keyframes for continuous rotation */
@keyframes spin-around {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.integration-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(229, 231, 235, 0.5);
  z-index: 10;
}
.integration-center img {
  max-width: 90%;
  /* Counter-rotate the center image slightly for a visual effect (optional) */
  animation: counter-spin 40s linear infinite paused;
}
.integration-circle.rotating .integration-center img {
  animation-play-state: running;
}
@keyframes counter-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.logo-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ANIMATION START STATE: Hidden and tiny at center */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  padding: 6px;
  /* Counter-rotate the individual logos to keep them upright */
  animation: counter-spin 40s linear infinite paused;
}
.integration-circle.rotating .logo-icon img {
  animation-play-state: running;
}

.logo-icon:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Final Positions for Explosion End State */
.logo-1.animated {
  top: 0% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1) !important;
  opacity: 1 !important;
}
.logo-2.animated {
  top: 15% !important;
  right: 15% !important;
  transform: translate(0, -50%) scale(1) !important;
  opacity: 1 !important;
}
.logo-3.animated {
  bottom: 15% !important;
  right: 15% !important;
  transform: translate(0, 50%) scale(1) !important;
  opacity: 1 !important;
}
.logo-4.animated {
  bottom: 0% !important;
  left: 50% !important;
  transform: translate(-50%, 50%) scale(1) !important;
  opacity: 1 !important;
}
.logo-5.animated {
  bottom: 15% !important;
  left: 15% !important;
  transform: translate(0, 50%) scale(1) !important;
  opacity: 1 !important;
}
.logo-6.animated {
  top: 15% !important;
  left: 15% !important;
  transform: translate(0, -50%) scale(1) !important;
  opacity: 1 !important;
}
.logo-7.animated {
  top: 50% !important;
  left: 0% !important;
  transform: translate(-50%, -50%) scale(1) !important;
  opacity: 1 !important;
}
.logo-8.animated {
  top: 50% !important;
  right: 0% !important;
  transform: translate(50%, -50%) scale(1) !important;
  opacity: 1 !important;
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  #section-2-integrations {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .col-lg-6 {
    text-align: center;
  }

  .integration-circle {
    max-width: 260px;
    margin: 0 auto;
    padding-bottom: 260px; /* Maintain perfect circle */
  }

  .integration-center {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 0 6px rgba(229, 231, 235, 0.5);
  }

  .logo-icon {
    width: 55px;
    height: 55px;
  }

  .logo-icon img {
    padding: 4px;
  }

  /* Re-Adjust Final Logo Positions */
  .logo-1.animated {
    top: -5% !important;
    left: 50% !important;
  }
  .logo-2.animated {
    top: 10% !important;
    right: 5% !important;
  }
  .logo-3.animated {
    bottom: 10% !important;
    right: 5% !important;
  }
  .logo-4.animated {
    bottom: -5% !important;
    left: 50% !important;
  }
  .logo-5.animated {
    bottom: 10% !important;
    left: 5% !important;
  }
  .logo-6.animated {
    top: 10% !important;
    left: 5% !important;
  }
  .logo-7.animated {
    top: 50% !important;
    left: -5% !important;
  }
  .logo-8.animated {
    top: 50% !important;
    right: -5% !important;
  }

  .btnorange {
    width: 100%;
    margin-top: 20px;
  }
}

/* ✅ Smaller Mobile Screens (Under 450px) */
@media (max-width: 450px) {
  .integration-circle {
    max-width: 220px;
    padding-bottom: 220px;
  }

  .integration-center {
    width: 85px;
    height: 85px;
  }

  .logo-icon {
    width: 45px;
    height: 45px;
  }

  .logo-icon img {
    padding: 3px;
  }
}

.benefit-items p {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.icon-circles {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circles svg {
  color: #6c2bd9; /* Purple */
  width: 30px;
  height: 30px;
}

/* Better spacing on mobile */
@media (max-width: 576px) {
  .benefit-item {
    padding-right: 10px;
  }
  .icon-circles svg {
    color: #6c2bd9; /* Purple */
    width: 20px;
    height: 20px;
  }
}

.stocktake-image-wrapper img {
  border-radius: 1rem; /* rounded-2xl */
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

/* Text Section */
.stocktake-text p.section-subtitle {
  font-weight: 900;
  font-size: 2.5rem;
  font-family: "Caveat", cursive;
  color: #6530ae; /* red-600 */
  margin-bottom: 0.5rem;
}

.stocktake-text h4 {
  font-weight: 900 !important;
  color: #111827;
  font-family: "Caveat", cursive;
  line-height: 1.2;
  font-size: 4rem;
}

.stocktake-text p {
  color: #4b5563;
  font-size: 15px;
  margin-top: 1rem;
}

.stocktake-text p.font-medium {
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .stocktake-image-wrapper {
    margin-bottom: 3rem;
  }

  .stocktake-text h4 {
    font-size: 2rem;
  }
}

#section-7-grn-feature {
  background-color: #f9fafb; /* gray-50 */
  border-top: 1px solid #e5e7eb;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ===== Text Column ===== */
.grn-text p.section-subtitle {
  font-weight: 900;
  font-size: 2.5rem;
  font-family: "Caveat", cursive;
  color: #6530ae; /* red-600 */
  margin-bottom: 0.5rem;
}

.grn-text h4 {
  font-weight: 900;
  font-family: "Caveat", cursive;
  color: #111827;
  line-height: 1.2;
  font-size: 4rem;
}

.grn-text p {
  color: #4b5563;
  font-size: 15px;
  margin-top: 1rem;
}

/* ===== Buttons ===== */
.grn-btn {
  background-color: #6334ad;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  border: none;
  border-radius: 0.75rem;
  border: none;
  padding: 0.8rem 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.grn-border-btn {
  background-color: #fff;
  color: #6334ad;
  border: 2px solid #6334ad;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0.75rem;
  padding: 0.8rem 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.grn-btn:hover,
.grn-border-btn:hover {
  background-color: #482186;
  color: white;
}

.grn-btn:focus,
.grn-border-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(117, 68, 239, 0.5);
}

.grn-image-wrapper img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  outline: 4px solid rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .grn-image-wrapper {
    margin-top: 3rem;
  }

  .grn-text h4 {
    font-size: 2rem;
  }
}

/* ===== Section Styling ===== */
#section-8-stockpick-feature {
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* ===== Text Column ===== */
.stockpick-text p.section-subtitle {
  text-transform: uppercase;
  font-weight: 700;
  color: #77354d; /* red-600 */
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.stockpick-text h4 {
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  font-size: 2.5rem;
}

.stockpick-text p {
  color: #4b5563;
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* ===== Buttons ===== */
.stockpick-btn {
  background-color: #77354d;
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  padding: 0.8rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stockpick-btn:hover {
  background-color: #60283c;
  transform: scale(1.02);
}

.stockpick-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(239, 68, 188, 0.5);
}

/* ===== Image Column ===== */
.stockpick-image-wrapper {
  position: relative;
  background-color: #fee2fa; /* red-50 */
  border-radius: 1.5rem; /* rounded-3xl */
  box-shadow: 0 20px 40px rgba(254, 202, 202, 0.5);
  padding: 2rem;
}

.stockpick-image-wrapper img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  outline: 4px solid rgba(255, 255, 255, 0.5);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .stockpick-image-wrapper {
    margin-top: 3rem;
  }

  .stockpick-text h4 {
    font-size: 2rem;
  }
}

/* shodofy-features-section  */

.shodofy-features-section .ops-heading {
  font-family: "Caveat", cursive;
  font-size: 3rem;
  font-weight: 700;
  margin: auto;
}

.shodofy-features-section h2 {
  text-align: left;
  margin-bottom: 2.5rem !important;
}

.heading-bg-wrapper {
  display: inline-block;
  padding: 10px 40px 10px 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  transform: translateX(10%);
}

.shodofy-features-section .purple-text {
  color: #641aaa;
}

.feature-list {
  border-radius: 20px;
  padding-left: 15px;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.feature-list li {
  margin-bottom: 15px;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  color: #444;
  transition: color 0.2s;
}

.feature-list li:hover {
  color: #000;
  background-color: #e7d0ff;
}

.feature-list li.active {
  color: #fff;
  background-color: #7a3cff;
}

.feature-card-wrapper {
  position: relative;
  min-height: 250px;
}

.feature-card {
  display: none !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  min-height: 250px;
  overflow: hidden;
}

.feature-card.active {
  display: flex !important;
  opacity: 1;
}

.icon-shape-wrapper {
  position: relative;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
}

.purple-wave-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7a3cff;
  border-top-right-radius: 50% 50%;
  border-bottom-right-radius: 50% 50%;
  z-index: 1;
}

.feature-icon {
  position: absolute;
  left: 80px;
  /* Distance from the left edge */
  top: 75%;
  transform: translateY(-50%);
  /* Adjust to true vertical center */
  z-index: 3;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 35px;
  color: #7a3cff;
}

.card-content {
  flex-grow: 1;
  z-index: 2;
}

.card-title {
  font-family: "poppins", cursive;
  font-size: 30px;
  color: #7a3cff;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 991.98px) {
  .feature-list {
    border-left: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .feature-list li {
    display: inline-block;
    margin: 0 10px;
  }

  .col-lg-4 {
    justify-content: center !important;
    padding-right: 15px !important;
  }

  .shodofy-features-section h2 {
    text-align: center;
  }

  .heading-bg-wrapper {
    transform: none;
    border-radius: 10px;
    padding: 10px 20px;
  }
}

/* Remove layout styling from individual buttons */
.custom-btn {
  margin: 10px 10px 0 0;
  font-weight: 600;
  border-radius: 5px;
  text-align: center;
  width: auto;
}

/* Button Colors */
.btn-purple {
  background: #5314b0;
  color: white;
}

.btn-outline-purple {
  border: 2px solid #5314b0;
  color: #5314b0;
}

.btn-outline-purple:hover {
  background: #5314b0;
  color: #fff;
}

/* ✅ Responsive Fix */
@media (max-width: 767px) {
  .btn-container {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 12px !important;
  }

  .btn-container a {
    width: 90% !important; /* Prevents buttons from going outside */
  }
}

/* ✅ Mobile View Enhancements (Clean + Fixed) */
@media (max-width: 767.98px) {
  .shodofy-features-section {
    padding: 40px 10px;
  }

  .shodofy-features-section h2 {
    text-align: center !important;
  }

  .heading-bg-wrapper {
    transform: none !important;
    padding: 8px 20px !important;
    font-size: 26px !important;
    border-radius: 10px;
    text-align: center;
    display: inline-block;
  }

  /* ✅ Show all tabs properly - Horizontal scroll */
  .feature-list {
    padding: 0 !important;
    display: flex !important;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
  }

  .feature-list li {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    background: #f4e9ff;
    flex-shrink: 0;
  }

  .feature-list li.active {
    background: #7a3cff;
    color: white !important;
  }

  /* ✅ Feature Card Rendering */
  .feature-card-wrapper {
    min-height: auto;
  }

  .feature-card {
    position: relative !important;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
  }

  .purple-wave-shape {
    width: 100% !important;
    height: 150px !important;
    border-radius: 0 0 80px 80px !important;
  }

  /* ✅ Icon reposition properly */
  .icon-shape-wrapper {
    width: 100%;
    justify-content: center;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    left: 50% !important;
    top: 10px !important;
    transform: translateX(-50%) !important;
  }

  /* ✅ Typography adjustments */
  .card-content {
    margin-top: 70px; /* Space below icon */
    text-align: center;
  }

  .card-title {
    font-size: 20px !important;
    color: #ffffff;
  }

  .card-text {
    margin-top: 30px;
    font-size: 15px !important;
    padding: 0 12px;
  }

}

/* Section Heading */
.service-ops-section .ops-heading {
  font-family: "Caveat", cursive;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-ops-section .ops-heading span {
  color: #641aaa;
  font-style: italic;
}

/* Main Rounded Container */
.rounded-box {
  background: #e7ddf6;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding: 25px 10px;
}

/* Icon Wrapper Spacing */
.icon-box-wrapper {
  padding: 12px 20px;
}

/* Icon Box Styling */
.icon-box {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

/* Purple BG Reveal on Hover */
.icon-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7a3cff;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Icon Styles */
.icon-box svg {
  font-size: 28px;
  color: #000;
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Title (hidden initially) */
.icon-title {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 14px);
  /* hidden below */
  opacity: 0;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  white-space: wrap;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

/* Hover Animation */

.icon-box:hover::before {
  opacity: 1;
}

.icon-box:hover svg {
  transform: translateY(-18px);
}
.icon-box:hover svg path {
  fill: #fff;
}

.icon-box:hover .icon-title {
  transform: translate(-50%, -2px);
  /* slide into view */
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box i {
    font-size: 24px;
  }

  .icon-title {
    font-size: 11px;
  }
}

@keyframes highlight-progress {
  0% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}

.purple-line {
  max-width: 120px;
  height: 5px;
  border-radius: 10px;
  margin: 20px auto 0;

  background-image: linear-gradient(to right, #5d30bd 50%, #c9b0ff 50%);

  background-size: 240% 100%;

  background-position: left;
}

.purple-line.is-progressing {
  animation: highlight-progress 3s linear forwards;
}

.benefit-card {
  background: #e4e4e4;
  padding: 60px 30px 40px;
  border-radius: 20px;
  max-width: 650px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: border-color 0.4s ease;
}

.benefit-icon {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: #5d30bd;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 0 0 7px rgba(122, 60, 255, 0.3);
}

.carousel-item {
  transition: transform 0.7s ease-in-out;
}

.benefit-card h5 {
  margin-top: 0;
  color: #242424;
  font-weight: 700;
  font-size: 22px;
}

.benefit-card p {
  color: #555;
  font-size: 16px;
  margin: 10px auto;
}

@media (max-width: 576px) {

  .benefit-card {
    max-width: 100%;
    padding: 40px 18px 30px;
    border-radius: 15px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    top: -30px;
    font-size: 22px;
    box-shadow: 0 0 0 5px rgba(122, 60, 255, 0.3);
  }

  .benefit-card h5 {
    font-size: 18px;
  }

  .benefit-card p {
    font-size: 14px;
    margin: 8px auto;
    padding: 0 10px;
  }

  .purple-line {
    width: 90px;
    height: 4px;
    margin-top: 15px;
  }

  .benefit-slider-section {
    padding: 30px 5px !important;
  }

  #benefitContentCarousel {
    margin-top: 10px;
  }
}


.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";
}
@media (max-width: 576px) {

  /* Reduce padding & improve spacing */
  .faq-question {
    font-size: 15px;
    padding: 10px 0px 10px 20px;
  }

  /* Reduce white icon box size */
  .icon-circle {
    width: 42px;
    height: 42px;
    border-top-left-radius: 80%;
    border-bottom-left-radius: 25%;
  }

  .icon-circle i::before {
    font-size: 14px;
  }

  /* Answer text adjustments */
  .faq-answer {
    font-size: 14px;
    padding: 14px 16px;
  }

  /* Make items take full width properly */
  .faq-item {
    border-radius: 12px;
    margin-bottom: 15px;
  }

  /* Center heading properly with smaller font */
  .Process-header h2 {
    font-size: 22px;
  }

  .Process-header p {
    font-size: 14px;
  }
}




.cta-box {
  background: #f0ecfb;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  min-height: 180px;
}

.cta-title {
  font-weight: 700;
  font-size: 3rem;
  color: #222;
  line-height: 1.3;
}

.cta-title .highlight {
  color: #7a3cff;
}

.cta-subtitle {
  color: #555;
  font-size: 18px;
  margin-top: 8px;
}

.cta-btn {
  background: #7a3cff;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0px 4px 10px rgba(122, 60, 255, 0.3);
}

.cta-btn:hover {
  background: #5f2fd1;
  color: #fff;
}

.cta-icon-img {
  width: 150px;
}

.cta-phone-img {
  width: 220px;
}
/* ✅ Tablet View (<= 992px) */
@media (max-width: 992px) {
  .cta-box {
    justify-content: center !important;
    text-align: center;
    padding: 30px 15px !important;
  }

  .cta-left-icon,
  .cta-right-img {
    margin-bottom: 15px;
  }
}

/* ✅ Mobile View (<= 767px) */
@media (max-width: 767px) {
  .cta-box {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    padding: 40px 20px !important;
    border-radius: 40px;
  }

  .cta-left-icon,
  .cta-right-img {
    width: 100%;
    text-align: center !important;
    margin-bottom: 15px;
  }

  .cta-content {
    width: 100%;
    text-align: center !important;
  }

  .cta-phone-img {
    width: 180px !important;
    margin: 10px auto;
  }

  .cta-icon-img {
    width: 85px !important;
  }

  .cta-title {
    font-size: 22px !important;
  }

  .cta-subtitle {
    font-size: 14px !important;
  }

  .cta-btn {
    width: auto;
    text-align: center;
  }
}
