/* Primary Colors */
:root {
  --navy-blue: #0B4BA8;
  --orange: #FF6B00;
  --white: #FFFFFF;
  --dark-bg: #050b26;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --gray: #f5f5f5;
  --border: #e0e0e0;
  --fs-xs: 1.2rem;
  /* 12px */
  --fs-sm: 1.4rem;
  /* 14px */
  --fs-base: 1.6rem;
  /* 16px */
  --fs-md: 1.8rem;
  /* 18px */
  --fs-lg: 2rem;
  /* 20px */
  --fs-xl: 2.4rem;
  /* 24px */
  --fs-2xl: 3.2rem;
  /* 32px */
  --fs-3xl: 4rem;
  /* 40px */
  --fs-4xl: 4.8rem;
  /* 48px */
}

body {
  font-size: var(--fs-base) !important;
}

.section-description {
  font-size: var(--fs-lg) !important;
}

.section-title {
  font-size: var(--fs-2xl) !important;
}

.hero-content h1 {
  font-size: var(--fs-3xl) !important;
}

.card-title {
  font-size: var(--fs-xl) !important;
}

h3 {
  font-size: var(--fs-lg) !important;
}

p {
  font-size: var(--fs-base) !important;
}

.page-template-enquire .footer-sidebars .container .row,
.page-template-enquire2 .footer-sidebars .container .row,
.page-template-templates-enquire2 .footer-sidebars .container .row {
  flex-direction: row !important;
  flex-wrap: wrap;
}

/* global css start */
.page-template-enquire .site-content,
.page-template-enquire2 .site-content,
.page-template-templates-enquire2 .site-content {
  padding-bottom: 0;
}

.widget_categories li:after,
.widget_pages li:after,
.widget_archive li:after,
.widget_nav_menu li:after,
.widget_recent_entries li:after,
.widget_meta li:after,
ul.service-menu li:after {
  color: #848484;
  content: '\f105';
  position: absolute;
  top: 15px;
  right: 0;
  font-size: 16px;
  font-family: FontAweSome;
  transition: all 0.5s;
}

/* CTA Buttons - Orange background + white text */
.primary-btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.primary-btn:hover {
  background-color: #e55f00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
  color: var(--white) !important;
}

.primary-btn:focus {
  color: var(--white) !important;
}

.secondary-btn {
  background-color: transparent;
  color: var(--navy-blue);
  padding: 14px 32px;
  border: 2px solid var(--navy-blue);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(11, 75, 168, 0.2);
}

.secondary-btn:hover {
  background-color: var(--navy-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11, 75, 168, 0.3);
}

/* Font Styles */
/* Headings: Inter Bold */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

