.hero {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

/* Full-width wrapper so the bar touches both ends of the screen */
.services-stats-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Stats strip — full width + only bottom curved */
.services-stats-strip {
  width: 100%;
  background: #457788;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.services-stat-box {
  text-align: center;
}

.services-stat-box h3 {
  font-size: 38px;
  margin: 0;
  color: white;
  font-weight: 100;
  margin-top:30px;
}

.services-stat-box p {
  font-size: 18px;
  margin-top: 6px;
  color: white;
  margin-bottom:30px;
}



/* ===== SERVICE OVERVIEW SECTION ===== */

.service-overview-section {
  width: 100%;
  max-width: 1200px;
   margin: 30px auto 0px;
  padding: 0 20px;
  text-align: center;
}

.so-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgb(62, 70, 73);
}

.so-desc {
  max-width: 850px;
  margin: 0 auto 20px auto;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

.so-img {
  width: 100%;
  height: 160px;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden; /* 🔒 hides zoom overflow */
}

.so-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transform: scale(1);
  transition: transform 0.6s ease; /* smooth zoom */
}

/* 🔥 Zoom on hover */
.so-img:hover img {
  transform: scale(1.12);
}

/* Grid Layout */
.so-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  justify-content: center;
}

.so-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.so-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Card */
.so-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  /* remove padding so image can touch edges */
  box-shadow: 0 0 0 1px #e6e6e6 inset;
  transition: all .3s ease;
  overflow: hidden;
  height: 100%;
  /* ensures inner radius clipping */
}

/* Image Placeholder */
.so-img {
  width: 100%;
  height: 230px;
  background: #e8eef4;
  border-radius: 18px 18px 18px 18px;
  /* rounded only at top */
  margin-bottom: 20px;
}

/* Text */
.so-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgb(62, 70, 73);
}

.so-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-left: 5px;
  margin-right: 5px;
}



/* ================= FEATURE SECTION ================= */

.services-feature-section {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

/* Title */
.sf-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
   color: rgb(62, 70, 73);
}

.sf-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Top layout */
.sf-top {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 80px;
}

.accordion-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

/* ---------------- BUTTON STYLE ---------------- */
.acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 18px;
  padding: 15px 0;
  font-weight: 600;
  cursor: pointer;
   color: rgb(62, 70, 73);
  transition: 0.3s;
  position: relative;
  padding-right: 40px;
  padding-right: 40px;
  /* room for arrow */
}

/* Arrow inside button */
.acc-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.3s ease;
}

/* Rotate arrow UP when active */
.acc-item.active .acc-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Active title color */
.acc-item.active .acc-btn {
  color: #000;
}

/* ---------------- CONTENT BOX ---------------- */
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0;
}

.acc-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

/* ---------------- ROW: H3 + ICON ---------------- */
.acc-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 10px;
}

/* Green H3 */
.acc-title-row h3 {
  color: #7bb72f;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* Icon bubble */
.acc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.acc-icon img {
  width: 20px;
}

/* FORCE image to always fill wrapper */
.sf-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
.sf-img {
  width: 540px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  flex-shrink: 0;
}



.sf-img img {
  transform: scale(1);
  transition: transform 0.6s ease;
}

.sf-img:hover img {
  transform: scale(1.12);
}


/* Safe encoded FAQ arrow */
.acc-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 18px;
  height: 12px;
  transition: 0.3s ease;
  background-repeat: no-repeat;

  /* SAFE URL-ENCODED SVG (won't break VS Code) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 18 10'%3E%3Cpath d='M1 1l8 8 8-8' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.acc-item.active .acc-btn::after {
  transform: translateY(-50%) rotate(180deg);
}




/* Section Title #2 */
.sf-title2 {
  margin-top: 30px;
  font-size: 60px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.sf-subtitle2 {
  font-size: 15px;
  color: #666;
  margin: 0 auto 50px;
  max-width: 700px;
}

/* Cards Row */
.sf-card-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.sf-card {
  width: 300px;
  background: #fff;
  border-radius: 22px;
  padding-bottom: 20px;
  box-shadow: 0 0 0 1px #e6e6e6 inset;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.sf-card:hover {
  transform: translateY(-5px);
}

/* Top Image */
.sf-card-img img {
  width: 100%;
  height: 200px;
  border-radius: 22px 22px 0 0;
  object-fit: cover;
}

/* Icon in bubble */
.sf-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
}

.sf-card-icon img {
  width: 26px;
}

/* Card text */
.sf-card h4 {
  font-size: 18px;
  margin-top: 35px;
  font-weight: 600;
  color: #000;
}

.sf-card p {
  font-size: 14px;
  color: #666;
  padding: 0 20px;
  line-height: 1.5;
}


/* Section wrapper */
.usecases-section {
  width: 100%;
  max-width: 1150px;
  margin: 60px auto 60px;
  text-align: center;
  margin-top: 0%;
}

/* Title */
.uc-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
   margin-top: 30px;
  color: #3e4649;
}

