@font-face {
  font-family: "PetrovSans-Thin";
  src: url("../fonts/petrov_sans/PetrovSans-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "PetrovSans-Regular";
  src: url("../fonts/petrov_sans/PetrovSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "PetrovSans-SemiBold";
  src: url("../fonts/petrov_sans/PetrovSans-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "PetrovSans-Bold";
  src: url("../fonts/petrov_sans/PetrovSans-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit-Thin";
  src: url("../fonts/outfit/Outfit-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Outfit-Regular";
  src: url("../fonts/outfit/Outfit-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Outfit-SemiBold";
  src: url("../fonts/outfit/Outfit-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Outfit-Bold";
  src: url("../fonts/outfit/Outfit-Bold.ttf") format("truetype");
}

/* =====================================================
   GLOBAL SECTION HEIGHT RULES
   Desktop: Full screen
   Mobile: Auto height
===================================================== */

.section {
  position: relative;
}

/* Desktop / large devices */
@media (min-width: 992px) {
  .section {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

/* Mobile & tablet */
@media (max-width: 991.98px) {
  .section {
    min-height: auto;
    padding: 3rem 0;
  }
}

/* =====================================================
   VERTICAL CONTENT ALIGNMENT
===================================================== */

/* Desktop: center content vertically */
@media (min-width: 992px) {
  .section > .container,
  .section > .container-fluid,
  .section > .section-content {
    margin-top: auto;
    margin-bottom: auto;
  }
}

/* Mobile: normal flow (top aligned) */
@media (max-width: 991.98px) {
  .section > .container,
  .section > .container-fluid,
  .section > .section-content {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/* =====================================================
   ANIMATIONS
===================================================== */

.fade-up {
  display: inline-block;
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale animation */
.scale-animate {
  transform: scale(0.6);
  opacity: 0;
  transition: transform 2s ease, opacity 1s ease;
}

.scale-animate.active {
  transform: scale(1);
  opacity: 1;
}

/* =====================================================
   MISC
===================================================== */

hr {
  background: #000;
}

.gradient-text {
  background: linear-gradient(230deg, #be2ff4, #6210ff); /* Two colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Optional for other browsers */
  background-clip: text;
  color: transparent;
}

body {
  font-size: 14px;
  font-family: "Outfit-Regular";
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(205deg, #be2ff4, #6210ff);
  opacity: 0.9;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-content img {
  width: 100px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.border-white {
  border-color: #fff;
}
.btn-menu {
  padding: 12px 10px 5px;
}

.menu-icon {
  height: 36px;
}

.btn-menu:focus {
  box-shadow: none;
}
.nav-link {
  color: #be2ff4;
  font-size: 20px;
}
.nav-link:focus,
.nav-link:hover,
.nav-link.active {
  color: #6210ff;
}
.bg-transparent {
  background: transparent;
}

.video-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}
.overlay-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  z-index: 2;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.main-logo {
  height: 50px;
  position: relative;
  z-index: 1;
  top: 3px;
  left: 40px;
}

header {
  background: rgb(143 143 143 / 10%);
  height: 64px;
}
nav.navbar {
  padding: 2px 0 0;
}

header a.nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 15px;
}

header .nav-link.active {
  font-size: 16px;
  font-weight: 700;
}

.caption-head1 {
  font-size: 44px;
  line-height: 52px;
}

.caption-desc {
  font-size: 20px;
  line-height: 26px;
}

.form-wrapper {
  background: #eef0ff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  position: relative;
  top: -24%;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
}
.video-overlay-content {
  font-family: "PetrovSans-Regular";
}

.bg-vision {
  background: url("../img/bg-vision.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
}

.vision-title {
  /* padding: 34% 0; */
  font-size: 100px;
  color: #fff;
  text-align: center;
  font-family: "PetrovSans-Regular";
}

.fade-top-overlay {
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to bottom, #fff, transparent);
}

.btn-explore {
  font-size: 18px;
  border: 1px solid #6210ff;
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
  margin: 4px;
  display: inline-block;
  font-family: "Outfit-Regular";
  letter-spacing: 1px;
  right: 40px;
  position: absolute;
  bottom: 30px;
}

.btn-explore:hover {
  color: #6210ff;
}
img.btn-ico {
  height: 15px;
}

.about-title {
  padding: 30px 0;
  font-size: 120px;
  line-height: 122px;
  color: #6210ff;
  font-family: "PetrovSans-Regular";
  position: relative;
  top: 8%;
}

.about-after-img {
  top: 60%;
  right: -15%;
  position: absolute;
  width: 54%;
  z-index: -1;
  animation: spin 2s linear 2 forwards;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.list-head {
  font-size: 66px;
  line-height: 68px;
  font-family: "PetrovSans-Regular";
  display: block;
}

.list-desc {
  font-size: 24px;
  line-height: 30px;
  font-family: "PetrovSans-Regular";
}

.about-list {
  list-style-type: none;
}

.about-list li {
  padding: 20px 0;
}

#footer {
  background: linear-gradient(205deg, #be2ff4, #6210ff);
  color: #fff;
}

.footer-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;
}

.footer-ul {
  list-style-type: none;
  font-size: 16px;
  padding: 15px 0;
}
.footer-ul a {
  color: #fff;
}

.social-ul {
  list-style: none;
  padding: 0;
}

.social-ul li {
  display: inline-block;
  margin-right: 10px;
}

.social-ul i {
  font-size: 20px;
  color: #fff;
}

.footer-logo {
  height: 80px;
  margin-bottom: 5px;
}

.social-p {
  margin-top: 12px;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 300;
}

.bg-service-page {
  position: relative;
  background: linear-gradient(205deg, #be2ff4, #6210ff);
  opacity: 0.99;
}
.bg-service-page::after {
  content: ""; /* Required for pseudo-elements */
  display: block; /* or use position: absolute */
  background-image: url("../img/services-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Size of the pseudo-element */
  width: 100%;
  height: 100%;

  /* Optional: if you want to overlay it */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Send it behind the content */
}

#service-page h5 {
  font-size: 130px;
  color: #fff;
  text-align: center;
  font-family: "PetrovSans-Regular";
}

#service-page .para1 {
  font-size: 30px;
  text-align: center;
  color: #fff;
  padding: 10px 35px 30px;
}

.sec-strategy1,
.sec-strategy2,
.sec-strategy3,
.sec-strategy4 {
  background: linear-gradient(205deg, #be2ff4, #6210ff);
  color: #fff;
  padding: 70px 0 !important;
}

.sec-strategy1 h5,
.sec-strategy2 h5,
.sec-strategy3 h5,
.sec-strategy4 h5 {
  font-size: 130px;
  color: #fff;
  text-align: center;
  font-family: "PetrovSans-Regular";
}

.sec-strategy1 .para1,
.sec-strategy2 .para1,
.sec-strategy3 .para1,
.sec-strategy4 .para1 {
  font-size: 30px;
  text-align: center;
  color: #fff;
  padding: 10px 35px 10px;
}

.bg-about-page {
  position: relative;
  background: linear-gradient(205deg, #be2ff4, #6210ff);
  overflow: hidden;
}

.about-img {
  position: relative;
  height: auto;
}

.sec-about1 .para1 {
  font-size: 46px;
  text-align: center;
  color: #6210ff;
  padding: 10px 35px 10px;
  font-family: "PetrovSans-Regular";
}

.sec-about2 {
}

.sec-about2 h5 {
  font-size: 66px;
  font-family: "Outfit-Regular";
  color: #fff;
}

.sec-about2 .para1 {
  font-size: 18px;
  font-family: "Outfit-Regular";
  color: #fff;
}

.about-title2 {
  font-size: 90px;
  text-align: center;
  color: #6210ff;
  padding: 10px 35px 10px;
  font-family: "PetrovSans-Regular";
}

.director-info {
  font-size: 20px;
  color: #6210ff;
  font-family: "Outfit-Regular";
}

.director-name {
  font-size: 35px;
  line-height: 30px;
  margin-bottom: 2px;
  text-align: center;
  color: #6210ff;
  font-family: "PetrovSans-Regular";
}

.director-position {
  font-size: 20px;
  text-align: center;
  color: #be2ff4;
  font-family: "PetrovSans-Regular";
}

.director-img {
  height: 300px;
  margin: 2px auto 9px;
  display: block;
}

.director-wrapper {
  margin: 25px 0;
}

.sec-about5 {
  background-color: #000;
}

.about-title3 {
  text-transform: capitalize;
  font-size: 90px;
  text-align: center;
  padding: 10px 35px 10px;
  font-family: "PetrovSans-Regular";
  background: linear-gradient(180deg, #be2ff4, #6210ff); /* Two colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Optional for other browsers */
  background-clip: text;
  color: transparent;
}

.team-name {
  font-size: 32px;
  line-height: 34px;
  margin: 5px 0;
  text-align: center;
  color: #fff;
  font-family: "PetrovSans-Regular";
}

.team-position {
  font-size: 20px;
  text-align: center;
  color: #be2ff4;
  font-family: "PetrovSans-Regular";
}

.team-wrapper {
  margin: 8px 0;
}

.team-img {
  margin: 0 auto;
  display: block;
}

#contact-page {
  border-top: 64px solid;
  border-image: linear-gradient(180deg, #be2ff4, #6210ff) 1;
}

.bg-contact-page {
  background: #eef0ff;
}

.contact-title {
  text-transform: capitalize;
  font-size: 90px;
  text-align: center;
  padding: 10px 35px 10px;
  font-family: "PetrovSans-Regular";
  background: linear-gradient(180deg, #be2ff4, #6210ff); /* Two colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Optional for other browsers */
  background-clip: text;
  color: transparent;
}

.contact-desc {
  font-size: 18px;
  color: #6210ff;
  font-family: "Outfit-Regular";
  text-align: center;
}

.contact-head {
  font-size: 50px;
  font-family: "PetrovSans-Regular";
  background: linear-gradient(180deg, #be2ff4, #6210ff); /* Two colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Optional for other browsers */
  background-clip: text;
  color: transparent;
}

.btn-main {
  font-size: 16px;
  padding: 3px 25px 3px;
  display: block;
  width: 100%;
  color: #fff;
  background: linear-gradient(180deg, #be2ff4, #6210ff);
  border-radius: 30px;
  z-index: 10;
  position: relative;
}

.btn-main img {
  height: 13px;
  padding-left: 10px;
}

.text-copening {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

.text-mail {
  margin: 20px 5px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-align: center;
}

.text-mail a {
  font-weight: 600;
  color: #6210ff;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: #00000045
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes swing {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(-10deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes floatUpDown {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -52%);
  } /* Move up */
  100% {
    transform: translate(-50%, -50%);
  } /* Return to center */
}

.fix-callback {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #b1a9a9;
  padding: 10px;
  z-index: 9999;
  background: linear-gradient(180deg, #be2ff4, #6210ff);
}

.fix-callback img {
  margin-right: 4px;
}
.fix-callback a {
  color: #fff;
}

.btn-sidebar {
  font-size: 14px;
  position: fixed;
  right: -3%;
  top: 38%;
  z-index: 8999;
  transform: rotate(90deg);
}

.call-icon {
  height: 20px;
  margin-left: 4px;
}

.call-btn {
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
}
.call-btn:hover {
  color: #ddd;
}

/* new code */
.ab-wrapper {
  text-align: center;
}
.about-heading {
  font-size: 42px;
  color: #fff;
  font-family: "PetrovSans-Regular";
}

.about-subheading {
  color: #fff;
  font-size: 16px;
}

.brand-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 0.602187px 2.28831px -0.583333px #00000012,
    0 2.28853px 8.69643px -1.16667px #00000014, 0 10px 38px -1.75px #00000021;
  margin: 10px 0;
}

.brand-card h5 {
  font-size: 22px;
}
.brand-card p {
  font-size: 16px;
  color: #636363;
}

.brand-img-card {
  box-shadow: 0 0 4px 1px #ddd;
  padding: 15px;
  border-radius: 8px;
  margin: 15px;
}

img.brand-img {
  height: auto;
  margin: 0 auto;
  width: 100%;
}

.video-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 0.602187px 2.28831px -0.583333px #00000012,
    0 2.28853px 8.69643px -1.16667px #00000014, 0 10px 38px -1.75px #00000021;
  margin: 10px 0;
}

.video-card h5 {
  font-size: 22px;
}
.video-card p {
  font-size: 16px;
  color: #636363;
}

.video-card {
  box-shadow: 0 0 4px 1px #ddd;
  padding: 4px;
  border-radius: 4px;
  margin: 15px;
}

.testimonials {
  background: #171717;
}

.testimonial-heading {
  font-size: 42px;
  color: #fff;
  font-family: "PetrovSans-Regular";
}

.testimonial-subheading {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 0.602187px 2.28831px -0.583333px #00000012,
    0 2.28853px 8.69643px -1.16667px #00000014, 0 10px 38px -1.75px #00000021;
  margin: 10px 0;
  position: relative;
}

.testimonial-card p {
  font-size: 14px;
  color: #636363;
  margin-bottom: 25px;
}

.testimonial-card h5 {
  font-size: 16px;
}

img.company-logo {
  width: 160px;
  position: absolute;
  right: 20px;
  bottom: 1%;
}

.btn-demo {
  background: linear-gradient(205deg, #be2ff4, #6210ff);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 5px 20px;
  margin: 4px 2px 4px 0;
  font-size: 15px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  background-color: transparent;
  background-clip: padding-box;
  border-width: 0;
  border-bottom: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default .select2-selection--multiple {
  padding-left: 6px;
  color: #212529;
  background-color: transparent;
  border: none !important;
  border-bottom: 1px solid #ced4da !important;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-main1 {
  font-size: 16px;
  padding: 6px 25px 8px;
  color: #fff;
  background: #3f086d;
  border-radius: 30px;
  z-index: 10;
  position: relative;
  width: 100%;
}

.portfolio-heading {
  font-size: 42px;
  color: #6210ff;
  font-family: "PetrovSans-Regular";
}

.portfolio-subheading {
  font-size: 16px;
  margin-bottom: 2px;
}

.portfolio-tagline {
  font-size: 12px;
  color: #be2ff4;
}

.service-head {
  font-size: 32px;
  font-family: "Outfit-Regular";
  line-height: 42px;
}

.service-desc {
  font-size: 18px;
  line-height: 20px;
}

.service-tags {
  font-size: 14px;
  border: 1px solid #6210ff;
  padding: 2px 8px 3px;
  border-radius: 15px;
  margin: 4px;
  display: inline-block;
}

.step-wrapper {
  background: #e9ecef;
  box-shadow: 2px 1px 3px 0px #f0d6ff;
  padding: 5px 12px;
  margin-bottom: 14px;
  border-radius: 3px;
}
.step-head {
  font-size: 20px;
  color: #5d0ff3;
  font-weight: 600;
  margin-bottom: 2px;
}
.step-desc {
  font-size: 14px;
  margin-bottom: 2px;
}

.ul-cases {
  color: #fff;
  font-size: 18px;
  font-weight: 400 !important;
}

.cases-head {
  color: #fff;
}

.faq-wrapper .fw-bold {
  font-size: 16px;
}

.fw-answer {
  font-size: 16px;
}

.text-white {
  color: #fff;
}

/* =====================================================
   VIDEO HERO SECTION (FINAL CLEAN VERSION)
===================================================== */

.video-section {
  position: relative;
  overflow: hidden;
}

/* Desktop: fullscreen hero */
@media (min-width: 992px) {
  .video-section {
    min-height: 100vh;
  }
}

/* Mobile: auto height */
@media (max-width: 991.98px) {
  .video-section {
    min-height: auto;
  }
}

/* Background video */
.top-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay */
.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* =====================================================
   CENTER OVERLAY CONTENT
===================================================== */

.video-overlay-content {
  position: relative;
  z-index: 3;
  color: #fff;

  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */

  width: 100%;
  min-height: 100vh;

  padding-top: 15%; /* fixed header height */
  padding-left: 50px;
}

/* Content width control */
.video-overlay-content .row {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* Mobile behavior */
@media (max-width: 991.98px) {
  .video-overlay-content {
    min-height: auto;
    padding: 100px 15px 60px;
  }
}

.brand-marquee-wrapper {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.brand-marquee {
  overflow: hidden;
  width: 100%;
}

.brand-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.brand-item {
  min-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-img {
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand-img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Buttons */
.brand-nav {
  background: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  line-height: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.brand-nav:hover {
  background: #444;
}

img.service-icon {
  position: absolute;
  height: 64px;
  bottom: 0px;
  right: 6px;
  z-index: -1;
}

.testimonial-slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 45%;
  padding: 30px;
  margin: 15px;
}

.testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Navigation buttons */
.testimonial-nav {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease, transform 0.2s ease;
}

.testimonial-nav:hover {
  background: #000;
  transform: scale(1.1);
}

.testimonial-nav i {
  font-size: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-nav {
    display: none;
  }
}