.section-title {
  font-size: 2.2rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
  text-transform: none;
  line-height: 1.3;
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Body: Inter Regular */
body,
p,
div {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* ================== GLOBAL STYLES ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  padding-top: 80px;
  overflow-x: hidden;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

div#content .container {
  width: 100% !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-transparent .site-header {
  /* background-color: #333; */
  background-color: #F5F5F5;
  color: black;
  padding: 5px 0 !important;
  position: sticky;
}

.nav ul.menu>li>a {
  /* color: #fff; */
  color: black;
}

.page-template-enquire .row,
.page-template-enquire2 .row,
.page-template-templates-enquire2 .row {
  flex-wrap: unset;
  flex-direction: column;
}

.header-main .container.mobile_relative .row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ================== ANIMATIONS ================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

.animate-fadeInUp {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-slideInLeft {
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
}

.animate-slideInRight {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

/* Section animations */
.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ================== NAVBAR ================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
  height: 80px;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  gap: 30px;
  position: relative;
  width: 100%;
}

.navbar-logo {
  flex-shrink: 0;
  display: flex !important;
  align-items: center !important;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-logo img {
  display: block;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.navbar-actions .navbar-link {
  margin: 0;
  white-space: nowrap;
}

/* Hide login/signup/account links in mobile menu on desktop - they're in navbar-actions */
.navbar-menu-account,
.navbar-menu-login,
.navbar-menu-signup,
.navbar-menu-quote {
  display: none;
}

/* Hide parent theme's mobile menu - we're using custom navbar-menu instead */
#primary-mobile-nav,
.off-canvas-layer {
  display: none !important;
  visibility: hidden !important;
}

/* Prevent parent theme's display-mobile-menu class from causing blank screen */
body.display-mobile-menu {
  overflow: visible !important;
}

body.display-mobile-menu #primary-mobile-nav {
  display: none !important;
}

body.display-mobile-menu .off-canvas-layer {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide parent theme's menu icon if it exists */
.menu-icon,
.menu-toggle,
.site-menu-toggle {
  display: none !important;
}

/* Ensure navbar-actions is visible on desktop */
@media (min-width: 993px) {
  .navbar-actions {
    display: flex !important;
  }

  .navbar-menu-account,
  .navbar-menu-login,
  .navbar-menu-signup,
  .navbar-menu-quote {
    display: none !important;
  }
}

.navbar-btn {
  flex-shrink: 0;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-blue);
  letter-spacing: 0.05em;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 2;
  margin-left: auto;
}

.navbar-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--navy-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-menu {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width 0.3s ease;
}

.navbar-link:hover {
  color: var(--orange);
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
  white-space: nowrap;
}

.navbar-btn:hover {
  background-color: #e55f00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
  color: var(--white) !important;
}

/* ================== HERO SECTION ================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0;
  margin-top: -21px;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(11 75 168 / 48%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.hero-section .hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--navy-blue) !important;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  /* font-size: 0.95rem; */
  color: var(--text-dark);
}

.trust-item i {
  color: var(--orange);
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy-blue);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text-light);
  text-align: center;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hero-cta .primary-btn,
.hero-cta .secondary-btn {
  text-align: center;
}

/* Hero Form */
.hero-form {
  display: flex;
  align-items: center;
}

.quote-form-wrapper {
  background-color: var(--white);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  width: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  height: 100%;
}

.quote-form .fh-form input[type="submit"] {
  background-color: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  line-height: 100%;
  text-transform: uppercase;
  width: 100%;
}

.quote-form .wpcf7-list-item input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 18px;
  height: 18px;
  border: 2px solid #cfcfcf;
  /* default border */
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0;
}

.quote-form input[type=file]:focus,
.quote-form input[type=checkbox]:focus,
.quote-form input[type=radio]:focus {
  outline: none !important;
}

.quote-form .wpcf7-list-item input[type="radio"]:checked {
  border-color: #ff6a00;
}

.quote-form .wpcf7-list-item input[type="radio"]:checked::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ff6a00;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.quote-form .wpcf7-list-item-label {
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}

.quote-form .wpcf7-list-item input[type="radio"]:checked+.wpcf7-list-item-label {
  color: #ff6a00;
  font-weight: 600;
}

.quote-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.quote-form .fh-form .field {
  font-size: 20px !important;
  font-weight: 700;
}

.quote-form .fh-form input[type="text"],
.quote-form .fh-form input[type="email"],
.quote-form .fh-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: auto;
  line-height: normal;
}

.quote-form .fh-form textarea:focus,
.quote-form .fh-form input[type="text"]:focus,
.quote-form .fh-form input[type="email"]:focus,
.quote-form .fh-form select:focus {
  border-color: #5e9ed6;
  box-shadow: 0 0 0 3px rgba(94, 158, 214, 0.3);
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9ca3af;
  font-size: 16px;
  font-weight: 400;
}

.form-header {
  background: linear-gradient(135deg, var(--navy-blue) 0%, #093d8a 100%);
  color: var(--white);
  padding: 30px 35px;
  text-align: center;
}

.form-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--white) !important;
  margin-bottom: 10px;
}

.form-header .quote-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  text-align: center;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 31px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy-blue);
  font-size: var(--fs-base);
}

.input-with-icon input,
.input-with-icon select {
  padding: 14px 16px 14px 45px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--fs-sm);
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
  outline: none;
  border-color: var(--navy-blue);
  box-shadow: 0 0 0 3px rgba(11, 75, 168, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--fs-lg);
  color: var(--text-dark);
}

.quote-submit-btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  width: 100%;
}

.quote-submit-btn:hover {
  background-color: #e55f00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.form-note {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--fs-base) !important;
  color: var(--text-light);
  text-align: center;
  margin-top: 15px;
}

