/* New Modern Hero Section CSS */
body {
  font-family: "Inter", sans-serif !important;
}
.o2b-hero-section {
  background-color: #eef3ff;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.container.o2b-container-relative {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.o2b-content-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.o2b-heading {
  max-width: 900px;
  margin: auto;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--o2b-text-dark);
  margin-bottom: 1rem;
}
.o2b-heading span {
  background: linear-gradient(to bottom, #2344ff, #683fc7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.o2b-highlight {
  color: var(--o2b-green);
  font-size: 4rem;
}

.o2b-subheading {
  font-size: 1.25rem;
  color: #495057;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.o2b-description {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
  font-size: 16px;
}
.o2b-cta-primary {
  background-color: #0066ff;
  /* border: 2px solid #2b8ed5; */
  /* visible only before hover */
  color: #ffffff;
  padding: 6px 40px 6px 40px !important;
  font-weight: 500;
  font-size: 16px;
  border-radius: 10px !important;
  display: inline-block;
  transition: 0.3s ease;
  margin-right: 1rem;
  position: relative;
  box-shadow: inset 0 4px 6px rgba(0, 26, 90, 0.35);
}

/* Hidden border shape */
.o2b-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 10px;
  pointer-events: none;
  transition: 0.3s ease;
}

.o2b-cta-primary:hover {
  background-color: #ffffff !important;
  color: #0e66ff !important;
  border-color: transparent !important;
  box-shadow: none;
}

.o2b-cta-primary:hover::before {
  border-left-color: #0e66ff;
  border-bottom-color: #0e66ff;
}

.o2b-cta-secondary {
  background-color: #fceeff;
  border: 1px solid #caa6b5;
  color: var(--o2b-red);
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  margin-left: 1rem;
}
.o2b-cta-secondary:hover {
  background-color: #e2e3e3;
  color: var(--o2b-red);
  text-decoration: none;
}

.o2b-visual-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.o2b-floating-element {
  position: absolute;
}

.o2b-chat-group {
  top: -20%;
  left: 3%;
  transform: scale(0.9);
  animation: float-slow 12s ease-in-out infinite;
}

.o2b-folder-group {
  bottom: -80px;
  right: 5%;
  transform: scale(0.95);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: float-slow 12s ease-in-out infinite;
}

.o2b-float-img {
  object-fit: cover;
  border-radius: 12px;
  /* box-shadow: var(--o2b-shadow-strong); */
}

.o2b-avatars {
  position: absolute;
  bottom: 10px;
  right: 20px;
  display: flex;
  z-index: 2;
}

.o2b-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  box-shadow: var(--o2b-shadow);
}

.o2b-floating-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background-color: white;
  box-shadow: var(--o2b-shadow);
  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: 10%;
  left: 0%;
  animation-duration: 9s;
  animation-delay: 0s;
}
.o2b-icon-charts {
  top: 75%;
  left: 85%;
  animation-duration: 7s;
  animation-delay: 1s;
}
.o2b-icon-chart1 {
  top: 60%;
  left: 10%;
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}
.o2b-icon-chart2 {
  top: 0%;
  left: 95%;
  animation-duration: 6.5s;
  animation-delay: 0.7s;
}
.o2b-icon-chart3 {
  bottom: 10%;
  left: 10%;
  animation-duration: 7.2s;
  animation-delay: 0.2s;
}
.o2b-icon-chart4 {
  top: 90%;
  left: 50%;
  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);
  }
}

