/* ==========================================================================
   Custom Enhancements - Typography, Design & Visual Improvements
   ========================================================================== */

/* --- Font System Override --- */
:root {
  --font-heading: 'Plus Jakarta Sans', 'Livvic', sans-serif;
  --font-body: 'Inter', 'Livvic', sans-serif;
  --color-primary: #0a5ae0;
  --color-primary-dark: #03228f;
  --color-accent: #4e95ed;
  --color-text: #2d3748;
  --color-text-light: #64748b;
  --color-heading: #0f172a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Typography --- */
html, body {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

p {
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Logo & Brand --- */
.logo-part h4,
.normal-logo h4,
.sticky-logo h4,
.dark-logo h4,
.light-logo h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.normal-logo img,
.sticky-logo img,
.dark-logo img,
.light-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
}

/* --- Navigation --- */
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

/* Nav underline hover */
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a:hover::after,
.full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li.current-menu-item a::after {
  width: 100%;
}

/* --- Hero Banner Nepal Theme Background --- */
.rs-banner.style2 {
  background: url(../images/banner/nepal-hero-bg.svg) no-repeat center center;
  background-size: cover;
  position: relative;
}

/* --- Banner / Hero --- */
.rs-banner.style2 .banner-content .sub-title {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 2px;
}

.rs-banner.style2 .banner-content .title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -1px;
}

.rs-banner.style2 .banner-content .title-small {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* --- Section Titles --- */
.sec-title2 .sub-text.style-bg {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.sec-title2 .title,
.sec-title .title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* --- Services Cards --- */
.rs-services.main-home .services-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rs-services.main-home .services-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rs-services.main-home .services-item .services-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rs-services.main-home .services-item:hover .services-icon {
  transform: scale(1.1) translateY(-4px);
}

.rs-services.main-home .services-item .services-content .services-text .services-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* --- Flip Box Services --- */
.rs-services.style2 .flip-box-inner .flip-box-wrap .front-part .front-content-part {
  border-radius: var(--radius-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.rs-services.style2 .flip-box-inner:hover .flip-box-wrap .front-part .front-content-part {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.rs-services.style2 .flip-box-inner .flip-box-wrap .front-part .front-content-part .front-icon-part .icon-part img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rs-services.style2 .flip-box-inner:hover .flip-box-wrap .front-part .front-content-part .front-icon-part .icon-part img {
  transform: rotateY(180deg) scale(1.05);
}

.rs-services.style2 .flip-box-inner .flip-box-wrap .front-part .front-content-part .front-title-part .title {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* --- Process Section --- */
.rs-process.style2 .addon-process .process-wrap {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: var(--radius-md);
  padding: 20px;
}

.rs-process.style2 .addon-process .process-wrap:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.rs-process.style2 .addon-process .process-wrap .process-img img {
  transition: transform 0.5s ease;
}

.rs-process.style2 .addon-process .process-wrap:hover .process-img img {
  transform: scale(1.08) rotate(3deg);
}

.rs-process.style2 .addon-process .process-wrap .process-text .title {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* --- Counter Section --- */
.rs-counter.style2 .counter-top-area .counter-list .counter-text .title {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rs-counter.style2 .counter-top-area .counter-list .counter-text .count-number .rs-count {
  font-family: var(--font-heading);
  font-weight: 800;
}

.rs-counter.style2 .counter-list .count-icon img {
  transition: transform 0.4s ease;
}

.rs-counter.style2 .counter-list:hover .count-icon img {
  transform: scale(1.15);
}

/* --- About Section --- */
.rs-about .contact-wrap .sec-title .title,
.rs-about .contact-wrap .sec-title h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-heading);
}

.rs-about .contact-wrap .sec-title .sub-text,
.rs-about .contact-wrap .sec-title .sub-text.style-bg {
  font-family: var(--font-body);
  font-weight: 600;
}

.rs-about .contact-wrap .sec-title .desc,
.rs-about .contact-wrap .sec-title .desc.pb-35 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-light);
}

.rs-about .contact-wrap p,
.rs-about .contact-wrap .margin-0 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-light);
}

.rs-about .contact-wrap .btn-part .readon {
  font-family: var(--font-body);
}

.rs-about .rs-animation-shape .images img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Buttons --- */
.readon {
  font-family: var(--font-body);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.readon.learn-more {
  border-radius: var(--radius-lg);
}

.readon.buy-now.get-in {
  border-radius: var(--radius-lg);
  border-width: 2px;
}

.readon.buy-now.get-in:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 34, 143, 0.3);
}

.readon.view-more {
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.readon.view-more:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Button ripple */
.readon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.readon:hover::after {
  width: 300px;
  height: 300px;
}

.submit {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(3, 34, 143, 0.25);
}

/* --- Contact Section --- */
.rs-contact .contact-box {
  border-radius: var(--radius-md);
  transition: box-shadow 0.4s ease;
}

.rs-contact .contact-box:hover {
  box-shadow: 0 10px 40px rgba(3, 34, 143, 0.15);
}

.rs-contact .contact-box .address-box .address-icon {
  transition: transform 0.3s ease;
}

.rs-contact .contact-box .address-box:hover .address-icon {
  transform: scale(1.1);
}

.rs-contact .contact-widget .from-control,
.rs-video-wrap .rs-requset .from-control {
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.rs-contact .contact-widget .from-control:focus,
.rs-video-wrap .rs-requset .from-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 90, 224, 0.1);
  transform: translateY(-1px);
}

/* --- CTA Section --- */
.rs-cta.style1 .title-wrap .epx-title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* --- Footer --- */
.rs-footer .footer-top .widget-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

.rs-footer .footer-top .textwidget p {
  font-family: var(--font-body);
}

.rs-footer .address-widget li {
  transition: transform 0.3s ease;
}

.rs-footer .address-widget li:hover {
  transform: translateX(5px);
}

/* --- Scroll Up Button --- */
#scrollUp {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#scrollUp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Sticky Header Slide-Down --- */
.menu-sticky.sticky {
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Shimmer on Section Badges --- */
.sec-title2 .sub-text.style-bg {
  position: relative;
  overflow: hidden;
}

.sec-title2 .sub-text.style-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* --- Map hover --- */
.map-canvas iframe {
  transition: opacity 0.4s ease;
  opacity: 0.92;
}

.map-canvas:hover iframe {
  opacity: 1;
}

/* --- Topbar Alignment Fix --- */
.topbar-area.style2.modify1 .topbar-contact ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.topbar-area.style2.modify1 .topbar-contact ul li {
  display: inline-flex;
  align-items: center;
  line-height: 50px;
  white-space: nowrap;
}

.topbar-area.style2.modify1 .topbar-contact ul li i {
  margin-right: 6px;
  display: inline-flex;
  align-items: center;
}

.topbar-area.style2.modify1 .topbar-contact ul li a,
.topbar-area.style2.modify1 .topbar-contact ul li span {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.topbar-area.style2.modify1 .toolbar-sl-share ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.topbar-area.style2.modify1 .toolbar-sl-share ul li {
  display: inline-flex;
  align-items: center;
  line-height: 50px;
}

/* --- Smooth Scroll --- */
html {
  scroll-behavior: smooth;
}

/* --- Fix consultation section overlap gap --- */
.rs-video-wrap {
  margin-top: -125px;
  position: relative;
  z-index: 1;
}

.rs-video-wrap .video-item {
  background: none !important;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Selection Color --- */
::selection {
  background: var(--color-primary);
  color: #fff;
}

/* --- Focus Visible --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* --- Preloader --- */
.loader {
  background: linear-gradient(135deg, #03228f 0%, #0a5ae0 100%);
}

.loader-container::before {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ==========================================================================
   CREATIVE INTERACTIVE DESIGN
   ========================================================================== */

/* --- Custom Cursor --- */
.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, opacity 0.3s ease, background 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.cursor-hover {
  transform: scale(2.5);
  background: rgba(10, 90, 224, 0.1);
  border-color: #fff;
}

.custom-cursor.cursor-click {
  transform: scale(0.8);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-accent));
  z-index: 99999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* --- Hero Gradient Text Effect --- */
.rs-banner.style2 .banner-content .title {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease infinite;
}

@keyframes gradientText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* --- Glowing border on hero CTA --- */
.readon.buy-now.get-in {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(255,255,255,0.2), inset 0 0 5px rgba(255,255,255,0.1); }
  50% { box-shadow: 0 0 20px rgba(255,255,255,0.3), inset 0 0 10px rgba(255,255,255,0.15); }
}

/* --- Animated gradient divider between sections --- */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
  background-size: 200% 100%;
  animation: dividerFlow 3s linear infinite;
  margin: 0;
  border: none;
}

@keyframes dividerFlow {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Parallax depth layers --- */
.parallax-layer {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* --- Service card hover glow ring --- */
.rs-services.style2 .flip-box-inner .flip-box-wrap .front-part .front-content-part::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent), #7c3aed, var(--color-primary));
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: borderGlow 4s ease infinite;
}

.rs-services.style2 .flip-box-inner:hover .flip-box-wrap .front-part .front-content-part::before {
  opacity: 1;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Counter number animated color --- */
.rs-counter.style2 .counter-top-area .counter-list .counter-text .count-number .rs-count {
  background: linear-gradient(135deg, #ffffff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Process step connecting line --- */
.rs-process.style2 .row {
  position: relative;
}

.rs-process.style2 .row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(10, 90, 224, 0.2), rgba(10, 90, 224, 0.4), rgba(10, 90, 224, 0.2), transparent);
  z-index: 0;
}

@media (max-width: 991px) {
  .rs-process.style2 .row::before { display: none; }
}

/* --- Hover spotlight effect on cards --- */
.rs-services.main-home.style2 .services-item {
  position: relative;
  overflow: hidden;
}

.rs-services.main-home.style2 .services-item::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(10, 90, 224, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
}

.rs-services.main-home.style2 .services-item:hover::after {
  opacity: 1;
}

/* --- Typing cursor on banner subtitle --- */
.typing-cursor::after {
  content: '|';
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  color: rgba(255,255,255,0.8);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Floating particles container --- */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* --- Animated counter border --- */
.rs-counter.style2 .counter-list {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}

.rs-counter.style2 .counter-list:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* --- CTA section animated bg --- */
.rs-cta.style1 {
  position: relative;
  overflow: hidden;
}

.rs-cta.style1::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 60%);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
}

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

/* --- Smooth text reveal for about content --- */
.rs-about .contact-wrap .sec-title .desc,
.rs-about .contact-wrap p {
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.rs-about .contact-wrap:hover .sec-title .desc,
.rs-about .contact-wrap:hover p {
  opacity: 1;
}

/* --- Interactive form label float --- */
.from-control:focus::placeholder {
  opacity: 0.4;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* --- Contact icon bounce on scroll --- */
.rs-contact .contact-box .address-box .address-icon i {
  transition: transform 0.3s ease;
}

.rs-contact .contact-box .address-box:hover .address-icon i {
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
  60% { transform: translateY(-2px); }
}

/* --- Footer wave separator --- */
.rs-footer {
  position: relative;
}

.rs-footer::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30'%3E%3Cpath d='M0,15 C300,30 600,0 900,15 C1050,22 1150,15 1200,15 L1200,30 L0,30 Z' fill='%23131313'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

/* --- Scroll indicator on banner --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  z-index: 2;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ==========================================================================
   MOBILE RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 991px) {
  /* Hide desktop-only elements */
  .custom-cursor,
  .scroll-indicator {
    display: none !important;
  }

  /* Fix hero text on tablet */
  .rs-banner.style2 .banner-content .title {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }

  .rs-banner.style2 .banner-content .title-small {
    font-size: 1.3rem;
  }

  /* Disable tilt/parallax effects on touch */
  .rs-services.style2 .flip-box-inner:hover .flip-box-wrap .front-part .front-content-part {
    transform: translateY(-4px);
  }

  /* Process connecting line hidden */
  .rs-process.style2 .row::before {
    display: none;
  }

  /* Reduce animation intensity */
  .rs-services.main-home .services-item:hover {
    transform: translateY(-3px);
  }

  /* Footer wave smaller */
  .rs-footer::before {
    height: 15px;
    top: -15px;
  }

  /* Section divider thinner */
  .section-divider {
    height: 2px;
  }

  /* About text consistency */
  .rs-about .contact-wrap p,
  .rs-about .contact-wrap .margin-0 {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  /* Hero adjustments */
  .rs-banner.style2 .banner-content .title {
    font-size: 1.8rem;
    line-height: 1.2;
    /* Disable gradient text on mobile for readability */
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
  }

  .rs-banner.style2 .banner-content .sub-title {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .rs-banner.style2 .banner-content .title-small {
    font-size: 1.1rem;
  }

  /* Particles fewer on mobile */
  .hero-particles .particle:nth-child(n+12) {
    display: none;
  }

  /* Reduce hover effects (touch devices) */
  .rs-services.main-home .services-item:hover,
  .rs-process.style2 .addon-process .process-wrap:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .rs-services.style2 .flip-box-inner:hover .flip-box-wrap .front-part .front-content-part {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  /* Card glow ring off on mobile */
  .rs-services.style2 .flip-box-inner .flip-box-wrap .front-part .front-content-part::before {
    display: none;
  }

  /* Scroll progress thinner */
  .scroll-progress {
    height: 2px;
  }

  /* CTA title */
  .rs-cta.style1 .title-wrap .epx-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  /* About section font */
  .rs-about .contact-wrap .sec-title .title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .rs-about .contact-wrap .sec-title .desc {
    font-size: 15px;
  }

  .rs-about .contact-wrap p,
  .rs-about .contact-wrap .margin-0 {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Footer wave off */
  .rs-footer::before {
    display: none;
  }

  /* Nav underline off on mobile */
  .full-width-header .rs-header .menu-area .main-menu .rs-menu ul.nav-menu li a::after {
    display: none;
  }

  /* Buttons full width on small screens */
  .readon.buy-now.get-in,
  .readon.learn-more {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Counter section */
  .rs-counter.style2 .counter-list {
    padding: 15px 10px;
  }
}

@media (max-width: 480px) {
  .rs-banner.style2 .banner-content .title {
    font-size: 1.5rem;
  }

  .rs-banner.style2 .banner-content .title-small {
    font-size: 1rem;
  }

  /* About */
  .rs-about .contact-wrap .sec-title .title {
    font-size: 1.3rem;
  }

  .sec-title2 .title,
  .sec-title .title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  /* Forms */
  .rs-contact .contact-widget .from-control,
  .rs-video-wrap .rs-requset .from-control {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .custom-cursor, .scroll-progress, .hero-particles, .scroll-indicator { display: none; }
}