.form-note i {
  color: var(--orange);
  margin: 0 5px;
}

/* Slide Indicators */
.slide-indicators {
  display: none;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--orange);
  transform: scale(1.2);
}

/* ================== HOW IT WORKS SECTION ================== */
.how-it-works-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--orange);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--navy-blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(11, 75, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy-blue);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background-color: var(--navy-blue);
  color: var(--white);
  transform: scale(1.1);
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================== SERVICES SLIDER ================== */
.services-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
}

.services-slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.services-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.service-card {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
  min-width: 280px;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(11, 75, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--navy-blue);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--navy-blue);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  /* font-size: 1.3rem; */
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border);
  color: var(--navy-blue);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.slider-nav:hover {
  background-color: var(--navy-blue);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* ================== TESTIMONIALS SLIDER ================== */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--navy-blue);
  color: var(--white);
  position: relative;
}

.testimonials-section .section-title {
  color: var(--white) !important;
}

.testimonials-slider-container {
  /* position: relative; */
  overflow: hidden;
  padding: 20px 0;
  margin-top: 50px;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  /* default: mobile â€“ 1 card per view */
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 35px 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop: 2 cards per view */
@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 25px);
    /* 2 cards in row, minus half of gap */
  }
}

.rating {
  margin-bottom: 20px;
}

.rating i {
  color: #FFD700;
  font-size: 1.1rem;
  margin-right: 3px;
}

.testimonial-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-section .primary-btn {
  background-color: var(--orange);
  color: var(--white);
}

.testimonials-section .primary-btn:hover {
  background-color: #e55f00;
  color: var(--white);
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: 10px;
}

.testimonial-next {
  right: 10px;
}

/* ================== INDUSTRIES SECTION ================== */
.industries-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0B4BA8 0%, #093d8a 100%);
  color: var(--white);
}

.industries-section .section-title {
  color: var(--white) !important;
}

.industries-section .section-description {
  color: rgba(255, 255, 255, 0.9);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.industry-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--orange);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  background-color: var(--orange);
  transform: scale(1.1);
}

.industry-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.7rem !important;
  color: var(--white) !important;
  margin: 0;
}

/* ================== WHY US SECTION ================== */
.why-us-section {
  padding: 100px 0;
  background-color: var(--white);
}

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

.benefits-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.benefits-image:hover img {
  transform: scale(1.05);
}

.benefits-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(11, 75, 168, 0.3), rgba(255, 107, 0, 0.3));
  z-index: 1;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--text-dark);
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: rgba(11, 75, 168, 0.03);
}

.benefit-item:hover {
  background-color: rgba(11, 75, 168, 0.08);
  transform: translateX(5px);
}

.benefit-item i {
  color: var(--orange);
  /* font-size: 1.2rem; */
  margin-top: 5px;
}

/* ================== FAQ SECTION ================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--white);
}

.faq-accordion {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: var(--light-bg);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--navy-blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--navy-blue);
}

.faq-question.active {
  color: var(--navy-blue);
  background-color: rgba(11, 75, 168, 0.05);
}

.faq-question i {
  font-size: var(--fs-base);
  color: var(--orange);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: var(--white);
}

.faq-answer.show {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  padding-top: 10px;
}

/* ================== CTA SECTION ================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-blue) 0%, #093d8a 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(30deg);
}

.cta-section h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--white) !important;
  margin-bottom: 20px;
  position: relative;
}

.cta-section p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.cta-section .primary-btn {
  background-color: var(--orange);
  color: var(--white);
  padding: 16px 40px;
  position: relative;
  z-index: 2;
}

.cta-section .primary-btn:hover {
  background-color: #e55f00;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

/* ================== FOOTER ================== */
.footer {
  background-color: #2a2a2a;
  color: var(--white) !important;
}


.footer-widgets .widget-title {
  color: var(--white) !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  padding: 70px 0 40px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white) !important;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

.footer-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-credentials {
  margin-bottom: 30px;
}

.footer-credentials p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-credentials strong {
  font-weight: 700;
  margin-right: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-blue);
  color: var(--white);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--orange);
  transform: translateY(-5px) rotate(10deg);
}

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

