:root {
  --bg-color: #1D1D1D;
  --primary-color: #e74c3c;
  --dark-bg: #2c3e50;
  --dark-bg-light: #34495e;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --border-color: #ecf0f1;
}

/* Hero Section */
.hero-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--bg-color);
  padding: 60px 0 0;
}

.video_wrapper {
  width: 619px;
  height: 664px;
  overflow: hidden;
  /* hide anything outside the frame */
  margin-left: auto;
  /* center horizontally if needed */
  border-radius: 15px 0 0 0;
  background: #D9D9D9;
}

.video_wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cover fills the box, cropping if necessary */
  display: block;
}

.hero-section-left-wrapper {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;

}

h1.hero-title {
  color: #FFF;
  font-size: 3.2rem !important;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5rem;
}

.chat-concierge-app {
  position: absolute;
  bottom: 0;
  right: 14%;
}

.main-img-box {}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

/* Cards */
.card {
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.card.bg-dark {
  background-color: var(--dark-bg) !important;
  border-radius: 12px;
}

/* Sections */
section {
  padding: 2.5rem 0;
}

/* Images */
img {
  border-radius: 8px;
}

/* msite Responsive */
@media (max-width: 768px) {


  .hero-section h1 {
    font-size: 2.4rem !important;
  }

  section {
    padding: 3rem 0;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .display-4 {
    font-size: 1.5rem;
  }
}

/* marque slider */

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

/* Pause on hover */
.marquee-container:hover .marquee-wrapper {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

.logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-item {
    width: 120px;
  }

  .marquee-content {
    gap: 40px;
  }

  .marquee-wrapper {
    animation-duration: 20s;
  }
}

/* platform accordion & images */
.plarform-accordion-section {
  margin-bottom: 100px;
}

.main-title-wrapper {
  max-width: 588px;
  margin-bottom: 40px;
}

p.muted-title {
  color: #7E7E7E;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h2.main-title {
  font-size: 2.8rem !important;
  color: #1F1F1F;
  font-style: normal;
  font-weight: 500;
}

.menu-btn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f6f6f6;
  border: none;
  border-radius: 10px;
  margin-bottom: 22px;
  padding: 20px 20px;
  text-align: left;
  width: 100%;
  font-size: 1.1rem;
  transition: background 0.2s;
  cursor: pointer;
}

.menu-tabs-title {
  color: #727272;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.menu-btn.active,
.menu-btn:hover {
  background: #1D1D1D;
  color: #fff;
}

.menu-btn.active .menu-tabs-title,
.menu-btn:hover .menu-tabs-title {
  color: #fff;
}

.menu-btn:hover svg.icon {
  color: #fff;
}

svg.icon {
  color: #727272;
  transition: color 0.3s ease;
}

.menu-btn.active svg.icon {
  color: #fff;
}


.content-text {
  margin-top: 10px;
  color: inherit;
  font-size: 0.95rem;
}


/* feature section */
.feature-section {
  background:
    url("/static/images/campaign_page/concierge-page/feature-img.png") center/cover no-repeat;
  color: #fff;
  min-height: 530px;
  position: relative;
  padding: 0;
  background-position: bottom;
}

.mockup-img {
  position: relative;
}


.floating-card {
  position: absolute;
  background: #FFF;
  color: #000;
  border-radius: 20px;
  padding: 13px 18px 12px 25px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.main-phone-img {
  margin-top: -50px;
}

.floating-card svg {
  margin-right: 14px;
}

.floating-card span {
  color: #090909;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.floating-card:hover {
  transform: translateY(-3px);
}

/* Floating card positions */
.card-1 {
  top: 16%;
}

.card-2 {
  top: 32%;
  left: 52%;
}

.card-3 {
  bottom: 25%;
}

.card-4 {
  bottom: 11%;
  right: 50px;
}



.text-section p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.store-buttons {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.store-buttons-wrapper {
  max-width: 200px;

}

.decor-dots {
  position: absolute;
  bottom: 10px;
  right: 20px;
  opacity: 0.3;
  width: 40px;
}

@media (max-width: 992px) {
  .feature-section {
    text-align: center;
  }

  .main-phone-img img {
    max-width: 250px;
  }

  .floating-card {
    padding: 10px 10px;
  }

  .floating-card span {
    font-size: 14px;
  }

  .card-1 {
    top: 8%;
  }

  .card-2 {
    top: 25%;
    left: 43%;
  }

  .card-3 {
    bottom: 50%;
  }

  .card-4 {
    bottom: 34%;
  }
}


/* Business Revenue Boost */
.revenue-section {
  padding: 80px 0;
  text-align: center;
}

.revenue-section h2 {
  margin-bottom: 45px;
}

.revenue-card {
  background: #111;
  color: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
  min-height: 295px;
  transition: all 0.3s ease;
}

.revenue-card:hover {
  transform: translateY(-5px);
}

/* Circle wrapper */
.circle-container {
  position: relative;
  width: 100px;
  height: 100px;
}

/* Inner circle */
.circle-inner {
  width: 198px;
  height: 198px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  z-index: 2;
}

/* Outer progress arc */
.progress-arc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #e63946;
  border-right-color: #e63946;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 1;
  transition: transform 1.8s ease-out;
}

/* Animate progress after load */
.revenue-section.loaded .progress-arc.arc-50 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.revenue-section.loaded .progress-arc.arc-30 {
  transform: translate(-50%, -50%) rotate(25deg);
}

/* Inner text */
.circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.circle-content small {
  display: block;
  color: #919191;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
}

.circle-content span {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: normal;
}

.revenue-text {
  text-align: left;
}

.revenue-text {
  color: #FFF;
  font-size: 2rem !important;
  font-style: normal;
  line-height: normal;
}

.revenue-text h5 {
  font-weight: 600;
  font-size: 2rem !important;
}

.revenue-text p {
  font-weight: 400;
}

@media (max-width: 768px) {
  .revenue-card {
    text-align: center;
  }

  .revenue-text h5 {
    font-size: 1.2rem !important;
  }

  .revenue-text {
    font-size: 1rem !important;
  }
}


/* numbers section */

.numbers-section {
  padding: 100px 0;
}

.numbers-section p {
  font-size: 16px;
  color: #1F1F1F;
  margin-bottom: 40px;
  line-height: 1.6;
}

.grid-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 25px;
  margin-left: 50px;
}

.stats-grid {
  display: grid;
  gap: 25px 25px;
}

.stats-grid1 {
  grid-template-columns: 2fr 1fr;
}

.stats-grid2 {
  grid-template-columns: 1fr 2fr;
}

.stat-card.full-width {
  grid-column: 1 / -1;
}



.stat-card {
  border-radius: 18px;
  border: 1.5px solid #DAD7E8;
  background: #FFF;
  padding: 12px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stat-card h3 {
  font-size: 2rem !important;
  font-weight: 600;
  margin-bottom: 8px;
  color: #272727;
}

.stat-card p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.full-width {
  grid-column: 1 / 3;
}

@media (max-width: 991px) {
  .stats-grid {
    margin-left: 0;
  }

  .full-width {
    grid-column: auto;
  }

  .stat-card h3 {
    font-size: 1.7rem !important;
    margin-bottom: 0;
  }

  .stat-card p {
    font-size: 14px;
  }

  .stat-card {
    padding: 12px 11px;
  }
  .stats-grid{
    gap: 14px 15px;
  }
}



/* testimonial section */
/* --- Section Heading --- */
.testimonial-section {
  background-color: #F9F9F9;
}

.testimonial-section p {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.testimonial-section h3 {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  margin-bottom: 40px;
}

/* --- Slider --- */
.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: #fff;
  margin: 0 14px;

}

.testimonial-card-img {
  position: relative;
}



.testimonial-card-img > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.testimonial-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); */
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 100%);
  padding: 20px;
  font-size: 14px;
  border-radius: 0 0 16px 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 18px;
  font-weight: 400;
  color: #252525;
}

