/* ===============================
   SLEEPHUG ROOT THEME (BROWN)
================================ */
:root {
  --white: #ffffff;
  --soft-bg: #fbf7f3;
  --text-dark: #2a1a14;
  --muted: #7a6a63;
  --brown: #8b5a2b;
  --light-brown: #f3e8df;
  --border: #eadfd6;
  --font-main: "Inter", "Poppins", sans-serif;
}

/* ================= TOP BAR ================= */
.sleep-topbar {
  background: #000;
  color: white;
  overflow: hidden;
  font-weight: 600;
  font-size: 14px;
}

.sleep-slider {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: slideText 35s linear infinite;
  padding: 8px 0;
}

@keyframes slideText {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* ================= HEADER ================= */
.sleep-header {
  background: white;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-main);
}

/* LOGO */
.sleep-logo img {
  height: 58px;
  transition: .2s ease;
}
.sleep-logo img:hover {
  transform: scale(1.05);
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  /* Logo smaller */
  .sleep-logo img {
    height: 40px; /* smaller than 58px */
  }

  /* Search box smaller */
  .sleep-search {
    width: 180px; /* smaller than 260px */
  }
}

.sleep-search {
  position: relative;
  width: 260px;
}

.sleep-search input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border-radius: 30px;
  border: 1px solid #e6d8cc;
  font-size: 14px;
  outline: none;
  transition: 0.25s ease;
}

.sleep-search input:focus {
  border-color: #c59a6d;
  box-shadow: 0 0 0 3px rgba(197, 154, 109, 0.15);
}

/* SEARCH ICON FIX */
.sleep-search i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #8b6f5a;
  pointer-events: none;
}

/* ================= NAV ================= */
.sleep-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.sleep-nav li {
  list-style: none;
  position: relative;
}

/* TEXT LINKS */
.sleep-nav a,
.sleep-nav .dropdown-toggle-btn {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* REMOVE BUTTON BORDER */
.dropdown-toggle-btn {
  outline: none;
}

/* UNDERLINE HOVER */
.sleep-nav li > a::after,
.sleep-nav li > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--brown);
  transition: 0.3s ease;
}

.sleep-nav li:hover > a::after,
.sleep-nav li:hover > button::after {
  width: 100%;
}

.sleep-nav a:hover,
.sleep-nav button:hover {
  color: var(--brown);
}

/* ================= DROPDOWN ================= */
.sleep-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

/* SHOW ON HOVER */
.sleep-nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DROPDOWN ITEMS — FORCE VERTICAL */
.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 18px;
  color: var(--text-dark);
  font-weight: 500;
  transition: .2s ease;
}

.dropdown-menu a:hover {
  background: var(--light-brown);
  color: var(--brown);
}

/* ================= SEARCH ================= */
.sleep-search input {
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 40px 9px 16px;
  font-size: 14px;
  background: var(--soft-bg);
}

.sleep-search i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

/* ================= ICONS ================= */
.header-icon i {
  color: var(--text-dark);
  transition: .2s ease;
}

.header-icon:hover i {
  color: var(--brown);
  transform: scale(1.1);
}

/* ================= BADGES ================= */
.header-icon {
  position: relative;
}

.cart-badge,
.wishlist-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #C65A3A;
  color: white;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 999;
  line-height: 1;
}



/* ================= MOBILE ================= */

#mobileToggle {
  cursor: pointer;
}
#mobileToggle:hover {
  opacity: 0.7;
}

/* MOBILE NAV BASE */
.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid #eee;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.mobile-nav.active {
  display: block;
}

/* Mobile Nav Layout */
.mobile-nav .sleep-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 20px;
}

/* Dropdown menu hidden by default */
.mobile-nav .dropdown-menu {
  display: none;
  margin-top: 6px;
  padding-left: 14px;
  border-left: 2px solid #d7c2b0;
}

/* Show dropdown when active */
.mobile-nav .dropdown.active .dropdown-menu {
  display: block;
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-mattress-bg {
  position: relative;
  background: url('../../assets/images/20.webp') center center / cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* Softer Elegant Overlay (Less Heavy) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255, 238, 220, 0.75) 20%,
    rgba(255, 238, 220, 0.45) 45%,
    rgba(255, 238, 220, 0.15) 70%
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 650px;
  font-family: var(--font-main);
}

/* Main Heading */
.hero-heading {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Sub Text */
.hero-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Highlight / Hashtag */
.hero-hashtag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Optional CTA Button */
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--brown), #b88952);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}