.footer-menu li {
  margin-bottom: 15px;
}

.footer-menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--fs-base);
  color: #cccccc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.footer-menu a i {
  font-size: var(--fs-xs);
  color: var(--orange);
}

.footer-menu a:hover {
  color: var(--white);
  padding-left: 8px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--fs-base);
  color: #cccccc;
}

.contact-info li a {
  color: #cccccc;
}

.contact-info li i {
  color: var(--orange);
  margin-top: 5px;
  min-width: 20px;
}

.footer-bottom {
  background-color: #1a1a1a;
  padding: 25px 0;
  border-top: 1px solid #444;
}

.copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #cccccc;
  text-align: center;
  margin: 0;
}

.copyright strong {
  font-weight: 700;
  color: var(--white);
}

/* ====== Services: static grid (2 columns desktop, 1 column mobile) ====== */
/* We convert the services slider into a static grid. Testimonials stay as a slider. */
.services-slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.services-slider-container .slider-nav {
  display: none;
  /* hide service arrows since it's not a slider anymore */
}

.service-card {
  /* ensure service cards size correctly in the grid */
  width: 100%;
  max-width: 100%;
}

/* Tablet: 2 columns between 769px and 992px; Mobile: 1 column at 768px and below */
@media (min-width: 769px) and (max-width: 992px) {
  .services-slider-track {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 768px) {
  .services-slider-track {
    grid-template-columns: 1fr;
  }

  .alphabet.vc_custom_1751456780091 {
    padding-top: 0 !important;
  }

  .page-id-2360 h1 {
    display: none;
  }

}

/* ====== End services static grid ====== */

/* ================== RESPONSIVE STYLES ================== */

/* @media (min-width: 1201px) 
{
    div#content .container {
        max-width: 100%;
    }    

    .hero-container {
        max-width: 1200px;
    }

    section.how-it-works-section.section-animate.animated .container {
        max-width: 1200px !important;
    }

    section#services .container {
        max-width: 1200px;
    }

    section#industries .container {
        max-width: 1200px;
    }

    section#why-us .container {
        max-width: 1200px;
    }

    section#testimonials .container {
        max-width: 1200px;
    }

    section#faq .container {
        max-width: 1200px;
    }
} */

@media (min-width: 1501px) {
  div#content .container {
    max-width: 100%;
  }

  .hero-container {
    max-width: 2000px;
  }

  section.how-it-works-section.section-animate.animated .container {
    max-width: 2000px !important;
  }

  section#services .container {
    max-width: 2000px;
  }

  section#industries .container {
    max-width: 2000px;
  }

  section#why-us .container {
    max-width: 2000px;
  }

  .footer-container {
    max-width: 2000px;
  }

  section#testimonials .container {
    max-width: 2000px;
  }

  section#faq .container {
    max-width: 2000px;
  }
}

/* @media (min-width: 1921px) {
 
  div#content .container,
  .footer-container,
  .navbar-container,
  .hero-container {
    max-width: 1800px !important;
  }
  .navbar{
    height: unset;
  }
 .quote-form .fh-form input[type="text"]::placeholder,
.quote-form .fh-form input[type="email"]::placeholder {
    font-size: 1.4rem;
}
.quote-form .fh-form input[type="text"], .quote-form .fh-form input[type="email"], .quote-form .fh-form select{
    font-size: 1.4rem;
}
  section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
 
  .hero-section {
    min-height: 90vh;
  }
 
  .hero-content {
    padding: 60px;
  }
  .quote-form .wpcf7-list-item-label{
    font-size: 1.6rem;
  }
  .section-description, .cta-section p , .faq-accordion{
    max-width: 100%;
  }
  .services-slider-track{
    align-items: stretch;
  }
 
  .hero-section .hero-content h1 {
    font-size: 3.6rem !important;
  }
 
  .hero-content p {
    font-size: 1.25rem;
  }
 
  .primary-btn,
  .secondary-btn {
    padding: 18px 44px;
    font-size: 1.1rem;
  }
 
  .card,
  .service-card,
  .step-card,
  .industry-card,
  .testimonial-card {
    padding: 50px 40px;
  }
 
  .service-card h3,
  .step-card h3,
  .industry-card h3 {
    font-size: 2rem !important;
  }
 
  .stat-number {
    font-size: 3.2rem;
  }
 
  .stat-label {
    font-size: 1.7rem;
  }
 
  .quote-form-wrapper {
    padding: 40px;
  }
 
  .quote-form input,
  .quote-form select {
    font-size: 1.1rem;
    padding: 18px 20px;
  }
 
  .footer-content {
    gap: 70px;
  }
}
 
@media (min-width: 2560px) {
 
  html {
    font-size: 19px;
  }
 
  div#content .container,
  .footer-container,
  .navbar-container,
  .hero-container {
    max-width: 1900px !important;
  }
 
  .hero-section .hero-content h1 {
    font-size: 3.5rem !important;
  }
 
  .section-title {
    font-size: 3.2rem !important;
  }
 
  .section-description {
    font-size: 1.5rem !important;
  }
 
  .primary-btn,
  .secondary-btn {
    padding: 20px 56px;
    font-size: 1.2rem;
  }
.quote-form .fh-form input[type="submit"]{
    padding: 20px 56px;
  }
} */

