body {
  font-family: "Inter", sans-serif !important;
}
:root {
  --o2b-green: #84355a;
  --o2b-red: #693443;
  --o2b-bg-light: #f7f7f7;
  --o2b-text-dark: #343a40;
  --o2b-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --o2b-shadow-strong: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.o2b-hero-section {
  background-color: #eef1ff;
  position: relative;
  min-height: 600px;
  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: 800px;
  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;
  }

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

.faq-section {
  background: none;
}
.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;
}

.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: 30%;
  left: 0%;
  animation-duration: 9s;
  animation-delay: 0s;
}
.o2b-icon-charts {
  top: 45%;
  left: 90%;
  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: 95%;
  animation-duration: 6.5s;
  animation-delay: 0.7s;
}
.o2b-icon-chart3 {
  top: 100%;
  left: 20%;
  animation-duration: 7.2s;
  animation-delay: 0.2s;
}
.o2b-icon-chart4 {
  top: 90%;
  left: 70%;
  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.rem;
    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;
  }
}



/* Button */
.expert-click-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: #1c68ff;
  color: white;
  border-radius: 50px;
  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;
  color: #ffffff;
  text-decoration: none;
}

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

.oddo-img,
.oddo-img1,
.oddo-img2,
.oddo-img3,
.oddo-img4,
.oddo-img5,
.oddo-img6,
.oddo-img7 {
  text-align: center;
}

.oddo-img img {
  width: 510px;
  height: 619px;
}

.oddo-img1 img {
  width: 510px;
  height: 281px;
}

.oddo-img2 img {
  width: 510px;
  height: 553px;
}

.oddo-img3 img {
  width: 510px;
  height: 455px;
}

.oddo-img5 img {
  width: 510px;
  height: 364px;
}

.oddo-img6 img {
  width: 510px;
  height: 457px;
}

@media screen and (max-width: 768px) {
  .oddo-banner {
    padding: 0px;
  }

  .banner-heading {
    font-size: 28px;
  }

  .btn-expert {
    margin-bottom: 1rem;
  }

  .banner-p {
    font-size: 15px;
    font-weight: 400;
  }

  .btn-left {
    text-align: center !important;
  }

  .oddo-img img {
    width: 354px;
    height: 430px;
  }

  .oddo-img1 img {
    width: 347px;
    height: 224px;
  }

  .oddo-img2 img {
    width: 454px;
    height: 445px;
  }

  .oddo-img3 img {
    width: 354px;
    height: 455px;
  }

  .oddo-img5 img {
    width: 354px;
    height: 236px;
  }

  .oddo-img6 img {
    width: 354px;
    height: 236px;
  }
}

