:root {
  --color-primary: #141c52;
  --color-secondary: #f3f183;
  --color-cyan: #28d5cb;
  --color-white: #ffffff;
  --color-black: #222222;
  --color-gray: #f8f8ff;

  --font-family-heading: 'DM Sans', sans-serif;
  --font-family-body: 'DM Sans', sans-serif;

  --border-radius: 10px;
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}
/* Hide default Swiper arrow content */
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default focus styles and add custom ones */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Template CSS Start */

.container {
  max-width: 1200px !important;
}

/* Navbar */
.header {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1030;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: var(--color-white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header:not(.scrolled) .navbar-brand,
.header:not(.scrolled) .nav-link {
  color: var(--color-white) !important;
}

/* Removed invert filter - using yellow color directly */

.header .navbar .logo-img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.header .navbar.navbar-expand-lg.navbar-light {
  margin-top: 32px;
}

.header .nav-item {
  margin-right: 32px;
}

.header .navbar .nav-link {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  position: relative;
}

.header .navbar .nav-link:hover {
  color: #f3f183 !important;
}

.header .navbar .nav-link.active {
  color: #f3f183 !important;
  position: relative;
}

/* Mobile Menu Fixes */
@media (max-width: 991px) {
  /* Mobile menu background */
  .navbar-collapse {
    background: var(--color-primary);
    padding: 2rem 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* Mobile menu items */
  .navbar-nav .nav-item {
    margin-right: 0 !important;
  }

  .navbar-nav .nav-item:last-child {
    margin-bottom: 0;
  }

  .navbar-nav .nav-link {
    color: var(--color-white) !important;
    font-size: 18px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  /* CTA button in mobile */
  .navbar-nav .btn__secondary {
    justify-content: center;
    margin-top: 1rem;
    background: var(--color-secondary);
    color: var(--color-primary);
    border: 1px solid var(--color-secondary);
  }

  /* Toggler button styling - 3 lines hamburger */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    width: 36px;
    height: 24px;
    position: relative;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    left: 0;
    transition: all 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler-icon::after {
    bottom: -8px;
  }

  .header.scrolled .navbar-toggler-icon,
  .header.scrolled .navbar-toggler-icon::before,
  .header.scrolled .navbar-toggler-icon::after {
    background-color: var(--color-secondary);
  }
}

/* Optional: Add backdrop blur for modern browsers */
@supports (backdrop-filter: blur(10px)) {
  @media (max-width: 991px) {
    .navbar-collapse {
      background: rgba(20, 28, 82, 0.95);
      backdrop-filter: blur(10px);
    }
  }
}

/* Custom Buttons */
.btn__primary {
  width: fit-content;
  height: fit-content;
  background: var(--color-secondary);
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease;
  opacity: 1;
}
\r
.btn__primary:hover {
  transform: translateY(-2px);
}

.btn__secondary {
  width: fit-content;
  height: fit-content;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease;
  opacity: 1;
}

.btn__secondary.outline {
  width: fit-content;
  height: fit-content;
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid #000000;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  transition: all 0.3s ease;
  opacity: 1;
  white-space: nowrap;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('/assets/images/hero-bg-attendant.png') center/cover no-repeat;
  color: #ffffff;
  padding: 10rem 0 8rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; /* Bold */
  font-size: 56px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.02em;
}

.hero h1 .hero-yellow {
  color: #f3f183; /* Yellow highlight */
}

.hero h1 .hero-white {
  color: #ffffff; /* White text */
}

.hero h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
  margin-top: 12px;
  color: #ffffff;
}

.hero p {
  font-family: 'DM Sans', sans-serif;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 22px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
  vertical-align: middle;
}

.hero .btn-group {
  margin-top: 32px;
  justify-content: center;
  gap: 24px;
}

.hero .social-icons {
  position: absolute;
  right: 70px;
  top: 40%;
  width: 50px;
}

.hero .social-icons i {
  color: var(--color-secondary);
  margin-bottom: 23px;
  font-size: 24px;
}

@media (max-width: 768px) {
  .hero {
    padding: 12rem 0 12rem;
  }


  .hero h1 {
    font-size: 40px;
  }

  .hero h3 {
    font-size: 20px;
  }

  .hero .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .hero .btn-group .btn__secondary {
    margin: 0 auto;
    width: fit-content;
  }

  .hero .btn-group .btn__secondary.outline {
    width: fit-content;
    min-width: 248px;
  }
}

/* Hero Payment Processing Variant */
.hero.hero-payment {
  background: url('/assets/images/hero-bg-payment.png') center/cover no-repeat;
}

.hero.hero-payment h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero.hero-payment h1 {
    font-size: 42px;
  }
}

/* Hero Portal Variant */
.hero.hero-portal {
  background: url('/assets/images/hero-bg-member-validation.png') center/cover no-repeat;
}

.hero.hero-portal h1 {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero.hero-portal h1 {
    font-size: 42px;
  }
}

.curve {
  position: absolute;
  top: 93%;
  left: 0;
  width: 100%;
  line-height: 0;
}

.curve svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* About Section */
.about-section {
  background: var(--color-white);
  padding: 80px 0;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-content {
  padding-left: 60px;
}

.about-content h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* Testimonials Video Section */
.testimonials-video {
  background: var(--color-gray);
  padding: 80px 0;
  position: relative;
  display: block;
  overflow: visible;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-video .heading .testimonial-icon {
  margin: 0 auto;
  padding-bottom: 16px;
}

/* Swiper Container */
.testimonial-video-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
  /* Space for arrows */
}

/* Custom SVG Navigation Arrows */
.testimonial-video-navigation .swiper-button-prev.custom-arrow,
.testimonial-video-navigation .swiper-button-next.custom-arrow {
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.testimonial-carousel-navigation .swiper-button-prev.custom-arrow {
  left: 18px;
}

.testimonial-carousel-navigation .swiper-button-next.custom-arrow {
  right: 18px;
}

/* Hide default Swiper arrow text */
.testimonial-carousel-navigation .swiper-button-prev:after,
.testimonial-carousel-navigation .swiper-button-next:after {
  display: none;
}

/* Ensure SVG icons are properly sized */
.custom-arrow svg {
  width: 24px;
  height: 24px;
}

.cta-buttons {
  max-width: 563px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.cta-buttons .btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  background: #000;
}

.video-wrapper .video-thumbnail {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border: none;
}

/* Custom play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 1;
}

.video-play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Hide thumbnail and button when playing */
.video-wrapper.playing .video-thumbnail {
  display: none;
}

.video-wrapper.playing .video-play-btn {
  display: none;
}

/* Swiper pagination (outside container) */
.testimonial-video-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
}

.testimonial-video-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #d3d3d3;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-video-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-video {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-video-slider {
    padding: 0 50px;
  }

  .video-wrapper .video-thumbnail {
    height: 300px;
  }

  .video-wrapper video {
    height: 300px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
  }

  .swiper-button-prev {
    left: -10px;
  }

  .swiper-button-next {
    right: -10px;
  }

  .testimonials-video .cta-buttons {
    flex-direction: column;
    width: fit-content;
  }

  .cta-buttons .btn__primary {
    margin: 0 auto;
  }

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}


/* Testimonials Carousel Section */
.testimonials-carousel-section {
  background: var(--color-white);
  padding: 80px 20px 100px;
  overflow: hidden;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: nowrap;
  justify-content: center;
}

.category-tab {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #141C52;
  border-radius: 4px;
  color: #141C52;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-tab.active {
  background: #141C52;
  color: white;
}

.category-tab:hover {
  background: #141C52;
  color: white;
}

/* Testimonials Carousel Container */
.testimonials-carousel-container {
  position: relative;
  width: 100%;
  overflow: visible;
}

.testimonials-carousel-swiper {
  overflow: visible !important;
  padding: 0 20px;
}

.testimonials-carousel-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonials-carousel-swiper .swiper-slide {
  width: 33.333%;
  display: flex;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.testimonials-carousel-swiper .swiper-slide-active {
  opacity: 1;
}

/* Testimonial Card */
.testimonial-card {
  background: #F8F8FF;
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  min-height: 300px;
  max-width: 500px;
  width: 100%;
}

.quote-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #141C52;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 14px;
  color: #141C52;
}

/* Carousel Navigation */
.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 40px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #141C52;
  border: 2px solid #141C52;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: #28d5cb;
  transform: scale(1.1);
}

