/* ==========================================================================
   SHEDWELL PHARMA — PREMIUM LANDING PAGE STYLES
   ========================================================================== */

:root {
  --sw-primary: #ED1C24;
  --sw-primary-dark: #C4151C;
  --sw-secondary: #0086D8;
  --sw-secondary-dark: #006BAE;
  --sw-dark: #222222;
  --sw-light: #F8F9FA;
  --sw-white: #FFFFFF;
  --sw-border: #ECECEC;
  --sw-radius: 12px;
  --sw-shadow: 0 10px 30px rgba(34, 34, 34, 0.08);
  --sw-shadow-hover: 0 16px 40px rgba(34, 34, 34, 0.14);
  --sw-transition: all 0.3s ease;
}

/* ============ BASE ============ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--sw-dark);
  background: var(--sw-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.sw-skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--sw-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 3000;
  transition: top 0.2s ease;
}

.sw-skip-link:focus {
  top: 10px;
}

section {
  scroll-margin-top: 90px;
}

/* ============ TYPOGRAPHY ============ */
.sw-h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--sw-dark);
}

.sw-h2-white {
  color: var(--sw-white);
}

.sw-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.sw-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sw-white);
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.sw-eyebrow-dark {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sw-primary);
  background: rgba(237, 28, 36, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.sw-section-head {
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ============ BUTTONS ============ */
.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--sw-radius);
  border: 2px solid transparent;
  transition: var(--sw-transition);
  cursor: pointer;
  white-space: nowrap;
}

.sw-btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

.sw-btn-lg {
  padding: 16px 36px;
}

.sw-btn-primary {
  background: var(--sw-primary);
  color: var(--sw-white);
  border-color: var(--sw-primary);
  box-shadow: 0 8px 20px rgba(237, 28, 36, 0.25);
}

.sw-btn-primary:hover {
  background: var(--sw-secondary);
  border-color: var(--sw-secondary);
  color: var(--sw-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 134, 216, 0.3);
}

.sw-btn-outline {
  background: transparent;
  color: var(--sw-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.sw-btn-outline:hover {
  background: var(--sw-white);
  color: var(--sw-primary);
  border-color: var(--sw-white);
  transform: translateY(-3px);
}

/* ============ PAGE LOADER ============ */
.sw-loader {
  position: fixed;
  inset: 0;
  background: var(--sw-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sw-loader.sw-loaded {
  opacity: 0;
  visibility: hidden;
}

.sw-loader-logo img {
  width: 160px;
  animation: sw-pulse 1.1s ease-in-out infinite;
}

@keyframes sw-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.92);
    opacity: 0.6;
  }
}

/* ============ HEADER ============ */
.sw-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--sw-transition);
  background: transparent;
  padding: 14px 0;
}

.sw-header.sw-scrolled {
  background: var(--sw-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.sw-navbar {
  padding: 0;
}

.sw-brand {
  display: flex;
  align-items: center;
}

.sw-logo-img {
  height: 42px;
  transition: var(--sw-transition);
}

.sw-nav-list {
  gap: 6px;
}

.sw-nav-link {
  color: var(--sw-white);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--sw-transition);
  position: relative;
}

.sw-header.sw-scrolled .sw-nav-link {
  color: var(--sw-dark);
}

.sw-nav-link:hover {
  color: var(--sw-primary) !important;
}

.sw-header:not(.sw-scrolled) .sw-nav-link:hover {
  color: var(--sw-white) !important;
  background: rgba(255, 255, 255, 0.15);
}

/* Hamburger */
.sw-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.sw-hamburger span {
  width: 26px;
  height: 3px;
  background: var(--sw-white);
  border-radius: 3px;
  transition: var(--sw-transition);
}

.sw-header.sw-scrolled .sw-hamburger span {
  background: var(--sw-dark);
}

.sw-offcanvas {
  width: 300px;
}

.sw-offcanvas-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-offcanvas-list li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--sw-border);
  font-weight: 500;
  color: var(--sw-dark);
  transition: var(--sw-transition);
}

.sw-offcanvas-list li a:hover {
  color: var(--sw-primary);
  padding-left: 8px;
}

/* ============ FLOATING BUTTONS ============ */
.sw-float-right {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 900;
  flex-direction: column;
  gap: 14px;
}

.sw-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--sw-white);
  box-shadow: var(--sw-shadow);
  transition: var(--sw-transition);
}