/* Mobile Responsive */ @media (max-width: 768px) { .hero-mattress-bg { min-height: 260px; } .hero-heading { font-size: 36px; } .hero-text { font-size: 17px; color: #fff;} }


/*--------------------------------------------------------------
# Certificate Section
--------------------------------------------------------------*/
.certification-section {
  background: #ffffff;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.certification-track {
  display: flex;
  gap: 60px;
  animation: scrollCert 10s linear infinite;
  align-items: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 16px;
  white-space: nowrap;
}

.cert-item img {
  height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollCert {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media(max-width: 768px) {
  .certification-track {
    animation-duration: 2s; /* Mobile speed = 10 seconds */
  }

  .cert-item {
    min-width: 180px;
    font-size: 14px;
  }

  .cert-item img {
    height: 34px;
  }
}

.about-banner {
  width: 100%;
  height: 300px;
  background: url('../../assets/images/abc.webp') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Category Section
--------------------------------------------------------------*/
/* -------------------- */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-handloom {
  background: linear-gradient(135deg, #FAF7F2, #ffffff);
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-main-img {
  transform: scale(1.08);
}

/* FLOATING FABRIC BADGE */
.fabric-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(198,90,58,0.95);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* TEXT SIDE */
.about-label {
  display: inline-block;
  color: #C65A3A;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 46px;
  font-weight: 900;
  color: #2E2E2E;
  line-height: 1.15;
}

.about-title span {
  color: #C65A3A;
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.85;
  margin-top: 16px;
  max-width: 560px;
}

/* HIGHLIGHT LIST */
.about-highlights {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.about-highlights li {
  font-size: 15px;
  font-weight: 700;
  color: #2E2E2E;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C65A3A, #B24A2E);
  color: white;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(198,90,58,0.35);
  transition: 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #B24A2E, #C65A3A);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .about-title {
    font-size: 34px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .fabric-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/*--------------------------------------------------------------
# Prefooter Section
--------------------------------------------------------------*/
.pre-footer {
  background: var(--soft-bg);
  padding: 30px 20px;
  font-family: var(--font-main);
}

.pre-footer .container {
  max-width: 2200px;
  margin: 0 auto;
}

.pre-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pre-footer-text {
  flex: 1 1 50%;
  padding-right: 20px;
}

.pre-footer-text h2 {
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.pre-footer-text p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #6e4220;
}

.pre-footer-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
}

.pre-footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.section-banner {
  width: 100%;
  height: 320px;
  background: url('../../assets/images/contact.png') center/cover no-repeat;
  position: relative;
  margin: 0px 0px 0px;
}

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: white;
}

.banner-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: #c65a3a;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #9f4228;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .section-banner {
    height: 220px;
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bulk Section
--------------------------------------------------------------*/
.bulk-section {
  padding: 50px 0;
  background: rgba(250,247,242,0.9), rgba(250,247,242,0.6);
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 55%;
  height: 360px;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CARD */
.bulk-content {
  width: 45%;
  background: white;
  padding: 40px 36px;
}

.bulk-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c07a3f;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 280px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 26px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-handloom {
  background: linear-gradient(180deg, #FBF6F0, #ffffff);
}

/* HEADER */
.contact-mini-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #C65A3A;
  margin-bottom: 6px;
}

.contact-main-title {
  font-size: 40px;
  font-weight: 900;
  color: #2B2B2B;
}

.contact-sub-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 6px;
  color: #444;
}

.contact-description {
  max-width: 700px;
  margin: 12px auto 0;
  color: #777;
  font-size: 16px;
}

/* PANELS */
.contact-info-panel,
.contact-form-panel {
  background: white;
  padding: 38px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  height: 100%;
}

/* PANEL TITLES */
.panel-title {
  font-weight: 900;
  margin-bottom: 20px;
}

/* INFO ITEMS */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-info-item i {
  font-size: 24px;
  color: #C65A3A;
}

.contact-info-item h6 {
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* NOTE */
.contact-highlight {
  margin-top: 18px;
  padding: 12px 14px;
  background: #FFF4EC;
  border-left: 4px solid #C65A3A;
  font-size: 14px;
  border-radius: 8px;
}

/* FORM */
.contact-input {
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.contact-input:focus {
  border-color: #C65A3A;
  box-shadow: none;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #C65A3A, #9F4229);
  color: white;
  font-weight: 800;
  padding: 12px 34px;
  border-radius: 40px;
  border: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #9F4229, #7E331F);
}

/* MAP */
.map-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* MOBILE */
@media(max-width: 768px) {

  .contact-main-title {
    font-size: 28px;
  }

  .contact-sub-title {
    font-size: 18px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 22px;
  }

  .map-box iframe {
    height: 260px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}