/* =====================================================
   Banner Section
   ===================================================== */
#banner {
  padding: 160px 0 60px;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* Text block */
.banner-text-block {
  max-width: 970px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.banner-badge {
  display: inline-block;
  border: 1.5px solid #9b4dca;
  color: #7c3aed;
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  background: #fff;
}

.banner-heading {
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    color: #111;
   margin-bottom: 0;
    font-family: 'helvetica_neuelight';
}

.banner-highlight {
  color: var(--blue);
    font-family: 'helvetica_neuebold';
}

.banner-subtext {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.banner-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}


/* .banner-btn-outline:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  text-decoration: none;
} */

/* Bottom row */
.banner-bottom-row {
  display: flex;
align-items: center;
  /* justify-content: center; */
  /* gap: 24px; */
}

/* Shared card styles */
.banner-card {
  background: #fff;
  border-radius: 16px;
  /* padding: 50px 20px 20px 20px; */
  /* box-shadow: 0 6px 30px rgba(0, 0, 0, 0.10); */
  flex-shrink: 0;
  /* box-shadow: 0px 0px 24px 0px #0000001A; */
}

/* Meeting Calls card */
/* .banner-card-meeting {
  width: 240px;
  margin-bottom: 30px;
} */

.meeting-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.banner-card-meeting{
    width: 380px;
    margin-left: auto;
}
.meeting-card-title,.sources-title {
    font-weight: 700;
    color: #100F12;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
    font-family: 'helvetica_neuebold';
}

.meeting-badge {
    font-family: var(--font-gotham-light);
    font-weight: 400;
    color: var(--grey);
    border: 1px solid transparent;
    border-radius: 26px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #E930C9 0%, #7823B1 100%) border-box;
    padding: 7px 20px;
    font-size: 12px;
    line-height: 16px;
}

.meeting-avatars {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.meeting-avatar {
  width: 68px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.meeting-plus {
    font-size: 20px;
    color: #100F12;
    font-weight: 400;
    font-family: 'helvetica_neuebold';
}

.meeting-summary-box {
  background: #F0EFEF;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid #E0E0E0;
}

.meeting-summary-title {
  font-size: 16px;
  color: #222;
  margin-bottom: 6px;
  font-family: 'helvetica_neueregular';
}

.meeting-lorem {
    font-size: 13px;
    color: #494D4D;
    font-family: 'helvetica_neueregular';
    margin-bottom: 3px;
}

/* Robot image */
/* .banner-robot {
  flex-shrink: 0;
  width: 340px;
  text-align: center;
  line-height: 0;
} */

.banner-robot img {
  width: 100%;
  display: block;
}

/* Sources card */
.banner-card-sources {
  /* width: 250px; */
  margin-bottom: 60px;
  position: relative;
      top: -35px;

}

.source-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid #e8e8ee;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
}

.banner-card-meeting .source-icon,
.banner-card-sources .source-icon {
  display: block;
  animation: banner-card-bounce 2.8s ease-in-out infinite;
  transform-origin: center bottom;
}

.banner-card-sources .source-icon {
  animation-delay: 0.35s;
}

@keyframes banner-card-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.source-label {
    font-size: 12px;
    color: #444;
    word-break: break-all;
    font-family: var(--font-one);
}

.source-add {
  background: #f5f5f7;
  border: 1px dashed #ccc;
  cursor: pointer;
}

.source-add-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e0e0e8;
  border-radius: 50%;
  font-size: 18px;
  color: #555;
  flex-shrink: 0;
  line-height: 1;
}



/* =====================================================
   star rating css */
:root {
  --star-size: 20px;
  --star-color: lightgrey;
  --star-background: #fc0;
}

.Stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}

.Stars::before {
  content: '★★★★★';
  letter-spacing: 0px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.star-rating {
  display: none;
}

#carousel-slider-section{
    height: 500px;
}





/* services */

/* =============================================
   Our Process Section
   ============================================= */
#our-process.process-home-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Headings */
.process-headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}