.sw-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.sw-float-call {
  background: var(--sw-primary);
}

.sw-float-whatsapp {
  background: #25D366;
}

.sw-float-pdf {
  position: fixed;
  left: 0;
  bottom: 140px;
  z-index: 900;
  background: var(--sw-secondary);
  color: var(--sw-white);
  align-items: center;
  gap: 8px;
  padding: 12px 16px 12px 12px;
  border-radius: 0 30px 30px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: var(--sw-shadow);
  transition: var(--sw-transition);
}

.sw-float-pdf i {
  font-size: 20px;
}

.sw-float-pdf:hover {
  background: var(--sw-primary);
  padding-left: 20px;
  color: var(--sw-white);
}

.sw-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
background:#006BAE;
  color: var(--sw-white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 900;
  box-shadow: var(--sw-shadow);
  transition: var(--sw-transition);
}

.sw-back-to-top.sw-show {
  display: flex;
}

.sw-back-to-top:hover {
  background: var(--sw-primary);
  transform: translateY(-4px);
}

/* ============ HERO ============ */
.sw-hero {
  position: relative;
}

.sw-hero .carousel-item {
  height: 92vh;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.sw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.6) 100%);
}

.sw-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--sw-white);
}

.sw-hero-title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.25;
}

.sw-hero-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.95;
}

.sw-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sw-hero-indicators {
  bottom: 130px;
}

.sw-hero-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sw-white);
  opacity: 0.5;
  margin: 0 5px;
}

.sw-hero-indicators .active {
  opacity: 1;
  background: var(--sw-primary);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  opacity: 0.8;
}

.carousel-control-prev i,
.carousel-control-next i {
  background: rgba(255, 255, 255, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Stats */
.sw-stats-wrap {
  position: relative;
  margin-top: -70px;
  z-index: 3;
}

.sw-stat-card {
  background: var(--sw-white);
  border-radius: var(--sw-radius);
  box-shadow: var(--sw-shadow);
  padding: 24px 10px;
  text-align: center;
  transition: var(--sw-transition);
}

.sw-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sw-shadow-hover);
}

.sw-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--sw-primary);
}

.sw-stat-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--sw-primary);
}

.sw-stat-plus {
  font-size: 24px;
  font-weight: 800;
  color: var(--sw-secondary);
}

.sw-stat-label {
  font-size: 14px;
  color: #666;
  margin: 6px 0 0;
  font-weight: 500;
}

/* ============ SECTIONS ============ */
.sw-section {
  padding: 50px 10px;
}

.sw-section-light {
  background: var(--sw-light);
}

.sw-section-dark {
  background: var(--sw-dark);
}

.sw-section-dark .sw-text {
  color: #ccc;
}

.sw-rounded-img {
  border-radius: 24px;
  box-shadow: var(--sw-shadow);
  width: 100%;
}

/* Mini cards (about) */
.sw-mini-card {
  display: flex;
  gap: 14px;
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 18px;
  height: 100%;
  transition: var(--sw-transition);
}

.sw-mini-card:hover {
  box-shadow: var(--sw-shadow);
  border-color: transparent;
}

.sw-mini-card i {
  font-size: 26px;
  color: var(--sw-primary);
  flex-shrink: 0;
}

.sw-mini-card h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.sw-mini-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.sw-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  columns: 2;
}

.sw-feature-list li {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
}

.sw-feature-list i {
  color: var(--sw-secondary);
  margin-right: 8px;
}

/* Check items (PCD franchise) */
.sw-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 14px 16px;
  font-weight: 500;
  font-size: 15px;
  transition: var(--sw-transition);
}

.sw-check-item i {
  color: var(--sw-primary);
  font-size: 18px;
}

.sw-check-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sw-shadow);
  border-color: transparent;
}

/* Timeline (Third party manufacturing) */
.sw-timeline {
  margin: 26px 0;
}

.sw-timeline-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 16px;
}

.sw-timeline-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sw-secondary);
  color: var(--sw-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Product Slider */
.sw-product-slider {
  overflow: hidden;
}

.sw-product-track {
  display: flex;
  gap: 24px;
  animation: sw-scroll-left 22s linear infinite;
  width: max-content;
}

.sw-product-slider:hover .sw-product-track {
  animation-play-state: paused;
}

@keyframes sw-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.sw-product-slide {
  width: 260px;
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--sw-transition);
  text-align: center;
}

.sw-product-slide:hover {
  transform: translateY(-8px);
  box-shadow: var(--sw-shadow-hover);
}

