/* Example: Telcos Solution Section Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.solution-section {
  background: #f7fafd;
  padding: 60px 0 40px 0;
}

.solution-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  gap: 40px;
  justify-content: space-between;
}

.solution-text {
  flex: 1 1 350px;
  min-width: 320px;
}

.solution-subtitle {
  color: #b71c1c;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.solution-text h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #232b39;
}

.solution-text p {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #444;
}

.solution-text ul {
  margin: 0 0 18px 20px;
  padding: 0;
  color: #232b39;
}

.solution-text ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.solution-logos {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-logos img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(30, 41, 59, 0.08);
}

.discover-btn {
  margin-top: 18px;
  background: #b71c1c;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.discover-btn:hover {
  background: #8a1616;
}

.solution-video {
  display: block;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.13);
}

/* Telcos Hero Section */
.telcos-hero {
  position: relative;
  width: 100%;
  max-height: 72vh;
  /* 480px * 0.8 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.telcos-hero-video {
  width: 100%;
  min-height: 250px;
  /* 480px * 0.8 */
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
}

.telcos-hero-overlay {
  font-family: "Raleway", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 30px;
}

.telcos-hero-overlay h1 {
  font-size: 2rem;
  /* 3rem * 0.8 */
  font-weight: 700;
  margin-bottom: 19px;
  /* 24px * 0.8 */
  line-height: 1.1;
  letter-spacing: 1px;
  max-width: 900px;
}

.telcos-hero-overlay p {
  font-size: 1rem;
  /* 1.45rem * 0.8 */
  font-weight: 400;
  line-height: 1.35;
  max-width: 880px;
  /* 1100px * 0.8 */
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Key Challenges Section */
.telcos-problems-section {
  display: flex;
  gap: 48px;
  max-width: 1700px;
  margin: 80px auto 40px auto;
  padding: 0 120px 40px 120px;
  align-items: flex-start;
  border-radius: 24px;
  box-sizing: border-box;
}

.problems-left {
  flex: 1 1 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 420px;
  max-width: 600px;
}

.problems-label {
  color: #b71c1c;
  font-size: 0.77rem;
  /* 1.1rem * 0.7 */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12.6px;
  /* 18px * 0.7 */
  margin-top: 16.8px;
  /* 24px * 0.7 */
}

.problems-title {
  font-size: 1.89rem;
  /* 2.7rem * 0.7 */
  font-weight: 800;
  color: #232b39;
  margin-bottom: 7px;
  /* 10px * 0.7 */
  line-height: 1.1;
}

.problems-underline {
  display: flex;
  align-items: center;
  margin-bottom: 19.6px;
  /* 28px * 0.7 */
}

.problems-underline .dots {
  color: #b71c1c;
  font-size: 1.54rem;
  /* 2.2rem * 0.7 */
  font-weight: bold;
  margin-right: 7px;
  /* 10px * 0.7 */
  letter-spacing: 0.2em;
}

.problems-underline .line {
  display: inline-block;
  width: 42px;
  /* 60px * 0.7 */
  height: 3.5px;
  /* 5px * 0.7 */
  background: #b71c1c;
  border-radius: 3px;
}

.problems-img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  margin-top: 24px;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.1);
  object-fit: cover;
}