@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
  }

  .hero-content {
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .steps-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    flex: 0 0 calc(50% - 15px);
  }

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

  .benefits-image {
    max-width: 100%;
    height: 300px;
  }
}

@media (max-width: 992px) {
  :root {
    --fs-xs: 1.5rem;
    --fs-sm: 1.9rem;
    --fs-base: 2.8rem;
    --fs-md: 2.3rem;
    --fs-lg: 3rem;
    --fs-xl: 3.5rem;
    --fs-2xl: 3.8rem;
    --fs-3xl: 4.2rem;
    --fs-4xl: 4.6rem;
  }

  .whatsapp-sticky-btn {
    height: auto !important;
    width: auto !important;
    padding: 25px 32px;
  }

  .whatsapp-sticky-btn i {
    font-size: 10rem !important;
  }

  .service-card h3 {
    font-size: var(--fs-xl) !important;
  }

  .custom-container.container {
    width: 100%;
    max-width: 900px;
  }

  .hero-cta {
    justify-content: space-between;
  }

  .hero-section {
    margin-top: 0;
  }

  .footer-container {
    padding: 0 30px;
  }

  .input-with-icon input,
  .input-with-icon select {
    padding: 14px 16px 14px 60px;
  }

  .service-icon {
    font-size: 3.5rem;
    width: 90px;
    height: 90px;
  }

  .navbar-logo img {
    max-height: 80px;
  }

  .navbar {
    height: 100px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 2.3rem;
  }

  .benefits-image {
    box-shadow: none;
  }

  .input-with-icon input,
  .input-with-icon select {
    font-size: var(--fs-md) !important;
  }

  .hero-badge {
    font-size: var(--fs-sm) !important;
  }

  .step-icon {
    font-size: var(--fs-2xl) !important;
  }

  .industry-card h3 {
    font-size: var(--fs-lg) !important;
  }

  .industry-icon {
    font-size: var(--fs-xl) !important;
  }

  .benefit-item {
    font-size: 2.8rem !important;
  }

  .rating i {
    font-size: 2.5rem;
  }

  .navbar-toggle {
    display: flex;
    grid-column: 3;
  }

  .testimonials-slider-track {
    gap: 0;
  }

  .navbar {
    display: block;
  }

  .navbar-container {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
  }

  .navbar-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    padding: 0;
    gap: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 999;
    grid-column: 1 / -1;
  }

  .navbar-menu.active {
    max-height: 800px;
    overflow: scroll;
    top: 93px;
  }

  .navbar-menu li {
    border-bottom: 1px solid #f0f0f0;
    border-top: 0;
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu-quote:last-child {
    border-bottom: none;
  }

  .navbar-link {
    padding: 18px 25px;
    display: block;
    text-align: left;
  }

  /* Hide navbar-actions in header on mobile - they're shown in mobile menu instead */
  .navbar-container .navbar-actions {
    display: none !important;
  }

  /* Show login/signup/account links in mobile menu (override desktop hide) */
  .navbar-menu-account,
  .navbar-menu-login,
  .navbar-menu-signup,
  .navbar-menu-quote {
    display: list-item !important;
    border-top: 2px solid #f0f0f0;
    margin-top: 10px;
  }

  .navbar-menu-account .navbar-link,
  .navbar-menu-login .navbar-link,
  .navbar-menu-signup .navbar-link {
    font-weight: 700;
    color: var(--orange);
  }

  /* GET A QUOTE button in mobile menu */
  .navbar-menu-quote {
    border-top: 2px solid #f0f0f0;
    margin-top: 10px;
    padding-top: 10px;
  }

  .navbar-menu-quote .navbar-link-quote {
    background-color: var(--orange);
    color: var(--white);
    padding: 14px 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    display: block;
    margin: 10px 15px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
  }

  .navbar-menu-quote .navbar-link-quote:hover {
    background-color: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
    color: var(--white);
  }

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

  .steps-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .service-card {
    flex: 0 0 100%;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-xs: 1rem;
    /* 10px */
    --fs-sm: 1.2rem;
    /* 12px */
    --fs-base: 1.4rem;
    /* 14px */
    --fs-md: 1.6rem;
    /* 16px */
    --fs-lg: 1.8rem;
    /* 18px */
    --fs-xl: 2rem;
    /* 20px */
    --fs-2xl: 2.6rem;
    /* 26px */
    --fs-3xl: 3.2rem;
    /* 32px */
    --fs-4xl: 3.6rem;
    /* 36px */
  }

  #packagesContainer {
    width: 100%;
  }

  .dimension-input {
    width: 100%;
  }



  .form-step button,
  .select-address-btn {
    margin-left: 15px;
  }

  .fromm,
  .too {
    padding: 0;
  }

  .step-indicator::before {
    top: 40px !important;
    left: 30px !important;
  }

  .quote-form {
    padding: 31px 0;
  }

  .stat-label {
    font-size: 1.5rem;
    line-height: 100%;
  }

  .benefit-item {
    font-size: 2rem !important;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-container {
    display: block;
  }

  body {
    padding-top: 80px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .quote-form-wrapper {
    padding: 25px 20px;
  }

  .quote-form-wrapper h2 {
    font-size: 1.4rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex: 0 0 100%;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .slide-indicators {
    bottom: 20px;
  }

  .testimonials-slider-track {
    gap: 0;
  }
}

@media (max-width: 576px) {
  :root {
    --fs-xs: 0.95rem;
    /* 9.5px */
    --fs-sm: 1.1rem;
    /* 11px */
    --fs-base: 1.3rem;
    /* 13px */
    --fs-md: 1.5rem;
    /* 15px */
    --fs-lg: 1.7rem;
    /* 17px */
    --fs-xl: 1.9rem;
    /* 19px */
    --fs-2xl: 2.2rem;
    /* 22px */
    --fs-3xl: 2.6rem;
    /* 26px */
    --fs-4xl: 3rem;
    /* 30px */
  }



  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .hero-container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 25px 20px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 15px;
  }

  .quote-form-wrapper {
    padding: 20px 15px;
  }

  .quote-form-wrapper h2 {
    font-size: 1.3rem;
  }

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

  .benefits-list .benefit-item {
    font-size: 1rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 1.5rem;
  }

  .faq-answer.show {
    padding: 0 20px 20px;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .primary-btn,
  .secondary-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .cta-section .primary-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .slider-nav,
  .testimonial-prev,
  .testimonial-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .service-card {
    flex: 0 0 100%;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* Location Autocomplete Styles */
.input-with-icon {
  position: relative;
}

.location-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}

.location-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
  font-size: 1.4rem;
}

.location-item:hover {
  background-color: #f5f5f5;
}

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

input.invalid-location {
  border-color: #dc3545;
}

input.invalid-location:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.footer-contact {
  margin-left: 0;
  margin-right: 0;
}

/* ================== STICKY WHATSAPP BUTTON ================== */
.whatsapp-sticky-btn {
  position: fixed;
  bottom: 8%;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-sticky-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20BA5A;
}

.whatsapp-sticky-btn i {
  color: var(--white);
  font-size: 4rem;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
  }

  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-sticky-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-sticky-btn i {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .whatsapp-sticky-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-sticky-btn i {
    font-size: 2.2rem;
  }
}

/* WP User Manager Login and Registration Form Styles */
.auth-wrapper {
  box-shadow: none !important;
}

/* .wpum-template.wpum-form.wpum-login-form form fieldset label,
.wpum-template.wpum-form.wpum-registration-form form fieldset label {
  font-family: 'Montserrat', sans-serif !important;
} */

h2.wp-block-heading,
.wpum-action-links li,
.wpum-action-links li a {
  font-family: 'Inter', sans-serif !important;
}

/* Style Contact Form 7 loader/spinner in enquire2 template to match theme */
.quote-form .wpcf7-spinner,
.quote-form-wrapper .wpcf7-spinner {
  width: 32px !important;
  height: 32px !important;
  border: 3px solid rgba(255, 107, 0, 0.2) !important;
  border-top: 3px solid var(--orange) !important;
  border-radius: 50% !important;
  animation: spin 0.8s linear infinite !important;
  margin: 15px auto 0 auto !important;
  background: transparent !important;
  position: relative !important;
  vertical-align: middle !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

/* Ensure submit button container centers the spinner */
.quote-form .wpcf7-form .field.submit,
.quote-form .wpcf7-form p.submit {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Hide Contact Form 7 response output message in enquire2 template */
.quote-form .wpcf7-response-output,
.quote-form-wrapper .wpcf7-response-output {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.fa-phone {
  transform: rotate(90deg);
}


@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .navbar-link {
    font-size: 10px;
  }
}

/* 05-02-2026  css*/
/* ===============================
   TABLET (iPad)
================================ */

@media (max-width: 1024px) {

  .quote-row {
    grid-template-columns:
      1.5fr 1.2fr 1fr 1.2fr 1fr;
  }

  .quote-col.warranty {
    display: none;
  }
}

/* ===============================
   MOBILE (IMPORTANT)
================================ */

@media (max-width: 768px) {
  .quotes-container {
    width: 100%;
  }

  .quote-row {
    display: grid !important;
    grid-template-columns:
      1.5fr
      /* Carrier */
      1.2fr
      /* Service */
      1fr
      /* Price */
      1fr
      /* Warranty */
      1.2fr
      /* Earliest */
      1fr;
    /* Action */
    gap: 12px !important;
    align-items: center !important;
    padding: 16px 18px !important;
    border-bottom: 1px solid #e5e5e5 !important;
    background: #fff !important;
  }

  .quote-col {
    font-size: 14px;
    color: #333;
  }

  .service-logo {
    max-width: 80px;
    display: block;
    margin-bottom: 6px;
  }

  .courier-badge {
    display: inline-block !important;
    padding: 3px 8px !important;
    font-size: 11px !important;
    border-radius: 12px !important;
    background: #eee !important;
  }

  .quote-row {
    display: block !important;
    padding: 14px !important;
    margin-bottom: 14px !important;
    border-radius: 8px !important;
    border: 1px solid #e5e5e5 !important;
    background: #fff !important;
  }

  .quote-col {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 10px !important;
    font-size: 13px !important;
  }

  .quote-col:last-child {
    margin-bottom: 0;
  }

  /* Labels on mobile */
  .quote-col::before {
    font-weight: 600;
    color: #555;
    margin-right: 10px;
    white-space: nowrap;
    position: unset;
    font-weight: 700;
    font-size: 15px;
  }

  .quote-col.carrier::before {
    content: "Carrier" ":";
  }

  .quote-col.service::before {
    content: "Service" ":";
  }

  .quote-col.price::before {
    content: "Price" ":";
  }

  .quote-col.warranty::before {
    content: "Warranty" ":";
  }

  .quote-col.earliest::before {
    content: "Collection" ":";
  }

  .quote-col.action::before {
    content: "" ":";
  }

  .quote-col.action {
    justify-content: flex-end !important;
    margin-top: 12px !important;
  }

  .service-logo {
    max-width: 70px !important;
  }

  button.btn.btn-orange.book-now-btn {
    margin-left: 0;
  }

}

/* 05-02-2026  css end*/