/* =========================================
           SLM ROOT VARIABLES (LIGHT THEME FOR SITE)
           ========================================= */
:root {
  --slm-bg-primary: #ffffff;
  --slm-bg-secondary: #f4f6f8;
  --slm-text-main: #1a1a1a;
  --slm-text-muted: #555555;
  --slm-dark: #0f172a;
  --slm-silver: #94a3b8;
  --slm-accent: #025cc7;
  --slm-white: #ffffff;
  --slm-border: #e2e8f0;

  --slm-font-heading: "Montserrat", sans-serif;
  --slm-font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--slm-font-body);
  background-color: var(--slm-bg-primary);
  color: var(--slm-text-main);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

body,
html {
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--slm-font-heading);
  font-weight: 700;
  color: var(--slm-dark);
  text-transform: uppercase;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--slm-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--slm-silver);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--slm-accent);
}

/* ================================
   FIXED CONTACT BAR
================================ */

.slm-fixed-contact-bar {
  position: fixed;
  right: 22px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* BUTTON STYLE */
.slm-contact-btn {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.45s ease;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  animation: slmFloat 4s ease-in-out infinite;
}

/* ICON */
.slm-contact-btn i {
  font-size: 24px;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}

/* HIDDEN TEXT */
.slm-contact-btn span {
  position: absolute;
  right: 80px;
  white-space: nowrap;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* HOVER EFFECT */
.slm-contact-btn:hover {
  transform: translateX(-10px) scale(1.08);
}

.slm-contact-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* GLOW EFFECT */
.slm-contact-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: 0.4s;
}

.slm-contact-btn:hover::before {
  opacity: 1;
}

/* WHATSAPP */
.slm-whatsapp {
  background: linear-gradient(135deg, #00d757, #009d42);
}

/* CALL */
.slm-call {
  background: linear-gradient(135deg, #ff7b00, #ff3c00);
}

/* EMAIL */
.slm-email {
  background: linear-gradient(135deg, #7b61ff, #4a2dff);
}

/* FLOATING ANIMATION */
@keyframes slmFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .slm-fixed-contact-bar {
    right: 12px;
    gap: 14px;
  }

  .slm-contact-btn {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .slm-contact-btn i {
    font-size: 20px;
  }

  .slm-contact-btn span {
    display: none;
  }
}

/* =========================================
           SLM SMART NAVBAR
           ========================================= */
.slm-navbar-wrapper {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 1030;
}

.slm-navbar-wrapper.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border-bottom: none;
}

.slm-brand-logo {
  height: 45px;
  transition: all 0.3s ease;
  filter: invert(1) brightness(2);
}

.slm-brand-logo:hover {
  transform: scale(1.05);
}

.slm-nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: var(--slm-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.slm-nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--slm-white);
  transition: width 0.3s ease;
}

.slm-nav-link:hover,
.slm-nav-link.active {
  color: var(--slm-white) !important;
}

.slm-nav-link:hover::after,
.slm-nav-link.active::after {
  width: 100%;
}

.slm-navbar-wrapper.scrolled .slm-brand-logo {
  filter: none;
}

.slm-navbar-wrapper.scrolled .slm-nav-link {
  color: var(--slm-text-muted) !important;
}

.slm-navbar-wrapper.scrolled .slm-nav-link::after {
  background-color: var(--slm-accent);
}

.slm-navbar-wrapper.scrolled .slm-nav-link:hover,
.slm-navbar-wrapper.scrolled .slm-nav-link.active {
  color: var(--slm-dark) !important;
}

.slm-dropdown-menu {
  border: none;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  background: var(--slm-white);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  display: block;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  margin-top: 10px;
}

.nav-item.dropdown:hover .slm-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slm-dropdown-item {
  font-family: var(--slm-font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--slm-text-main);
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.slm-dropdown-item i {
  color: var(--slm-accent);
  width: 20px;
}

.slm-dropdown-item:hover {
  background-color: var(--slm-bg-secondary);
  color: var(--slm-accent);
  padding-left: 25px;
}

.slm-nav-btn {
  background: var(--slm-white);
  color: var(--slm-dark) !important;
  font-family: var(--slm-font-heading);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--slm-white);
}

.slm-nav-btn:hover {
  background: transparent;
  color: var(--slm-white) !important;
  border: 2px solid var(--slm-white) !important;
}

.slm-navbar-wrapper.scrolled .slm-nav-btn {
  background: var(--slm-accent);
  color: var(--slm-white) !important;
  border-color: var(--slm-accent);
}

.slm-navbar-wrapper.scrolled .slm-nav-btn:hover {
  background: var(--slm-dark);
  border-color: var(--slm-dark);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.slm-toggler-icon {
  color: var(--slm-white);
  font-size: 1.5rem;
}

.slm-navbar-wrapper.scrolled .slm-toggler-icon {
  color: var(--slm-dark);
}

/* =========================================
           SLM HERO SECTION
           ========================================= */
.slm-hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--slm-dark);
}

.slm-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.slm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.7) 45%,
    rgba(15, 23, 42, 0.1) 100%
  );
  z-index: 1;
}