.problems-right {
  flex: 1 1 62%;
  min-width: 520px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.problems-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.accordion-item {
  background: #fff;
  border: 2px solid #b71c1c;
  border-radius: 22px;
  overflow: hidden;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  color: #232b39;
}

.accordion-item.active {
  background: linear-gradient(180deg, #7a0e0e 0%, #b71c1c 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.1);
}

.accordion-header {
  padding: 15.4px 22.4px;
  font-size: 1.015rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: background 0.2s, color 0.2s;
}

.accordion-item.active .accordion-header {
  background: #7a0e0e;
  color: #fff;
}

.accordion-toggle {
  font-size: 1.47rem;
  margin-left: 12.6px;
  user-select: none;
  font-weight: 400;
}

.accordion-body {
  padding: 18.2px 26.6px 19.6px 26.6px;
  font-size: 0.826rem;
  color: #fff;
  background: transparent;
  display: none;
}

.accordion-item.active .accordion-body {
  display: block;
}

.accordion-body ul {
  margin: 0;
  padding-left: 15.4px;
}

.accordion-body li {
  margin-bottom: 9.8px;
  line-height: 1.5;
}

.accordion-body li:last-child {
  margin-bottom: 0;
}

/* Telcos Benefits Section */
.telcos-benefits-section {
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  margin-bottom: 60px;
  margin-left: 40px;
  margin-top: 80px;
  padding: 0 120px;
  /* Adjust the value as needed */
}

.benefits-left {
  flex: 1 1 0;
  /* max-height: 100vh; */
  /* overflow-y: auto; */
  /* Optional: add padding or width as needed */
}

.benefits-right {
  flex: 0 0 380px;
  /* Adjust width as needed */
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: fit-content;
  /* Optional: add margin-left for spacing */
  margin-left: 40px;
}

.benefits-label {
  color: #b71c1c;
  font-size: 1.5rem;
  /* 0.715rem * 1.1 */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12.87px;
  /* 11.7px * 1.1 */
  margin-top: 17.16px;
  /* 15.6px * 1.1 */
}

.benefits-title {
  font-size: 1.9305rem;
  /* 1.755rem * 1.1 */
  font-weight: 800;
  color: #232b39;
  margin-bottom: 12.87px;
  /* 11.7px * 1.1 */
  line-height: 1.1;
}

.benefits-desc {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  /* 0.8125rem * 1.1 */
  color: #6b7280;
  margin-bottom: 27.17px;
  /* 24.7px * 1.1 */
  max-width: 750px;
  /* 455px * 1.1 */
}

.benefits-desc a {
  color: #6b7280;
  font-weight: 600;
  text-decoration-color: #6b7280;
  transition: color 0.2s;
}

.benefits-desc a:hover {
  color: #b71c1c;
  text-decoration-color: #b71c1c;
}

.benefits-block {
  margin-bottom: 27.17px;
  /* 24.7px * 1.1 */
}

.benefits-block-title {
  font-size: 1.2rem;
  /* 0.9425rem * 1.1 */
  font-weight: 700;
  color: #232b39;
  margin: 2rem 0;
  /* 11.7px * 1.1 */
}

.benefits-block-title a {
  color: #55596a;
  font-weight: 800;
  text-decoration-color: #55596a;
  transition: color 0.2s;
}
.benefits-block-title a:hover {
  color: #b71c1c;
  text-decoration-color: #b71c1c;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.035rem !important;
  /* 0.9rem * 1.15 */
}

.benefits-list li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  /* 0.767rem * 1.1 */
  color: #55596a;
  margin-bottom: 11.44px;
  /* 10.4px * 1.1 */
  display: flex;
  align-items: flex-start;
  gap: 8.58px;
  /* 7.8px * 1.1 */
}

.benefit-icon {
  border: 2px solid #b71c1c;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  background-color: #b71c1c;
  font-size: 0.65rem;
  color: #fff;
  margin: 0 0.58px 0 0;
  padding: 0 4.17px;
}

/* Right: Form */
.benefits-right {
  flex: 1 1 340px;
  max-width: 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  /* Ensure vertical stacking */
  justify-content: flex-start;
  align-items: stretch;
  font-size: 1.15em;
}

.benefits-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 60px 0 rgba(30, 41, 59, 0.13),
    0 2px 8px 0 rgba(30, 41, 59, 0.1);
  padding: 28.38px 28.38px 21.22px 28.38px;
  /* 24.68px * 1.15, 18.48px * 1.15 */
  width: 100%;
  max-width: 318.78px;
  /* 277.2px * 1.15 */
  display: flex;
  flex-direction: column;
  gap: 13.66px;
  /* 11.88px * 1.15 */
}

.form-title {
  font-size: 1.80995rem;
  /* 1.573rem * 1.15 */
  font-weight: 800;
  color: #232b39;
  margin-bottom: 6.58px;
  /* 5.72px * 1.15 */
}

