/* ==========================================================================
   ZyRoll Stylesheet — Section-by-section guide

   Sections
   1) Base / Resets
   2) Layout Helpers (container)
   3) Header & Navigation (desktop + mobile)
   4) Buttons (primary/secondary/login/phone)
   5) Hero (intro text, stats, graphic)
   6) About (features grid + image)
   7) Growth Stats (dark band with KPIs)
   8) Services (split layout with dotted divider)
   9) How It Works (workflow steps + dotted line)
  10) Features Section (Why Choose ZyRoll?)
  11) Brands (logo walls)
  12) Customise Section (red card with overlapping images)
  13) Testimonial (background image with overlay)
  14) Popup / Forms (demo modal)
  15) Contact + Map (offices and maps)
  16) Floating Buttons (WhatsApp/Call)
  17) Footer
  18) Flat Pricing (calculator card)
  19) ROI v3 (calculator cards)
  20) Responsive Rules (breakpoints 1024/992/900/768/600/520/480)
   ==========================================================================
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* Prevent accidental horizontal scroll site-wide */
html,
body {
  overflow-x: hidden;
}

/* Make all images fluid by default */
img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   3) HEADER & NAVIGATION
   Sticky header with brand logo, horizontal nav on desktop,
   and a hamburger-triggered dropdown on mobile (controlled by script.js).
   =========================== */
header {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #1b1e65;
  border-radius: 2px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 35px;
  padding: 0;
  margin: 0;
  /* align-items: center; */
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #d42424;
}

/* Phone Button */
.btn-phone {
  background: #d42424;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-phone:hover {
  background: #d42424;
  color: #fff !important;
}