/* Grid layout */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card container */
.uc-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* Card image */
.uc-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

/* Card container */
.uc-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* Image */
.uc-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* GRADIENT OVERLAY */
.uc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.1) 70%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

/* Text overlay */
.uc-overlay {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  z-index: 2;
  /* ABOVE overlay */
  color: #fff;
}

/* Title */
.uc-overlay h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Subtitle */
.uc-overlay p {
  margin-top: 4px;
  font-size: 15px;
  opacity: 0.9;
}

/* Image default state */
.uc-card img {
  transform: scale(1);
  transition: transform 0.6s ease;
}

/* Zoom on hover */
.uc-card:hover img {
  transform: scale(1.12);
}


/* RIGHT IMAGE */
.service-hero-img img {
  width: 480px;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}



/* ================= RESULTS WRAPPER ================= */
.results-wrapper {
  width: 100%;
  padding-top: 0px;
  margin-top:20px;
  text-align: center;
    max-height: 350px; 
}

/* MAIN TOP TITLE */
.results-main-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #3e4649;
}

/* ================= DARK STRIP ================= */
.dark-strip {
  background: #083C4A;
  padding: 25px 0;
  border-radius: 20px;
}

.strip-box h3 {
  font-size: 35px;
  color: #fff;
  font-weight: 600;
}

.strip-box p {
  color: #C8DCE0;
  margin-top: 5px;
  font-size: 15px;
}

/* ================= RESULTS SECTION ================= */
.results-section {
  margin-top: 80px;
  margin-bottom:15%;
}

.results-heading {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #3e4649;
  margin-bottom: 60px;
}

/* ================= CARD WRAPPER ================= */
.results-card-wrapper {
  display: flex;
  justify-content: center;
  max-height: 450px;          /* 🔑 LOCK HEIGHT */

}

.results-card {
  width: 100%;
  max-width: 1100px;
  min-height: 420px;              /* 🔑 LOCK HEIGHT */
  display: flex;
  gap: 40px;
  padding: 40px;

  background: #E7F1F5;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ================= LEFT CARD ================= */
.left-card {
  width: 50%;
  padding: 40px;
  position: relative;
  border-radius: 22px;
   display: flex;              /* 🔑 */
  flex-direction: column;
}

.badge-label {
  background: #D6E6EB;
  padding: 8px 22px;
  border-radius: 26px;
  font-size: 14px;
  color: #000;

  position: absolute;
  top: -40px;
  left: 40px;
  transform: translateY(-50%);
}

/* STATS */
.stats-row {
  display: flex;
  gap: 60px;
  margin-bottom: 25px;
   min-height: 120px;  
}

.stats-row h1 {
  font-size: 52px;
  font-weight: 700;
  margin: 0;
  color: #8BC63E;
}

.stats-row p {
  margin-top: 5px;
  font-size: 15px;
  color: #5d6967;
}

/* LEFT DESCRIPTION */
.left-desc {
  margin-top: 22px;
  font-size: 16px;
  color: #000;
  line-height: 1.55;
  width: 92%;
  height: 120px;           /* 🔑 FIXED AREA */
  overflow-y: auto;           /* 🔑 SCROLL */
  padding-right: 8px;
  flex-grow: 1;   
}
.left-desc::-webkit-scrollbar {
  width: 4px;
}

.left-desc::-webkit-scrollbar-thumb {
  background: #cfd8dc;
  border-radius: 10px;
}


/* PROFILE */
.profile {
  display: flex;
  align-items: center;
  gap: 12px;
 
   margin-top: auto;   
}

.profile img {
  width: 78px;
  max-height: 58px;
}

.profile h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.profile p {
  font-size: 13px;
  margin: 0;
  color: #777;
}

/* ================= RIGHT CARD ================= */
.right-card {
  width: 50%;
  padding: 25px 0 0 0;
  background: #fff;
  position: relative;

  display: flex;                 /* 🔑 FLEX COLUMN */
  flex-direction: column;
}

/* TABS */
.tab-row {
  display: flex;
  gap: 24px;
  margin: 0 0 18px 20px;
}

.tab {
  background: none;
  border: none;
  padding: 6px 4px;
  font-size: 17px;
  color: #777;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.tab.active {
  font-weight: 700;
  color: #0B3E57;
  border-bottom: 2px solid #0B5379;
}

/* ================= SCROLLABLE RIGHT DESCRIPTION ================= */
.right-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0 20px 18px 20px;

  max-height: 80px;              /* 🔑 FIXED TEXT AREA */
  overflow-y: auto;
  padding-right: 8px;
  flex-grow: 1;                  /* 🔑 fills available space */
}

