body {
      font-family: "Poppins", sans-serif!important;

  background-color: #ffffff;
}
.elegant-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}



.cta-1btn, .cta-2btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
}

/* Green gradient button */
.cta-1btn {
    background: linear-gradient(90deg, #6739B7, #6739B7);
    text-decoration: none;
}
.cta-1btn:hover {
    background: linear-gradient(90deg, #502a92, #502a92);
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(49, 15, 48, 0.5);
}

/* Orange-red gradient button */
.cta-2btn{
    border: 2px solid #6739B7;
    color: #6739B7;
}
.cta-2btn:hover {
    background: linear-gradient(90deg, #6739B7, #6739B7);
    text-decoration: none;
    color: white;
    box-shadow: 0 6px 20px rgba(132, 95, 255, 0.5);
}
/* Extra small devices (phones <576px) */
@media (max-width: 575.98px) {
    .bg-gradient-hero h1.display-4 {
        font-size: 1.8rem; /* smaller heading */
    }

    .bg-gradient-hero p {
        font-size: 0.9rem; /* smaller paragraph */
    }

.cta-1btn, .cta-2btn {
  width: 250px;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  margin: 0px auto;
}
    .headings{
        font-size: 24px !important;
        
    }
}

/* Small devices (576px–767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .bg-gradient-hero h1.display-4 {
        font-size: 2.4rem;
    }

    .bg-gradient-hero p {
        font-size: 1rem;
    }

    .cta-1btn, .cta-2btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
}

/* Medium devices (768px–991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .bg-gradient-hero h1.display-4 {
        font-size: 3rem;
    }

    .bg-gradient-hero p {
        font-size: 1.1rem;
    }

    .cta-1btn, .cta-2btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.5rem;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .bg-gradient-hero h1.display-4 {
        font-size: 3.5rem; /* default heading size */
    }

    .bg-gradient-hero p {
        font-size: 1.25rem; /* default paragraph size */
    }

    .cta-1btn, .cta-2btn {
        font-size: 1rem; /* default button size */
        padding: 0.75rem 1.75rem;
    }
}
/* Logo Carousel Animation */
.headings{
    font-size: 2.5rem;
    font-weight: 800;
    font-family: "Caveat", cursive;
}
.logos-slide {
  display: flex;
  animation: slide 30s linear infinite;
}
.logos-slide img {
  height: 50px;
  margin: 0 40px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



.transition-hover1 {
    height: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 2px 3px 20px rgba(89, 46, 86, 0.279);
}

.transition-hover1:hover {
    transform: scale(1.05);
    box-shadow: 2px 3px 10px rgba(96, 59, 93, 0.279);
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .transition-hover1 {
        height: auto; /* smaller height for mobile */
    }
    
    .transition-hover1:hover {
        transform: scale(1.02); /* smaller scale effect on mobile */
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.35); /* softer shadow */
    }
}




.feature-cards {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.feature-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.feature-cards p{
    font-size: 15px;
}
    .bg-purples { 
        background-color: #dfcef8; 
        color: #6739B7; /* dark purple for icons/text */ 
    }
    .bg-successs { 
        background-color: #dfcef8; 
        color: #6739B7; /* green */ 
    }
    .bg-warnings { 
        background-color: #dfcef8; 
        color: #6739B7; /* yellow */ 
    }
    .bg-dangers { 
        background-color: #dfcef8; 
        color: #6739B7; /* red */ 
    }
    .bg-infos { 
        background-color: #dfcef8; 
        color: #6739B7; /* blue */ 
    }
    .bg-oranges { 
        background-color: #dfcef8; 
        color: #6739B7; /* orange */ 
    }
    .bg-teals { 
        background-color: #dfcef8; 
        color: #6739B7; /* teal */ 
    }
    .bg-roses { 
        background-color: #dfcef8; 
        color: #6739B7; /* rose/pink */ 
    }
    .bg-cyans { 
        background-color: #dfcef8; 
        color: #6739B7; /* cyan */ 
    }
    .bg-indigos { 
        background-color: #dfcef8; 
        color: #6739B7; /* indigo */ 
    }
    .bg-limes { 
        background-color: #dfcef8; 
        color: #6739B7; /* lime green */ 
    }

.icon svg {
  width: 28px;
  height: 28px;
}

/* Common styles for both links */
.viewmore, .discover {
  
    font-weight: 600;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

/* View More button */
.viewmore {
    color: #fff;
    background-color:#6739B7;
    border-radius: 10px;
}

.viewmore:hover {
    background-color: #572e9d;
    color: #ffffff;
    text-decoration: none;
}

/* Discover button */
.discover {
    color: #6739B7;
    border:1px solid #6739B7;
    border-radius: 10px;
}

.discover:hover {
    background-color: #6739B7;
    color: #ffffff;
    text-decoration: none;
}

/* Optional spacing */
.mr-2 {
    margin-right: 0.5rem;
}
.cardss{
  padding: 30px;
  border-bottom: 3px solid #9675ce;
  background: linear-gradient(to bottom,white,#a78cd5c4);
  border-radius: 20px;
}
/* Default (Desktop) */
.feature-details-sections .row {
  display: flex;
  align-items: start;
}

.feature-details-sections .col-lg-6 img {
  max-width: 100%;
  height: auto;
}

/* Tablet (768px – 991px) */
@media (max-width: 991.98px) {
  .viewmore {
  margin-left:0px;
}
  .feature-details-sections .row {
    flex-direction: column-reverse; /* text first, image below */
    text-align: center;
  }

  .feature-details-sections .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .feature-details-sections .col-lg-6 img {
    transform: scale(1.2);   /* smaller scale for tablet */
    max-width: 90%;
  }

  .feature-details-sections .col-lg-6:first-child {
    margin-bottom: 1.5rem;
  }
}@media (max-width: 767.98px) {
  .feature-details-sections .row {
    flex-direction: column; /* stack full */
  }

  .feature-details-sections .col-lg-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: start;
    margin-bottom: 20px;
  }

  .feature-details-sections .col-lg-6 img {
    transform: scale(1);   /* reset */
    width: 100%;
    max-width: 100%;
  }

  /* Mobile features grid fix */
  .features-grid .col-6 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    display: flex !important;       
    flex-direction: row !important;  
    align-items: center !important;  
    justify-content: flex-start;
    gap: 8px;                     
    margin-bottom: 10px;
  }

  .features-grid svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }

  .features-grid span {
    display: inline-block;
    text-align: left;
  }
  .viewmore {
  margin-left: 0px
}
}


/* Custom CSS for the trial card */
.trial-card {
    border-radius: 1rem; /* rounded-xl */
    padding: 1.5rem; /* p-4 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.text-red {
    color: #6739B7; /* Bootstrap red */
}

.btn-red {
    background-color: #6739B7;
    color: #fff;
    border-radius: 50px; /* rounded-full */
    padding: 0.75rem 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-red:hover {
    background-color: #572d9f;
    transform: scale(1.05);
    color: #fff;
}

.card-icon {
  /* Styles for the new "outstanding" icon */
  width: 4rem;
  height: 4rem;
  background: linear-gradient(45deg, #6b46c1, #805ad5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
}
.accordion-item {
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease-in-out;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  background-color: #f9fafb;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.accordion-header:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
}
.accordion-header.active {
  background-color: #e5e7eb;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}
.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}
.accordion-content.open {
  max-height: 200px; /* A safe, generous height to accommodate content */
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.accordion-content p {
  color: #4a5568;
  line-height: 1.6;
}
.accordion-header .arrow {
  transition: transform 0.3s ease-in-out;
}
.accordion-header.active .arrow {
  transform: rotate(180deg);
}

.rounded-top-custom {
    border-top-left-radius: 50% 100px;
    border-top-right-radius: 50% 100px;
}

.btn-white {
    border:none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    background-color: white;
    color: #6739B7;
    text-decoration: none;
    cursor: pointer;
}

.btn-white:hover {
  text-decoration: none;
  color: #6739B7;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
}
.btn-outline-lightt{
    border:2px solid white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    background-color: transparent;
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.btn-outline-lightt:hover {
    background-color: white;
    text-decoration: none;
    color: #562e9b; /* Bootstrap green shade */
     box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
}
/* Tablet & Smaller Laptops (<= 991px) */
@media (max-width: 991px) {
  .text-para p:first-child {
    font-size: 24px !important;
  }
  .text-para p:last-child {
    font-size: 2.5rem !important;
  }
  .btn-white,
  .btn-outline-lightt {
    font-size: 18px;
    padding: 12px 24px;
  }
}

/* Mobile Landscape & Small Tablets (<= 767px) */
@media (max-width: 767px) {
  .text-para p:first-child {
    font-size: 20px !important;
  }
  .text-para p:last-child {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  .btn-white,
  .btn-outline-lightt{
    width: 100%;       /* Full width buttons on small screens */
    text-align: center;
    margin-bottom: 10px;
  }
  .d-flex {
    flex-direction: column !important; /* Stack text and buttons */
    text-align: center;
  }
}

/* Extra Small Devices (<= 480px) */
@media (max-width: 480px) {
  .text-para p:first-child {
    font-size: 18px !important;
  }
  .text-para p:last-child {
    font-size: 1.8rem !important;
  }

  .btn-white,
  .btn-outline-lightt {
    text-align: center;
    font-size: 16px;
    padding: 10px 18px;
  }
}

.logo-carousel {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
    background: #ffffff;
}

.logo-wrappers {
  
    display: flex; 
    align-items: stretch;
    will-change: transform;
    width: max-content; 
}


.logo-card {
    flex: 0 0 200px;
    height: auto;
    margin: 0 12px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-sizing: border-box;
    overflow: hidden;
  width: 100%;
  background: #fff;
}

.logo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo-icon {
    width: 100%;
    height: auto;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-icon .enlarged-logo {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo-card {
        flex: 0 0 140px;
        margin: 0 8px;
        padding: 12px;
    }
}



.logo-track {
  display: flex;
  width: calc(200px * 10); /* 10 logos total (5 + 5 duplicate) */
  animation: scrollLeft 20s linear infinite;
}

.logo-card {
  flex: 0 0 200px; /* each logo fixed width */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Smooth continuous scroll */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* shift by half (5 logos width) */
}



.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;
  }
}



.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: 3rem;
}

.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: 3rem;
}

.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;
  }
}






.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;
  }
}