.process-headings .process-tag {
  display: inline-block;
  border: 1px solid #c5a8e5;
  color: #8d4aa8;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  padding: 2px 18px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.process-headings h2 {
  color: #1a1a1a;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* Carousel wrapper */
.process-carousel-wrap {
  width: 100%;
}

/* Card */


.process-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #F0EFEF;
    padding: 20px;
    position: relative;
    z-index: 0;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Animated fill — slides up from bottom on hover */
.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7823B1 0%, #E930C9 100%);
    border-radius: 20px;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover::before {
    transform: translateY(0);
}

/* .process-card:hover {
    box-shadow: 0 16px 48px rgba(120, 35, 177, 0.30);
    transform: translateY(-4px);
} */

/* Text colour flips on hover */
.process-card:hover .process-card-body h6 a{
    color: #ffffff;
}

.process-card:hover .process-card-body > p {
    color: rgba(255, 255, 255, 0.85);
}

.process-card:hover .process-points li {
    color: rgba(255, 255, 255, 0.85);
}

.process-card:hover .process-points li i {
    color: rgba(255, 255, 255, 0.7);
}

.process-card:hover .process-step-number {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
}
.process-card-body h6 a{
    font: 400 15px / 21px helvetica_neuebold;
    color: #000;
}
/* Card image */
.process-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 14px 14px 0 0;
}

.process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
      border-radius: 20px;
}


/* Meta icon badge — bottom-right of image */
.process-meta-icon {
  position: absolute;
  right: 14px;
  bottom: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  background: #FFFFFF;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
}

.process-card:hover .process-meta-icon {
  transform: scale(1.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.process-meta-icon img {
  width: 22px !important;
  height: 22px;
  object-fit: contain;
}

.process-meta-icon.process-fa-icon i {
  color: #ffffff;
  font-size: 18px;
}

/* Card body */
.process-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
      margin-top: 10px; 
}

.process-card-body h4 {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.process-card-body > p {
    line-height: 1.55;
    color: #000000;
    font-size: 13px;
    font-weight: 300;
    font-family: var(--font-one);
}

/* Bullet points */
.process-points {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
}

.process-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
  font-family: var(--font-one);
  align-items: center;
}

.process-points li i {
  color: #555;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Large faded step number */
.process-step-number {
  display: block;
  font-size: 62px;
  font-family: 'helvetica_neuebold';
  color: transparent;
  -webkit-text-stroke: 1px #C0BDBD;
  line-height: 1;
  margin-top: 18px;
  user-select: none;
}

/* Owl overrides */
#our-process .owl-nav,
#our-process .owl-dots {
  display: none;
}




/* =====================================================
   Our Team Section
   ===================================================== */
#our-team {
  padding: 70px 0 60px;
  background-color: #0e0e10;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Heading */
.team-section-heading {
  margin-bottom: 44px;
}

.team-tag {
  display: inline-block;
  border: 1.5px solid #9b6fff;
  color: #d4aaff;
  border-radius: 50px;
  padding: 5px 18px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  background: transparent;
  letter-spacing: 0.5px;
}

.team-heading {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
}

/* Carousel wrapper */
.team-carousel-wrap {
  position: relative;
  padding-bottom: 64px;
}

/* ---- Individual card ---- */
.team-card {
    border-radius: 14px;
    outline: none;
}


/* Card top: name + designation + share icon */
.team-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.team-card-info .team-name  a{
  color: #fff;
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  text-decoration: none;
  font-family: 'helvetica_neuebold';
}

.team-card-info h4 {
margin-bottom: 0;
}

.team-card-info .team-name a:hover {
  color: var(--pink)
}

.team-card-info .team-designation {
    color: #A3A3A3;
    font-size: 14px;
    font-family: var(--font-one);
    margin-bottom: 0;
}

.team-share-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #222;
  flex-shrink: 0;
  transition: background 0.2s;
}
.team-share-btn i{
      font-size: 16px;
}
.team-share-btn:hover {
  background: #e0e0e0;
}

