/* =========================================
           ROOT VARIABLES (Do not change)
           ========================================= */
:root {
  /* Extracted from Logo */
  --rs-primary-red: #a51c24;
  --rs-dark-red: #7a131a;

  /* Theme Colors */
  --rs-steel-silver: #d1d6db;
  --rs-steel-dark: #2c3338;
  --rs-bg-light: #ffffff;
  --rs-bg-offwhite: #f8f9fa;
  --rs-bg-luxury-dark: #121416;
  --rs-bg-card-dark: #1c1f22;
  --rs-text-light: #ffffff;
  --rs-text-dark: #1a1d20;
  --rs-text-muted: #5a6268;
  --rs-text-gray: #a0aab2;

  /* Fonts */
  --rs-font-heading: "Oswald", sans-serif;
  --rs-font-body: "Poppins", sans-serif;

  /* Utilities */
  --rs-transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
           GLOBAL STYLES & SMOOTH SCROLL (Lenis)
           ========================================= */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--rs-font-body);
  background-color: var(--rs-bg-light);
  color: var(--rs-text-dark);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rs-font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--rs-bg-offwhite);
}

::-webkit-scrollbar-thumb {
  background: var(--rs-primary-red);
  border-radius: 4px;
}

/* =========================================
           FIXED CONTACT ICONS (RIGHT SIDE)
           ========================================= */
.rs-fixed-social {
  position: fixed;
  bottom: 30px;
  right: 30px;
  /* Fixed on the right side */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.rs-fs-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 55px;
  height: 55px;
  border-radius: 50px;
  color: var(--rs-text-light);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition:
    width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.3s,
    transform 0.3s;
}

/* Hover karne par thoda upar uthega aur width badhegi */
.rs-fs-btn:hover {
  transform: translateY(-5px);
  color: var(--rs-text-light);
  width: 170px;
  /* Expand hone ke baad ki width */
}

.rs-fs-btn i {
  min-width: 55px;
  text-align: center;
  font-size: 24px;
}

.rs-fs-text {
  white-space: nowrap;
  font-weight: 500;
  font-size: 15px;
  opacity: 0;
  padding-right: 20px;
  transition: opacity 0.3s 0.1s;
}

/* Text visible hoga jab hover karenge */
.rs-fs-btn:hover .rs-fs-text {
  opacity: 1;
}

/* Platform specific colors */
.rs-fs-whatsapp {
  background-color: #25d366;
}

.rs-fs-whatsapp:hover {
  background-color: #128c7e;
}

.rs-fs-call {
  background-color: var(--rs-primary-red);
}

.rs-fs-call:hover {
  background-color: var(--rs-dark-red);
}

.rs-fs-mail {
  background-color: #3b5998;
}

.rs-fs-mail:hover {
  background-color: #2d4373;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .rs-fixed-social {
    bottom: 20px;
    right: 20px;
  }

  .rs-fs-btn {
    width: 45px;
    height: 45px;
  }

  .rs-fs-btn i {
    min-width: 45px;
    font-size: 20px;
  }
}

/* =========================================
           GLOBAL COMPONENTS
           ========================================= */
.rs-section-subtitle {
  color: var(--rs-primary-red);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-left: 45px;
}

.rs-section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--rs-primary-red);
}

.rs-section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--rs-text-dark);
  text-transform: uppercase;
}

.rs-section-title span {
  color: var(--rs-primary-red);
}

.rs-btn-primary {
  background: var(--rs-primary-red);
  border: 2px solid var(--rs-primary-red);
  color: var(--rs-text-light);
  padding: 12px 30px;
  font-family: var(--rs-font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--rs-transition-smooth);
  text-transform: uppercase;
  border-radius: 0;
  display: inline-block;
  text-decoration: none;
}

.rs-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rs-text-dark);
  z-index: -1;
  transition: var(--rs-transition-smooth);
}

.rs-btn-primary:hover::before {
  left: 0;
}

.rs-btn-primary:hover {
  color: var(--rs-text-light) !important;
  border-color: var(--rs-text-dark);
}

/* =========================================
           HEADER / NAVBAR SECTION (rs-header-wrap)
           ========================================= */