@media only screen and (max-width: 768px) {
  .btn-expert {
    text-align: center;
  }

  .btn-expert .expert-click-btn {
    padding: 10px 14px 10px 14px;
    font-size: 16px;
    border-radius: 3px;
    margin-top: 10px;
  }

  .banner-img img {
    height: 225px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .btn-expert .expert-click-btn {
    padding: 8px 15px 8px 15px;
    font-size: 15px;
    border-radius: 5px;
  }

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

  .btn-left {
    text-align: center !important;
  }
}

.section-white {
  background: white;
  padding: 2rem 0 2rem 0;
}
.section-white a:hover{
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .section-white {
    background: white;
    padding: 1rem 0 1rem 0;
  }
}

.text-end {
  text-align: right;
  padding: 12px 25px;
  margin: 10px 8px;
  box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
}

.text-end:hover {
  padding: 12px 25px;
  margin: 10px;
}

.pe-3 {
  padding-right: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.right-circle {
  position: relative;
  transform: translate(-50%, 0%);
  top: 0px;
  left: -98%;
  line-height: 30px;
}

.left-circle {
  line-height: 30px;
}

.content-10 h2 {
  font-size: 32px;
  font-weight: 700;
  color: #874b5f;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}

.imp-content h4 a {
  color: black;
  text-decoration: none;
  font-weight: 700;
}

.imp-content:hover h4 a {
  color: #f58f47;
  font-weight: 700;
}

.imp-content i {
  color: #f58f47;
}

.imp-content p {
  color: #525151d9;
  font-size: 14px;
  font-weight: 500;
  height: 70px;
  overflow: hidden;
  text-align: justify;
}

@media (max-width: 768px) {
  .text-end {
    text-align: left;
    padding-left: 18px;
  }

  .text-start {
    text-align: left;
    padding-left: 18px;
  }

  .left-circle {
    position: relative;
    top: 0%;
    left: -96%;
    transform: translate(-50%, 0%);
  }

  .right-circle {
    position: relative;
    top: 0%;
    left: -96%;
    transform: translate(-50%, 0%);
  }

  .pe-3 {
    padding-left: 1rem !important;
  }

  .content-10 h2 {
    text-align: left;
  }
}

.section-parallax {
  background-image: url(../background.jpg);
  color: #fff;
  background-attachment: fixed;
  background-position: center;
}

.parallax {
  background: rgb(135 75 95 / 82%);
  padding: 2rem 0rem 2rem 0rem;
}

.entery-box {
  padding: 24px 0px;
}

.entery-box p {
  text-align: justify;
  font-weight: 500;
}

.entery-box h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  word-break: break-word;
}

.entry-wrapper {
  color: black;
  background: white;
  padding: 20px;
  margin: 10px 0px;
}

.entery-wrapper {
  color: black;
  background: white;
  padding: 20px;
  margin: 10px 0px;
}

.entry-thumbnail-wrapper {
  font-size: 35px;
}

.entry-title a {
  color: black;
  text-decoration: none;
  font-size: 20px;
}

.entry-thumbnail-wrapper i {
  color: #f27935;
}

@media (max-width: 768px) {
  .entery-box {
    padding: 24px;
  }

  .entery-box h2 {
    font-size: 35px;
  }
}

.process-bx .process-main {
  margin: 20px 0;
}

.process-main h6 {
  padding: 10px;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 19px;
}

.process-text {
  padding: 10px;
}

.process-bx h5 {
  font-weight: 700;
}

.process-bx h2 {
  font-size: 32px;
  font-weight: 700;
  color: #874b5f;
  text-align: center;
  text-transform: uppercase;
}

.process-bx p {
  font-size: 14px;
  color: #525151d9;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 992px) {
  .process-bx h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .process-bx h2 {
    font-size: 26px;
  }
}

.oddo-l h2 {
  font-size: 32px;
  font-weight: 700;
  color: #874b5f;
  text-transform: uppercase;
}

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

/*.imgm {
	padding-top: 50px
}*/

@media only screen and (max-width: 768px) {
  .oddo-l h2 {
    font-size: 19px;
  }

  .oddo-l p {
    font-size: 15px;
  }

  .imgm {
    padding-top: 0px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .oddo-l-img {
    text-align: center;
  }
}

.ul-box-list {
  padding-left: 15px;
}

.ul-box-list li {
  text-align: start;
  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: rgb(49, 94, 255);
  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;
  }
}

.choose-us h4 {
  font-size: 32px;
  font-weight: 700;
  color: #874b5f;
  text-align: center;
  text-transform: uppercase;
}

.choose-us .choose-main {
  margin: 20px 0;
}

.choose-us .choose-mp {
  text-align: justify;
  font-size: 14px;
  color: #525151d9;
  font-weight: 500;
}

.choose-us h5 {
  font-weight: 700;
}

.choose-main h6 {
  padding: 10px;
  font-weight: 700;
  box-shadow: 1px 1px 5px #0000001c;
  margin-bottom: 0;
  font-size: 19px;
}

.p-text {
  box-shadow: 1px 1px 5px #0000001c;
  padding: 10px;
  text-align: justify;
  font-size: 14px;
  color: #525151d9;
  font-weight: 500;
}

.p-text span {
  font-weight: 700;
  font-size: 18px;
  color: #000000d1;
}

.box-list {
  box-shadow: 1px 1px 5px #0000001c;
  padding: 10px;
  margin-bottom: 10px;
}

.box-list .box-list-p {
  text-align: justify;
  font-size: 14px;
  color: #525151d9;
  font-weight: 500;
}

.box-list .span-text {
  font-weight: 700;
  font-size: 18px;
  color: #000000d1;
}

.list-p {
  text-align: justify;
  font-size: 19px;
  color: #0a0a0ad9;
  font-weight: 500;
  margin-bottom: 0;
}

.owl-carousel .owl-item img {
  display: block;
  border-radius: 0px !important;
  width: 100%;
}

.grid2 {
  margin: 0px 1px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: none !important;
  text-align: center;
}

.caption {
  letter-spacing: 0.5px;
  font-size: 15px;
  color: #585656;
  font-weight: 400;
  text-align: justify;
}

.grid2 figure {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0);
  text-align: center;
  cursor: pointer;
  height: auto;
  width: 100%;
  color: black;
  font-size: 16px;
  margin: 0px auto;
  padding-top: 0px;
}

.client-ig {
  margin: 10px 0px;
}

.client {
  border-bottom: 3px solid #00000078;
  background-color: #0054a605;
  padding: 18px 0px;
}

.client-logo {
  position: relative;
  display: block;
}

@media only screen and (max-width: 768px) {
  .client-logo {
    position: relative;
    display: none !important;
    visibility: hidden;
  }
}

.service-us h2 {
  font-size: 32px;
  font-weight: 700;
  color: #874b5f;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #000000a3;
}

.service-us h3 {
  font-weight: 700;
  color: #874b5fa6;
  text-shadow: 1px 1px 1px #000000b8;
}

.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: #ffffff;
  box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
}