/* ---- Photo + social overlay wrapper ---- */
.team-card-photo-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.team-card-photo img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
  border-radius: 10px;
  height: 560px;
}

.team-card:hover .team-card-photo img,
.team-carousel .owl-item.center .team-card .team-card-photo img {
  transform: scale(1.04);
}

/* ---- Social icons: hidden below photo, slide up on hover ---- */
.team-card-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 100%);

  /* Start hidden below */
  transform: translateY(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide up when card is hovered */
.team-card:hover .team-card-social {
  transform: translateY(0);
}

/* Staggered per-icon entrance from below */
.team-card-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.35s ease, opacity 0.35s ease;
  transform: translateY(16px);
  opacity: 0;
}

.team-card:hover .team-card-social a {
  transform: translateY(0);
  opacity: 1;
}

.team-card:hover .team-card-social a:nth-child(1) { transition-delay: 0.06s; }
.team-card:hover .team-card-social a:nth-child(2) { transition-delay: 0.12s; }
.team-card:hover .team-card-social a:nth-child(3) { transition-delay: 0.18s; }
.team-card:hover .team-card-social a:nth-child(4) { transition-delay: 0.24s; }

.team-card-social a:hover {
background: linear-gradient(124.86deg, #E930C9 -8.3%, #7823B1 100%);
  color: #fff;
}

#our-team .section-title{
  color: #fff;
}
/* ---- Custom nav arrows ---- */
.team-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team-nav-prev,
.team-nav-next {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.2s, background 0.2s;
}

.team-nav-prev:hover,
.team-nav-next:hover {
  border-color: #fff;
  background: #fff;
}
.team-nav-prev:hover i,.team-nav-next:hover i{
  color: #000;
}
/* ---- Owl Carousel overrides ---- */
#our-team .owl-stage {
  display: flex;
  align-items: stretch;
}

#our-team .owl-item {
  height: auto;
}

#our-team .owl-item .team-card {
  height: 100%;
}

#our-team .owl-nav,
#our-team .owl-dots {
  display: none !important;
}



/* =====================================================
   FAQ Section
   ===================================================== */
#our-faq {
  padding: 80px 0;
  background: #fff;
}

/* Left image */
.faq-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 30px;
}

.faq-robot-img {
  width: 100%;
  max-width: 400px;
  display: block;
  animation: faqRobotSlideX 3.4s ease-in-out infinite alternate;
}

@keyframes faqRobotSlideX {
  0% {
    transform: translateX(-14px);
  }
  100% {
    transform: translateX(14px);
  }
}

/* Heading */
.faq-section-heading {
  margin-bottom: 32px;
}
.faq-section-heading .section-subtitle{
  margin: initial;
}
.faq-tag {
  display: inline-block;
  border: 1.5px solid #9b4dca;
  color: #7c3aed;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  background: #fff;
}

.faq-heading {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
  line-height: 1.2;
}





/* =====================================================
   Testimonial Section
   ===================================================== */
.testi-section {
    position: relative;
    overflow: hidden;
    background: #F0EFEF;
    padding: 80px 0 60px;
    margin: 0 40px;
    border-radius: 20px;
}

.testi-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(56px, 10vw, 110px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.12);
  text-stroke: 1.5px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  pointer-events: none;
  /* letter-spacing: 0.12em; */
  z-index: 0;
  user-select: none;
  font-family: 'helvetica_neuebold', sans-serif;
  font-size: 220px;
  line-height: 200px;
  /* color: rgba(120, 35, 177, 0.08); */
  -webkit-text-stroke: 1.5px rgba(120, 35, 177, 0.14);
  /* text-stroke: 1.5px rgba(120, 35, 177, 0.14);
  text-shadow: 0 0 16px rgba(120, 35, 177, 0.10), 0 0 38px rgba(233, 48, 201, 0.08); */
}

.testi-container {
  position: relative;
  z-index: 1;
}