.rs-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  transition: var(--rs-transition-smooth);
  background: transparent;
}

.rs-header-wrap.rs-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rs-navbar-brand img {
  height: 60px;
  transition: var(--rs-transition-smooth);
}

.rs-header-wrap.rs-scrolled .rs-navbar-brand img {
  height: 45px;
}

.rs-nav-link {
  color: var(--rs-text-dark) !important;
  font-size: 14px;
  font-weight: 600;
  margin: 0 12px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--rs-transition-smooth);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.rs-nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--rs-primary-red);
  transition: var(--rs-transition-smooth);
}

.rs-nav-link:hover,
.rs-nav-link:focus,
.rs-nav-link.show {
  color: var(--rs-primary-red) !important;
  text-shadow: none;
}

.rs-nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  margin-top: 15px;
  border-top: 3px solid var(--rs-primary-red);
}

.dropdown-item {
  font-family: var(--rs-font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 25px;
  color: var(--rs-text-dark);
  transition: var(--rs-transition-smooth);
}

.dropdown-item:hover {
  background-color: var(--rs-bg-offwhite);
  color: var(--rs-primary-red);
  padding-left: 30px;
}

.rs-btn-quote {
  background: transparent;
  border: 2px solid var(--rs-primary-red);
  color: var(--rs-text-dark);
  padding: 8px 25px;
  font-family: var(--rs-font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--rs-transition-smooth);
  background-color: rgba(255, 255, 255, 0.7);
}

.rs-scrolled .rs-btn-quote {
  background-color: transparent;
}

.rs-btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--rs-primary-red);
  z-index: -1;
  transition: var(--rs-transition-smooth);
}

.rs-btn-quote:hover::before {
  left: 0;
}

.rs-btn-quote:hover {
  color: var(--rs-text-light) !important;
  border-color: var(--rs-primary-red);
  box-shadow: 0 5px 15px rgba(165, 28, 36, 0.3);
}

/* =========================================
           HERO SECTION (rs-hero-wrapper)
           ========================================= */
.rs-hero-wrapper {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.rs-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.rs-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.6) 40%,
      rgba(255, 255, 255, 0) 65%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0) 25%
    );
  z-index: -2;
}

.rs-hero-content {
  text-align: left;
  z-index: 2;
  margin-top: 40px;
}

.rs-hero-subtitle {
  color: var(--rs-primary-red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-left: 50px;
}

.rs-hero-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 2px;
  background-color: var(--rs-primary-red);
}

.rs-hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--rs-text-dark);
  letter-spacing: 0.5px;
}

.rs-hero-title span {
  color: var(--rs-primary-red);
}

.rs-hero-desc {
  font-size: 1.1rem;
  color: var(--rs-text-muted);
  max-width: 500px;
  margin: 0 0 35px 0;
  font-weight: 500;
  line-height: 1.6;
}

.rs-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50px;
  color: var(--rs-text-dark);
  font-size: 20px;
  animation: rs-bounce 2s infinite;
  opacity: 0.6;
  transition: var(--rs-transition-smooth);
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.rs-scroll-indicator:hover {
  color: var(--rs-primary-red);
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}

@keyframes rs-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-12px);
  }

  60% {
    transform: translateY(-6px);
  }
}

.rs-play-btn {
  color: var(--rs-text-dark) !important;
  transition: var(--rs-transition-smooth);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 20px;
  border-radius: 30px;
}

.rs-play-btn:hover {
  color: var(--rs-primary-red) !important;
  background: rgba(255, 255, 255, 1);
}

/* =========================================
           ABOUT US SECTION (rs-about-section)
           ========================================= */
.rs-about-section {
  padding: 80px 0;
  background-color: var(--rs-bg-light);
  position: relative;
  overflow: hidden;
}

.rs-about-img-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}

.rs-about-img-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 80%;
  border: 8px solid var(--rs-bg-offwhite);
  z-index: 1;
  transition: var(--rs-transition-smooth);
}

.rs-about-img-wrapper:hover::after {
  border-color: var(--rs-steel-silver);
  transform: translate(10px, 10px);
}