.form-desc {
  color: #6b7280;
  font-size: 0.94875rem;
  /* 0.825rem * 1.15 */
  margin-bottom: 14.8px;
  /* 12.87px * 1.15 */
}

.benefits-form label {
  font-size: 0.9045rem;
  /* 0.7865rem * 1.15 */
  font-weight: 700;
  color: #55596a;
  margin-bottom: 3.29px;
  /* 2.86px * 1.15 */
}

.benefits-form input,
.benefits-form textarea {
  width: 100%;
  padding: 13.16px 9.87px;
  /* 11.44px * 1.15, 8.58px * 1.15 */
  border: none;
  border-radius: 3px;
  background: #f5f4f5;
  font-size: 0.9045rem;
  /* 0.7865rem * 1.15 */
  color: #232b39;
  margin-bottom: 8.22px;
  /* 7.15px * 1.15 */
  outline: none;
  resize: none;
}

.benefits-form textarea {
  min-height: 57.56px;
  /* 50.05px * 1.15 */
  max-height: 131.56px;
  /* 114.4px * 1.15 */
}

.benefits-form > input::placeholder,
textarea::placeholder {
  font-family: "Raleway", sans-serif;
}

.benefits-form button {
  width: 100%;
  background: #b71c1c;
  color: #fff;
  font-size: 0.94875rem;
  /* 0.825rem * 1.15 */
  font-weight: 700;
  border: none;
  border-radius: 3px;
  padding: 13.16px 0;
  /* 11.44px * 1.15 */
  margin-top: 8.22px;
  /* 7.15px * 1.15 */
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.benefits-form button:hover {
  background: #7a0e0e;
}

.benefits-helpbox {
  background: #232638;
  border-radius: 4px 4px 0 0;
  margin-top: 28px;
  padding: 28px 22px 18px 22px;
  color: #fff;
  max-width: 300px;
  box-shadow: 0 0 40px 0 rgba(30, 41, 59, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-height: 310.5px;
  /* 270px * 1.15 */
}

.benefits-helpbox::after {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  background: #b71c1c;
  border-radius: 0 0 4px 4px;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.helpbox-title {
  font-size: 1.242rem;
  /* 1.08rem * 1.15 */
  font-weight: 400;
  margin-bottom: 2px;
  font-family: inherit;
}

.helpbox-desc {
  font-size: 0.8625rem;
  /* 0.75rem * 1.15 */
  color: #e6e6e6;
  margin-bottom: 10px;
}

.helpbox-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  gap: 14.95px;
  /* 13px * 1.15 */
}

.helpbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 0;
  gap: 11.5px;
  /* 10px * 1.15 */
}

.helpbox-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  min-width: 32.2px;
  /* 28px * 1.15 */
  min-height: 32.2px;
}

.helpbox-label {
  font-size: 0.97rem;
  color: #e6e6e6;
  margin-bottom: 2px;
}

.helpbox-value {
  font-size: 1.0695rem;
  /* 0.93rem * 1.15 */
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  word-break: break-all;
}

@media (max-width: 600px) {
  .benefits-helpbox {
    padding: 18px 8px 12px 8px;
  }

  .helpbox-title {
    font-size: 1.05rem;
  }

  .helpbox-value {
    font-size: 0.97rem;
  }
}

/* Testimonial Section */
.testimonial-section {
  width: 100vw;
  background: #faf9fa;
  padding: 0 0 48px 0;
  /* 60px -> 48px */

  position: relative;
  min-height: 416px;
  /* 520px -> 416px */
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  margin: 0 auto 0 auto;
}

.testimonial-container {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 0 48px;
  min-height: 416px;
  box-sizing: border-box;
  gap: 70px;
  /* Add this line to create space between left and right */
  padding-left: 0;
  /* Remove or reduce existing left padding */
}

.testimonial-left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  min-width: 480px;
  /* 600px -> 480px */
  max-width: 640px;
  /* 800px -> 640px */
  padding-top: 48px;
  /* 60px -> 48px */
  padding-bottom: 32px;
  /* 40px -> 32px */
  text-align: left;
}