.slm-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}

.slm-badge-wrapper {
  margin-bottom: 30px;
}

.slm-hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: 50px;
  font-family: var(--slm-font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--slm-white);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slm-hero-badge i {
  color: var(--slm-accent);
}

.slm-hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--slm-white);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.slm-text-gradient {
  background: linear-gradient(to right, #ffffff, #8ba1b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slm-hero-desc {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 600px;
}

.slm-hero-actions {
  display: flex;
  gap: 20px;
}

.slm-btn-primary {
  background-color: var(--slm-accent);
  color: var(--slm-white);
  padding: 16px 40px;
  font-family: var(--slm-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--slm-accent);
}

.slm-btn-primary:hover {
  background-color: var(--slm-dark);
  color: var(--slm-white);
  border-color: var(--slm-dark);
}

.slm-btn-outline-light {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--slm-white);
  padding: 16px 40px;
  font-family: var(--slm-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slm-btn-outline-light:hover {
  background-color: var(--slm-white);
  color: var(--slm-dark);
  border-color: var(--slm-white);
}

.slm-btn-dark {
  background-color: var(--slm-dark);
  color: var(--slm-white);
  padding: 16px 40px;
  font-family: var(--slm-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--slm-dark);
  display: inline-block;
}

.slm-btn-dark:hover {
  background-color: var(--slm-accent);
  color: var(--slm-white);
  border-color: var(--slm-accent);
}

.slm-social-sidebar {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5;
}

.slm-social-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.slm-social-link:hover {
  color: var(--slm-white);
  transform: scale(1.2);
}

.slm-social-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 10px auto;
}

@media (max-width: 1199px) {
  .slm-hero-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 991px) {
  .slm-navbar-wrapper {
    padding: 15px 0;
    background: transparent;
  }

  .slm-navbar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.98);
  }

  .navbar-collapse {
    background: rgba(15, 23, 42, 0.98);
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .slm-navbar-wrapper.scrolled .navbar-collapse {
    background: var(--slm-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .slm-dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    background: transparent;
  }

  .slm-navbar-wrapper.scrolled .slm-dropdown-menu {
    border-left-color: var(--slm-border);
  }

  .slm-navbar-wrapper.scrolled .slm-dropdown-item {
    color: var(--slm-text-main);
  }

  .slm-dropdown-item {
    color: var(--slm-white);
  }

  .nav-item.dropdown.show .slm-dropdown-menu {
    display: block;
  }

  .slm-nav-link {
    margin: 10px 0;
  }

  .slm-social-sidebar {
    display: none;
  }

  .slm-hero-overlay {
    background: linear-gradient(
      to top,
      rgba(15, 23, 42, 1) 0%,
      rgba(15, 23, 42, 0.6) 100%
    );
  }

  .slm-hero-content {
    text-align: center;
  }

  .slm-hero-desc {
    margin: 0 auto 30px auto;
  }

  .slm-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .slm-hero-title {
    font-size: 2.5rem;
  }

  .slm-hero-desc {
    font-size: 1rem;
  }

  .slm-hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .slm-btn-primary,
  .slm-btn-outline-light,
  .slm-btn-dark {
    padding: 15px 30px;
    width: 100%;
    text-align: center;
  }

  .slm-hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }
}

/* =========================================
           SLM ABOUT US SECTION
           ========================================= */
.slm-about-section {
  padding: 100px 0;
  background-color: var(--slm-white);
  position: relative;
  overflow: hidden;
}