.service-content:hover {
  background-color: #faebd72b;
  box-shadow: 0 0 10px 4px rgb(31 66 135 / 0%);
  border: 1px solid #faebd726;
}

.service-content .serve-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #5a3b45;
}

.service-content p {
  text-align: justify;
  font-size: 14px;
  padding-bottom: 0;
  height: 150px;
  overflow: hidden;
}

.image-service {
  padding-bottom: 14px;
}

.image-service img {
  width: 100%;
  height: 206px;
}

@media only screen and (max-width: 768px) {
  .service-content p {
    height: auto;
    overflow: visible;
  }

  .service-us h2 {
    font-size: 22px;
  }

  .image-service img {
    width: 100%;
    height: 207px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .service-us h2 {
    font-size: 24px;
    text-align: center;
  }

  .image-service img {
    width: 100%;
    height: 206px;
    box-shadow: 0px 3px 4px -1px #00000033;
    border-radius: 6px;
  }

  .service-content .serve-content h3 {
    font-size: 18px;
  }

  .service-content {
    border-radius: 6px;
    padding: 12px 12px 1px 12px;
    border: 1px solid #5251512e;
  }
}

.oddo-wrapper .wrapper-content .wrapper-h {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
}

.oddo-wrapper .wrapper-bx .wrapper-h {
  border-radius: 6px;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: left;
  content-visibility: inherit;
}

@media (max-width: 768px) {
  .oddo-wrapper .wrapper-bx .wrapper-h {
    font-size: 25px;
  }
}

.wrapper-bx .wrapper-hp {
  font-weight: 500;
  text-align: start;
  font-size: 15px;
  color: #525151d9;
}

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

.oddo-wrapper .wrapper-content .step-heading {
  font-size: 20px;
  font-weight: 700;
}

.oddo-wrapper .wrapper-content .heading-h3 {
  color: #2b59ffe6;
  font-weight: 600;
  font-size: 16px;
}

.oddo-wrap-h {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: left;
  text-transform: uppercase;
}

.oddo-wrap-p {
  color: #525151d9;
  /* font-weight: 500; */
  font-size: 15px;
}

.oddo-wrapper h3 {
  font-weight: 700;
  font-size: 25px;
}

.oddo-wrapper .wrapper-content .wrapper-text {
  color: #525151d9;
  font-weight: 500;
  font-size: 14px;
}

.oddo-wrapper .wrapper-content .wrapper-text span {
  font-size: 18px;
  color: black;
  font-weight: 700;
}

.oddo-wrapper .wrapper-content .wrapper-text1 {
  font-size: 18px;
  color: black;
  font-weight: 700;
  margin-bottom: 0;
}

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

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

.timeline a:hover{
  text-decoration: underline;
}
.timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}

.timeline__event {
  margin: 20px 0;
  position: relative;
  display: flex;
  border-radius: 6px;
  align-self: stretch;
  width: 100%;
}
.timeline__event p {
  font-size: 15px;
  font-weight: 600;
  color: gray;
}

/* Odd events reversed */
.timeline__event:nth-child(2n + 1) {
  flex-direction: row-reverse;
}

/* Title */
.timeline__event__title {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  color: #1f1f1f; /* Unified color */
  word-spacing: 2px;
  }