/* Scrollbar */
.right-desc::-webkit-scrollbar {
  width: 4px;
}

.right-desc::-webkit-scrollbar-thumb {
  background: #cfd8dc;
  border-radius: 10px;
}

.right-desc::-webkit-scrollbar-track {
  background: transparent;
}

/* ================= IMAGE (LOCKED) ================= */
.right-img {
  flex-shrink: 0;                /* 🔑 PREVENT PUSH */
}

.right-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: -150px;

  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* ================= MOBILE IMAGE ================= */
.results-mobile-image {
  display: none;
}
/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 0px 0 20px;
}

.faq-title {
  font-size: 36px !important ;
  font-weight: 600;
  color: #3e4649;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
}

/* Accordion Styling */
.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 8px;
  background: transparent;
}



/* Question Button */
 .faq-accordion .accordion-button {
  background: transparent !important;
  color: #3e4649;
  font-size: 18px;
  padding: 22px 5px;
  box-shadow: none !important;
  font-weight: 600;
}

/* Remove default arrow */
.faq-accordion .accordion-button::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="9" viewBox="0 0 18 10"><path d="M1 1l8 8 8-8" stroke="%23000000" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
}

/* When opened – arrow rotates */
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  
  
}
/* Accordion heading color when OPEN */
.faq-accordion .accordion-button:not(.collapsed) {
  color: #000 !important;   /* black when open */
}


/* Body text */
.faq-accordion .accordion-body {
  font-size: 15px;
  color: #666;
  padding: 0 5px 20px;
  max-width: 700px;
  text-align: left;
}

/* ===========================
   CUSTOMER CONSULTATION SECTION
=========================== */

.consult-wrapper {
  margin-top: 60px;
  margin-bottom: 80px;
  max-width: 1150px;
  /* tighter layout like Figma */
  padding: 0 20px;
}

/* Reduce gap between left & right sections */
.left-consult {
  padding-right: 20px;
}

.right-consult {
  padding-left: 20px;
}

.consult-title {
  font-size: 38px;
  font-weight: 600;
  color:#3e4649;
  line-height: 1.2;
  margin-bottom: 25px;
  margin-top: 10%;
}

.consult-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.consult-list li {
  font-size: 15px;
  color: #3e4649;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.consult-list img {
  width: 20px;
}

.consult-divider {
  border: none;
  height: 1px;
  background: #e2e2e2;
  margin: 25px 0;
}

.consult-quote {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom:20px;
}

.quote-icon {
  width: 22px;
}

.consult-quote p {
  font-size: 15px;
  color: #3e4649;
  margin: 0;
  max-width: 380px;
}

