body {
  font-family: "Inter", sans-serif !important;
}
.faq-section {
  background: none;
}

.oddo-banner {
  position: relative;
  min-height: 570px;
  background: #eaf0ff;
  padding: 80px 0px;
}

.o2b-visual-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* max-width: 1140px; */
  pointer-events: none;
}

.o2b-floating-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 5;
  animation-name: float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.o2b-icon-powerpoint {
  top: 100%;
  left: 33%;
  animation-duration: 9s;
  animation-delay: 0.4s;
}

.o2b-icon-charts {
  top: 70%;
  left: 86%;
  animation-duration: 7s;
  animation-delay: 1s;
}

.o2b-icon-chart2 {
  top: 24%;
  left: -10%;
  animation-duration: 6.5s;
  animation-delay: 0.75s;
}

.o2b-icon-chart3 {
  top: 90%;
  left: 60%;
  animation-duration: 7.2s;
  animation-delay: 0.2s;
}

.o2b-icon-chart4 {
  top: 40%;
  left: 104%;
  animation-duration: 5.8s;
  animation-delay: 1.2s;
}

@media (max-width: 767px) {
  .o2b-floating-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(2deg);
  }

  50% {
    transform: translateY(5px) rotate(-2deg);
  }

  75% {
    transform: translateY(-5px) rotate(10deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-slow {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(4px);
  }

  75% {
    transform: translateY(-3px);
  }

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

/* Heading */
.banner-heading {
  text-align: left;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--o2b-text-dark);
  margin-bottom: 1rem;
  border: none;
  box-shadow: none;
}

.banner-heading span {
  background: linear-gradient(to bottom, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub-headings */
.banner-pbold {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 600;
  color: #2a2a2a;
  text-shadow: none;
}

.banner-p {
  font-size: 15px;
  font-weight: 500;
  color: #5e5e5e;
  text-align: left;
  margin-bottom: 25px;
}

.banner-img {
  text-align: center;
}

.banner-img img {
  max-height: 420px;
  width: 100%;
  object-fit: contain;
}
/* =========================
   HERO MOBILE FIX (only CSS)
   ========================= */

/* Make banner a positioning context + avoid overflow issues */
.oddo-banner {
  overflow: hidden;
}

/* Keep icons behind content, and restrict them to the banner area */
.o2b-visual-backdrop {
  z-index: 0; /* behind */
}

.oddo-banner .container,
.oddo-banner .row,
.oddo-banner .col-lg-6 {
  position: relative;
  z-index: 2; /* content above icons */
}

/* MOBILE */
@media (max-width: 767px) {
  /* Better spacing overall */
  .oddo-banner {
    min-height: auto;
    padding: 18px 0 10px;
  }

  /* Stack + center nicely */
  .oddo-banner .row {
    flex-direction: column;
  }

  /* Center text on mobile (clean hero) */
  .banner-heading,
  .banner-pbold,
  .banner-p {
    text-align: center;
  }

  .banner-heading {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner-pbold {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .banner-p {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 16px;
  }

  /* Center button */
  .btn-left {
    display: flex;
    justify-content: center;
  }

  /* Image spacing */
  .banner-img {
    margin-top: 14px;
  }
  .banner-img img {
    max-height: 260px;
    width: 100%;
  }

  /* Floating icons: smaller + softer so they don’t ruin the hero */
  .o2b-floating-icon {
    display: none;
  }

  .o2b-floating-icon img {
    width: 18px;
  }

  /* Reposition icons for small screens */
  .o2b-icon-powerpoint {
    top: 6%;
    left: 6%;
  }
  .o2b-icon-charts {
    top: 10%;
    right: 6%;
    left: auto;
  }
  .o2b-icon-chart2 {
    top: 28%;
    left: 8%;
  }
  .o2b-icon-chart3 {
    top: 30%;
    right: 10%;
    left: auto;
  }
  .o2b-icon-chart4 {
    top: 46%;
    left: 50%;
    transform: translateX(-50%);
  }

}

/* TABLET */
@media (min-width: 768px) and (max-width: 991px) {
  .banner-heading {
    font-size: 2.1rem;
  }
  .banner-pbold {
    font-size: 1.2rem;
  }
  .banner-img img {
    max-height: 330px;
  }
}

.expert-click-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-expert {
  margin-top: 1rem;
  text-align: start;
}

.btn-expert .expert-click-btn {
  display: inline-block;
  background: #0066ff;
  color: #ffffff !important;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #005eff !important;
}

.btn-expert .expert-click-btn:hover {
  background: #004ec3;
  color: white !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}
/* Image */
.section-parallax {
  background-image: url(../hire-developer.jpg);
  color: #fff;
  background-attachment: fixed;
  background-position: center;
}
.parallax {
  background: #874b5fd1;
  padding: 2rem 0rem 2rem 0rem;
}
.oddo-develop h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.oddo-develop .develop-p {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
.oddo-develop .develop-bx {
  background: white;
  color: black;
  padding: 24px;
  margin: 10px 0;
}
.oddo-develop .develop-bx h5 {
  font-size: 19px;
  font-weight: 700;
}
.oddo-develop .develop-bx p {
  height: 80px;
  overflow: hidden;
  font-size: 14px;
  text-align: justify;
  margin-bottom: 0;
  color: #525151d9;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 992px) {
  .oddo-develop .develop-bx h5 {
    font-size: 18px;
    text-shadow: none;
  }
  .oddo-develop .develop-bx p {
    font-size: 13px;
    height: 60px;
    overflow: hidden;
  }
}

/* Section Title */
.hire-develper h2 {
  font-size: 34px;
  font-weight: 700;
  color: #5e304a;
  text-align: center;
  text-transform: none;
  text-shadow: none;
  margin-bottom: 20px;
}

/* Section Intro Text */
.hire-develper .hire-p {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #555;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.hired-box {
  border-radius: 16px;
  height: 500px;
  padding: 20px;
  margin: 15px 0;
  border: 2px solid rgb(228, 232, 255);
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1; /* keep content above */
}


.hired-box:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hired-box:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  background:linear-gradient(135deg,#dcfcff,rgb(219, 216, 255));
}

/* Service Image */
.hired-box .image-bx img {
  height: auto;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Service Content */
.hired-box .hire-cont {
  padding: 15px 10px;
}

.hired-box .hire-cont h3 {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  color: #202020;
  margin-bottom: 12px;
}

.hired-box .hire-cont p {
  font-size: 14px;
  font-weight: 500;
  color: #7d7d7d;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive */
@media only screen and (max-width: 768px) {
  .hire-develper h2 {
    font-size: 28px;
  }
  .hire-develper .hire-p {
    font-size: 15px;
    padding: 0 10px;
  }
  .hired-box .hire-cont h3 {
    font-size: 20px;
  }
  .hired-box .hire-cont p {
    font-size: 14px;
  }
}
.oddo-l {
  padding: 3rem 0;
}

.oddo-l h2 {
  font-size: 34px;
  font-weight: 700;
  color: #2b2b2b;
  text-transform: none;
  text-align: left;
  margin-bottom: 20px;
  text-shadow: none;
}

.oddo-l p {
  font-weight: 500;
  color: #525151d9;
}

.ul-box-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.ul-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
}

.ul-box-list li i {
  font-size: 22px;
  color: #000;
  margin-top: 4px;
  flex: 0 0 28px;
}

.ul-box-list li h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #874b5f;
}

.ul-box-list li p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.oddo-img6 {
  text-align: right;
}

.oddo-img6 img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.oddo-img6 img:hover {
  transform: scale(1.05);
}

.button_one a,
.button_two a {
  background: #874b5f;
  color: #fff !important;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 25px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button_one a:hover,
.button_two a:hover {
  background: transparent;
  color: #874b5f !important;
  border: 2px solid #874b5f;
}
@media (max-width: 767px) {
  .section-white {
    overflow: hidden;
  }

  .oddo-l {
    padding-left: 15px;
    padding-right: 15px;
  }

  .oddo-l .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .oddo-l [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ul-box-list {
    width: 100%;
  }

  .ul-box-list li {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .ul-box-list li i {
    flex: 0 0 24px;
    max-width: 24px;
  }

  .ul-box-list li > div {
    flex: 1 1 calc(100% - 36px);
    min-width: 0;
  }

  .ul-box-list li h3,
  .ul-box-list li p {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .oddo-img6,
  .oddo-img6 img {
    width: 100%;
    max-width: 100%;
  }

  .oddo-img6 {
    text-align: center;
    margin-top: 18px;
  }

  .btn-expert {
    width: 100%;
  }

  .button_one a,
  .button_two a {
    width: 100%;
    max-width: 340px;
    margin-left: 0;
    justify-content: center;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .oddo-l h2 {
    font-size: 24px;
    text-align: center;
  }
  .ul-box-list li h3 {
    font-size: 17px;
  }
  .ul-box-list li p {
    font-size: 13.5px;
  }
  .oddo-img6 {
    text-align: center;
    margin-top: 22px;
  }
  .button_one,
  .button_two {
    display: flex;
    justify-content: center;
  }
  .button_one a,
  .button_two a {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .oddo-l h2 {
    font-size: 28px;
    text-align: left;
  }
  .oddo-img6 {
    text-align: center;
    margin-top: 0;
  }
  .button_two {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .button_two {
    display: flex;
    justify-content: flex-start;
  }
}

.service-us {
  margin-top: 2rem;
}
.service-us h2 {
  font-size: 32px;
  font-weight: 700;
  color: #050505;
  text-align: center;
}
.service-us p {
  font-size: 14px;
  color: #525151d9;
  font-weight: 500;
  text-align: justify;
}
.service-content {
  margin: 15px 0px;
  padding: 20px 20px 1px 20px;
  background-color: #874b5f2e;
  box-shadow: 3px 3px 1px #4d4b87f5;
}
.service-content h6 {
  font-size: 25px;
  font-weight: 700;
  color: #000000;
}
.service-content p {
  text-align: justify;
  font-size: 14px;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .service-us h2 {
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .service-us h2 {
    font-size: 24px;
    text-align: center;
  }
}
.oddo-wrapper .wrapper-content .wrapper-h {
  border-radius: 6px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #000000a6;
  content-visibility: initial;
}
.oddo-wrapper .wrapper-content .wrapper-p {
  font-weight: 500;
  text-align: justify;
  font-size: 14px;
  color: #525151d9;
}
.oddo-wrapper .wrapper-content .funct-list {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 500;
  color: #525151d9;
}
.oddo-wrapper .wrapper-content .funct-list i {
  color: #874b5f;
}
.wrapper-bx-mg {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .oddo-wrapper .wrapper-content .wrapper-h {
    font-size: 20px;
    padding-bottom: 6px;
  }
  .oddo-wrapper .wrapper-bx {
    padding: 22px 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .oddo-wrapper .wrapper-content .wrapper-h {
    font-size: 26px;
  }
  .wrapper-bx-mg {
    text-align: center;
  }
}
/* ---------- FAQ Section ---------- */
.faq-section {
  padding: 40px 20px;
}

.faq-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

.faq-title p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.5;
}

/* FAQ Cards */
.faq .card {
  border-radius: 12px;
  border: 1px solid #d5d5fd !important;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.faq .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Card Header - Make entire header clickable */
.faq .card-header {
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #ddebff;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  transition: background 0.3s ease;
}

.faq .card-header:hover {
  background: linear-gradient(135deg, #c6f1fc, #e1deff);
}

/* Make the FAQ title span full width to capture clicks */
.faq .card-header .faq-title {
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  width: 100%; /* full width ensures clickable */
}

.faq .card-header .faq-title .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(125deg, #1068ff, #8267ff);
  color: #fff;
  font-size: 12px;
  margin-right: 12px;
}

/* Card Body */
.faq .card-body {
  padding: 10px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #707383;
  background: #fefefe;
}

.faq .card-body a {
  color: #634aff;
  text-decoration: underline;
  font-weight: 500;
}

.faq .card-body a:hover {
  color: #553bff;
}

/* Ensure collapse transition works smoothly */
.faq .collapse {
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-section {
    padding: 30px 15px;
  }

  .faq-title h2 {
    font-size: 1.8rem;
  }

  .faq-title p {
    margin-bottom: 20px;
  }

  .faq .card-header .faq-title {
    font-size: 0.9rem;
  }

  .faq .card-body {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
}

@media (max-width: 576px) {
  .faq-title h2 {
    font-size: 1.6rem;
  }

  .faq .card-header .faq-title .badge {
    width: 20px;
    height: 20px;
    font-size: 11px;
    margin-right: 8px;
  }

  .faq .card-header {
    padding: 8px 12px;
  }

  .faq .card-body {
    padding: 6px 12px;
  }
}
.read-more-state {
  display: none;
}
.read-more-wrap {
  margin-bottom: 20px;
  font-size: 14px;
  text-align: justify;
  color: #525151d9;
  font-weight: 500;
  float: left;
}
.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: 0.25s ease;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
  font-size: 14px;
  text-align: justify;
}
.read-more-state ~ .read-more-trigger:before {
  content: "Read more";
}
.read-more-state:checked ~ .read-more-trigger:before {
  content: "Read less";
}
.read-more-trigger {
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  color: #f27935;
  font-size: 0.9em;
  background-color: #fff;
  border-color: #f27935;
  padding: 8px 30px 8px 30px;
  border-radius: 3px;
  border: 1px solid #f27935;
  transition: 0.5s;
}
.read-more-trigger:hover {
  border: 1px solid #f27935;
  color: #fff;
  background-color: #f27935;
}
@media (max-width: 768px) {
  .read-more-wrap {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: justify;
  }
}
.click-btn-meet {
  background: #f27935;
  color: #fff;
  padding: 10px 9px 10px 9px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.5s;
}
.click-btn-meet:hover {
  background: #fff;
  color: #f27935;
  border: 1px solid #f27935;
  text-decoration: none;
}
.expert-meet {
  position: relative;
  top: 8px;
  float: right;
  line-height: 30px;
}
@media (max-width: 768px) {
  .expert-meet {
    top: 7px;
  }
  .read-more-trigger {
    padding: 10px 10px 10px 10px;
  }
}
.button_one {
  position: relative;
  display: block;
}
.button_two {
  position: relative;
  display: none;
}
@media (max-width: 768px) {
  .button_one {
    position: relative;
    display: none;
  }
  .button_two {
    position: relative;
    display: block;
  }
}
.box-1 {
  order: 1;
}
.box-2 {
  order: 2;
}
@media (max-width: 768px) {
  .box-1 {
    order: 2;
  }
  .box-2 {
    order: 1;
  }
}

/* Section Styles */
.core-modules {
  margin-top: 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin: 0 auto;
}

/* Card Styles */
.module-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(192, 218, 255);
}

.module-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* Icon */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  /* border-radius: 50%; */
  /* background: linear-gradient(135deg, #874b5f, #874b5f); */
  color: #0082c2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Text */
.module-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.module-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Button */
.btn-explore {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0082c2;
  border: 1px solid #0082c2;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.module-card a:hover {
  background: linear-gradient(to right, #0061df, #006eff);
  text-decoration: none;
  color: white;
}@media (max-width: 767px) {


  .core-modules {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .core-modules .container {
    padding-left: 0;
    padding-right: 0;
  }

  .core-modules .row {
    margin-left: 0;
    margin-right: 0;
  }

  .core-modules [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .module-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 14px;
  }

  .module-card h4 {
    font-size: 18px;
  }

  .module-card p {
    font-size: 13px;
  }

  .btn-explore {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: block;
    text-align: center;
  }
}


.testimonial-container {
  background-color: #e0f7ff;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: #333;
  font-weight: 500;
}

.quote-icon {
  color: #3f558a;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.author-info {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
  margin-top: 1rem;
}

.author-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: #777;
}

/* YouTube Embed Styling */
.video-container {
  position: relative;
  padding-top: 56.25%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1.5rem;
}

/* Desktop Layout */
@media (min-width: 992px) {
  .testimonial-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .testimonial-text-col,
  .testimonial-video-col {
    flex: 1;
  }
  .testimonial-video-col {
    margin-left: 2rem;
  }
}

/* Carousel Indicators */
.carousel-indicators li {
  background-color: #161616;
}

/* Carousel Buttons */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 10;
}
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  background-size: 50% 50%;
  background-color: rgba(255, 255, 255, 0.8);
}

/* Section Titles */
h2.section-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
p.section-desc {
  color: #666;
  margin-bottom: 2rem;
}

/* ✅ Feature List */
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: start;
  margin-bottom: 0.75rem;
}
.feature-list li i {
  color: #6567f8; /* green check */
  margin-right: 10px;
  margin-top: 3px;
}

/* 🟦 Service Cards */
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.service-card i {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.service-card p {
  margin: 0;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .feature-list li {
    font-size: 0.9rem;
  }
}

.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-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) */
}

.affiliations {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.affiliations h2 {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.affiliations p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.affiliation-logos,
.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.logo-box,
.client-box {
  border-radius: 12px;
  padding: 20px;
  min-width: 150px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

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

.client-box img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.logo-box:hover,
.client-box:hover {
  transform: translateY(-5px);
}

.clients-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 1.2rem;
  position: relative;
}

.clients-title::before,
.clients-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ccc;
}

.clients-title::before {
  left: 0;
}

.clients-title::after {
  right: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .logo-box,
  .client-box {
    max-width: 180px;
    padding: 18px;
  }
}

@media (max-width: 992px) {
  .logo-box,
  .client-box {
    max-width: 150px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .affiliation-logos,
  .client-logos {
    gap: 15px;
  }

  .logo-box,
  .client-box {
    padding: 12px;
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  .logo-box,
  .client-box {
    min-width: 100px;
    padding: 10px;
  }
}
/* 🟦 Service Cards */
.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s,
    background 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #136aff3a;
  background: linear-gradient(135deg, #c6f1fc, #e1deff);
}

.service-card i {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #6495ff;
  transition: color 0.3s;
}

.service-card:hover i {
  color: #2250e9;
}

.service-card p {
  margin: 0;
  text-align: center;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.service-card:hover p {
  color: #2250e9;
}
.section-white a {
  color: #495057;
  font-weight: 600;
  text-decoration: none;
}
.section-white a:hover {
  text-decoration: underline;
}