.rs-about-main-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: var(--rs-transition-smooth);
}

.rs-about-img-wrapper:hover .rs-about-main-img {
  transform: translateY(-10px);
}

.rs-experience-badge {
  position: absolute;
  bottom: 50px;
  right: -15px;
  background: var(--rs-primary-red);
  color: var(--rs-text-light);
  padding: 30px 35px;
  z-index: 3;
  text-align: center;
  box-shadow: 0 15px 30px rgba(165, 28, 36, 0.3);
  animation: rs-float-badge 4s ease-in-out infinite;
}

.rs-experience-badge h2 {
  font-size: 3.8rem;
  margin: 0;
  line-height: 1;
}

.rs-experience-badge p {
  font-family: var(--rs-font-heading);
  margin: 10px 0 0 0;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes rs-float-badge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.rs-about-content {
  padding-left: 50px;
}

.rs-about-text {
  font-size: 1.05rem;
  color: var(--rs-text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.rs-about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.rs-about-features li {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rs-text-dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--rs-transition-smooth);
}

.rs-about-features li:hover {
  transform: translateX(10px);
  color: var(--rs-primary-red);
}

.rs-about-features li i {
  color: var(--rs-primary-red);
  font-size: 1.3rem;
  background: var(--rs-bg-offwhite);
  padding: 10px;
  border-radius: 50%;
}

/* =========================================
           PRODUCTS SLIDER SECTION (rs-products-section)
           ========================================= */
.rs-products-section {
  padding: 80px 0;
  background-color: var(--rs-bg-offwhite);
  position: relative;
  overflow: hidden;
}

.rs-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

/* Custom Slider Controls (Cute & Premium) */
.rs-slider-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.rs-slider-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--rs-primary-red);
  background: transparent;
  color: var(--rs-primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--rs-transition-smooth);
  outline: none;
}

.rs-slider-btn:hover {
  background: var(--rs-primary-red);
  color: var(--rs-text-light);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(165, 28, 36, 0.3);
}

/* Custom Snap Slider Container */
.rs-slider-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0 50px 0;
  /* Extra bottom padding for shadow */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.rs-slider-container::-webkit-scrollbar {
  display: none;
}

/* Product Card Design */
.rs-product-card {
  width: calc((100% - 60px) / 3);
  flex: 0 0 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  scroll-snap-align: start;
  background: var(--rs-bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--rs-transition-smooth);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.rs-product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--rs-primary-red);
}

.rs-product-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background-color: var(--rs-steel-silver);
}

.rs-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rs-product-card:hover .rs-product-img {
  transform: scale(1.1);
}

.rs-product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rs-bg-luxury-dark);
  color: var(--rs-text-light);
  padding: 5px 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.rs-product-info {
  padding: 35px 30px;
}

.rs-product-title {
  font-family: var(--rs-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rs-text-dark);
  margin-bottom: 15px;
  text-transform: none;
  transition: var(--rs-transition-smooth);
}

.rs-product-card:hover .rs-product-title {
  color: var(--rs-primary-red);
}

.rs-product-desc {
  font-size: 0.95rem;
  color: var(--rs-text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.rs-product-link {
  color: var(--rs-text-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--rs-transition-smooth);
}

.rs-product-link i {
  color: var(--rs-primary-red);
  transition: var(--rs-transition-smooth);
}

.rs-product-link:hover {
  color: var(--rs-primary-red);
  gap: 18px;
}

/* =========================================
           GALLERY SECTION & LIGHTBOX
           ========================================= */
.rs-gallery-section {
  padding: 50px 0;
  background-color: var(--rs-bg-light);
}

.rs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 15px;
}

.rs-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--rs-steel-silver);
}

.rs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rs-gallery-item:hover img {
  transform: scale(1.1);
}

.rs-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(165, 28, 36, 0.95),
    rgba(18, 20, 22, 0.5)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.rs-gallery-item:hover .rs-gallery-overlay {
  opacity: 1;
}