.consult-profile {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-logo {
  width: 55px;
}

.consult-profile h5 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.consult-profile p {
  font-size: 14px;
  margin-top: 2px;
  color: #666;
}


/* -------------------- FORM BOX -------------------- */

.consult-form-box {
  background: #0c3c45;
  padding: 35px;
  border-radius: 28px;
  color: #fff;
  width: 100%;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.form-field {
  padding: 12px 14px;
  border-radius: 10px !important;
  border: none !important;
  background: #fff;
  font-size: 14px;
  height: 48px;
  /* consistent form height */
}

textarea.form-field {
  height: 90px;
  resize: none;
}

/* Submit button */
.consult-btn {
  width: 100%;
  background: transparent;
  border: 2px solid #9fc24a;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: 0.3s ease;
}


.consult-btn:hover {
  background: #99BD25 !important;
  color: #fff;
  text-decoration: none;
  border: 2px solid #99BD25;
}

/* CLICK / ACTIVE */
.consult-btn:active,
.consult-btn:focus {
  background: transparent;
  color: #fff;
  outline: none;
  box-shadow: none;
  border: 2px solid #99BD25 !important;
}


.btn-arrow {
  width: 16px;
  height: auto;
}

/* HIDE DOTS ON DESKTOP */
@media (min-width: 769px) {
  .services-stats-dots {
    display: none !important;
  }
}

.results-mobile-image {
  display: none;
}

@media (max-width: 768px) {

/* STATS SECTION ROUNDING */
  .services-stats-section {
    margin-top: -100px !important;
    padding: 30px 0 40px !important;
    border-radius: 35px 35px 0 0 !important;
     justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */

  }

  /* SERVICES STATS STRIP – MOBILE */
  .services-stats-strip {
    display: flex !important;
    overflow-x: auto !important;
    /* allow swipe */
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    /* Firefox hide */
  }

  .services-stats-strip::-webkit-scrollbar {
    display: none !important;
    /* Chrome, Safari, Edge hide */
  }

.services-stat-box h3 {
  font-size: 36px;   /* reduce size (try 30–40px) */
  font-weight: 500;
  margin-bottom: 5px;
  margin-top:30px;
  
}
  .services-stat-box {
    min-width: 100% !important;
    /* ONE PER PAGE */
    scroll-snap-align: center !important;
    text-align: center;
    padding: 30px 20px !important;
    color: white !important;
    margin-top: 40px !important;
  }

  /* DOTS */
  .services-stats-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    margin-bottom: 0%;
  }

  .services-stats-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfd4d8;
  }

  .services-stats-dots button.active {
    background: #4f899c;
  }

  
  /* Section spacing */
  .service-overview-section {
    padding: 20px 16px !important;
    text-align: center !important;
    margin-top: 0%;
  }

  /* Title */
  .so-title {
    font-size: 30px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    font-weight: 600;
    margin-top: 10px;
    color:#3e4649;;
  }

  /* Description */
  .so-desc {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
    padding: 0 6px !important;
  }

  /* Grid → single column */
  .so-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Card */
  .so-card {
    width: 100% !important;
    border-radius: 16px !important;
    padding: 16px !important;
    text-align: left !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
  }

  /* Image placeholder */
  .so-img {
    width: 100% !important;
    height: 160px !important;
    border-radius: 14px !important;
    background: #e9eff4 !important;
    margin-bottom: 14px !important;
  }

  /* Card title */
  .so-card h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
  }

  /* Card text */
  .so-card p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #555 !important;
  }

  .service-overview-section {
    padding-bottom: 24px !important;
    /* reduce if needed */
    margin-bottom: 0 !important;
  }

  /* REMOVE margin from last card */
  .so-card:last-child {
    margin-bottom: 0 !important;
  }

  /* REMOVE margin from last paragraph inside last card */
  .so-card:last-child p {
    margin-bottom: 0 !important;
  }

  /* PREVENT next section adding extra top gap */
  .service-overview-section+section {
    margin-top: 0 !important;
  }

  /* ============================= */
  /* SERVICES FEATURE SECTION */
  /* ============================= */

  .services-feature-section {
    padding: 40px 20px 20px !important;
    /* reduced bottom gap */
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 0% !important;
  }

  /* ---------- TITLE ---------- */
  .sf-title {
    font-size: 30px !important;
    font-weight: 600 !important;
    margin: 0 0 6px 0 !important;
    /* removed extra gap */
  }

  .sf-subtitle {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #555 !important;
    margin: 0 !important;
    /* no gap below subtitle */
  }

  /* ---------- STACK LAYOUT ---------- */
  .sf-top {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    /* removed accordion → image gap */
  }

  /* ---------- ACCORDION ---------- */
  .accordion-section {
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 0 !important;
  }

  .acc-item {
    border-bottom: 1px solid #e5e5e5 !important;
    padding: 0 !important;
  }

  /* Accordion Button */
  .acc-btn {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    text-align: left !important;
    padding: 14px 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #3e4649 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    padding-top: 24px;
    /* pushes text BELOW arrow */
    line-height: 1.4;
  }

  /* Accordion Content */
  .acc-content {
    display: none !important;
    padding: 0 0 14px 0 !important;
    border: none !important;
  }

  /* Show content */
  .acc-item.active .acc-content {
    display: block !important;
  }

  /* Prevent double borders */
  .acc-item.active {
    border-bottom: 1px solid #e5e5e5 !important;
  }

  .acc-item.active .acc-btn {
    border-bottom: none !important;
  }

  .acc-item * {
    border-top: none !important;
  }

  /* Accordion Text */
  .acc-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    margin-bottom: 12px !important;
  }

  /* Accordion Title Row */
  .acc-title-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .acc-title-row h3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #8FC24B !important;
    margin: 0 !important;
  }

  /* Accordion Icon */
  .acc-icon img {
    width: 22px !important;
    height: auto !important;
   
  }

  /* ---------- IMAGE ---------- */
  .sf-img {
    width: 100% !important;
    order: 2 !important;
    margin-top: 20px !important;
     margin-top: 0px !important;
  }

  .sf-img img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 18px !important;
  }




  /* ===== TITLE ===== */
  .sf-title2 {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
  }

  .sf-subtitle2 {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
    color: #555 !important;
  }

  /* ===== STACK CARDS ===== */
  .sf-card-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .sf-card {
    width: 100% !important;
    text-align: center !important;
  }

  /* ===== IMAGE ===== */
  .sf-card-img {
    position: relative !important;
  }

  .sf-card-img img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    display: block !important;
  }

  /* ===== ICON (FIXED – INSIDE CIRCLE) ===== */
  .sf-card-icon {
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border-radius: 50% !important;
    margin: -22px auto 12px auto !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
    /* IMPORTANT FIX */
  }

  .sf-card-icon img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* ===== CARD TEXT ===== */
  .sf-card h4 {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
  }

  .sf-card p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #555 !important;
  }

  /* MOBILE FIX ONLY */

    .acc-btn {
      display: block !important;
      /* ⬅️ stop flex on mobile */
      padding-right: 44px !important;
      /* reserve space for arrow */
      line-height: 1.4 !important;
    }
  

  .choose-section {
    margin-top: -10px !important;
  }
 /* SECTION – remove extra top gap */
  .usecases-section {
    padding: 0px 16px !important;
    margin-top: 0 !important;
    text-align: center !important;
  }

  /* TITLE */
  .uc-title {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
  }

  .uc-subtitle {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
    color: #555 !important;
  }
  
  