.testimonial-label {
  color: #b71c1c;
  font-size: 0.86rem;
  /* 1.08rem -> 0.86rem */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-align: left;
  /* 18px -> 14px */
}

.testimonial-title {
  font-size: 2.16rem;
  /* 2.7rem -> 2.16rem */
  font-weight: 800;
  color: #232b39;
  margin-bottom: 13px;
  /* 16px -> 13px */
  line-height: 1.1;

  text-align: left;
}

.testimonial-desc {
  font-size: 0.94rem;
  /* 1.18rem -> 0.94rem */
  color: #6b7280;
  margin-bottom: 19px;
  /* 24px -> 19px */
  max-width: 384px;
  /* 480px -> 384px */
  text-align: left;
}

.testimonial-underline {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  /* 32px -> 26px */
  justify-content: center;
  margin-left: 0;
  align-items: left;
}

.testimonial-dot {
  width: 6px;
  /* 8px -> 6px */
  height: 6px;
  background: #b71c1c;
  border-radius: 50%;
  margin-right: 6px;
  /* 8px -> 6px */
  display: inline-block;
  align-items: left;
}

.testimonial-line {
  width: 38px;
  /* 48px -> 38px */
  height: 2.4px;
  /* 3px -> 2.4px */
  background: #b71c1c;
  border-radius: 2px;
  display: inline-block;
  align-items: left;
}

/* --- Only 2 testimonial cards visible at a time --- */
.testimonial-slider {
  width: calc(2 * 280px + 19px);
  /* 2 cards + 1 gap */
  max-width: unset;
  min-width: unset;
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
  display: flex;
  justify-content: flex-start;
  /* align to left */
  align-items: flex-start;
  margin-left: 0;
  /* remove centering */
}

.testimonial-cards {
  display: flex;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  gap: 19px;
  /* 24px -> 19px */
  text-align: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 5px;
  /* 6px -> 5px */
  box-shadow: 0 2px 13px 0 rgba(30, 41, 59, 0.07);
  /* 16px -> 13px */
  padding: 22px 16px 19px 16px;
  /* 28px 20px 24px 20px -> 22px 16px 19px 16px */
  min-width: 256px;
  /* 320px -> 256px */
  max-width: 256px;
  min-height: 112px;
  /* 140px -> 112px */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  flex-shrink: 0;
}

.testimonial-card-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 19px;
  /* 24px -> 19px */
  text-align: center;
}

.testimonial-card-name {
  color: #b71c1c;
  font-weight: 600;
  font-size: 0.86rem;
  /* 1.08rem -> 0.86rem */
  margin-bottom: 2px;
  display: block;
}

.testimonial-card-role {
  color: #6b7280;
  font-size: 0.8rem;
  /* 1rem -> 0.8rem */
  display: block;
}

.testimonial-pagination {
  position: absolute;
  left: 0;
  bottom: 14px;
  /* 18px -> 14px */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  /* 10px -> 8px */
  padding-left: 0;
  z-index: 2;
}