.testimonial-author img {
  margin-right: 10px;
  object-fit: scale-down;
}

/* Slick Dots */
.slick-dots {
  bottom: -35px;
}

.slick-dots li button:before {
  color: #ff4d4d;
  opacity: 0.6;
  font-size: 11px!important;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ff4d4d;
}

/* Hide navigation arrows */
.slick-prev,
.slick-next {
  display: none !important;
}

/* Add space between items */


/* Optional hover effect for active slide */
.slick-center img {
  transform: none;
}

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

  .testimonial-section h3 {
    font-size: 18px;
  }

  .testimonial-card>img {
    height: 443px;

  }

  .testimonial-author img {
    height: 35px;
  }


}

/* call to action */

.call-to-action-section {
  position: relative;
  height: 562px; /* Fixed height */
  overflow: hidden;
}

/* Background Video */
.call-to-action-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Ensures good quality fit */
  object-position: center;    /* Keeps video centered */
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
}

/* Gradient Overlay */
.call-to-action-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 36.51%, rgba(0, 0, 0, 0.40) 80.18%);
}

/* Text wrapper */
.call-to-action-wrapper {
  position: relative;
  z-index: 3; /* Above gradient + video */
}

.call-to-action-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 900px;
  padding-top: 243px;
  position: relative;
  z-index: 3;
}

.slick-dots {
  position: revert-layer !important;
}

.slider-wrapper {
  overflow: hidden;
  /* hides slick’s side-overflow */
  width: 100%;
  position: relative;
}

.slider-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  color: #fff;
  margin: 0 14px;
}

.slick-slider {
  overflow-x: clip !important;
}

.device-wrap {
  margin-bottom: 30px;
}

.info-card {
  border-radius: 5px;
  background: #1D1D1D;
  padding: 20px;
  color: #fff;
  text-align: center;
  min-height: 200px;
}

.info-card h4 {
  font-size: 24px;
}

.info-card p {
  font-size: 16px;
}

/* msite Responsive */

@media (max-width:768px) {
  .chat-concierge-app {
    max-width: 170px;
    right: 4%;
  }

  .plarform-accordion-section {
    padding: 0;
  }

  .plarform-accordion-section {
    margin-bottom: 40px;
  }

  h2.main-title {
    font-size: 1.8rem !important;
  }

  .main-phone-img {
    margin-top: 0;
  }

  .feature-section {
    padding: 2rem 0;
  }

  .feature-section h2.main-title {
    font-size: 2rem !important;
  }

  .numbers-section {
    padding: 50px 0;
  }

  .grid-wrapper {
    margin-left: 0;
    margin-top: 30px;
  }

  .call-to-action-wrapper {
    text-align: center;
  }

  .call-to-action-title {
    font-size: 24px;
    text-align: center;
  }

  .video_wrapper {
    width: 100%;
    height: 320px;
    border-radius: 15px;
  }

  .circle-inner {
    width: 117.413px;
    height: 117.413px;
  }

  .progress-arc {
    width: 136px;
    height: 136px;
    border: 3px solid transparent;
    border-top-color: #e63946;
    border-right-color: #e63946;
  }
  .revenue-card{
    min-height: 174px;
  }
  .circle-content small{
    font-size: 12px;
  }
  .circle-content span{
    font-size: 24px;
  }
  .testimonial-card-img  img{
    height: 443px;
  }

}