.btn-login {
  background: #ffffff;
  color: #333;
  border: 1px solid #1e1e1e;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  /* font-size: 18px; */
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* .btn-login:hover {
  background: #14174b;
  color: #fff !important;
} */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo h1 {
  color: #1b1e65;
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.logo-icon {
  font-size: 28px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background: #d42424;
  color: #fff;
  padding: 10px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

/* .btn-primary:hover {
  background: #fff;
  color: #333;
  border: 1px solid #333;
} */

/* ===========================
   5) HERO SECTION
   Two-column layout: left text (tagline, title, CTA, stats)
   and right graphic with a floating badge. Stacks on small screens.
   =========================== */
.hero {
  padding: 140px 0 80px;
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 80px;
  }
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.tagline {
  color: #d42424;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-text h2 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.4;
}

.description {
  color: #555;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.btn-secondary {
  border: 1px solid #333;
  padding: 10px 30px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

/* .btn-secondary:hover {
  background: #d42424;
  color: #fff;
  border: 1px solid #fff;
} */

.stats {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hero Graphic */
.hero-graphic {
  flex: 1;
  position: relative;
}

.income-box {
  background: #1b1e65;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  position: absolute;
  top: 10px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.graph {
  width: 100%;
  /* avoid overflow that triggers horizontal scrollbar */
  max-width: 100%;
  margin-top: 100px;
}

.event {
  margin-bottom: 20px;
}

.event .line {
  width: 2.5px;
  height: 30px;
  background: #d42424;
  margin-bottom: 10px;
}

.event h4 {
  font-size: 16px;
  font-weight: 700;
}

.event p {
  font-size: 14px;
  color: #555;
}

.about {
  padding: 5px 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1024px) {
  .income-box {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 350px;
    margin: auto;
  }
}

/* Text Side */
.section-title {
  color: #d42424;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  padding-bottom: 3px;
}

.subtitle {
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 700;
  position: relative;
}

.description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}

.feature-items {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 10px;
}

.icon-circle {
  width: 60px;
  aspect-ratio: 1 / 1;
  border: 2px solid #1e1e1e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #1e1e1e;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 14px;
  color: #666;
}

/* Image Side */
.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.growth {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e0e0e0;
  padding: 60px 50px;
  border-radius: 15px;
  max-width: 1200px;
  margin: 100px auto;
  color: #fff;
}

.growth {
  text-align: center;
  flex: 1;
}

.growth-card h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  color: #000;
}

.growth-card h2 span {
  font-size: 20px;
  color: #000000;
  margin-left: 5px;
}

.growth-card p {
  font-size: 16px;
  color: #000000;
}

.divider {
  width: 1px;
  background: #333;
  height: 60px;
}

.services {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  color: #d42424;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  padding-bottom: 3px;
}

.section-header h2 {
  font-size: 35px;
  font-weight: 700;
  margin-top: 10px;
}

.service-container {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 30px;
  position: relative;
}

/* Guard services section from any internal overflow */
.services,
.service-container {
  overflow: hidden;
}

.service-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-text ul {
  list-style: none;
  padding: 0;
}

.service-text ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.service-divider {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
}

.service-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #ccc,
    #ccc 6px,
    transparent 6px,
    transparent 12px
  );
}

.icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1e1e1e;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.how-it-works {
  background: #1c1c1c;
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
  margin: 100px auto;
  max-width: 1200px;
}

.works-subtitle {
  color: #d42424;
  font-weight: 600px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 2px;
}

.works-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.works-description {
  color: #aaa;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.workflow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.workflow-step {
  flex: 1;
  padding: 18px;
  position: relative;
}

.workflow-step h3 {
  font-size: 20px;
  margin: 15px 0 10px 0;
  font-weight: bold;
  color: #ffffff;
}

.workflow-step p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* Icons */
.works-icon {
  background: #222;
  border: 2px solid #ffffff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.works-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

/* Dotted Line Connector */
.workflow::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 14%;
  right: 14%;
  border-top: 2px dashed #555;
  z-index: 0;
  transform: translateY(-50%);
}

.workflow-step .icon {
  position: relative;
  z-index: 1;
}

.features-section {
  padding: 10px 20px;
  background-color: #fff;
  margin-bottom: 80px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.features-left {
  flex: 1 1 400px;
  text-align: left;
}

.subheading {
  color: #d42424;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 16px;
}

.features-left h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  padding-top: 10px;
}

.features-left img {
  max-width: 100%;
  height: auto;
}

.features-right {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* .brands-section {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 60px;
}

.brands-title {
  font-size: 35px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.5;
  padding-top: 10px;
}

.brands-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding-top: 30px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.brand-item img {
  max-height: 40px;
  width: auto;
}

.separator {
  width: 1px;
  height: 60px;
  background-color: #ccc;
} */

/* --- Global Variables (for consistency) --- */
:root {
  --dark-text: #333333;
  --border-color-light: #e0e0e0;
  --primary-accent: #e74c3c; /* Reusing your previous accent color */
  --section-bg: #f8f8f8; /* Very light grey background for subtle contrast */
  --container-width: 1100px;
}

/* --- Brands Section --- */
.brands-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--section-bg);
}

.small-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brands-title {
  font-size: 35px;
  font-weight: 700;
  /* color: var(--dark-text); */
  margin-bottom: 50px;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* --- New Grid Styling --- */
.brands-grid-wrapper {
  display: grid;
  /* Create 5 columns with equal width */
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--container-width);
  margin: 0 auto;
  border-top: 1px solid var(--border-color-light); /* Top border for the whole grid */
  border-left: 1px solid var(--border-color-light); /* Left border for the whole grid */
}

/* Hide the old flex containers and separator */
.brands-container {
  display: contents;
}
.separator {
  display: none;
}

/* --- Brand Item Styling (The Grid Cell) --- */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px; /* Uniform height for all logo boxes */
  background-color: #ffffff;

  /* Create the internal grid lines using borders */
  border-right: 1px solid var(--border-color-light);
  border-bottom: 1px solid var(--border-color-light);

  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.brand-item:hover {
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Lift effect on hover */
  transform: translateY(-2px); /* Slight lift */
  z-index: 10;
}

.brand-item img {
  max-height: 45px; /* Logo size */
  width: auto;
  /* --- GREYSCALE REMOVED HERE --- */
  opacity: 1; /* Full opacity (was 0.5) */
  transition: opacity 0.3s;
}

/* Hover effect remains to keep the interactive element */
.brand-item:hover img {
  /* No filter change needed, just ensure full opacity */
  opacity: 1;
}

/* --- Responsive Adjustments --- */

@media (max-width: 1024px) {
  .brands-grid-wrapper {
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
  }
  .brands-grid-wrapper .brand-item:nth-child(4n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .brands-title {
    font-size: 30px;
  }
  .brands-grid-wrapper {
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }
  .brands-grid-wrapper .brand-item:nth-child(4n) {
    /* Reset the 4n rule */
    border-right: 1px solid var(--border-color-light);
  }
  .brands-grid-wrapper .brand-item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .brands-title {
    font-size: 24px;
  }
  .brands-grid-wrapper {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
  .brands-grid-wrapper .brand-item:nth-child(3n) {
    /* Reset the 3n rule */
    border-right: 1px solid var(--border-color-light);
  }
  .brands-grid-wrapper .brand-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 900px) {
  .feature-items {
    align-items: center;
    text-align: left;
  }
}

/* ========= CUSTOMISE SECTION — compact, centered, responsive ========= */

/* ---------- Unchanged shared bits ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.customise-header {
  text-align: center;
  margin-bottom: 40px;
}

.small-title {
  color: #d42424;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.customise-header h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 15px;
}

.description {
  font-size: 16px;
  color: #555;
}

/* ---------- Customise section ---------- */
.customise-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.customise-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Red card */
.customise-right {
  position: relative;
  width: min(100%, 1000px);
  margin: 0 auto;
  background: #e0e0e0;
  /* red container */
  border-radius: 20px;
  padding: clamp(16px, 4vw, 28px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

  /* Center its contents */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Old absolute layer not used */
.orange-shape {
  display: none;
}

/* Images wrapper (centered) */
.shapes-container {
  position: static;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
  z-index: 1;
}

/* Default (tablet & up to desktop base) image sizing */
.white-shape,
.black-shape {
  height: auto;
  max-width: 42%;
  object-fit: contain;
  display: block;
}

.black-shape {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

/* Phones: stack vertically & bigger images, compact padding */
@media (max-width: 600px) {
  .shapes-container {
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 4vw, 16px);
  }

  .white-shape,
  .black-shape {
    max-width: 82%;
  }

  .customise-right {
    padding: clamp(14px, 8vw, 62px);
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .white-shape,
  .black-shape {
    max-width: 88%;
  }
}

@media (min-width: 1024px) {
  .customise-right {
    min-height: clamp(360px, 20vw, 160px);
  }

  .shapes-container {
    max-width: 96%;
    gap: clamp(20px, 3vw, 40px);
  }

  .white-shape,
  .black-shape {
    flex: 0 1 50%;
    max-width: 50%;
    width: 50%;
  }
}

/* Base Section Styling */
.payroll-workflow-section {
  /* background-color: #f7f9fc;  */
  padding: 50px 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* Container for Flex Layout */
.payroll-workflow-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center; /* Vertically center content */
  gap: 40px;
}

/* Text Content Card */
.workflow-content-card {
  flex: 1; /* Takes up available space */
  padding: 30px 0;
  max-width: 500px; /* Control max width on desktop */
}

.workflow-content-card .content-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #d42424;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.workflow-content-card h2 {
  font-size: 35px;
  font-weight: 700;
  margin-top: 0;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.3;
}

.workflow-content-card .description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* Call-to-Action Button */
.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #d42424; /* Warm accent color */
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.cta-button:hover {
  background-color: #d42424;
  transform: translateY(-2px);
}

/* Image Presentation Area */
.workflow-image-presentation {
  flex: 1.2; /* Slightly more space for the visual */
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 20px;
}

.image-stack-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 10; /* Maintain a good ratio */
}

/* First Image (prominent) */
.main-software-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transform: rotate(-3deg); /* Slight rotation for dynamism */
}

/* Second Image (overlapping) */
.secondary-software-image {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 3;
  border: 4px solid white; /* Adds visual separation */
  transform: rotate(4deg); /* Opposite rotation */
}

/* Mobile Responsiveness (Stacking Layout) */
@media (max-width: 900px) {
  .payroll-workflow-section .container {
    flex-direction: column; /* Stack text and images */
    text-align: center;
  }

  .workflow-content-card {
    max-width: 100%;
    order: 2; /* Put content below image on mobile */
  }

  .workflow-content-card h2 {
    font-size: 36px;
  }

  .cta-button {
    /* Center button on mobile */
    margin: 0 auto;
  }

  .workflow-image-presentation {
    order: 1; /* Put image above content on mobile */
    justify-content: center;
    padding-bottom: 50px; /* Space between image and text */
    width: 100%;
  }

  /* Adjust image placement for a centered stack on mobile */
  .image-stack-wrapper {
    max-width: 400px;
  }

  .main-software-image,
  .secondary-software-image {
    /* Remove rotation for cleaner mobile look */
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .main-software-image {
    width: 90%;
    left: 5%;
  }
  .secondary-software-image {
    width: 65%;
    right: 5%;
    bottom: -20px; /* Bring it down a bit */
  }
}

@media (max-width: 480px) {
  .payroll-workflow-section {
    padding: 50px 15px;
  }
}

/* ---------------- OVERRIDES: tighter space between the two images ---------------- */
/* Base: smaller gap */
.shapes-container {
  gap: clamp(8px, 1.2vw, 14px);
}

/* Phones: even tighter */
@media (max-width: 600px) {
  .shapes-container {
    gap: clamp(6px, 3vw, 12px);
  }
}

/* Desktop: close but with slight breathing room */
@media (min-width: 1024px) {
  .shapes-container {
    gap: clamp(12px, 1.5vw, 18px);
  }
}

.testimonial {
  position: relative;
  background: url("images/img10.jpg") no-repeat center/cover;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.testimonial .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.testimonial h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial p.sub {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 40px;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fade 1s ease;
}

.slide.active {
  display: flex;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.client-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 20px;
}

.quote {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 700px;
}

.name {
  font-size: 16px;
  font-weight: bold;
  color: #e53935;
}

.name::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #e53935;
  margin-right: 10px;
  vertical-align: middle;
}

.dots {
  margin-top: 30px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #e53935;
  border: 2px solid #fff;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: scaleIn 0.3s ease-in-out;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.popup-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.popup-content select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.popup-content .custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff
    url("https://img.icons8.com/ios-filled/20/000000/expand-arrow.png")
    no-repeat right 12px center;
  background-size: 16px;
}

.btn-submit {
  width: 100%;
  background: #d42424;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.btn-submit:hover {
  background: #d42424;
}

/* Small animation */
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.contact-section {
  position: relative;
  background: url("images/img4.jpg") no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  margin-top: 80px;
  height: 100vh;
}

@media (max-width: 1200px) {
  .contact-section {
    margin-top: 50px;
  }
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.contact-section * {
  position: relative;
  z-index: 2;
}

.contact-header h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-intro h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-intro p {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 25px 20px;
  border-radius: 10px;
  width: 400px;
  margin: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #222;
}

.contact-box p {
  margin: 5px 0;
  font-size: 16px;
  color: #444;
}

.contact-link {
  color: #444;
  text-decoration: none;
  padding: 10px 20px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.map-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-container {
  text-align: center;
  margin-bottom: 10px;
}

.map-container h3 {
  font-size: 18px;
  color: #1b1e65;
  margin-bottom: 5px;
}

.map-container p {
  font-size: 14px;
  color: #444;
  /* margin-bottom: 20px; */
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  padding-top: 30px;
}

.contact-form-section {
  padding: 60px 20px;
  background: #fff;
  font-family: "Arial", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: left;
  border-bottom: 4px solid #d42424;
  display: inline-block;
  padding-bottom: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-rows {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-rows input {
  flex: 1;
  min-width: 200px;
  padding: 15px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.input-rows textarea {
  width: 100%;
  padding: 15px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  resize: vertical;
}

.button-submit {
  background: #d42424;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  align-self: center;
  width: 150px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;
}

.floating-buttons a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 28px;
  height: 28px;
}

.call-btn img {
  width: 28px;
  height: 28px;
}

.footer {
  background: #ffffff;
  color: #000;
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  max-width: 1200px;
  margin: 0 auto;
  gap: 5px;
  align-items: stretch;
}

.footer-col {
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  color: #000;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: red;
  margin-top: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 5px;
  color: #888;
}

.footer-col ul li a {
  text-decoration: none;
  color: #888;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-col p {
  font-size: 14px;
  color: #888;
  line-height: 2;
}

.footer-col.quick-links {
  justify-content: center;
  /* Vertically center content */
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .footer-col {
    width: 100%;
    max-width: 640px;
    text-align: center;
  }

  .footer-col h3::after {
    margin: auto;
  }
}

/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .features-left,
  .features-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .service-container {
    grid-template-columns: 1fr;
  }

  .contact-details {
    flex-direction: column;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-container {
    max-width: 90%;
  }
}

/* For small tablets and large phones */
@media (max-width: 900px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-divider::before {
    display: none;
  }

  .icon {
    margin: 0 auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }
}

/* For mobile phones */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 20px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .description {
    font-size: 14px;
  }

  .stats {
    align-items: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .service-text h3 {
    font-size: 20px;
  }

  .workflow-step h3 {
    font-size: 18px;
  }

  .contact-form-section h2 {
    font-size: 24px;
  }

  .input-rows {
    flex-direction: column;
  }

  .input-rows input {
    width: 100%;
  }

  .button-submit {
    width: 100%;
  }

  .contact-box {
    width: 100%;
  }
}

/* For very small devices */
@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 24px;
  }

  .tagline {
    font-size: 14px;
  }

  .stats {
    flex-direction: column;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 13px;
  }

  .section-title {
    font-size: 28px;
  }

  .works-title {
    font-size: 28px;
  }

  .workflow-step h3 {
    font-size: 16px;
  }

  .workflow-step p {
    font-size: 12px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col ul li {
    font-size: 13px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
  }

  /* Keep header in one row on mobile */
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Dropdown menu hidden by default */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding: 14px 20px;
    display: none;
    z-index: 1001;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 12px;
  }

  /* Optionally tuck the header buttons on very small screens */
  @media (max-width: 600px) {
    .header-buttons {
      display: none;
    }
  }
}

:root {
  --header-h: 80px;
}

html {
  scroll-behavior: smooth;
}

/* Apply to ANY element that has an id */
[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

@media (max-width: 768px) {
  :root {
    --header-h: 120px;
  }
}

:root {
  --fp-bg: #f6f8f7;
  --fp-card: #ffffff;
  --fp-ink: #1b1f23;
  --fp-muted: #6b7280;
  --fp-accent: #1b1e65;
  --fp-accent-dark: #14174b;
  --fp-orange: #d42424;
  --fp-border: #e7e7ef;
}

.flat-plan {
  padding: clamp(24px, 6vw, 56px);
  background: var(--fp-bg);
}

.flat-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--fp-card);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 1fr 1px 0.9fr;
  overflow: hidden;
}

/* left */
.flat-left {
  padding: clamp(18px, 4vw, 32px);
}

.flat-title {
  margin: 0 0 18px;
  color: var(--fp-ink);
  font-weight: 600;
}

.flat-cols {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.flat-field {
  display: grid;
  gap: 10px;
}

.flat-kicker {
  margin: 0;
  color: #374151;
  font-weight: 700;
}

/* inputs */
.flat-input {
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--fp-border);
  background: #f5f6f7;
  padding: 10px 12px;
  font-size: 16px;
  color: var(--fp-ink);
  outline: none;
}

.flat-input:focus {
  border-color: #9ca3af;
  background: #fff;
}

/* select arrow & padding */
.flat-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 56px;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right 18px center;
  background-image: url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b1f23' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}

.flat-select::-ms-expand {
  display: none;
}

/* custom inputs hidden until chosen */
.flat-custom {
  display: none;
  margin-top: 8px;
}

/* helper text */
.flat-note {
  margin: 12px 0 0;
  color: var(--fp-muted);
  font-size: 14px;
}

/* divider */
.flat-divider {
  width: 1px;
  background: #e6e6ee;
}

/* right */
.flat-right {
  padding: clamp(18px, 4vw, 32px);
  display: grid;
  align-content: start;
  gap: 16px;
}

.flat-cost-title {
  color: #4b5563;
  font-weight: 700;
}

.flat-cost {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.flat-currency {
  font-size: 50px;
  line-height: 0.9;
  color: var(--fp-orange);
  font-weight: 700;
}

.flat-amount {
  font-size: 50px;
  line-height: 1;
  color: var(--fp-orange);
  font-weight: 700;
  min-width: 2ch;
}

.flat-btn {
  margin-top: 8px;
  height: 48px;
  border-radius: 10px;
  border: 0;
  background: var(--fp-accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.flat-btn:hover {
  background: var(--fp-accent-dark);
}

/* responsive */
@media (max-width: 900px) {
  .flat-card {
    grid-template-columns: 1fr;
  }

  .flat-divider {
    height: 1px;
    width: 100%;
  }

  .flat-cols {
    grid-template-columns: 1fr;
  }

  .flat-right {
    border-top: 1px solid #e6e6ee;
  }

  .flat-currency {
    font-size: 48px;
  }

  .flat-amount {
    font-size: 28px;
  }
}

/* Prevent hero graphic overflow on small screens */
@media (max-width: 1024px) {
  .graph {
    width: 100%;
    margin-top: 40px;
  }

  .income-box {
    right: 16px;
    top: 16px;
  }
}

@media (max-width: 600px) {
  .income-box {
    position: static;
    margin: 0 auto 12px auto;
  }
}

/* Make growth section wrap neatly on smaller screens */
@media (max-width: 900px) {
  .growth {
    flex-wrap: wrap;
    gap: 20px;
    padding: 32px 20px;
  }

  .divider {
    display: none;
  }

  .growth-card {
    flex: 1 1 calc(50% - 20px);
    text-align: center;
  }
}

@media (max-width: 520px) {
  .growth-card {
    flex: 1 1 100%;
  }
}

/* Stack workflow steps on small screens and hide the connector line */
@media (max-width: 900px) {
  .workflow {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .workflow::before {
    display: none;
  }

  .works-icon {
    width: 60px;
    height: 60px;
  }
}

/* When brands wrap, hide the vertical separators and tighten gaps */
@media (max-width: 1024px) {
  .separator {
    display: none;
  }

  .brands-container {
    gap: 16px;
  }
}

/* ===========================
   17) FOOTER — RESPONSIVE ADJUSTMENTS
   On small screens the footer grid collapses to a single column and centers content.
   =========================== */
/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .footer-col {
    width: 100%;
    max-width: 640px;
    text-align: center;
  }
}

/* ===========================
   20) RESPONSIVE — TABLETS AND SMALLER (<= 1024px)
   Collapse complex grids to single column, center-align text, and prevent overflow.
   =========================== */
/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .features-left,
  .features-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .service-container {
    grid-template-columns: 1fr;
  }

  .contact-details {
    flex-direction: column;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-container {
    max-width: 100%;
  }
}

/* ===========================
   20) RESPONSIVE — SMALL TABLETS & LARGE PHONES (<= 900px)
   Adjust service grids and hide decorative dividers when stacking.
   =========================== */
/* For small tablets and large phones */
@media (max-width: 900px) {
  .service-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-divider::before {
    display: none;
  }

  .icon {
    margin: 0 auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }
}

/* ===========================
   20) RESPONSIVE — MOBILE (<= 768px)
   Tighten typography, buttons become full-width, and inputs stack.
   =========================== */
/* For mobile phones */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 20px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .description {
    font-size: 14px;
  }

  .stats {
    align-items: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }

  .service-text h3 {
    font-size: 20px;
  }

  .workflow-step h3 {
    font-size: 18px;
  }

  .contact-form-section h2 {
    font-size: 24px;
  }

  .input-rows {
    flex-direction: column;
  }

  .input-rows input {
    width: 100%;
  }

  .button-submit {
    width: 100%;
  }

  .contact-box {
    width: 100%;
  }
}

/* ===========================
   20) RESPONSIVE — VERY SMALL DEVICES (<= 480px)
   Further reduce type sizes to maintain balance on narrow screens.
   =========================== */
/* For very small devices */
@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 24px;
  }

  .tagline {
    font-size: 14px;
  }

  .stats {
    flex-direction: column;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 13px;
  }

  .section-title {
    font-size: 28px;
  }

  .works-title {
    font-size: 28px;
  }

  .workflow-step h3 {
    font-size: 16px;
  }

  .workflow-step p {
    font-size: 12px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col ul li {
    font-size: 13px;
  }
}

/* ===========================
   3) NAV — MOBILE OPEN/CLOSE STATE
   Navbar becomes a dropdown on small screens; toggled via .nav-menu.open.
   =========================== */
/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  /* Keep header in one row on mobile */
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Dropdown menu hidden by default */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding: 14px 20px;
    display: none;
    z-index: 1001;
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 12px;
  }

  /* Optionally tuck the header buttons on very small screens */
}

@media (max-width: 600px) {
  .header-buttons {
    display: none;
  }

  .rshd-button {
    display: flex !important;
    gap: 8px;
    padding: 10px 0 10px 20px;
  }
}

@media (min-width: 601px) {
  .rshd-button {
    display: none !important;
  }
}

@media (max-width: 370px) {
  .rshd-button {
    flex-direction: column;
    align-items: flex-start;
  }
}