.sw-product-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.sw-product-slide p {
  padding: 14px;
  margin: 0;
  font-weight: 600;
}

.sw-modal .modal-content {
  border-radius: var(--sw-radius);
  border: none;
}

/* Product Categories */
.sw-cat-card {
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 30px 14px;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
 width: 200px;
  transition: var(--sw-transition);

}
.sw-cat-card img{
  width: 100px !important;
  display: block;
  margin: 0 auto;
}

.sw-cat-card:hover {

  border-color: var(--sw-primary);
  transform: translateY(-6px);
  box-shadow: var(--sw-shadow-hover);
}



.sw-cat-card span {
  margin-top: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--sw-transition);
}

.sw-cat-card:hover i,
.sw-cat-card:hover span {
  color: var(--sw-white);
}

/* Feature cards (why choose) */
.sw-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--sw-radius);
  padding: 34px 24px;
  height: 100%;
  transition: var(--sw-transition);
}

.sw-feature-card:hover {
  background: var(--sw-primary);
  transform: translateY(-6px);
}

.sw-feature-card i {
  font-size: 36px;
  color: var(--sw-primary);
  margin-bottom: 16px;
  display: block;
  transition: var(--sw-transition);
}

.sw-feature-card:hover i {
  color: var(--sw-white);
}

.sw-feature-card h5 {
  color: var(--sw-white);
  font-weight: 700;
  margin-bottom: 10px;
}

.sw-feature-card p {
  color: #bbb;
  font-size: 14px;
  margin: 0;
}

.sw-feature-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Process */
.sw-process-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.sw-process-step {
  text-align: center;
  flex: 1 1 100px;
}

.sw-process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--sw-white);
  border: 2px solid var(--sw-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--sw-primary);
  margin: 0 auto 12px;
  transition: var(--sw-transition);
  box-shadow: var(--sw-shadow);
}

.sw-process-step:hover .sw-process-icon {
  background: var(--sw-primary);
  color: var(--sw-white);
  transform: scale(1.08);
}

.sw-process-step h6 {
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.sw-process-arrow {
  color: var(--sw-border);
  font-size: 22px;
  flex: 0 0 auto;
}

/* Certification */
.sw-cert-card {
  background: var(--sw-white);
  border-radius: var(--sw-radius);
  padding: 30px 14px;
  text-align: center;
  box-shadow: var(--sw-shadow);
  transition: var(--sw-transition);
  height: 100%;
}

.sw-cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sw-shadow-hover);
}

.sw-cert-card i {
  font-size: 40px;
  color: var(--sw-secondary);
  margin-bottom: 14px;
  display: block;
}

.sw-cert-card h6 {
  font-weight: 700;
  margin: 0;
}

/* Achievements */
.sw-achievements {
  background: linear-gradient(135deg, var(--sw-primary) 0%, var(--sw-secondary) 100%);
  color: var(--sw-white);
}

.sw-ach-number {
  font-size: 40px;
  font-weight: 800;
}

.sw-achievements .sw-stat-plus {
  color: var(--sw-white);
  font-size: 28px;
}

.sw-achievements p {
  font-weight: 500;
  margin: 6px 0 0;
  opacity: 0.95;
}

/* Testimonials */
.sw-testimonial-card {
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--sw-shadow);
}

.sw-stars {
  color: #FFB800;
  font-size: 18px;
  margin-bottom: 16px;
}

.sw-testimonial-card p {
  font-size: 17px;
  font-style: italic;
  color: #444;
  margin-bottom: 22px;
  line-height: 1.7;
}

.sw-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sw-testimonial-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.sw-testimonial-author h6 {
  margin: 0;
  font-weight: 700;
}

.sw-testimonial-author span {
  font-size: 13px;
  color: #888;
}

.sw-testimonial-indicators {
  position: static;
  margin-top: 24px;
}

.sw-testimonial-indicators [data-bs-target] {
  background: var(--sw-border);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sw-testimonial-indicators .active {
  background: var(--sw-primary);
}

/* FAQ */
.sw-accordion .accordion-item {
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius) !important;
  overflow: hidden;
  margin-bottom: 14px;
}

.sw-accordion .accordion-button {
  font-weight: 600;
  font-size: 16px;
  padding: 20px;
  background: var(--sw-white);
}

.sw-accordion .accordion-button:not(.collapsed) {
  background: var(--sw-primary);
  color: var(--sw-white);
  box-shadow: none;
}