.testimonial-dot-btn {
  width: 10px;
  /* 12px -> 10px */
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dot-btn.active {
  background: #b71c1c;
}

/* FAQ Section Styles */
.faq-section {
  width: 100vw;
  background: #fff;
  padding: 0 0 51.2px;
  /* 64px -> 51.2px */

  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.faq-container {
  max-width: 1120px;
  /* 1400px -> 1120px */
  margin: 0 auto;
  display: flex;
  gap: 51.2px;
  /* 64px -> 51.2px */
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}

.faq-left {
  flex: 1 1 35%;
  min-width: 256px;
  /* 320px -> 256px */
  max-width: 336px;
  /* 420px -> 336px */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 25.6px;
  /* 32px -> 25.6px */
}

.faq-label {
  color: #b71c1c;
  font-size: 0.864rem;
  /* 1.08rem -> 0.864rem */
  font-weight: 600;
  letter-spacing: 0.8px;
  /* 1px -> 0.8px */
  margin-bottom: 14.4px;
  /* 18px -> 14.4px */
}

.faq-title {
  font-size: 2.16rem;
  /* 2.7rem -> 2.16rem */
  font-weight: 800;
  color: #232b39;
  margin-bottom: 12.8px;
  /* 16px -> 12.8px */
  line-height: 1.1;
}

.faq-desc {
  font-size: 0.944rem;
  /* 1.18rem -> 0.944rem */
  color: #6b7280;
  margin-bottom: 19.2px;
  /* 24px -> 19.2px */
  max-width: 384px;
  /* 480px -> 384px */
}

.faq-right {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 320px;
  /* 400px -> 320px */
}

.faq-dropdown {
  border-bottom: 1px solid #ececec;
}

.faq-question {
  font-size: 1rem;
  /* 1.25rem -> 1rem */
  font-weight: 600;
  color: #232b39;
  padding: 22.4px 0 22.4px 0;
  /* 28px -> 22.4px */
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22.4px;
  /* 28px -> 22.4px */
  font-size: 1.2rem;
  /* 1.5rem -> 1.2rem */
  color: #b71c1c;
  transition: transform 0.2s;
}

.faq-dropdown.active .faq-question {
  color: #b71c1c;
}

.faq-dropdown.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  font-size: 0.864rem;
  /* 1.08rem -> 0.864rem */
  color: #6b7280;
  padding: 0 0 19.2px 0;
  /* 24px -> 19.2px */
  animation: fadeIn 0.3s;
}

.faq-dropdown.active .faq-answer {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Clientele Section Styles */
.clientele-section {
  width: 100%;
  background: #fff;
  padding: 64px 0 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  /* Add this line for gap below the section */
}

.clientele-label {
  color: #b71c1c;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-align: center;
}

.clientele-title {
  font-size: 2rem;
  font-weight: 800;
  color: #232b39;
  margin-bottom: 16px;
  text-align: center;
}

.clientele-desc {
  font-size: 1.18rem;
  color: #6b7280;
  margin-bottom: 32px;
  text-align: center;
}

.clientele-img-wrapper {
  width: 90vw;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 100px;
}

.clientele-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(30, 41, 59, 0.07);
  background: #fff;
}

/* --- Managed Network Solution for Hotel & Resorts Section --- */
.hotel-managed-section {
  margin: 64px 0 64px 0;
  /* Top and bottom gap */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hotel-managed-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hotel-managed-label {
  color: #b71c1c;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  margin-top: 0;
  text-transform: uppercase;
}

.hotel-managed-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #232b39;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.hotel-managed-desc {
  color: #555;
  font-size: 1.18rem;
  margin-bottom: 32px;
}

.hotel-managed-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hotel-managed-img {
  width: 90%;
  max-width: 900px;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

/* Hotspot label styling */
.hotel-hotspot {
  position: absolute;
  background: #b71c1c;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 7px 22px;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-hotspot::before {
  content: "📍";
  font-size: 1.1em;
  margin-right: 6px;
}

/* Example positions for demo (adjust as needed for your image) */
.hotspot-reception {
  left: 18%;
  top: 54%;
}

.hotspot-guestroom {
  left: 56%;
  top: 18%;
}

.hotspot-dining {
  left: 77%;
  top: 56%;
}

.hotspot-pool {
  left: 38%;
  top: 80%;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hotel-managed-title {
    font-size: 2rem;
  }

  .hotel-managed-img {
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .hotel-managed-title {
    font-size: 1.3rem;
  }

  .hotel-managed-img {
    border-radius: 12px;
  }

  .hotel-hotspot {
    font-size: 0.85rem;
    padding: 5px 12px;
  }
}

/* --- Feature-Rich Wi-Fi Management Block --- */
.feature-rich-wifi-block {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.04);
  padding: 32px 32px 24px 32px;
}

.feature-rich-wifi-block .benefits-block-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #232b39;
  margin-bottom: 18px;
}

.benefits-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 18px 0;
}

.feature-rich-wifi-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  padding: 0;
  margin: 0 0 18px 0;
  list-style: none;
}

.feature-rich-wifi-list li {
  color: #656875;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 0;
}