.carousel-prev {
  margin-left: -24px;
}

.carousel-next {
  margin-right: -24px;
}

/* Pagination */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

/* You Focus on Washing Cars Section */
.you-focus-section {
  background: var(--color-white);
  padding: 100px 0;
}

.you-focus-section .content-left {
  padding-right: 40px;
}

.you-focus-section .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #141C52;
}

.you-focus-section .section-description {
  font-size: 18px;
  line-height: 1.6;
  color: #141C52;
  max-width: 500px;
}

/* Single Testimonial Container */
.single-testimonial-container {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}

.single-testimonial-card {
  background: #F8F8FF;
  border-radius: 16px;
  padding: 40px 30px;
  min-height: 300px;
}

.quote-icon-single {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.testimonial-text-single {
  font-size: 16px;
  line-height: 1.6;
  color: #141C52;
  margin-bottom: 24px;
}

.testimonial-author-single {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-single {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name-single {
  font-weight: 600;
  font-size: 14px;
  color: #141C52;
  margin: 0;
}

/* Single Testimonial Navigation */
.single-testimonial-navigation {
  position: absolute;
  bottom: 40px;
  right: 30px;
  display: flex;
  gap: 12px;
}

.single-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.single-prev {
  background: transparent;
  border: 1px solid #141C52;
}

.single-prev:hover {
  background: #141C52;
}

.single-prev:hover svg path {
  stroke: white;
}

.single-next {
  background: #141C52;
}

.single-next:hover {
  background: #28d5cb;
}

/* Single Testimonial Pagination */
.single-testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .category-tabs {
    gap: 8px;
    margin-bottom: 40px;
  }

  .category-tab {
    padding: 8px 16px;
    font-size: 14px;
  }

  .testimonials-carousel-swiper .swiper-slide {
    width: 90%;
  }

  .testimonial-card {
    padding: 30px 20px;
    min-height: 250px;
  }

  .carousel-navigation {
    padding: 0 20px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .you-focus-section {
    padding: 60px 0;
  }

  .you-focus-section .content-left {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .you-focus-section .section-title {
    font-size: 36px;
  }

  .you-focus-section .section-description {
    margin: 0 auto;
  }

  .single-testimonial-container {
    margin: 0 auto;
  }

  .single-testimonial-card {
    padding: 30px 20px;
  }
}
/* Features Section */
.features.style-one {
  background: var(--color-white);
  padding: 80px 0 140px;
  position: relative;
  overflow: visible;
}

.features.style-two {
  background: var(--color-gray);
  padding: 80px 0 140px;
  position: relative;
  overflow: visible;
}

.features-wrapper {
  padding-left: 16%;
  padding-right: 0;
  max-width: 100%;
}

/* Scale padding as screen gets smaller */
@media (max-width: 1400px) {
  .features-wrapper {
    padding-left: 14%;
  }
}

@media (max-width: 1200px) {
  .features-wrapper {
    padding-left: 12%;
  }
}

@media (max-width: 991px) {
  .features-wrapper {
    padding-left: 8%;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .features-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.features .section-description {
  font-size: 18px;
  max-width: 465px;
  line-height: 1.6;
  margin: 0;
}

.swiper-slide.feature-item {
  width: 445px;
}

.features .image-card {
  width: 100%;
  max-width: 445px;
  height: 540px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Desktop: Allow overflow to show partial next slide on RIGHT only */
@media (min-width: 992px) {
  .features .row {
    position: relative;
  }

  .features .col-lg-6:first-child {
    z-index: 10;
    position: relative;
    background: inherit;
  }

  .features .col-lg-6:last-child {
    position: relative;
    overflow-x: clip;
  }

  .features-carousel {
    position: relative;
    overflow: visible;
  }

  /* Clip left, allow right overflow */
  .features .swiper {
    overflow: visible;
    position: relative;
  }

  .features .swiper-wrapper {
    overflow: visible;
    /* Only allow overflow on the right side */
    margin-left: 0;
    padding-left: 0;
  }

  /* Prevent slides from going left */
  .features .swiper-slide {
    margin-left: 0;
  }

  /* Keep navigation arrows visible */
  .features-one-navigation,
  .features-two-navigation {
    position: absolute;
    z-index: 20;
  }
}

.features .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.features .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(20, 28, 82, 0) 100%
  );
  padding: 30px 25px;
  color: white;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.features .card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  transition: margin-bottom 0.4s ease;
}

.features .card-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-bottom 0.4s ease;
}

.features .image-card:hover .card-content {
  max-height: 400px;
  opacity: 1;
}

.features .image-card:hover .card-title {
  margin-bottom: 20px;
}

.features .card-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.features .features-btn-group {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: 28px;
}

.features-btn-group .btn__secondary {
  border: 2px solid;
}

/* Bottom Navigation Styles */
.features-one-navigation,
.features-two-navigation {
  position: absolute;
  bottom: -70px;
  left: 45px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.features-one-navigation .swiper-button-prev,
.features-one-navigation .swiper-button-next,
.features-two-navigation .swiper-button-prev,
.features-two-navigation .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin-top: 0;
  transform: none;
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.features-one-navigation .swiper-button-prev:after,
.features-one-navigation .swiper-button-next:after,
.features-two-navigation .swiper-button-prev:after,
.features-two-navigation .swiper-button-next:after {
  display: none;
}

.features-one-navigation .custom-arrow,
.features-two-navigation .custom-arrow {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--color-primary);
  border-radius: 50%;
}

.features .swiper-slide.feature-item {
  transition: transform 0.3s ease;
}

.features .swiper-slide.feature-item.swiper-slide-active {
  transform: scale(1);
  /* active slide normal */
}

@media (max-width: 768px) {
  .features.style-one,
  .features.style-two {
    padding: 20px 0;
    text-align: center;
  }

  .features .features-btn {
    margin: 0 auto;
  }

  .features-one-slider,
  .features-two-slider {
    overflow: visible;
  }

  .features-one-slider .swiper-wrapper,
  .features-two-slider .swiper-wrapper {
    overflow: visible;
  }

  .features .features-btn-group {
    flex-direction: column;
  }

  .features .features-btn-group .btn__primary,
  .features .features-btn-group .btn__secondary {
    margin: 0 auto;
  }

  .features .image-card {
    width: 100%;
    max-width: 100%;
    height: 450px;
    margin: 0 auto;
  }

  .features-carousel {
    padding: 0;
    overflow: visible;
    margin: 0 auto;
  }

  /* Contain slides properly on mobile */
  .features .swiper {
    overflow: visible;
  }

  .swiper-slide.feature-item {
    width: 100%;
  }

  .features-one-navigation,
  .features-two-navigation {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin-top: 20px;
  }

  .features .card-title {
    font-size: 20px;
    text-align: left;
  }

  .features .card-description {
    font-size: 16px;
    text-align: left;
  }
}

/* Proof Section Styles */
.proof-section {
  background-color: var(--color-primary);
  background-image: url('/assets/images/proof-bg.png');
  color: #ffffff;
  padding: 100px 0;
}

.proof-section .section-heading {
  max-width: 600px;
  margin: 0 auto;
}

.proof-section .section-heading .title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.proof-section .section-heading .description {
  font-size: 18px;
  font-weight: 400;
}

.proof-section .proof-item {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 80px;
  padding: 24px 0;
}

.proof-metric {
  display: inline-block;
  text-align: center;
}

.proof-icon {
  margin-bottom: 10px;
  width: 60px;
}

.proof-number {
  font-size: 80px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin: 0;
}

.proof-caption {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 300px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.proof-image img {
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Hide desktop proof section on mobile */
.proof-desktop {
  display: block;
}

.proof-mobile {
  display: none;
}

@media (max-width: 768px) {
  .proof-desktop {
    display: none;
  }

  .proof-mobile {
    display: block;
    padding: 50px 0;
    background-color: var(--color-primary);
    background-image: url('/assets/images/proof-bg.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow-x: hidden;
  }

  .proof-mobile .container {
    overflow-x: hidden;
  }

  .proof-mobile .section-heading {
    max-width: 367px;
    margin: 0 auto 40px;
  }

  .proof-section .section-heading .title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
  }

  /* Swiper Cards Effect for Tinder-like swipe */
  .proofSwiper {
    overflow: visible !important;
    margin: 0 auto;
    padding: 60px 0 100px;
    width: 100%;
    max-width: 361px;
  }
  
  .proofSwiper .swiper-wrapper {
    align-items: center;
  }

  .proofSwiper .swiper-slide {
    width: 100%;
    max-width: 361px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }

  .proof-mobile .proof-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 438px;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Overlay - Always visible on mobile */
  .proof-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 24px;
  }

  /* Overlay Content - All centered */
  .proof-overlay .proof-content {
    text-align: center;
    color: #ffffff;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .proof-overlay .proof-content .proof-icon {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .proof-overlay .proof-content .proof-icon img {
    display: block;
    margin: 0 auto;
    width: 57px;
    height: 57px;
  }

  .proof-overlay .proof-content .proof-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 auto 20px;
    line-height: 1;
    text-align: center;
  }

  .proof-overlay .proof-content .proof-caption {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 313px;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
  }

  /* Swiper Pagination Dots - 4 dots for mobile proof section */
  .proof-mobile-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    gap: 5px;
  }

  .proof-mobile-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
  }

  .proof-mobile-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
  }

  /* Navigation Arrows - Centered on slide */
  .proof-mobile-navigation {
    position: relative;
    height: 0;
  }

  .proof-mobile-navigation .swiper-button-prev.custom-arrow,
  .proof-mobile-navigation .swiper-button-next.custom-arrow {
    background: var(--color-secondary);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -220px;
    z-index: 10;
  }

  .proof-mobile-navigation .swiper-button-prev.custom-arrow {
    left: 10px;
  }

  .proof-mobile-navigation .swiper-button-next.custom-arrow {
    right: 10px;
  }

  .proof-mobile-navigation .swiper-button-prev.custom-arrow svg path,
  .proof-mobile-navigation .swiper-button-next.custom-arrow svg path {
    fill: var(--color-primary);
  }

  /* Hide default Swiper arrow text */
  .proof-mobile-navigation .swiper-button-prev:after,
  .proof-mobile-navigation .swiper-button-next:after {
    display: none;
  }

  .proof-caption {
    font-size: 22px;
    color: #ffffff;
  }

  .proof-image img {
    box-shadow: none;
  }

  .proof-number {
    font-size: 60px;
    margin-top: 20px;
  }

  /* CTA button spacing */
  .proof-mobile .btn__secondary {
    font-size: 14px;
  }
}

/* testimonials Section */
.testimonials {
  background: var(--color-white);
  padding: 80px 0;
  position: relative;
}

.testimonials .testimonial-slider {
  text-align: center;
  background: var(--color-gray);
  border-radius: var(--border-radius);
  padding: 24px;
  max-width: 475px;
}

.testimonials .testimonial-carousel {
  position: relative;
}

.testimonials .testimonial-slider .quotation-icon {
  margin: 0 auto;
}

.testimonials .testimonial-slider .testimonial-quote {
  padding: 24px 30px;
}

.testimonials .testimonial-slider .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonials .testimonial-slider .testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 100%;
}