.slm-about-img-container {
  position: relative;
  padding: 0 40px 40px 0;
  margin-right: 20px;
  z-index: 1;
}

.slm-about-frame {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 0;
  left: 40px;
  border: 6px solid var(--slm-border);
  z-index: 1;
}

.slm-about-img-main {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.slm-about-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background-color: var(--slm-accent);
  color: var(--slm-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(2, 92, 199, 0.2);
}

.slm-badge-num {
  font-size: 3.5rem;
  font-family: var(--slm-font-heading);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.slm-badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

.slm-about-content {
  padding-left: 20px;
}

.slm-about-subtitle {
  display: inline-flex;
  align-items: center;
  color: var(--slm-text-muted);
  font-family: var(--slm-font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.slm-about-subtitle::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--slm-accent);
  margin-right: 15px;
}

.slm-about-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--slm-dark);
  margin-bottom: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.slm-about-title span {
  color: var(--slm-accent);
}

.slm-about-text {
  color: var(--slm-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}

.slm-about-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.slm-about-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--slm-dark);
}

.slm-about-features-list li i {
  color: var(--slm-accent);
  font-size: 1.1rem;
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

.slm-btn-solid {
  background-color: var(--slm-accent);
  color: var(--slm-white);
  padding: 16px 35px;
  font-family: var(--slm-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.slm-btn-solid i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.slm-btn-solid:hover {
  background-color: var(--slm-dark);
  color: var(--slm-white);
}

.slm-btn-solid:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .slm-about-img-container {
    margin-right: 0;
    margin-bottom: 50px;
    padding: 0 30px 30px 0;
  }

  .slm-about-content {
    padding-left: 0;
  }

  .slm-about-title {
    font-size: 2.2rem;
  }

  .slm-about-img-main {
    height: 400px;
  }

  .slm-about-badge {
    width: 140px;
    height: 140px;
    padding: 20px;
  }

  .slm-badge-num {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .slm-about-section {
    padding: 80px 0;
  }

  .slm-about-title {
    font-size: 2rem;
  }

  .slm-about-img-main {
    height: 350px;
  }

  .slm-about-frame {
    top: 20px;
    left: 20px;
  }

  .slm-about-img-container {
    padding: 0 20px 20px 0;
  }

  .slm-btn-solid {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
           SLM PRODUCTS SECTION
           ========================================= */
.slm-products-section {
  padding: 100px 0;
  background-color: var(--slm-bg-secondary);
}

.slm-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.slm-section-subtitle {
  display: inline-block;
  color: var(--slm-accent);
  font-family: var(--slm-font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.slm-section-subtitle::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--slm-accent);
  margin-right: 15px;
  vertical-align: middle;
}

.slm-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--slm-dark);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0;
}

.slm-section-title span {
  color: var(--slm-accent);
}

.slm-slider-wrapper {
  position: relative;
  padding: 0 40px;
}

.slm-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.slm-slider-track::-webkit-scrollbar {
  display: none;
}

.slm-slide-item {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  min-width: 0;
}

.slm-slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--slm-white);
  color: var(--slm-dark);
  border: 1px solid var(--slm-border);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slm-slider-btn:hover {
  background: var(--slm-accent);
  color: var(--slm-white);
  border-color: var(--slm-accent);
}

.slm-slider-prev {
  left: -10px;
}

.slm-slider-next {
  right: -10px;
}

.slm-product-card {
  background: var(--slm-white);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.slm-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.slm-product-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  background-color: var(--slm-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slm-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0px;
  transition: transform 0.5s ease;
}

.slm-product-card:hover .slm-product-img {
  transform: scale(1.05);
}

.slm-product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--slm-dark);
  color: var(--slm-white);
  font-family: var(--slm-font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 6px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.slm-product-info {
  padding: 25px 25px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: var(--slm-white);
}

.slm-product-title {
  font-family: var(--slm-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slm-dark);
  margin-bottom: 12px;
}

.slm-product-desc {
  color: var(--slm-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.slm-product-link {
  color: var(--slm-dark);
  font-family: var(--slm-font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  margin-top: auto;
}

.slm-product-link i {
  color: var(--slm-accent);
  margin-left: 10px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.slm-product-link:hover {
  color: var(--slm-accent);
}

.slm-product-card:hover .slm-product-link i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .slm-section-title {
    font-size: 2.2rem;
  }

  .slm-product-info {
    padding: 25px 20px;
  }

  .slm-slide-item {
    flex: 0 0 calc(50% - 12px);
  }

  .slm-slider-prev {
    left: 0px;
  }

  .slm-slider-next {
    right: 0px;
  }

  .slm-slider-wrapper {
    padding: 0;
  }

  .slm-slider-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .slm-section-title {
    font-size: 1.8rem;
  }

  .slm-slide-item {
    flex: 0 0 100%;
  }
}

/* =========================================
           SLM PERFORMANCE & HIGHLIGHTS (PARALLAX)
           ========================================= */
.slm-performance-section {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/background/performance-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--slm-white);
  overflow: hidden;
}

.slm-perf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.653) 0%,
    rgba(15, 23, 42, 0.642) 100%
  );
  z-index: 1;
}

.slm-performance-section .container {
  position: relative;
  z-index: 2;
}

.slm-perf-header {
  text-align: center;
  margin-bottom: 60px;
}

.slm-perf-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slm-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.slm-perf-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slm-perf-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.slm-perf-card.highlight {
  background-color: var(--slm-accent);
  border-color: var(--slm-accent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.slm-perf-card.highlight:hover {
  background-color: #024da6;
}

.slm-perf-card-title {
  font-family: var(--slm-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  min-height: 40px;
  color: #ffff;
}

.slm-perf-circle {
  width: 130px;
  height: 130px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}

.slm-perf-card:hover .slm-perf-circle {
  border-color: var(--slm-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.slm-perf-num {
  font-family: var(--slm-font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
}

.slm-perf-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.slm-perf-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.slm-perf-footer-title {
  font-family: var(--slm-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #ffff;
}

.slm-perf-footer-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.slm-btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--slm-white);
  color: var(--slm-white);
  padding: 14px 35px;
  font-family: var(--slm-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.slm-btn-outline-white i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.slm-btn-outline-white:hover {
  background-color: var(--slm-white);
  color: var(--slm-dark);
}

.slm-btn-outline-white:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .slm-perf-main-title {
    font-size: 2rem;
  }

  .slm-perf-card {
    margin-bottom: 20px;
  }

  .slm-perf-footer-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .slm-performance-section {
    background-attachment: scroll;
  }

  .slm-perf-main-title {
    font-size: 1.6rem;
  }

  .slm-perf-card-title {
    min-height: auto;
  }
}

/* =========================================
           SLM GALLERY & FACILITY SECTION (CSS GRID)
           ========================================= */
.slm-gallery-section {
  padding: 100px 0;
  background-color: var(--slm-white);
}

.slm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 15px;
}

.slm-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
  background-color: var(--slm-dark);
  width: 100%;
  height: 100%;
}

.slm-grid-item-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.slm-grid-item-2 {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.slm-grid-item-3 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.slm-grid-item-4 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}

.slm-grid-item-5 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.slm-grid-item-6 {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}

.slm-grid-item-7 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}

.slm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.slm-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.slm-gallery-overlay i {
  color: var(--slm-white);
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slm-gallery-item:hover img {
  transform: scale(1.08);
}

.slm-gallery-item:hover .slm-gallery-overlay {
  opacity: 1;
}

.slm-gallery-item:hover .slm-gallery-overlay i {
  transform: scale(1);
}

@media (max-width: 991px) {
  .slm-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .slm-grid-item-1 {
    grid-column: 1 / 3;
    height: 350px;
  }

  .slm-grid-item-2 {
    grid-column: 1 / 3;
    height: 250px;
  }

  .slm-grid-item-3 {
    grid-column: 1 / 2;
    height: 200px;
  }

  .slm-grid-item-4 {
    grid-column: 2 / 3;
    height: 200px;
  }

  .slm-grid-item-5 {
    grid-column: 1 / 2;
    height: 200px;
  }

  .slm-grid-item-6 {
    grid-column: 1 / 3;
    height: 250px;
  }

  .slm-grid-item-7 {
    grid-column: 2 / 3;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .slm-gallery-grid {
    grid-template-columns: 1fr;
  }

  .slm-gallery-grid > div {
    grid-column: 1 / 2 !important;
    height: 250px !important;
  }
}

.slm-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
}

.slm-lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: slmZoom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.slm-lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.slm-lightbox-close:hover {
  color: var(--slm-accent);
}

@keyframes slmZoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================
           SLM SUPPORT & RESOURCES SECTION (NEW & UNIQUE)
           ========================================= */
.slm-support-section {
  position: relative;
  padding: 100px 0;
  background: url("../images/background/support-bg.jpeg") center center/cover
    no-repeat fixed;
  color: var(--slm-white);
}

/* Deep dark slate overlay for premium contrast */
.slm-support-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.85);
  z-index: 1;
}

.slm-support-section .container {
  position: relative;
  z-index: 2;
}

.slm-support-header {
  text-align: center;
  margin-bottom: 60px;
}

.slm-support-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--slm-white);
  font-family: var(--slm-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slm-support-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--slm-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.slm-support-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.slm-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Support Cards */
.slm-support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect now matches the Highlighted Card perfectly */
.slm-support-card:hover {
  background: var(--slm-accent);
  border-color: var(--slm-accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(2, 92, 199, 0.6);
}

/* Highlighted Card (3rd Card) */
.slm-support-card.highlight {
  background: var(--slm-accent);
  border-color: var(--slm-accent);
  box-shadow: 0 10px 30px rgba(2, 92, 199, 0.4);
}

.slm-support-card.highlight:hover {
  background: #024da6;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(2, 92, 199, 0.6);
}

.slm-support-card-content {
  padding: 40px 30px;
  flex-grow: 1;
}

.slm-supp-tag {
  font-family: var(--slm-font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slm-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: block;
}

.slm-support-card.highlight .slm-supp-tag,
.slm-support-card:hover .slm-supp-tag {
  color: rgba(255, 255, 255, 0.8);
}

.slm-supp-title {
  font-family: var(--slm-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--slm-white);
  /* Fixed heading visibility */
}

.slm-supp-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}

.slm-support-card.highlight .slm-supp-text,
.slm-support-card:hover .slm-supp-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Card Link Area */
.slm-supp-link-area {
  padding: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--slm-white);
  font-family: var(--slm-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.slm-supp-link-area i {
  transition: transform 0.3s ease;
}

.slm-support-card.highlight:hover .slm-supp-link-area,
.slm-support-card:hover .slm-supp-link-area {
  background: rgba(0, 0, 0, 0.1);
}

.slm-support-card.highlight:hover .slm-supp-link-area i,
.slm-support-card:hover .slm-supp-link-area i {
  transform: translateX(5px);
  color: var(--slm-white);
}

@media (max-width: 1199px) {
  .slm-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slm-support-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .slm-support-section {
    background-attachment: scroll;
    padding: 80px 0;
  }

  .slm-support-grid {
    grid-template-columns: 1fr;
  }

  .slm-support-title {
    font-size: 1.8rem;
  }
}

/* =========================================
           SLM CTA (CALL TO ACTION) SECTION (DARK PREMIUM)
           ========================================= */
.slm-cta-section {
  position: relative;
  padding: 120px 0;
  background: #ffff;
  text-align: center;
  color: var(--slm-white);
  border-top: 8px solid var(--slm-accent);
}

.slm-cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.slm-cta-title {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.slm-cta-title span {
  color: var(--slm-dark);
  position: relative;
  display: inline-block;
}

.slm-cta-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--slm-dark);
  bottom: -5px;
  left: 0;
}

.slm-cta-desc {
  font-size: 1.15rem;
  color: var(--slm-dark);
  margin-bottom: 45px;
  line-height: 1.7;
  font-weight: 400;
}

.slm-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.slm-btn-call {
  background-color: var(--slm-dark);
  color: var(--slm-bg-primary);
  padding: 16px 35px;
  font-family: var(--slm-font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid var(--slm-white);
}

.slm-btn-call:hover {
  background-color: transparent;
  color: var(--slm-dark);
  border: 2px solid var(--slm-dark);
}

.slm-btn-whatsapp {
  background-color: #25d366;
  color: var(--slm-white);
  padding: 16px 35px;
  font-family: var(--slm-font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid #25d366;
}

.slm-btn-whatsapp:hover {
  background-color: transparent;
  color: #25d366;
}

.slm-btn-whatsapp i {
  font-size: 1.2rem;
  margin-right: 10px;
}

.slm-btn-call i,
.slm-btn-outline-white i {
  margin-right: 10px;
  margin-left: 0 !important;
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .slm-cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .slm-cta-section {
    padding: 80px 0;
    background-attachment: scroll;
  }

  .slm-cta-title {
    font-size: 2rem;
  }

  .slm-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .slm-btn-call,
  .slm-btn-whatsapp,
  .slm-btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
           SLM LARGE & SEXY FOOTER
           ========================================= */
.slm-footer {
  background-color: #0a0a0a;
  /* Ultra dark background */
  color: var(--slm-white);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--slm-accent);
  /* Top colored bar */
}

/* Subtle background glow/shape in footer */
.slm-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(2, 92, 199, 0.1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.slm-footer .container {
  position: relative;
  z-index: 1;
}

.slm-footer-col {
  margin-bottom: 40px;
}

.slm-footer-logo {
  height: 50px;
  margin-bottom: 25px;
  filter: invert(1) brightness(2);
  /* White logo for dark footer */
}

.slm-footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 25px;
  padding-right: 20px;
}

.slm-social-links {
  display: flex;
  gap: 12px;
}

.slm-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--slm-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slm-social-links a:hover {
  background: var(--slm-accent);
  border-color: var(--slm-accent);
  transform: translateY(-3px);
}

.slm-footer-heading {
  font-family: var(--slm-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  color: var(--slm-white);
  /* Fixed heading visibility */
}

.slm-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--slm-accent);
}

.slm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slm-footer-links li {
  margin-bottom: 15px;
}

.slm-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Hover effect with small right arrow */
.slm-footer-links a::before {
  content: "\f105";
  /* FontAwesome right angle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 0.8rem;
  color: var(--slm-accent);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.slm-footer-links a:hover {
  color: var(--slm-white);
  transform: translateX(5px);
}

.slm-footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.slm-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slm-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.slm-contact-info i {
  color: var(--slm-accent);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 4px;
}

.slm-contact-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.slm-contact-info a:hover {
  color: var(--slm-accent);
}

.slm-footer-bottom {
  background-color: #050505;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.slm-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-align: center;
}

.slm-copyright span {
  color: var(--slm-white);
  font-weight: 600;
}

@media (max-width: 768px) {
  .slm-footer {
    padding-top: 60px;
  }

  .slm-footer-col {
    margin-bottom: 50px;
  }

  .slm-footer-text {
    padding-right: 0;
  }
}

/* =========================================
           TESTIMONIALS & CERTIFICATE SECTION
           ========================================= */
.rs-testimonial-section {
  padding: 100px 0;
  background:
    linear-gradient(
      135deg,
      rgba(15, 15, 15, 0.421) 0%,
      rgba(20, 25, 30, 0.679) 100%
    ),
    url("../images/background/testi-bg.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-certificate-wrapper {
  background: var(--rs-bg-light);
  padding: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: var(--rs-transition-smooth);
}

.rs-certificate-wrapper::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--slm-accent);
  z-index: -1;
  transition: var(--rs-transition-smooth);
}

.rs-certificate-wrapper:hover {
  transform: translateY(-10px);
}

.rs-certificate-wrapper:hover::before {
  top: 10px;
  left: 10px;
}

.rs-certificate-wrapper img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.rs-testi-heading-wrap {
  margin-bottom: 40px;
}

.rs-testi-heading {
  color: var(--slm-bg-primary);
  font-family: var(--rs-font-heading);
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
}

.rs-testi-divider {
  width: 50px;
  height: 3px;
  background-color: var(--slm-accent);
}

/* Testimonial Slider */
.rs-testi-slider-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.rs-testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rs-testi-slide {
  min-width: 100%;
  padding-right: 30px;
}

.rs-testi-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 25px;
  position: relative;
}

.rs-testi-author {
  font-family: var(--rs-font-heading);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rs-testi-company {
  display: block;
  font-size: 0.85rem;
  color: var(--slm-bg-primary);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Testimonial Controls */
.rs-testi-controls {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.rs-testi-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--slm-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--rs-transition-smooth);
}

.rs-testi-btn:hover {
  border-color: var(--slm-accent);
  background: var(--slm-accent);
  color: var(--slm-bg-primary);
  transform: scale(1.1);
}