.results-wrapper {
  max-height: none;
}

.results-section {
  margin-top: 60px;
}
  
  
  .results-heading {
      margin-bottom:50px;
      
  }
  
   .results-card {
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .results-card-wrapper {
    padding: 0 16px;
  }
  
    .left-card,
  .right-card {
    width: 100% !important;
    margin: 0 !important;
    background: #eef6f7;
   border-radius: 28px;
    padding: 24px 20px;
  }
   .left-card {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .right-card {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    margin-top: 0 !important;  /* remove gap */
  }

  .right-card {
    margin-top: 12px;
    background: #ffffff;
  }
  
.badge-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);  /* half outside */
  
  background: #D6E6EB;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  color: #000;

  white-space: nowrap;
}
  
   .stats-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .stats-row h1 {
      margin-top:30px;
    font-size: 28px;
  }

  .stats-row p {
    font-size: 15px;
  }
  
   .left-desc,
  .right-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .profile img {
    width: 76px;
    height: auto;
  }

  .profile h5 {
    font-size: 15px;
  }

  .profile p {
    font-size: 15px;
  }
  
  .right-img {
    display: none !important;
  }
  
 .results-mobile-image {
  display: block;
  margin-top: 300px;     /* normal spacing below card */
  margin-bottom: 24px;
  padding: 0 16px;
}