/* Heading */
.testi-heading-wrap {
  margin-bottom: 40px;
}

.testi-tag {
  display: inline-block;
  border: 1px solid #444;
  border-radius: 30px;
  padding: 4px 22px;
  font-size: 13px;
  color: #333;
  margin-bottom: 14px;
  font-family: var(--font-one);
}

.testi-main-title {
  font-size: 34px;
  font-weight: 700;
  color: #111;
  margin: 0;
  font-family: 'helvetica_neuebold', sans-serif;
}

/* Main slider wrapper */
.testi-main-slider {
  max-width: 460px;
  margin: 0 auto 28px;
  overflow: hidden;
}

.testi-slide {
  display: none;
}

.testi-slide.testi-slide--active {
  display: block;
}

/* Card */
.testi-card {
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  padding: 15px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testi-card__photo {
  position: relative;
  width: 100%;
  height: 268px;
  background-size: cover;
  background-position: center top;
  border-radius: 10px;
  overflow: hidden;
  transition: filter 0.45s ease;
}

.testi-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 10, 20, 0.52) 0%, rgba(41, 21, 59, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

/* .testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
} */

.testi-card__photo:hover {
  filter: brightness(0.72) contrast(1.08) saturate(1.02);
}

.testi-card__photo:hover::after {
  opacity: 1;
}

.testi-card__body {
    padding: 20px 26px 26px;
    color: #fff;
    text-align: center;
}

.testi-card__quote {
  font-size: 14px;
  line-height: 1.65;
  color: #ccc;
  margin-bottom: 14px;
  font-family: var(--font-one);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  justify-content: center;
}

.testi-card__name a{
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  font-family: 'helvetica_neuebold', sans-serif;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.testi-card__desig {
  font-size: 12px;
  color: #888;
  margin: 0;
  font-family: var(--font-one);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.testi-card:hover .testi-card__quote,
.testi-card:hover .testi-card__name a,
.testi-card:hover .testi-card__desig {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.24);
}

/* Controls row */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 540px;
  margin: 0 auto 40px;
}

.testi-prev,
.testi-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding: 0;
}

.testi-prev:hover,
.testi-next:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.testi-progress-track {
  flex: 1;
  height: 5px;
  background: #FFFFFF;
  border-radius: 2px;
  overflow: hidden;
}

.testi-progress-bar {
  height: 100%;
  background: #111;
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

/* Footer row */
.testi-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}

.testi-rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-star-icon {
  flex-shrink: 0;
}

.testi-rating-text {
  display: flex;
  flex-direction: column;
}

.testi-rating-num {
     font-size: 50px;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  font-family: 'helvetica_neuebold', sans-serif;
}

.testi-rating-denom {
  font-size: 16px;
  font-weight: 400;
    font-family: 'helvetica_neuebold', sans-serif;
}

.testi-rating-label {
  font-size: 14px;
  color: #575757;
  font-family: var(--font-one);
}

/* Thumbnail row */
.testi-thumbs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testi-thumb {
  width: 95px;
  height: 97px;
  border-radius: 10px;
  overflow: visible;
  cursor: pointer;
  border: none;
  transition: none;
  flex-shrink: 0;
  outline: none;
  position: relative;
}

/* Gradient border via ::before — sits behind the image */
.testi-thumb::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px; /* thumb border-radius + 4px border */
  background: linear-gradient(180deg, #7823B1 0%, #E930C9 100%);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: -1;
}

.testi-thumb img,
.testi-thumb__placeholder {
  border-radius: 10px;
  overflow: hidden;
}

.testi-thumb--active::before,
.testi-thumb:hover::before {
  opacity: 1;
}

.testi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-thumb__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #ddd;
}

/* Remove old solid-colour border rule */

/* Responsive */
@media (max-width: 600px) {
  .testi-main-slider,
  .testi-controls,
  .testi-footer-row {
    max-width: 100%;
  }
  .testi-main-title {
    font-size: 24px;
  }
  .testi-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}