.rs-gallery-icon {
  width: 50px;
  height: 50px;
  background: var(--rs-bg-light);
  color: var(--rs-primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(20px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rs-gallery-item:hover .rs-gallery-icon {
  transform: translateY(0) scale(1);
}

.rs-gallery-overlay h4 {
  color: var(--rs-text-light);
  font-family: var(--rs-font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: 0.1s;
}

.rs-gallery-item:hover .rs-gallery-overlay h4 {
  transform: translateY(0);
}

.rs-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.rs-item-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.rs-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

.rs-lightbox.rs-active {
  opacity: 1;
  pointer-events: auto;
}

.rs-lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.rs-lightbox.rs-active .rs-lightbox-img {
  transform: scale(1);
}

.rs-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--rs-text-light);
  font-size: 35px;
  cursor: pointer;
  transition: var(--rs-transition-smooth);
  z-index: 10001;
}

.rs-lightbox-close:hover {
  color: var(--rs-primary-red);
  transform: rotate(90deg);
}

/* =========================================
           IMPACT & CSR SECTION
           ========================================= */
.rs-impact-section {
  padding: 100px 0;
  background:
    linear-gradient(to bottom, rgba(15, 15, 15, 0.06), rgba(20, 25, 30, 0.106)),
    url("../images/backgrounds/impact-global-bg.jpeg") center/cover no-repeat
      fixed;
  color: var(--rs-text-light);
  text-align: center;
  position: relative;
}

.rs-impact-heading {
  font-family: var(--rs-font-heading);
  font-size: 2.8rem;
  color: var(--rs-text-light);
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.rs-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.rs-impact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  transition: var(--rs-transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(5px);
  cursor: default;
}

.rs-impact-card:hover,
.rs-impact-card.rs-active {
  background: var(--rs-primary-red);
  border-color: var(--rs-primary-red);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(165, 28, 36, 0.4);
}

.rs-impact-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 40px;
}

.rs-impact-circle {
  width: 140px;
  height: 140px;
  border: 4px solid var(--rs-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rs-font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  transition: var(--rs-transition-smooth);
}

.rs-impact-card:hover .rs-impact-circle,
.rs-impact-card.rs-active .rs-impact-circle {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.rs-impact-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 300;
}

.rs-impact-card:hover .rs-impact-desc,
.rs-impact-card.rs-active .rs-impact-desc {
  color: var(--rs-text-light);
}

.rs-impact-bottom-title {
  font-family: var(--rs-font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--rs-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rs-impact-bottom-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
  font-weight: 300;
}

.rs-impact-section .rs-btn-primary {
  background: transparent;
  border-color: var(--rs-primary-red);
  color: var(--rs-text-light);
}

.rs-impact-section .rs-btn-primary::before {
  background: var(--rs-primary-red);
}

.rs-impact-section .rs-btn-primary:hover {
  color: var(--rs-text-light) !important;
  border-color: var(--rs-primary-red);
}

/* =========================================
           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/backgrounds/freepik__img1-generate-exact-same-image-but-use-these-color__23297.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(--rs-primary-red);
  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(--rs-text-light);
  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(--rs-primary-red);
}

/* 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: var(--rs-bg-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.rs-testi-company {
  display: block;
  font-size: 0.85rem;
  color: var(--rs-text-gray);
  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(--rs-text-light);
  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(--rs-primary-red);
  background: var(--rs-primary-red);
  color: var(--rs-text-light);
  transform: scale(1.1);
}

/* =========================================
           CLIENTS (MARQUEE SLIDER) SECTION
           ========================================= */
.rs-clients-section {
  padding: 80px 0 60px 0;
  background-color: var(--rs-bg-light);
  overflow: hidden;
}

.rs-clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  /* Creates a faded shadow effect on left and right edges */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.rs-clients-track {
  display: flex;
  width: calc(250px * 14);
  /* 250px per logo * 14 logos (7 unique + 7 duplicate) */
  animation: rs-scroll-left 30s linear infinite;
  align-items: center;
}

.rs-clients-track:hover {
  animation-play-state: paused;
  /* Pauses sliding on hover */
}

.rs-client-logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--rs-transition-smooth);
  cursor: pointer;
}

/* Using text to represent premium B2B company logos */
.rs-client-logo h3 {
  font-family: var(--rs-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  color: var(--rs-steel-silver);
  /* Gray initially */
  transition: var(--rs-transition-smooth);
}

.rs-client-logo:hover h3 {
  color: var(--rs-primary-red);
  transform: scale(1.1);
}

@keyframes rs-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }

  /* Slides exactly half the track width for infinite loop */
}

/* =========================================
           RESOURCES & SUPPORT SECTION (Dark Theme)
           ========================================= */
.rs-resources-section {
  background:
    linear-gradient(
      135deg,
      rgba(18, 20, 22, 0.202) 0%,
      rgba(18, 20, 22, 0.115) 100%
    ),
    url("../images/backgrounds/support-bg.jpeg") center/cover no-repeat fixed;
  padding: 120px 0;
  position: relative;
  color: var(--rs-text-light);
  z-index: 1;
}

.rs-center-subtitle {
  background: rgba(165, 28, 36, 0.1);
  color: var(--rs-bg-light);
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.rs-resources-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--rs-text-light);
  margin-bottom: 25px;
  line-height: 1.1;
  text-transform: none;
}