.results-mobile-image img {
  width: 100%;
  height: 220px;        /* 🔒 FIXED HEIGHT */
  object-fit: cover;   /* 🔑 image fits perfectly */
  border-radius: 20px;
  display: block;
}
  
  .tab-row {
    margin: 0 0 12px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .tab {
    font-size: 14px;
    padding-bottom: 8px;
  }
  
    .results-nav {
    margin-top: 20px  !important;

  }
  
  .nav-arrow {
      margin-top: 25px  !important;
  }
  
  .about-hero {
      margin-top:15% !IMPORTANT;
  }
 
  .faq-title {
      font-size:30px !important;
  }
  
  /* Section wrapper */
  .consult-wrapper {
    margin-top: 40px;
    margin-bottom: 60px;
    padding: 0 16px;
  }

  /* Stack layout */
  .left-consult,
  .right-consult {
    padding: 0;
    width: 100%;
  }

  /* LEFT SIDE — CENTER EVERYTHING */
  .left-consult {
    text-align: center;
    margin-bottom: 32px;
  }

  .consult-title {
    font-size: 30px;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* List centered */
  .consult-list {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-bottom: 20px;
  }

  .consult-list li {
    font-size: 15px;
    justify-content: left;
    text-align: left;
  }

  /* Divider */
  .consult-divider {
    margin: 20px auto;
    width: 100%;
  }

  /* Quote centered */
  .consult-quote {
    justify-content: left;
    text-align: left;
  }

  .consult-quote p {
    font-size: 15px;
    max-width: 100%;
  }

  /* Profile centered */
  .consult-profile {
    justify-content: center;
    text-align: center;
  }

  .profile-logo {
    width: 48px;
  }

  .consult-profile h5 {
    font-size: 14px;
  }

  .consult-profile p {
    font-size: 13px;
  }

  /* FORM BOX */
  .consult-form-box {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .form-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .form-field {
    font-size: 14px;
    height: 46px;
  }

  textarea.form-field {
    height: 90px;
  }

  .consult-btn {
    font-size: 14px;
    padding: 12px;
  }

  
  
  
}
  





/* RESULTS NAV ARROWS */
.results-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top:-10% !important;
  margin-bottom: 5%;
}

.nav-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #CFE3EA;
  background: #ffffff;
  color: #083C4A;
  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
}

.nav-arrow:hover {
  background: #083C4A;
  color: #ffffff;
  border-color: #8BC63E;
}

@media (min-width: 769px) and (max-width: 1024px) {
    
    .consult-wrapper {
        margin-top:0px;
    }
    .consult-title br {
        display:none;
    }
    
    .consult-title {
        text-align:center;
        
    }

    .results-wrapper {
        max-height: none;
    }

    .results-section {
        margin-top: 60px;
    }
}

/* =========================
   TABLET VIEW (768px – 1024px)
   ========================= */
@media (min-width: 768px) and (max-width: 1024px) {
    
    
.faq-title {
  font-size: 30px !important ;
  font-weight: 600;
  color: #3e4649;
  margin-bottom: 10px;
}

  .services-feature-section {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 24px;
  }

  /* Title */
  .sf-title {
    font-size: 30px;
    line-height: 1.3;
  }

  .sf-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  /* MAIN ROW */
  .sf-top {
    gap: 35px;
    align-items: flex-start;
    margin-bottom: 60px;
  }



  /* LEFT – Accordion */
  .accordion-section {
    max-width: 55%;
    margin: 0;
    padding: 0;
  }

  .acc-btn {
    font-size: 16px;
    padding: 14px 0;
  }

  .acc-desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .acc-title-row h3 {
    font-size: 18px;
  }

  /* RIGHT – Image */
  .sf-img {
    width: 45%;
    max-width: 420px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .sf-img img {
    border-radius: 16px;
  }

  /* Cards Section (if visible on tablet) */
  .sf-card-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  .sf-card {
    width: 280px;
  }
}