.feature-rich-wifi-list .benefit-icon {
  background-color: #b71c1c;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8rem;
  margin-top: -1.5px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .feature-rich-wifi-list {
    grid-template-columns: 1fr;
    gap: 12px 0;
  }

  .feature-rich-wifi-block {
    padding: 20px 10px 16px 10px;
  }
}

/* Ensure FAQ and Footer stack vertically */
.faq-section,
.footer-section {
  width: 100%;
  display: block;
  clear: both;
  /* Remove any float or inline-block if present */
}

/* Add this to your CSS file */
.faq {
  margin-bottom: 100px;
  /* Adjust the value as needed */
}

/* Hide scrollbar for Chrome, Edge, and Safari */
.benefits-left::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.benefits-left {
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* IE and Edge */
}

.testimonial-right img {
  width: 85%;
  height: auto;
}

.testimonial-section,
.faq-section,
.clientele-section,
.hotel-managed-section {
  width: 100%;
  /* ...other styles... */
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .solution-content {
    padding: 0 30px;
  }

  .solution-text h1 {
    font-size: 2rem;
  }

  .telcos-problems-section {
    padding: 0 40px 40px 40px;
  }

  .problems-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 992px) {
  .solution-section {
    padding: 40px 0 30px 0;
  }

  .solution-content {
    gap: 30px;
  }

  .solution-text {
    min-width: 280px;
  }

  .solution-text h1 {
    font-size: 1.8rem;
  }

  .solution-text p {
    font-size: 1rem;
  }

  .telcos-hero-overlay h1 {
    font-size: 2.2rem;
  }

  .telcos-hero-overlay p {
    font-size: 1.1rem;
  }

  .telcos-problems-section {
    flex-direction: column;
    gap: 30px;
    padding: 0 30px 30px 30px;
  }

  .problems-left,
  .problems-right {
    min-width: 100%;
    max-width: 100%;
  }

  .problems-img {
    max-width: 100%;
  }

  .benefits-left,
  .benefits-right {
    min-width: 100%;
  }

  .testimonial-container {
    flex-direction: column;
    gap: 40px;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .solution-section {
    padding: 30px 0 20px 0;
  }

  .solution-content {
    padding: 0 20px;
  }

  .solution-text h1 {
    font-size: 1.6rem;
  }

  .solution-subtitle {
    font-size: 1rem;
  }

  .discover-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .telcos-hero {
    max-height: 500px;
  }

  .telcos-hero-overlay h1 {
    font-size: 2rem;
  }

  .telcos-hero-overlay p {
    font-size: 1rem;
  }

  .telcos-problems-section {
    margin: 40px auto 20px auto;
    padding: 0 20px 20px 20px;
  }

  .problems-label {
    font-size: 0.9rem;
  }

  .problems-title {
    font-size: 1.5rem;
  }

  .accordion-item {
    border-radius: 16px;
  }

  .accordion-header {
    padding: 15px;
  }

  .accordion-body {
    padding: 15px;
  }

  .benefits-form {
    padding: 20px;
  }

  .form-title {
    font-size: 1.3rem;
  }

  .benefits-helpbox {
    padding: 20px;
  }

  .helpbox-title {
    font-size: 1.2rem;
  }

  .testimonial-title {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 20px;
  }

  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .solution-section {
    padding: 20px 0 15px 0;
  }

  .solution-content {
    padding: 0 15px;
  }

  .solution-text h1 {
    font-size: 1.4rem;
  }

  .solution-text p {
    font-size: 0.95rem;
  }

  .solution-text ul li {
    font-size: 0.9rem;
  }

  .telcos-hero {
    max-height: 400px;
  }

  .telcos-hero-overlay h1 {
    font-size: 1.8rem;
  }

  .telcos-hero-overlay p {
    font-size: 0.95rem;
  }

  .telcos-problems-section {
    margin: 30px auto 15px auto;
    padding: 0 15px 15px 15px;
  }

  .problems-label {
    font-size: 0.85rem;
  }

  .problems-title {
    font-size: 1.3rem;
  }

  .problems-underline .dots {
    font-size: 1.3rem;
  }

  .problems-underline .line {
    width: 35px;
  }

  .accordion-header {
    padding: 12px;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 12px;
  }

  .accordion-body ul li {
    font-size: 0.9rem;
  }

  .benefits-form {
    padding: 15px;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .form-desc {
    font-size: 0.9rem;
  }

  .benefits-form input,
  .benefits-form textarea {
    padding: 10px;
    font-size: 0.9rem;
  }

  .benefits-form button {
    padding: 10px;
    font-size: 0.95rem;
  }

  .benefits-helpbox {
    padding: 15px;
  }

  .helpbox-title {
    font-size: 1.1rem;
  }

  .helpbox-desc {
    font-size: 0.9rem;
  }

  .helpbox-contact {
    font-size: 0.9rem;
  }

  .testimonial-title {
    font-size: 1.3rem;
  }

  .testimonial-desc {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 15px;
  }

  .testimonial-card-author {
    font-size: 0.9rem;
  }

  .faq-title {
    font-size: 1.3rem;
  }

  .faq-desc {
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .telcos-hero {
    /* position: relative; */
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .telcos-hero-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .telcos-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .telcos-hero-overlay h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .telcos-hero-overlay p {
    font-size: 0.7rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .telcos-hero-overlay br {
    display: none;
    /* Remove line breaks for mobile */
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 20px;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-left,
  .faq-right {
    width: 100%;
    text-align: center;
  }

  .faq-label {
    font-size: 12px;
    font-weight: bold;
    color: #888;
    margin-bottom: 8px;
  }

  .faq-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .faq-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .faq-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-dropdown {
    background-color: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .faq-answer {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .testimonial-section {
    width: 100%;
    padding: 20px 15px;
    overflow: hidden;
    min-height: auto;
    margin: 0 auto;
    position: relative;
  }

  .testimonial-container {
    width: 100%;
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .testimonial-left {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  .testimonial-label,
  .testimonial-title,
  .testimonial-desc {
    margin-left: 0;
    text-align: center;
  }

  .testimonial-label {
    font-size: 12px;
    font-weight: bold;
    color: #888;
    margin-bottom: 8px;
  }

  .testimonial-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .testimonial-desc {
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 100%;
  }

  .testimonial-slider {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-top: 20px; /* Added margin to push slider down */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .testimonial-slider::-webkit-scrollbar {
    display: none;
  }

  .testimonial-cards {
    width: max-content;
    padding: 0 15px;
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
  }

  .testimonial-card {
    min-width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
    scroll-snap-align: start;
  }

  .testimonial-right {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .testimonial-img {
    width: 85%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .testimonial-cards {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }
}

@media (max-width: 576px) {
  .telcos-benefits-section {
    flex-direction: column;
    margin: 40px 0; /* Reset margins for mobile */
    padding: 0 15px; /* Add padding instead of margin */
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .benefits-left {
    width: 100%;
    max-height: none; /* Remove fixed height */
    overflow-y: visible; /* Remove scrolling */
    padding: 0;
    order: 1; /* Ensure content comes first */
  }

  .benefits-right {
    width: 100%;
    position: static; /* Remove sticky behavior */
    margin: 30px 0 0 0; /* Add space between sections */
    padding: 0;
    order: 2; /* Move form to bottom */
  }

  .benefits-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .benefits-label {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .benefits-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .benefits-block {
    margin-bottom: 20px;
  }

  .benefits-block-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .benefits-list {
    padding-left: 20px;
  }

  .benefits-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .benefit-icon {
    margin-right: 6px;
  }

  .benefits-form {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    margin-top: 30px;
    max-width: 100%; /* Allow form to take full width */
    margin: 0 auto; /* Center the form */
  }

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

  .form-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .benefits-form input,
  .benefits-form textarea {
    width: 100%;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .benefits-form button {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
  }

  .benefits-helpbox {
    padding: 20px;
    max-width: 100%; /* Full width help box */
    margin: 20px auto 0; /* Proper spacing */
    color: #fff;
  }

  .helpbox-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .helpbox-desc {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .helpbox-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .helpbox-icon {
    margin-right: 12px;
  }

  .helpbox-label {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .helpbox-value {
    font-size: 14px;
  }
}


