
/* ===== BACKGROUND ===== */
.body_bg {
  background: linear-gradient(90deg, #ed2225 50%, #0c2440 50%);
  padding: 0;
}

/* ===== ACCORDION DESKTOP ===== */
.accordion-horizontal {
  display: flex;
  height: 600px;
  overflow: hidden;
}

.accordion-item {
  display: flex;
  width: 60px;
  transition: all 0.45s ease;
}

.accordion-item.active {
  width: 100%;
}

/* ===== HEADER ===== */
.accordion-header {
  min-width: 60px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: left;
  justify-content: left;
}

.red_bg { background: #ed2225; }
.blue_bg { background: #0c2440; }

/* ===== CONTENT ===== */
.accordion-content {
  width: 0;
  overflow: hidden;
/*  background: #000;*/
  transition: all 0.45s ease;
}

.accordion-item.active .accordion-content {
  width:100%;
}

/* ===== SWIPER ===== */
.activitySwiper,
.activitySwiper .swiper-slide {
  width: 100%;
}

.activitySwiper img {
  width: 100%;
}

/* ===== IMAGE HEADING ===== */
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
/*  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);*/
}

.slide-caption h4 {
  color: #fff;
  margin: 0;
  font-size: 22px;
}

/* ===== CONTENT LAYOUT ===== */
.accordion-content {
  display: flex;
  flex-direction: column;
  width: 0;
  overflow: hidden;
/*  background: #fff;*/
  transition: all 0.45s ease;
}

.accordion-item.active .accordion-content {
  width: 1000px;
}

/* ===== TEXT AREA ===== */
.accordion-text {
  padding: 20px; 
}

.accordion-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600; color: #ffffff;
}

.accordion-text p {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
}

/* ===== SLIDER AREA ===== */
.accordion-slider {
  flex-grow: 1;
  position: relative;
}

.activitySwiper,
.activitySwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.activitySwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TAB & MOBILE ===== */
@media (max-width: 991px) {

  .accordion-content {
    width: 100%;
    max-height: 0;
  }

  .accordion-item.active .accordion-content {
    max-height: 420px;
  }

  .accordion-slider {
    height: 260px;
  }
}


/* ===== TAB & MOBILE ===== */
@media (max-width: 991px) {

  .accordion-horizontal {
    flex-direction: column;
    height: auto;
  }

  .accordion-item,
  .accordion-item.active {
    width: 100%;
    flex-direction: column;
  }

  .accordion-header {
    writing-mode: horizontal-tb;
    transform: none;
    min-width: 100%;
    text-align: left;
  }

  .accordion-content {
    width: 100%;
    max-height: 0;
    transition: max-height 0.45s ease;
  }

  .accordion-item.active .accordion-content {
    max-height: 300px;
  }

  .activitySwiper {
    height: 300px;
  }
	
	.accordion-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600; color: #ffffff;
}

.accordion-text p {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
}
}
/*
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f2f5f8;
  margin: 0;
}
*/

/* SECTION */
.we-recommend-section {
  padding: 60px 0;
  background: #f5f7fa;
}

.trusted-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #0c2440;
  margin-bottom: 35px;
}

/* Marquee container */
.trusted-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade edges */
.trusted-marquee::before,
.trusted-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f5f7fa, transparent);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f5f7fa, transparent);
}

/* Track */
.trusted-track {
  display: flex;
  width: max-content;
  animation: trustedScroll 30s linear infinite;
}

/* Logo box */
.trusted-logo {
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 18px 28px;
  margin-right: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo img {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

/* Animation */
@keyframes trustedScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trusted-track {
    animation-duration: 22s;
  }

  .trusted-logo {
    padding: 14px 22px;
  }

  .trusted-logo img {
    height: 40px;
  }
}

/* Pause on hover (desktop) */
@media (hover: hover) {
  .trusted-marquee:hover .trusted-track {
    animation-play-state: paused;
  }
}

/* LEFT IMAGE AREA */
.person-img {
  max-width: 380px;
  position: relative;
  z-index: 3;
}

/* BACKGROUND CIRCLE */
.bg-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  background: #fdf3e6;
  border-radius: 50%;
  top: 90px;
  left: -40px;
  z-index: 1;
}

/* IMAGE CIRCLES */
.circle-lg {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 10px solid #dff1f1;
  bottom: 80px;
  right: 0;
  overflow: hidden;
  z-index: 2;
}
	
.circle-lg-01 {
  position: absolute;
   width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 10px solid #ffffff;
	box-shadow: 0 27px 35px rgba(41,137,145,0.2);
  top: 5px;
  right: 190px;
  overflow: hidden;
  z-index: 2;
}

/*
.circle-sm {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 10px solid #fff;
  top: -10px;
  right: 80px;
  box-shadow: 0 27px 35px rgba(41,137,145,0.2);
  z-index: 2;
}
*/

.circle-lg img,
.circle-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TITLE */
.section-title {
  font-size: 38px;
  font-weight: 600;
  color: #0a4b4b;
}

.section-title span {
  color: #f4a300;
}

/* INFO BOX */
.info-box {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: #fff;
}

.info-box h5 {
  color: #0a4b4b;
  margin-bottom: 8px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  color: #6c7a7a;
}

.icon img {
  width: 48px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(96%) saturate(4615%) hue-rotate(176deg);
}

/* BUTTON */
.btn-discover {
  background: #7bd000;
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 500;
  color: #000;
}

.experience-wrap {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* reserve space manually */
.experience-number {
  display: block;
  width: 140px;
  text-align: center;
}
.experience-text {
  display: block;
  width: 140px;
  text-align: left;
}
/* TEXT */
.experience-text {
  height: 100px;              /* 👈 KEY FIX */
  transform: rotate(-90deg);
  font-size: 22px;
  font-weight: 700;
  color: #0a4b4b;
  white-space: nowrap; padding-left: 30px; padding-top: 12px;
}

/* NUMBER */
.experience-number {
  height: 90px;               /* 👈 KEY FIX */
  transform: rotate(-90deg);
  font-size: 72px;
  font-weight: 800;
  color: #f4a300;
  line-height: 1; 
  position: relative;
}

/* SHADOW */
.experience-number::after {
  content: attr(data-num);
  position: absolute;
  left: 28px;
  top: 2px;
  color: #0a4b4b;
  z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .circle-lg,
  .circle-sm,
  .bg-circle,
  .experience-wrap {
    display: none;
  }
}


.trusted-section {
  padding: 60px 20px;
  background: #fff;
  overflow: hidden;
}

/* Heading with divider */
.trusted-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.trusted-heading::before,
.trusted-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #cfd8dc;
}

.trusted-heading span {
  padding: 0 20px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1f3b3a;
  text-transform: uppercase;
}

/* Swiper */
.trustedSwiper {
  width: 100%;
}

.trustedSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trustedSwiper img {
  max-height: 50px;
  width: auto;
  filter: grayscale(0%);
  opacity: 0.85;
  transition: 0.3s;
}

.trustedSwiper img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .trusted-heading span {
    font-size: 18px;
  }

  .trustedSwiper img {
    max-height: 40px;
  }
}

/* custom tweaks */
.rounded-pill-end-left {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
border-top-right-radius: 80px;
  border-bottom-right-radius: 80px; height: 390px;
}
	.rounded-pill-end {
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
		border-top-left-radius: 20px;
  border-bottom-left-radius: 20px; height: 370px; margin-right: 80px;
}
.experience-badge {
  transform: rotate(-90deg);
  transform-origin: left bottom;
}