.rs-resources-desc {
  font-size: 1.1rem;
  color: var(--rs-text-gray);
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  font-weight: 300;
}

/* Card Setup */
.rs-resource-card {
  background-color: var(--rs-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rs-resource-card:hover {
  transform: translateY(-10px);
  background-color: var(--rs-primary-red);
  border-color: var(--rs-primary-red);
  box-shadow: 0 20px 40px rgba(165, 28, 36, 0.4);
}

.rs-rc-subtitle {
  font-size: 11px;
  font-family: var(--rs-font-heading);
  color: var(--rs-primary-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
  transition: var(--rs-transition-smooth);
}

.rs-resource-card:hover .rs-rc-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.rs-rc-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rs-text-light);
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.rs-rc-desc {
  font-size: 0.95rem;
  color: var(--rs-text-gray);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
  transition: var(--rs-transition-smooth);
}

.rs-resource-card:hover .rs-rc-desc {
  color: rgba(255, 255, 255, 0.95);
}

.rs-rc-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--rs-text-light);
  text-decoration: none;
  font-family: var(--rs-font-body);
  font-weight: 500;
  font-size: 14px;
  transition: var(--rs-transition-smooth);
  text-align: left;
  position: relative;
  background: transparent;
}

.rs-rc-btn i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--rs-transition-smooth);
  font-size: 12px;
}

.rs-resource-card:hover .rs-rc-btn {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.15);
}

.rs-resource-card:hover .rs-rc-btn i {
  right: 15px;
}

/* =========================================
           FOOTER SECTION
           ========================================= */
.rs-footer {
  background-color: var(--rs-bg-luxury-dark);
  color: var(--rs-text-gray);
  position: relative;
  z-index: 1;
}

/* CTA Strip */
.rs-footer-cta {
  background: linear-gradient(
    90deg,
    var(--rs-primary-red) 0%,
    var(--rs-dark-red) 100%
  );
  padding: 50px 0;
  color: var(--rs-text-light);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(165, 28, 36, 0.2);
}

.rs-footer-cta h2 {
  font-family: var(--rs-font-heading);
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rs-footer-cta p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
  font-weight: 300;
}

.rs-footer-cta .rs-btn-primary {
  background: var(--rs-text-light);
  color: var(--rs-primary-red);
  border-color: var(--rs-text-light);
}

.rs-footer-cta .rs-btn-primary::before {
  background: var(--rs-bg-luxury-dark);
}

.rs-footer-cta .rs-btn-primary:hover {
  color: var(--rs-text-light) !important;
  border-color: var(--rs-bg-luxury-dark);
}

/* Main Footer */
.rs-footer-main {
  padding: 80px 0 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-footer-logo {
  height: 80px;
  /* Makes the colored logo pure white for a premium monochrome look on dark bg */
  filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
  transition: var(--rs-transition-smooth);
}

.rs-footer-logo:hover {
  transform: scale(1.05);
}

.rs-footer-text {
  line-height: 1.8;
  margin-top: 25px;
  font-size: 0.95rem;
  font-weight: 300;
}

.rs-social-links {
  display: flex;
  gap: 15px;
}

.rs-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--rs-text-light);
  text-decoration: none;
  transition: var(--rs-transition-smooth);
  font-size: 1rem;
}

