/* Variables */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #ec4899;
  --text-dark: #0f172a;
  --text-muted: #fff;
  --bg-dark: #0f172a;
  --bg-purple: #1e1b4b;

  --font-main: "Poppins", sans-serif;
}
html {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-family: var(--font-main);
}

/* Utilities */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border: none;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-custom {
  border-radius: 10px;
  font-weight: 600;
  background-color: #c92127;
  color: #fff;
}

.btn-custom:hover {
  background-color: #c92127;
  color: #fff;
}

.btn-hover-scale {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-hover-scale:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.border-purple {
  border-color: rgba(106, 27, 154, 0.2) !important;
}

/* Responsive Title Utility */
.responsive-title {
  font-size: 2.2rem; /* XL and up */
  line-height: 1.3;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .responsive-title {
    font-size: 2rem; /* LG */
  }
}

@media (max-width: 992px) {
  .responsive-title {
    font-size: 1.75rem; /* MD */
  }
}

@media (max-width: 768px) {
  .responsive-title {
    font-size: 1.5rem; /* SM */
  }
}

@media (max-width: 576px) {
  .responsive-title {
    font-size: 1.25rem; /* XS */
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.custom-bounce {
  animation: float 4s ease-in-out infinite;
}

.transition-all {
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  transition: all 0.3s ease;
}

.navbar .nav-link {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.hero-section {
  position: relative;
  background-color: #260d38;
  background-image: url("images/book-bg-png.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 75vh;
  padding: 60px 0;
  display: flex !important;
  align-items: center;
  z-index: 10;
  /* overflow-x: hidden !important;
  overflow-y: visible !important; */
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to right,
    rgba(26, 11, 46, 0.95),
    rgba(26, 11, 46, 0.4)
  ); */
  z-index: 0;
}

.hero-content,
.hero-image-zoom-wrapper {
  position: relative;
  z-index: 1;
}

.hero-link {
  color: #3b82f6 !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.btn-white-hero {
  background-color: #ffffff;
  color: #1e293b;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-white-hero:hover {
  background-color: #f8fafc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
  color: #000;
}

.btn-red-hero {
  background-color: #c92127;
  color: #ffffff;
  border-radius: 6px;
  border: none;
  box-shadow: 0 4px 12px rgba(201, 33, 39, 0.2);
  transition: all 0.3s ease;
}

.btn-red-hero:hover {
  background-color: #a7181d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 33, 39, 0.3);
}

.hero-partner-logos {
  max-width: 380px;
  opacity: 0.9;
}

.hero-image-zoom-wrapper {
  transform: translateY(0);
  transition: transform 0.1s linear;
  padding: 0;
  z-index: 20;
  position: relative;
}

.hero-zoom-image {
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  max-width: 90%;
  position: relative;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 2.2rem !important;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-logos {
    justify-content: center;
    display: flex;
  }
  .hero-image-zoom-wrapper {
    transform-origin: center center;
    margin-top: 40px;
  }
  .hero-zoom-image {
    max-width: 100%;
  }
}

.logo-bar {
  position: relative;
  z-index: 1;
}

/* Services Section */
.services-section {
  position: relative;
  background-color: transparent;
  background-image: radial-gradient(at center center, #7844a2 0%, #3b1955 100%);
  padding: 100px 0;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/14124.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.1;
  mix-blend-mode: overlay;
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.glass-card {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.glass-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.25rem;
}

.glass-card p {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  opacity: 0.9;
  line-height: 1.6;
}

.glass-card:hover {
  transform: translateY(-8px);
  background: #391852;
  box-shadow: 0 15px 45px #391852;
  border-color: #ffffff;
}

.fs-sm {
  font-size: 0.9rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Brand Logos */
.brand-logo {
  max-height: 70px;
}

.brandSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Portfolio Section */

.portfolio-item img {
  transition: transform 0.5s ease;
}

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

/* Custom Portfolio Navigation Buttons */
.portfolio-nav-btn {
  color: #ffffff !important;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
}

.portfolio-nav-btn::after {
  font-weight: bold !important;
}

/* Process Section */
.process-line {
  top: 55px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(106, 27, 154, 0.2);
  z-index: 0;
}

.step-num {
  background: #f8f9fa;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: -40px auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--primary-color);
}

.process-card {
  transition: all 0.3s ease;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}
.process-card:hover .step-num {
  background: var(--primary-color);
  color: white !important;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #4b1968 0%, #2f0d46 100%);
}

/* Global Reach Section */
.global-reach-tabs .nav-link {
  color: #1a1a1a !important;
  background: transparent !important;
  border: 1px solid #391852 !important;
  border-bottom: 0 !important;
  border-radius: 8px 8px 0 0 !important;
  padding: 12px 30px !important;
  font-weight: 500 !important;
  font-size: 14px;
  transition: all 0.3s ease;
}

.global-reach-tabs .nav-link.active {
  background: #391852 !important;
  color: #ffffff !important;
}

.stats-section {
  background-color: transparent;
  background-image: linear-gradient(154deg, #4b216a 0%, #d39dfc 100%);
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
}

.retailer-item {
  background: #f1e9fb;
  border-radius: 4px;
  padding: 10px 15px;
  text-align: center;
  font-size: 13px;
  color: #1a1a1a;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.retailer-item:hover {
  background: #391852;
  color: #ffffff;
}

.tab-content-box {
  background: #ffffff;
  min-height: 200px;
}

.tracking-wide {
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

/* Form Glassmorphism inside Footer area */
.glassmorphism-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.z-index-2 {
  z-index: 2;
}

/* Footer Section */
/* Footer Section */
.footer-wrapper {
  background: #ffffff; /* This creates the white gap at the top */
  position: relative;
}

.footer-main {
  /* background-color: transparent; */
  background-image:
    linear-gradient(
      135deg,
      rgba(40, 0, 5, 0.95) 0%,
      rgba(180, 20, 30, 0.85) 100%
    ),
    url("images/footer-jpg.webp");

  background-size: cover;
  background-position: center;
  padding: 230px 0 0 0;
}

@media (max-width: 1200px) {
  .footer-main {
    padding-top: 350px !important;
  }
}

@media (max-width: 992px) {
  .footer-main {
    padding-top: 500px !important;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding-top: 550px !important;
  }
}

@media (max-width: 425px) {
  .footer-main {
    padding-top: 750px !important;
  }
}
@media (max-width: 375px) {
  .footer-main {
    padding-top: 850px !important;
  }
}
.contact-form-section {
  height: 150px;
  position: relative;
  padding: 40px 0 0 0;
}
.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ffffff;
  color: #c92127;
}

.footer-list {
  padding: 0;
}

.footer-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #5c6bc0; /* Target bullet color */
  border-radius: 1px;
  margin-right: 12px;
}

.footer-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-list li a:hover {
  opacity: 1;
}

.btn-schedule-session {
  background-color: #c92127;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-schedule-session:hover {
  background-color: #a31a1f;
  color: #ffffff;
  transform: translateY(-2px);
}

.chat-label {
  font-size: 0.85rem;
}

.chat-icon i {
  font-size: 1.2rem;
}

.hover-white:hover {
  color: white !important;
  opacity: 1 !important;
}

/* Testimonials */
.testimonials-section {
  background-image: url("images/bg-jpg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.test-bg-overlay {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 100%; */
  background-color: #4b216a;
  opacity: 0.9;
  mix-blend-mode: multiply;
  transition:
    background 0.3s,
    border-radius 0.3s,
    opacity 0.3s;
}

.testimonialSwiper {
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .testimonialSwiper {
    /* No overflow/padding changes needed here */
  }
}

.testimonialSwiper .swiper-slide {
  padding: 0 80px; /* Space for arrows */
}

@media (max-width: 768px) {
  .testimonialSwiper .swiper-slide {
    padding: 0 40px;
  }
}

.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
  background-color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #000000 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.testimonialSwiper .swiper-button-next:hover,
.testimonialSwiper .swiper-button-prev:hover {
  background-color: #f8f8f8;
  transform: scale(1.1);
}

.testimonialSwiper .swiper-button-next::after,
.testimonialSwiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.testimonialSwiper .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background: #c92127;
  opacity: 1;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

/* Responsive Customizations */
@media (max-width: 991px) {
  .process-line {
    display: none !important;
  }
  .process-card {
    margin-top: 30px !important;
  }
  .hero-section {
    text-align: center;
  }
  .hero-content .d-flex {
    justify-content: center;
  }
  .hero-content .trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 1199px) {
  .process-step-box-1 {
    top: -35% !important;
  }

  .process-step-box-3 {
    top: -47% !important;
  }
}
@media (max-width: 768px) {
  .logo-bar {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .brand-logo {
    max-height: 85px !important;
  }
}
/* How It Works Improvements */
.how-it-works .process-col {
  position: relative;
  padding: 0 40px;
}

/* Vertical Divider */
.how-it-works .process-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #d1d5db; /* Light gray line */
}

.how-it-works .icon-circle {
  color: #4b216a;
  font-size: 28px;
  width: 65px;
  height: 65px;
  border: 4px solid #4b216a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.how-it-works h5 {
  color: #4b216a;
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.how-it-works p {
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.btn-book-now {
  background-color: #c01318;
  color: #fff;
  border: none;
  padding: 14px 45px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(192, 19, 24, 0.2);
}

.btn-book-now:hover {
  background-color: #a01015;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(192, 19, 24, 0.4);
  color: #fff;
}

.text-primary.text-decoration-none{
    
}

.modal-header {
  padding: 0 !important;
  border: none !important;
  margin-bottom: 20px;
}
.modal-body {
  padding: 0 !important;
}
.modal {
  background: #0000008c;
}
.modal-dialog {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.popup_form_wrp {
  padding: 0 15px;
  text-align: center;
}
.popup_form_wrp h2 {
  font-weight: 800;
  font-size: 35px;
  color: #494949;
  margin: 0 0 10px 20px;
  position: relative;
}
.modal-content {
  padding: 30px 0;
}
.popup_form_wrp p {
  color: #343434;
  font-weight: 500;
}
.popup_form_wrp form input,
.popup_form_wrp form select,
.popup_form_wrp form textarea {
      width: 100%;
    background: #fff;
    border-radius: 20px;
    height: 40px;
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
    font-weight: 500;
    outline: none;
    color: #000;
    border: 1px solid #1197f9;
}

.popup_form_wrp form .form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em !important;
    height: 1em !important;
    margin-top: .25em;
    vertical-align: top;
    -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg) !important;
    background-image: var(--bs-form-check-bg-image) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    print-color-adjust: exact !important;
}

.popup_form_wrp form input[type="checkbox"] {
    width: 1em !important;
    height: 1rem !important;
    padding: 0!important;
}
.popup_form_wrp form .form-check-input:checked {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

.popup_form_wrp form {
  margin: 30px 0 0 0;
}
.popup_form_wrp form input::placeholder,
.popup_form_wrp form textarea::placeholder {
  color: rgba(0, 0, 0, 0.44);
  font-size: 14px;
}
.popup_form_wrp form textarea {
  border-radius: 15px;
  height: 70px;
  padding: 10px 18px;
}
.popup_form_wrp form select {
  font-size: 14px;
  font-weight: 500;
}
.modal-content {
  border-radius: 20px;
}
.modal-content {
  border: 2px solid #1197f9 !important;
}
.popup_form_wrp h2:before {
  content: "";
  display: block;
  position: absolute;
  background: #1197f9;
  width: 10px;
  height: 40px;
  left: -20px;
  border-radius: 5px;
}

span.color_form {
  color: #1197f9;
}
button.btn-close {
  position: absolute;
  right: 8px;
  top: 8px;
  background: #1197f9;
  opacity: 1;
  border-radius: 0;
  width: 30px;
  height: 25px;
  border-bottom-left-radius: 20px;
  z-index: 999;
  border-top-right-radius: 13px;
}
button.btn-close:after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 4px;
  height: 26px;
  top: 5px;
  transform: rotate(42deg);
  left: 25px;
  border-radius: 5px;
}
button.btn-close:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 4px;
  height: 26px;
  top: 5px;
  transform: rotate(129deg);
  left: 24px;
  border-radius: 5px;
}
button.btn-close:hover {
  background: #f3ad16;
  opacity: 1;
}

button.popup_button {
  background: linear-gradient(180deg, #39aff9 0%, #007cca 100%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  border: none;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  text-transform: capitalize;
  width: 200px;
  height: 50px;
  font-family: "Raleway";
}
button.popup_button:hover {
  background: #f3ad16;
}

@media (max-width: 991px) {
  .how-it-works .process-col {
    padding: 20px;
  }
  .how-it-works .process-col:not(:last-child)::after {
    display: none;
  }
}

.client-video-sec{
           padding: 0px 0 70px;
           overflow: hidden;
}
.client-video-sec .items{
        position: relative;
}
.client-video-sec .items{
    margin:0 5px;
}
.client-video-sec .items img{
        width: 100%;
        border-radius: 14px;
}

/*.client-video-sec .items a{*/
/*        color: #000;*/
/*background: #e47e00;*/
/*height: 40px;*/
/*width: 40px;*/
/*display: flex;*/
/*justify-content: center;*/
/*align-items: center;*/
/*border-radius: 50%;*/
/*top: 34%;*/
/*position: absolute;*/
/*left: 50%;*/
/*transform: translateX(-50%);*/
/*text-decoration:none;*/
/*}*/

.client-video-sec .items a{
    display:block;
    position: relative;
    overflow:hidden;
}

.client-video-sec .items img{
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    height: 212px;
}

.client-video-sec .items .play_btn {position: absolute;left: 0;width: 64px;height: 64px;background: url(/assets/images/aplay0.png) no-repeat scroll center top;z-index: 1;top: 50%;right: 0;margin: auto;transform: translateY(-50%);}
.client-video-sec .items .play_btn:before {    content: "";    position: absolute;    left: 0;    width: 64px;    height: 64px;    background: url(/assets/images/aplay1.png) no-repeat scroll center top;    z-index: 1;    bottom: 0;    right: 0;    margin: auto; }

.client-video-sec .items:hover .play_btn:before {
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.client-video-sec .items:hover img{
    transform: scale(1.1);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.client-video-sec .items h3{
    font-size: 23px;
    padding-top: 20px;
    text-transform: capitalize;
    font-style: italic;
    text-decoration: underline;
    text-align: center;
}

.client-video-sec .slick-prev,
.client-video-sec .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    background: #212529;
    opacity: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.client-video-sec .slick-prev::before,
.client-video-sec .slick-next::before{
    content:"";
}

.client-video-sec .slick-prev svg,
.client-video-sec .slick-next svg{
    font-size:20px;
    width:100%;
}

/* Left Arrow */
.client-video-sec .slick-prev {
    left: -50px; /* adjust spacing as needed */
}

/* Right Arrow */
.client-video-sec .slick-next {
    right: -50px; /* adjust spacing as needed */
}

.testi-head{
    padding-bottom:20px;
}

.testi-head h2{
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

.logo_brand{
    padding: 0px 0 50px;
}
.logo_brand .title h2{
    font-size: 40px;
    padding: 0 0 20px 0;
    text-align: center;
    font-weight: 600;
    font-family: unset;
}

.logo_brand ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 50px;
    list-style: none;
}
.logo_brand ul li img{
    max-width: 260px;
    width:100%;
    transition:0.7s;
}

.logo_brand ul li a{
    padding-bottom: 0;
}

.logo_brand ul li a:hover img{
    transform: scale(1.2);
}