.timeline__event__content {
  padding: 20px;
  box-shadow:
    0 30px 60px -12px rgba(50, 50, 93, 0.25),
    0 18px 36px -18px rgba(0, 0, 0, 0.3),
    0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  background: #fff;
  width: 100%;
}
.timeline__event__description p {
  font-size: 15px;
  font-weight: 400;
}
.timeline__event__date {
  color: #fff;
  font-size: 1.5rem;
  width: 200px;
  font-weight: 600;
  background: linear-gradient(
    136deg,
    rgb(177, 177, 255),
    rgb(150, 223, 255)
  ); /* Same color */
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 20px;
}

.timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ab649e;
  padding: 20px;
  align-self: center;
  margin: 0 20px;
  background: #87bbfe; /* Matching secondary */
  border-radius: 100%;
  width: 40px;
  height: 40px;
  box-shadow:
    0 30px 60px -12px rgba(50, 50, 93, 0.25),
    0 18px 36px -18px rgba(0, 0, 0, 0.3),
    0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  position: relative;
}

.timeline__event__icon i {
  font-size: 32px;
}

/* Vertical line */
.timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 100%;
  background: #d587c7;
  position: absolute;
  top: 0%;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  animation: fillTop 2s forwards 4s ease-in-out;
}

/* Horizontal line (default → to left side) */
.timeline__event__icon:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #d587c7;
  position: absolute;
  left: 0%;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  animation: fillLeftOdd 2s forwards 4s ease-in-out;
}

/* Fix odd events – line goes to right side */
.timeline__event:nth-child(2n + 1) .timeline__event__icon:after {
  left: auto;
  right: 0;
  animation: fillLeft 2s forwards 4s ease-in-out;
}

/* Last element – no vertical line */
.timeline__event:last-child .timeline__event__icon:before {
  content: none;
}

/* Responsive */
@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    align-self: center;
  }
  .timeline__event__content {
    width: 100%;
  }
  .timeline__event__icon {
    border-radius: 6px 6px 0 0;
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
  .timeline__event__icon:before,
  .timeline__event__icon:after {
    display: none;
  }
  .timeline__event__date {
    border-radius: 0;
    padding: 20px;
  }
}

/* Animations */
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
/* Tablets (<= 991px) */
@media (max-width: 991px) {
  .timeline__event {
    flex-direction: column !important; /* Stack content vertically */
    align-self: center;
    margin: 15px 0;
  }

  .timeline__event__content {
    padding: 15px;
  }

  .timeline__event__title {
    font-size: 1.1rem;
  }

  .timeline__event__date {
    width: 100%;
    font-size: 1.3rem;
    padding: 10px 15px;
  }

  .timeline__event__icon {
    width: 35px;
    height: 35px;
    padding: 15px;
    margin: 10px 0;
  }

  .timeline__event__icon i {
    font-size: 28px;
  }
}

/* Mobile (<= 576px) */
@media (max-width: 576px) {
  .timeline__event {
    flex-direction: column !important;
    align-self: center;
    margin: 10px 0;
  }

  .timeline__event__content {
    padding: 10px;
  }

  .timeline__event__title {
    font-size: 1rem;
  }

  .timeline__event__date {
    width: 100%;
    font-size: 1.1rem;
    padding: 8px 12px;
  }

  .timeline__event__icon {
    width: 30px;
    height: 30px;
    padding: 10px;
    margin: 8px 0;
  }

  .timeline__event__icon i {
    font-size: 24px;
  }

  /* Hide horizontal lines on mobile */
  .timeline__event__icon:after,
  .timeline__event__icon:before {
    display: none;
  }
}

.section-odoo-advantages {
  background-color: #fff;
  color: #333;
}

.section-odoo-advantages h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
}

.advantage-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(126, 59, 87, 0.15);
}
.advantage-card a:hover {
text-decoration: underline;
}

.advantage-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #2a71ff, #3e00f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 30px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.advantage-card:hover {
  background: linear-gradient(130deg, #d5caff 0%, #b2fbff 100%);
}

.advantage-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.advantage-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
}

.advantage-desc a:hover {
  color: #622d43;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .advantage-card {
    padding: 25px 20px;
  }
  .advantage-title {
    font-size: 1.1rem;
  }
}

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

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