.rs-social-links a:hover {
  background: var(--rs-primary-red);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(165, 28, 36, 0.4);
  color: var(--rs-text-light);
}

.rs-footer-title {
  color: var(--rs-text-light);
  font-family: var(--rs-font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.rs-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--rs-primary-red);
}

.rs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-footer-links li {
  margin-bottom: 15px;
}

.rs-footer-links a {
  color: var(--rs-text-gray);
  text-decoration: none;
  transition: var(--rs-transition-smooth);
  display: inline-flex;
  align-items: center;
  font-weight: 300;
  font-size: 0.95rem;
}

.rs-footer-links a::before {
  content: "\f105";
  /* FontAwesome right angle bracket */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 0.8rem;
  color: var(--rs-primary-red);
  transition: var(--rs-transition-smooth);
  opacity: 0;
  transform: translateX(-10px);
}

.rs-footer-links a:hover {
  color: var(--rs-primary-red);
  transform: translateX(5px);
}

.rs-footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.rs-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 300;
  font-size: 0.95rem;
  align-items: flex-start;
}

.rs-footer-contact i {
  color: var(--rs-primary-red);
  margin-top: 4px;
  font-size: 1.1rem;
}

/* Footer Bottom */
.rs-footer-bottom {
  padding: 25px 0;
  background-color: #0a0c0e;
  /* Even darker than luxury dark */
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.rs-footer-bottom p {
  margin: 0;
}

.rs-footer-bottom a {
  color: var(--rs-text-gray);
  text-decoration: none;
  margin-left: 5px;
  transition: var(--rs-transition-smooth);
}

.rs-footer-bottom a:hover {
  color: var(--rs-primary-red);
}

/* Responsive */
@media (max-width: 991px) {
  .rs-hero-title {
    font-size: 2.8rem;
  }

  .rs-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.7) 100%
    );
  }

  .rs-scroll-indicator {
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-collapse {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
  }

  @keyframes rs-bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0) translateX(-50%);
    }

    40% {
      transform: translateY(-12px) translateX(-50%);
    }

    60% {
      transform: translateY(-6px) translateX(-50%);
    }
  }

  .rs-about-content {
    padding-left: 0;
    margin-top: 60px;
  }

  .rs-experience-badge {
    right: 10px;
    padding: 20px 25px;
    bottom: 30px;
  }

  .rs-experience-badge h2 {
    font-size: 2.5rem;
  }

  .rs-section-title {
    font-size: 2.2rem;
  }

  /* Products Section Responsive */
  .rs-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .rs-product-card {
    width: calc((100% - 30px) / 2);
    flex: 0 0 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }

  /* Gallery Section Responsive */
  .rs-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .rs-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .rs-item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Impact Section Responsive */
  .rs-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials Responsive */
  .rs-testi-quote {
    font-size: 1.2rem;
  }

  .rs-certificate-wrapper {
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .rs-testi-heading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rs-testi-slide {
    text-align: center;
    padding-right: 0;
  }

  .rs-testi-controls {
    justify-content: center;
  }

  /* Clients Responsive */
  .rs-client-logo h3 {
    font-size: 1.4rem;
  }

  /* Resources Section Responsive */
  .rs-resources-title {
    font-size: 2.2rem;
  }

  .rs-resources-section {
    padding: 80px 0;
  }

  .rs-resource-card {
    margin-bottom: 20px;
  }

  /* Footer Responsive */
  .rs-footer-cta h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .rs-footer-cta p {
    text-align: center;
    margin-bottom: 20px;
  }

  .rs-footer-cta .text-md-end {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .rs-product-card {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .rs-slider-container {
    gap: 15px;
  }

  .rs-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .rs-item-large,
  .rs-item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Impact Section Responsive */
  .rs-impact-grid {
    grid-template-columns: 1fr;
  }

  .rs-footer-bottom a {
    margin: 0 10px;
  }
}