@media (max-width: 992px) {
  .o2b-heading {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .o2b-subheading {
    font-size: 1.05rem;
    max-width: 90%;
  }

  .o2b-description {
    width: 90%;
    font-size: 0.95rem;
  }

  .o2b-chat-group {
    top: 6%;
    left: 2%;
    transform: scale(0.75);
  }

  .o2b-floating-icon {
    display: none;
  }
}

@media (max-width: 768px) {
  .o2b-hero-section {
    min-height: auto;
    padding: 80px 0 30px;
  }

  .container.o2b-container-relative {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }

  .o2b-heading {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-top: 0;
  }

  .o2b-highlight {
    font-size: 2.2rem;
  }

  .o2b-subheading {
    font-size: 1rem;
    padding: 0 14px;
    font-weight: 600;
    max-width: 100%;
  }

  .o2b-description {
    width: 95%;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .o2b-cta-primary,
  .o2b-cta-secondary {
    display: inline-block;
    margin: 10px 6px 0;
  }

  .o2b-chat-group,
  .o2b-folder-group {
    display: none;
  }

  .o2b-floating-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  .o2b-hero-section {
    padding: 10px 0 14px;
  }

  .container.o2b-container-relative {
    padding-top: 0.25rem;
    padding-bottom: 1rem;
  }

  .o2b-heading {
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0 10px;
  }


  .o2b-subheading {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  .o2b-description {
    width: 96%;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .o2b-cta-primary,
  .o2b-cta-secondary {
    width: 90%;
    max-width: 220px;
  }

  .o2b-floating-icon {
    display: none;
  }
}

/* Button */
.expert-click-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: #1c68ff !important;
  color: white !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.expert-click-btn:hover {
  background: #0659ff !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

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

/* Right image */
.banner-img img {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.banner-img img:hover {
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .banner-bx {
    text-align: center;
    padding: 80px 0 60px;
  }
  .banner-heading {
    font-size: 2.2rem;
  }
  .banner-phead {
    font-size: 1.2rem;
  }
  .banner-p {
    margin: 0 auto 20px;
  }
  .btn-expert {
    justify-content: center;
  }
}

.wrapper-h {
  border-radius: 6px;
  font-size: 32px;
  font-weight: 700;
  color: #7c4655;
  content-visibility: inherit;
}
.wrapper-p {
  font-weight: 500;
  text-align: justify;
  font-size: 15px;
  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: #7c4655;
}
.wrapper-bx-mg {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .oddo-wrapper .wrapper-content .wrapper-h {
    font-size: 20px;
  }
  .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;
  }
}

.process-step {
  width: 100%;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline > li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.timeline > li.timeline-inverted {
  flex-direction: row-reverse;
}

.timeline-image {
  flex: 0 0 45%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-image img {
  width: 80%;
  height: auto;
  display: block;
}

.timeline-panel {
  position: relative;
  flex: 1;
  background: #e3f0ff4f;
  border-bottom-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 20px 25px;
  text-align: left;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.timeline-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1px;
  box-shadow: 2px 2px 10px #cdcccc;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.timeline-panel:hover {
  box-shadow: 2px 2px 10px #292929a1;
  background: linear-gradient(135deg, rgb(224, 249, 255), rgb(214, 216, 255));
}

.timeline-heading h3.subheading {
  margin: 0 0 12px;
  font-size: 1.3em;
  font-weight: 700;
  color: #161616;
}

/* Body Text */
.timeline-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #474747;
  margin-bottom: 20px;
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
  .timeline > li,
  .timeline > li.timeline-inverted {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .timeline-image {
    width: 100%;
    height: 100%;
  }
  .timeline-panel {
    width: 100%;
    text-align: left;
  }
}

.oddo-l h2 {
  font-size: 32px;
  font-weight: 700;
  color: #7c4655;
  text-transform: uppercase;
}
.oddo-l p {
  font-weight: 500;
  color: #525151d9;
}
@media only screen and (max-width: 600px) {
  .oddo-l h2 {
    font-size: 19px;
  }
  .oddo-l p {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .oddo-l-img {
    text-align: center;
  }
}
.ul-box-list {
  padding-left: 15px;
}
.ul-box-list li {
  position: relative;
  font-size: 14px;
  list-style: none;
  padding-left: 26px;
  font-weight: 500;
  color: #525151d9;
  margin: 6px 0px;
}
.ul-box-list li h6 {
  color: #525151d9;
  font-weight: 700;
  font-size: 18px;
}
.ul-box-list li i {
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 20px;
  font-size: 14px;
  color: #7c4655;
  padding-left: 2px;
}
@media only screen and (max-width: 768px) {
  .ul-box-list {
    padding-left: 0px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ul-box-list {
    padding-left: 0px;
  }
  .ul-box-list li {
    font-size: 13px;
    margin-bottom: 0;
  }
} /* Section Base */
.section-white.service-us {
  background: #fff;
  padding: 70px 0;
}

.section-white.service-us > p {
  max-width: 900px;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
}

.section-white.service-us h3 {
  text-align: start;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 35px;
  color: #6593ff;
}

/* Service Cards */
.service-content {
  background: #f8fbff;
  border: 1px solid #c8e2ff;
  padding: 25px 20px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 370px;
  text-align: justify;
  position: relative;
}

.service-content:hover {
  box-shadow: 0 5px 10px rgba(0, 6, 74, 0.322);

  background: linear-gradient(135deg, rgb(224, 249, 255), rgb(214, 216, 255));
}

/* Card Titles */
.service-content h6 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #000000;
  margin-bottom: 12px;
  margin-top: 20px;
  position: relative;
  padding-left: 8px;
}

/* Card Paragraphs */
.service-content p {
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Remove read-more functionality */
.read-more-wrap,
.read-more-target,
.read-more-trigger,
.read-more-state {
  all: unset;
}
/* Support Icons */
.support-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #5499ff, #002a8b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -35px auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 182, 219, 0.4);
  transition: all 0.3s ease;
}

.support-icon i {
  font-size: 36px;
  color: #f1f3ff;
  transition: all 0.3s ease;
}

/* Hover animation */
.service-content:hover + .support-icon,
.support-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(255, 182, 219, 0.6);
}

.service-content:hover .support-icon i {
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .service-content {
    margin-bottom: 20px;
  }
}

.alternating-row {
  align-items: center;
  margin-bottom: 40px;
}

.content-box {
  padding: 20px;
}

.image-box {
  padding: 0;
  text-align: center;
  /* Center image inside the column */
}

.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  display: inline-block;
  /* Ensure it respects parent width */
}

@media (max-width: 768px) {
  .alternating-row .image-box {
    order: -1;
    /* Move image above content */
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
  }

  .content-box {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px;
  }

  .responsive-img {
    width: 100%;
    /* Fill column width */
    height: auto;
  }
}

/* ---------- 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: #2d57ff;
  text-decoration: underline;
  font-weight: 500;
}

.faq .card-body a:hover {
  color: #0947ff;
}

/* 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;
  }
}

.special-overlay-inner {
  box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 8%);
  padding: 10px;
  background-color: #02020217;
}
.special-overlay-item {
  overflow: hidden;
  position: relative;
}
.special-overlay-item:before {
  background-color: rgb(0 0 0 / 40%);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.special-overlay-item .special-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 0px 0px 20px 0px;
}
.special-img img {
  width: 100%;
  height: 230px;
}
.special-overlay-item .special-content h3 {
  background-color: #fd5b0099;
  padding: 4px 0px 8px;
  margin-bottom: 0;
  text-align: center;
  font-size: 22px;
}
.special-overlay-item:hover h3 {
  background-color: #041d4ade;
  padding: 4px 0px 8px;
  margin-bottom: 0;
  text-align: center;
  font-size: 22px;
}
.special-overlay-item .special-content a {
  color: #fefefe;
  text-decoration: none;
}
.special-overlay-item .special-content a:hover {
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 992px) {
  .special-img img {
    width: 100%;
    height: 140px;
  }
  .special-overlay-item .special-content h3 {
    font-size: 17px;
  }
}
.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;
}

p {
  line-height: 1.75;
}
.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;
  }
}

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

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

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: start;
  margin-bottom: 0.75rem;
}
.feature-list li i {
  color: #3265ff;
  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);
  animation: scrollLeft 20s linear infinite;
}

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

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

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-image {
  max-height: 600px;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(1.15);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.2);
}

.bg-gradient-hero .row {
  align-items: center;
}

@media (max-width: 991.98px) {
  .hero-image {
    max-height: 400px;
    margin-top: 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-image {
    max-height: 300px;
  }
}

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