.sw-accordion .accordion-button:focus {
  box-shadow: none;
}

.sw-accordion .accordion-button::after {
  filter: none;
}

.sw-accordion .accordion-body {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Contact */
.sw-contact-info-card {
  background: var(--sw-light);
  border-radius: var(--sw-radius);
  padding: 34px;
  height: 100%;
}

.sw-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.sw-contact-item:last-child {
  margin-bottom: 0;
}

.sw-contact-item i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sw-primary);
  color: var(--sw-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sw-contact-item h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.sw-contact-item p,
.sw-contact-item a {
  color: #555;
  font-size: 15px;
}

.sw-contact-item a:hover {
  color: var(--sw-primary);
}

.sw-contact-form {
  background: var(--sw-white);
  border: 1px solid var(--sw-border);
  border-radius: var(--sw-radius);
  padding: 34px;
  box-shadow: var(--sw-shadow);
}

.sw-form-control {
  border-radius: 8px;
  border: 1px solid var(--sw-border);
  padding: 12px 14px;
  font-size: 15px;
}

.sw-form-control:focus {
  border-color: var(--sw-secondary);
  box-shadow: 0 0 0 3px rgba(0, 134, 216, 0.12);
}

.form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.sw-form-success {
  display: none;
  background: #E8F8EE;
  color: #1E7B3C;
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 500;
  margin-top: 8px;
}

.sw-form-success.sw-show {
  display: block;
}

/* Map */
.sw-map-section iframe {
  display: block;
}

/* Footer */
.sw-footer {
  background: var(--sw-dark);
  color: #ccc;
  padding: 60px 10px 0;
}

.sw-footer-logo {
 
}
.sw-footer img{
  width: 100px;
  border-radius: 10px;
}
.sw-footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
}

.sw-footer-heading {
  color: var(--sw-white);
  font-weight: 700;
  margin-bottom: 18px;
}

.sw-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-footer-links li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #aaa;
}

.sw-footer-links a {
  color: #aaa;
  transition: var(--sw-transition);
}

.sw-footer-links a:hover {
  color: var(--sw-primary);
  padding-left: 4px;
}

.sw-footer-links i {
  color: var(--sw-secondary);
  margin-right: 8px;
}

.sw-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.sw-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sw-transition);
}

.sw-social-icons a:hover {
  background: var(--sw-primary);
  transform: translateY(-3px);
}

.sw-footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.sw-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 100px;
  font-size: 15px;
  color: #888;
}
.sw-footer-bottom a:hover{
color: #C4151C;
}

/* Mobile Fixed Bar */
.sw-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: var(--sw-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 950;
}

.sw-mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sw-dark);
  border-right: 1px solid var(--sw-border);
}

.sw-mobile-bar-btn:last-child {
  border-right: none;
}

.sw-mobile-bar-btn i {
  font-size: 20px;
  color: var(--sw-primary);
}

.sw-mobile-bar-btn:nth-child(2) i {
  color: #25D366;
}

.sw-mobile-bar-btn:nth-child(3) i {
  color: var(--sw-secondary);
}

/* ============ SCROLL REVEAL ============ */
[data-sw-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-sw-reveal].sw-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 991.98px) {
  .sw-hamburger {
    display: flex;
  }

  .sw-nav-desktop {
    display: none !important;
  }

  .sw-nav-link {
    color: var(--sw-dark) !important;
  }

  .sw-section {
    padding: 30px 10px;
  }

  .sw-h2 {
    font-size: 25px;
  }

  .sw-hero-title {
    font-size: 30px;
  }

  .sw-hero .carousel-item {
    height: 82vh;
    min-height: 520px;
  }

  .sw-stats-wrap {
    margin-top: -50px;
  }

  .sw-float-right,
  .sw-float-pdf {
    display: none !important;
  }

  .sw-back-to-top {
    bottom: 76px;
    
  }

  .sw-feature-list {
    columns: 1;
  }

  .sw-footer-bottom {
    padding-bottom: 90px;
    flex-direction: column;
    text-align: center;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .sw-hero-title {
    font-size: 28px;
  }

  .sw-process-row {
    flex-direction: column;
  }

  .sw-process-arrow {
    transform: rotate(90deg);
  }

  .sw-product-slide {
    width: 220px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-sw-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sw-product-track {
    animation: none;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--sw-secondary);
  outline-offset: 2px;
}