.testimonials .testimonial-slider .testimonial-author p {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.testimonial-slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
}

.testimonial-slider-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #d3d3d3;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-slider-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* Custom SVG Navigation Arrows */
.testimonial-carousel-navigation .swiper-button-prev.custom-arrow,
.testimonial-carousel-navigation .swiper-button-next.custom-arrow {
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.testimonial-carousel-navigation .swiper-button-prev.custom-arrow {
  left: 18px;
}

.testimonial-carousel-navigation .swiper-button-next.custom-arrow {
  right: 18px;
}

/* Hide default Swiper arrow text */
.testimonial-carousel-navigation .swiper-button-prev:after,
.testimonial-carousel-navigation .swiper-button-next:after {
  display: none;
}

@media (max-width: 768px) {
  .testimonials .testimonial-slider .testimonial-quote {
    padding: 12px;
  }

  .testimonials .heading {
    text-align: center;
    margin-top: -32px;
  }

  .testimonial-carousel-navigation .swiper-button-prev.custom-arrow {
    left: -13px;
  }

  .testimonial-carousel-navigation .swiper-button-next.custom-arrow {
    right: -13px;
  }
  
  .testimonials .btn__primary {
    margin: 0 auto;
  }
}

/* Grow Revenue Section */
.grow-revenue {
  background: var(--color-gray);
  color: var(--color-primary);
  padding: 100px 0;
  position: relative;
  overflow: visible;
}

.grow-revenue .content {
  padding: 80px 0;
}

.grow-revenue .subtitle {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: block;
}

.grow-revenue .title {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 540px;
}

.grow-revenue .title span {
  color: var(--color-cyan);
}

.grow-revenue .description {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .grow-revenue {
    padding: 0 0;
    background: var(--color-white);
  }

  .grow-revenue .section-title {
    font-size: 36px;
  }

  /* Reverse order on mobile - image first, content second */
  .grow-revenue .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .grow-revenue .content {
    padding: 35px 0;
    text-align: center;
  }

  .grow-revenue .content img {
    margin: 0 auto;
  }

  .grow-revenue .subtitle {
    font-size: 14px;
  }

  .grow-revenue .title {
    font-size: 32px;
    max-width: 351px;
    margin: 0 auto 2rem;
  }

  .grow-revenue .description {
    margin: 0 auto;
  }

  .grow-revenue .section-description {
    font-size: 18px;
    margin-bottom: 2.5rem;
  }

  .grow-revenue .btn__primary {
    margin: 0 auto;
  }

  .btn__primary {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* Footer Styles */
.footer {
  background-image: url('/assets/images/footer-bg-new.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  position: relative;
  margin-top: 0;
}

.footer-content {
  position: relative;
}

.footer-brand {
  max-width: 460px;
  margin: 0 auto;
  padding-top: 80px;
  text-align: center;
  padding-bottom: 32px;
}

.footer-logo {
  margin-bottom: 16px;
  margin-left: 80px;
  width: 280px;
  text-align: center;
}

.footer-description {
  color: #ffffff;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 500;
}

.footer-menu {
  margin-left: 180px;
}

.footer-title {
  color: var(--color-secondary);
  font-size: 22px;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  line-height: 1.4;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-social .social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social .social-link i {
  font-size: 28px;
}

.footer-bottom {
  padding-top: 5rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-bottom a,
.footer-bottom span {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--color-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-content {
    padding: 100px 0 40px;
  }

  .footer-logo {
    margin-left: 0;
    margin: 0 auto 16px;
  }

  .footer-menu {
    margin-left: 0;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-description {
    text-align: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-top: 0;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom a,
  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }

  .footer-bottom a:last-child {
    margin-bottom: 0;
  }
}

/* Tablet Responsive */
@media (max-width: 991px) and (min-width: 769px) {
  .footer-content {
    padding: 100px 0 50px;
  }

  .footer-brand {
    max-width: 100%;
  }
}
.mt-20,
.pt-20 {
  margin-top: 25px;
}


/* Testimonials Video Section */
.testimonials-video {
  background: var(--color-gray);
  padding: 80px 0;
  position: relative;
  display: block;
  overflow: visible;
}

.section-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-video .heading .testimonial-icon {
  margin: 0 auto;
  padding-bottom: 16px;
}

/* Swiper Container */
.testimonial-video-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Custom SVG Navigation Arrows */
.testimonial-video-navigation .swiper-button-prev.custom-arrow,
.testimonial-video-navigation .swiper-button-next.custom-arrow {
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  background: #000;
}

.video-wrapper .video-thumbnail {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border: none;
}

/* Custom play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 1;
}

.video-play-btn:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Hide thumbnail and button when playing */
.video-wrapper.playing .video-thumbnail {
  display: none;
}

.video-wrapper.playing .video-play-btn {
  display: none;
}

/* Swiper pagination */
.testimonial-video-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
}

.testimonial-video-pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #d3d3d3;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-video-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

/* CTA Buttons */
.cta-buttons {
  max-width: 563px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-video {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-video-slider {
    padding: 0 50px;
  }
  
  .video-wrapper .video-thumbnail {
    height: 300px;
  }
  
  .video-wrapper video {
    height: 300px;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
  }
  
  .swiper-button-prev {
    left: -10px;
  }
  
  .swiper-button-next {
    right: -10px;
  }
  
  .testimonials-video .cta-buttons {
    flex-direction: column;
    width: fit-content;
  }
  
  .cta-buttons .btn__primary {
    margin: 0 auto;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Partnership Carousel Section */
.partnership-carousel-section {
  background: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.partnership-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  --carousel-padding: 120px;
}

.partnership-carousel-wrapper {
  position: relative;
  padding: 0 var(--carousel-padding);
}

.partnership-carousel-swiper {
  overflow: visible;
}

.partnership-carousel-swiper .swiper-slide {
  width: auto;
}

.partnership-card {
  position: relative;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 850px;
  max-width: 90vw;
}

.partnership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(28, 42, 82, 0.5) 0%, rgba(28, 42, 82, 0.8) 100%);
}

.partnership-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 60px;
  max-width: 600px;
}

.partnership-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.partnership-content p {
  font-size: 20px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.partnership-content .btn__secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.partnership-content .btn__secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(215, 255, 99, 0.3);
}

.partnership-nav-prev,
.partnership-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.partnership-nav-prev svg,
.partnership-nav-next svg {
  width: 32px;
  height: 32px;
}

.partnership-nav-prev:hover,
.partnership-nav-next:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partnership-nav-prev {
  left: calc(var(--carousel-padding) / 2 - 32px);
  background: rgba(255, 255, 255, 0.95);
}

.partnership-nav-prev svg path {
  stroke: var(--color-primary);
}

.partnership-nav-next {
  right: calc(var(--carousel-padding) / 2 - 32px);
  background: var(--color-primary);
}

.partnership-nav-next svg path {
  stroke: white;
}

.partnership-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.partnership-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #CBD5E1;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.partnership-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 12px;
}

@media (max-width: 768px) {
  .partnership-carousel-container {
    padding: 0 20px;
    --carousel-padding: 70px;
  }

  .partnership-card {
    height: 350px;
    width: 100%;
  }

  .partnership-content h2 {
    font-size: 32px;
  }

  .partnership-content p {
    font-size: 16px;
  }

  .partnership-nav-prev,
  .partnership-nav-next {
    width: 56px;
    height: 56px;
  }

  .partnership-nav-prev svg,
  .partnership-nav-next svg {
    width: 28px;
    height: 28px;
  }

  .partnership-nav-prev {
    left: calc(var(--carousel-padding) / 2 - 28px);
  }

  .partnership-nav-next {
    right: calc(var(--carousel-padding) / 2 - 28px);
  }
}

/* Success Story Section Updates */
.success-image {
  border-radius: 16px;
  overflow: hidden;
}

.success-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.grow-revenue .btn-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.btn__secondary.outline {
  background: var(--color-primary);
  color: #ffffff;
  border: 1px solid #000000;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn__secondary.outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
}

.btn__secondary.outline svg {
  width: 20px;
  height: 16px;
}

@media (max-width: 768px) {
  .grow-revenue .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn__secondary.outline {
    justify-content: center;
  }
}

/* Partner CTA Section */
.partner-cta-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.partner-content h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.partner-content .text-accent {
  color: #4ECDC4;
}

.partner-content .text-accent-cyan {
  color: #4ECDC4;
}

.partner-content .text-cyan {
  color: var(--color-cyan);
}

.partner-content .highlight-yellow {
  color: #27d5cb;
}

.partner-content .partner-italic {
  font-style: italic;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.partner-content .partner-description {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-black);
  margin-bottom: 20px;
}

.partner-content .partner-tagline {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-black);
  margin-bottom: 30px;
}

.partner-content .partner-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}

.partner-content .stat-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.partner-content .stat-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-primary);
  margin: 0;
}

.partner-content .cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.partner-content .cta-buttons .btn__primary:hover {
  transform: translateY(-2px);
}

.phone-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-image-container .phone-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Bottom CTA Section */
.bottom-cta-section {
  background: url('/assets/images/hero-bg-attendant.png') center/cover no-repeat;
  padding: 200px 0;
  margin-bottom: 80px;
  position: relative;
  border-radius: 24px;
}

.bottom-cta-section h2 {
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.bottom-cta-section .cta-buttons {
  justify-content: center;
  gap: 20px;
}

.bottom-cta-section .btn__primary {
  background: #f3f183;
  color: var(--color-primary);
  border: 2px solid #f3f183;
}

.bottom-cta-section .btn__primary:hover {
  background: #e5e375;
  border-color: #e5e375;
}

.bottom-cta-section .btn__secondary.outline {
  background: transparent;
  color: #f3f183;
  border: 2px solid #f3f183;
}

.bottom-cta-section .btn__secondary.outline:hover {
  background: #f3f183;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .bottom-cta-section {
    padding: 80px 0;
  }
  
  .bottom-cta-section h2 {
    font-size: 28px;
  }
  
  .bottom-cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.testimonial-card {
  background: #F8F8FF; /* Light lavender background */
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quote-icon {
  margin: 0 auto;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-primary);
  font-style: normal;
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: center;
}

.author-info h4 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.author-info p {
  color: #7B8AA8;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.curve-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

@media (max-width: 991px) {
  .partner-content {
    margin-bottom: 40px;
  }
  
  .partner-content h2 {
    font-size: 36px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .testimonial-card {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .partner-cta-section {
    padding: 60px 0 0;
  }
  
  .partner-content h2 {
    font-size: 28px;
    text-align: center;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-text {
    font-size: 18px;
  }
  
  .quote-icon {
    right: 20px;
  }
}


/* Partner CTA Section Specific Styles */

.partner-cta-section .testimonial-card {
  background: #F8F8FF; /* Light lavender background */
  border-radius: 16px;
  padding: 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.partner-cta-section .quote-icon {
  margin: 0 auto;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  top: auto;
  right: auto;
  width: 64px;
  height: 64px;
}

.partner-cta-section .testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  color: #141C52; /* Dark navy blue */
  font-weight: 500;
  font-style: normal;
  margin-bottom: 32px;
  text-align: center;
}

.partner-cta-section .testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.partner-cta-section .author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.partner-cta-section .author-info {
  text-align: center;
}

.partner-cta-section .author-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #141C52; /* Dark navy blue */
  margin: 0 0 4px 0;
  text-align: center;
}

.partner-cta-section .author-info p {
  font-size: 14px;
  color: #9CA3AF; /* Light gray */
  margin: 0;
  text-align: center;
}

/* Partner CTA Section Curve */
.partner-cta-section .curve-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.partner-cta-section .curve-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
  transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .partner-cta-section {
    padding: 60px 0;
  }

  .partner-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .partner-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .partner-content .cta-buttons {

.partner-content .cta-buttons .btn__primary:hover {
  transform: translateY(-2px);
}
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }

  .partner-content .cta-buttons .btn__primary,
  .partner-content .cta-buttons .btn__secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .partner-cta-section .testimonial-card {
    padding: 30px;
    margin: 0 auto;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .partner-content h2 {
    font-size: 28px;
  }

  .partner-cta-section .testimonial-text {
    font-size: 18px;
  }

  .partner-cta-section .testimonial-card {
    padding: 24px;
  }
}
