

.o2b-hero-section {
  background-color:rgb(234, 240, 255);
  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: 2;
  text-align: center;
}

.o2b-heading {
  max-width: 1000px;
  margin: auto;
  font-size: 3rem;
  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.1rem;
  color: #495057;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


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

/* Hover (WHITE button + no outer border) */
.o2b-cta-primary:hover {
  background-color: #ffffff !important;
  color: #0e66ff !important;
  border-color: transparent !important;
  /* remove main border */
  box-shadow: none;
}

/* On hover – show ONLY left + bottom corner border */
.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: 20%;
  left: 0%;
  animation-duration: 9s;
  animation-delay: 0s;
}
.o2b-icon-charts {
  top: 45%;
  left: 95%;
  animation-duration: 7s;
  animation-delay: 1s;
}
.o2b-icon-chart1 {
  top: 70%;
  left: 0%;
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}
.o2b-icon-chart2 {
  top: 0%;
  left: 100%;
  animation-duration: 6.5s;
  animation-delay: 0.7s;
}
.o2b-icon-chart3 {
  top: 80%;
  left: 20%;
  animation-duration: 7.2s;
  animation-delay: 0.2s;
}
.o2b-icon-chart4 {
  top: 90%;
  left: 50%;
  animation-duration: 5.8s;
  animation-delay: 1.2s;
}

@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);
  }
}
/* ✅ UPDATED MEDIA QUERIES ONLY (desktop CSS untouched) */

@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.9rem;
    line-height: 1.2;
    margin-top: 0;
    padding: 0 12px;
  }

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

  .o2b-subheading {
    font-size: 1rem;
    padding: 0 14px;
    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.7rem;
    line-height: 1.2;
    padding: 0 10px;
  }

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

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


/* Bullet List Wrapper */
.feature-list-wrapper {
    margin-top: 25px;
        max-width: 1000px;
    margin: auto;
}

/* Bullet List Style */
.feature-list-item {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    line-height: 1.5;
}

.feature-list-item i {
    color: #004cff;   /* Your theme color */
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Center items on mobile */
@media (max-width: 992px) {
    .feature-list-item {
        justify-content: start;
        text-align: start !important;
    }
    .feature-list-item i {
        margin-right: 6px;
    }
}

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

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

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


.Features h2 {
  color: #635bb1;
  margin-bottom: 20px;
  text-transform: uppercase;
}
/* ---------- 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;
  }
}

/* Headings */
.seamless h2 {
  margin-top: 30px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #874b5f;
    margin-bottom: 10px;
    position: relative;
}

/* Paragraphs */
.seamless p {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.8;
}


/* Responsive */
@media (max-width: 991px) {
    .seamless .col-lg-6 {
        margin-bottom: 40px;
        text-align: center;
    }

    .btn-expert {
        text-align: center;
    }
}

/* ---------- Card Styling ---------- */
/* ---------- Card Styling ---------- */
.intr-bx {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(to bottom, white, #eaf1ff);
  overflow: hidden;
}

.intr-bx:hover {
  background: linear-gradient(to bottom, rgb(221, 244, 255), #dddfff);
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ---------- Image ---------- */
.intr-bx img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* ---------- Card Body ---------- */
.card-body {
  padding: 20px;
}

.intr-desc {
  font-size: 14px;
  text-align: justify;
  margin: 0;              /* IMPORTANT: removes default p gap */
  line-height: 1.7;
  color: rgb(87, 87, 87);
}

/* Headings */
.intr-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.intr-heading a {
  color: #0073ff;
  text-decoration: none;
}

.intr-heading a:hover {
  text-decoration: underline;
}

/* ---------- Read More Toggle (NO GAP / NO BREAK) ---------- */
.read-more-state {
  display: none;
}

/* Hide extra text by default */
.read-more-extra {
  display: none;
}

/* Show extra text inline when checked (same paragraph continues) */
.read-more-state:checked ~ .intr-desc .read-more-extra {
  display: inline;
}

/* Read More / Read Less button */
.read-more-trigger {
  display: inline-block;
  margin-top: 10px;
  color: #0062ff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.read-more-trigger:hover {
  color: #006ed4;
  text-decoration: underline;
}

/* Default text */
.read-more-state ~ .read-more-trigger::before {
  content: 'Read More';
}

/* Checked text */
.read-more-state:checked ~ .read-more-trigger::before {
  content: 'Read Less' !important;
}


/* ---------- Meet the Experts Button ---------- */

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

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