
@import url("slider.css");
@import url("navgation.css");
/* ---------- GLOBAL VARIABLES ---------- */
:root {
  --primary-color: #e30b0b;
  --secondary-color: #ff9c00;
  --dark-color: #222222;
  --light-color: #ffffff;
  --gray-color: #6c757d;
  --gray-light: #f8f9fa;
  --gray-border: #e9ecef;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== PREMIUM CITY HERO SECTION ========== */
.city-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
  overflow: hidden;
  margin: 0;
  padding: 4rem 0;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.32) 50%,
      rgba(227, 11, 11, 0.1) 100%);
  z-index: 2;
}

/* Blur Shapes */
.blur-shape-city {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 11, 11, 0.12) 0%, rgba(255, 156, 0, 0.05) 100%);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -150px;
  right: -100px;
  animation: floatCityShape 14s ease-in-out infinite;
  z-index: 3;
}

.blur-shape-city-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 156, 0, 0.1) 0%, rgba(227, 11, 11, 0.03) 100%);
  border-radius: 50%;
  filter: blur(60px);
  top: -100px;
  left: -80px;
  animation: floatCityShapeAlt 16s ease-in-out infinite;
  z-index: 3;
}

@keyframes floatCityShape {

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

  50% {
    transform: translate(-20px, 30px) scale(1.08);
  }
}

@keyframes floatCityShapeAlt {

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

  50% {
    transform: translate(30px, -20px) scale(1.1);
  }
}

/* Hero Content Container */
.hero-content-wrapper {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Heading Animation */
.city-heading {
  font-size: 3rem;
  font-weight: 800;
  color: var(--light-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.6s ease-out forwards;
}

.city-heading span {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

/* Description Text */
.city-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeSlideUp 0.6s ease-out 0.1s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Premium Breadcrumb */
.breadcrumb-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 60px;
  margin-bottom: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeSlideUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.breadcrumb-wrapper:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.breadcrumb-link {
  color: #f6f3f0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-link i {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.breadcrumb-link:hover {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}


.breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 600;
}

.breadcrumb-separator i {
  color: var(--secondary-color);
  font-size: 0.72rem;
}

.breadcrumb-current {
  color: #f8edea;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Trust Badges Container */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Premium Badge Design */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 60px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeSlideUp 0.6s ease-out forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.premium-badge:nth-child(1) {
  animation-delay: 0.25s;
}

.premium-badge:nth-child(2) {
  animation-delay: 0.35s;
}

.premium-badge:nth-child(3) {
  animation-delay: 0.45s;
}

.premium-badge:nth-child(4) {
  animation-delay: 0.55s;
}

.premium-badge i {
  font-size: 1rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.premium-badge span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.premium-badge:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  border-color: var(--secondary-color);
}

.premium-badge:hover i {
  color: white;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }

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

/* Responsive Design */
@media (max-width: 991px) {
  .city-hero {
    min-height: 340px;
    padding: 3.5rem 0;
  }

  .city-heading {
    font-size: 2.3rem;
  }

  .city-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .city-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .city-heading {
    font-size: 1.8rem;
  }

  .city-description {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .premium-badge {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    text-align: center;
    margin: 0;
    padding: 6px 10px;
  }

  .premium-badge span {
    font-size: 0.75rem;
    line-height: 1.2;
    white-space: normal;
  }

  .breadcrumb-wrapper {
    padding: 6px 16px;
  }

  .blur-shape-city,
  .blur-shape-city-2 {
    opacity: 0.6;
  }
}

@media (max-width: 576px) {
  .city-heading {
    font-size: 1.5rem;
  }

  .city-description {
    font-size: 0.85rem;
  }

  .trust-badges {
    gap: 0.55rem;
  }

  .premium-badge {
    min-height: 40px;
    padding: 5px 8px;
  }

  .premium-badge span {
    font-size: 0.7rem;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 0.75rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* ========== KPM INTERNATIONAL MOVES CONTENT BLOCKS ========== */
.kpm-insight-area {
  padding: 2.4rem 1rem 3.3rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(227, 11, 11, 0.06), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(255, 156, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.kpm-insight-wrap {
  max-width: 1720px;
  margin: 0 auto;
}

.kpm-insight-box {
  background: linear-gradient(145deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid #e2eaf5;
  border-left: 4px solid #e30b0b;
  border-radius: 28px;
  padding: clamp(1.15rem, 2.2vw, 2.35rem);
  box-shadow: 0 18px 34px -28px rgba(15, 28, 48, 0.46);
  height: 100%;
  transition: all 0.25s ease;
}

.kpm-insight-box:hover {
  transform: translateY(-2px);
  border-color: #d6e2f2;
  box-shadow: 0 22px 38px -28px rgba(15, 28, 48, 0.5);
}

.kpm-insight-title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.45rem, 2.35vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #14345a;
}

.kpm-insight-copy {
  margin: 0 0 1rem;
  font-size: clamp(1.03rem, 1.45vw, 1.16rem);
  line-height: 1.72;
  color: #2a3f57;
}

.kpm-insight-copy:last-child {
  margin-bottom: 0;
}

.kpm-insight-copy-gap {
  margin-top: 1.2rem;
}

.kpm-insight-author {
  display: block;
  font-size: 1.03rem;
  color: #102c4b;
  font-weight: 700;
  margin-top: 0.3rem;
}

.kpm-insight-question {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: #12385f;
  font-weight: 800;
  margin: 1.2rem 0 0.48rem;
}

.kpm-insight-question:first-of-type {
  margin-top: 0.2rem;
}

.kpm-insight-list {
  margin: 0;
  padding-left: 1.15rem;
}

.kpm-insight-list li {
  font-size: 1.01rem;
  color: #2a3f57;
  line-height: 1.66;
  margin-bottom: 0.58rem;
}

.kpm-insight-list li::marker {
  color: #e30b0b;
}

@media (max-width: 768px) {
  .kpm-insight-area {
    padding: 1.6rem 0.7rem 2.4rem;
  }

  .kpm-insight-box {
    padding: 1rem 0.95rem;
    border-radius: 18px;
  }

  .kpm-insight-title {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .kpm-insight-copy,
  .kpm-insight-list li {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .kpm-insight-author,
  .kpm-insight-question {
    font-size: 1rem;
  }
}

/* ----- DESIGN SYSTEM ----- */
:root {
  --primary-color: #e30b0b;
  --secondary-color: #ff9c00;
  --dark-color: #222222;
  --light-color: #ffffff;
  --gray-color: #6c757d;
  --gray-light: #f8f9fa;
  --gray-border: #e9ecef;
  --gray-bg: #fafafc;
  --transition: all 0.3s ease;
}

/* Premium About Section */
.about-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--gray-bg) 100%);
  position: relative;
}

/* decorative element */
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 20%, rgba(227, 11, 11, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

/* Left Content Styling */
.about-content {
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.about-badge {
  display: inline-block;
  background: rgba(227, 11, 11, 0.08);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 40px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- QUOTE REQUEST MODAL ---------- */
#quoteRequestModal.modal {
  padding-right: 0 !important;
}

#quoteRequestModal .modal-dialog,
#quoteRequestModal .quote-modal-dialog {
  max-width: 720px;
  width: calc(100% - 1.5rem);
  margin: 1.75rem auto;
  min-height: calc(100% - 3.5rem);
  display: flex;
  align-items: center;
}

#quoteRequestModal .quote-modal-content-bg {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--light-color) 0%, var(--gray-light) 100%);
  box-shadow: 0 28px 55px -25px rgba(15, 23, 42, 0.55);
  padding: 1.35rem;
}

#quoteRequestModal .contact-form-header {
  margin-bottom: 1rem;
}

#quoteRequestModal .quote-modal-title {
  display: inline-block;
  color: var(--dark-color);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

#quoteRequestModal .quote-modal-close-btn {
  margin: 0;
  width: 52px;
  height: 52px;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  color: var(--primary-color);
  background: var(--light-color);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

#quoteRequestModal .quote-modal-close-btn:hover {
  color: var(--dark-color);
  border-color: var(--secondary-color);
  background: var(--gray-light);
  transform: translateY(-1px);
}

#quoteRequestModal .quote-modal-form .form-group {
  margin-bottom: 0.95rem;
}

#quoteRequestModal .quote-modal-form .form-icon {
  position: relative;
}

#quoteRequestModal .quote-modal-form .form-icon i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 0.98rem;
  z-index: 2;
}

#quoteRequestModal .quote-modal-form .form-control {
  background: var(--light-color);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  min-height: 50px;
  color: var(--dark-color);
  padding-left: 42px;
  font-size: 0.98rem;
  box-shadow: 0 3px 10px rgba(56, 86, 130, 0.06);
  transition: all 0.25s ease;
}

#quoteRequestModal .quote-modal-form textarea.form-control {
  min-height: 145px;
  padding-top: 11px;
}

#quoteRequestModal .quote-modal-form .message-form-icon i {
  top: 14px;
  transform: none;
}

#quoteRequestModal .quote-modal-form .form-control::placeholder {
  color: var(--gray-color);
}

#quoteRequestModal .quote-modal-form .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 156, 0, 0.22);
}

#quoteRequestModal .quote-modal-submit-btn,
#quoteRequestModal .quote-modal-clear-btn {
  min-width: 132px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 18px;
  transition: all 0.25s ease;
}

#quoteRequestModal .quote-modal-submit-btn {
  color: var(--light-color);
  background: linear-gradient(135deg, var(--primary-color), #b00909);
  border-color: var(--primary-color);
}

#quoteRequestModal .quote-modal-submit-btn:hover {
  background: linear-gradient(135deg, #c10a0a, #980808);
  transform: translateY(-1px);
}

#quoteRequestModal .quote-modal-clear-btn {
  background: var(--light-color);
  color: var(--gray-color);
  border-color: var(--gray-border);
}

#quoteRequestModal .quote-modal-clear-btn:hover {
  background: var(--gray-light);
  color: var(--dark-color);
}

#quoteRequestModal .quote-modal-wait-text {
  color: var(--secondary-color);
  font-weight: 600;
}

#quoteRequestModal .quote-modal-success-text {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 576px) {
  #quoteRequestModal .modal-dialog,
  #quoteRequestModal .quote-modal-dialog {
    width: calc(100% - 1rem);
    margin: 0.5rem auto;
    min-height: calc(100% - 1rem);
  }

  #quoteRequestModal .quote-modal-content-bg {
    padding: 1rem;
    border-radius: 14px;
  }

  #quoteRequestModal .quote-modal-title {
    font-size: 1.35rem;
  }

  #quoteRequestModal .quote-modal-close-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  #quoteRequestModal .quote-modal-submit-btn,
  #quoteRequestModal .quote-modal-clear-btn {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 9px 14px;
  }
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-color);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.about-title span {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.about-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  opacity: 0.3;
  border-radius: 2px;
}

.about-description {
  font-size: 0.95rem;
  color: var(--gray-color);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.8rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: var(--dark-color);
  font-weight: 500;
}

.features-list li i {
  width: 26px;
  height: 26px;
  background: rgba(227, 11, 11, 0.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 0.85rem;
  transition: var(--transition);
}

.features-list li:hover i {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-color);
  font-weight: 500;
  letter-spacing: 0.3px;
}


/* Right Side Image Styling - REDUCED HEIGHT */
.about-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  padding: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.about-image-wrapper:hover img {
  transform: none;
}

/* Image overlay with gradient */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
  pointer-events: none;
}

/* Experience Badge on Image */
.experience-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: var(--secondary-color);
  color: var(--dark-color);
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  background: rgba(255, 156, 0, 0.95);
}

.experience-badge .years {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark-color);
}

.experience-badge .text {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--dark-color);
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-section {
    padding: 3.5rem 1.25rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .about-image-wrapper {
    height: 340px;
    max-height: 340px;
  }

  .about-image-wrapper img {
    height: 100%;
  }

  .stats-row {
    gap: 1.5rem;
  }

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

@media (max-width: 768px) {
  .about-section {
    padding: 2.5rem 1rem;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .about-description {
    font-size: 0.9rem;
  }

  .features-list li {
    font-size: 0.85rem;
  }

  .stats-row {
    gap: 1.2rem;
  }

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

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

  .about-image-wrapper {
    height: 300px;
    max-height: 300px;
  }

  .experience-badge {
    padding: 0.6rem 0.9rem;
    bottom: 1rem;
    right: 1rem;
  }

  .experience-badge .years {
    font-size: 1.2rem;
  }

  .experience-badge .text {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.5rem;
  }

  .stats-row {
    gap: 1rem;
  }

  .about-image-wrapper {
    height: 260px;
    max-height: 260px;
  }
}

/* Animation */
.about-content {
  animation: fadeInLeft 0.6s ease forwards;
}

.about-image-wrapper {
  animation: fadeInRight 0.6s ease forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

.faq-section {
  padding: 20px 10px;
  background: var(--light-gray);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

/* header */

.faq-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-red);
  text-transform: uppercase;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 6px;
}

.faq-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.faq-title span {
  color: var(--primary-red);
}

.faq-subtitle {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 480px;
  font-size: 14px;
}

/* accordion */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e9eef5;
  overflow: hidden;
  transition: .28s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 18px;
  color: var(--primary-red);
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform .25s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 16px 14px 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dark);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* right image */

.faq-right img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.faq-call-wrap {
  margin-top: 20px;
}

.faq-call-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(95deg, #DF1E08 0%, #b91506 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(223, 30, 8, 0.28);
  box-shadow: 0 10px 24px rgba(223, 30, 8, 0.2);
  transition: transform .25s ease, box-shadow .25s ease;
}

.faq-call-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(223, 30, 8, 0.28);
}

.faq-call-text {
  font-size: 15px;
  line-height: 1.2;
}

.faq-call-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.faq-call-action i {
  font-size: 15px;
}

.faq-call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #c61807;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
}

.faq-call-number {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
}

/* responsive */

@media(max-width:900px) {

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

  .faq-right {
    display: block;
    max-width: 460px;
    margin: 14px auto 0;
  }

  .faq-right img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-section {
    padding: 40px 16px;
  }

  .faq-call-btn {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
  }

  .faq-call-text,
  .faq-call-action {
    font-size: 14px;
  }

  .faq-call-now-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .faq-call-number {
    font-size: 13px;
  }

}
    /* ---------- GLOBAL RESET & VARIABLES ---------- */
    :root {
      --primary-color: #e30b0b;
      --secondary-color: #ff9c00;
      --dark-color: #222222;
      --light-color: #ffffff;
      --gray-color: #6c757d;
      --gray-light: #f8f9fa;
      --gray-border: #e9ecef;
      --transition: all 0.3s ease;
    }
    /* Main Footer */
    .footer-main {
      padding: 4rem 0 2rem;
    }

    /* Footer Columns */
    .footer-col {
      margin-bottom: 2rem;
    }

    .footer-brand {
      margin-bottom: 1.25rem;
    }

    .footer-logo {
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.3px;
      color: var(--dark-color);
      margin-bottom: 0.5rem;
    }

    .footer-logo span {
      color: var(--primary-color);
    }

    .footer-tagline {
      font-size: 0.7rem;
      color: var(--gray-color);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
    }

    .footer-description {
      color: var(--gray-color);
      font-size: 0.85rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    /* Social Icons */
    .social-icons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background: var(--gray-light);
      border-radius: 50%;
      color: var(--dark-color);
      text-decoration: none;
      transition: var(--transition);
      font-size: 1.2rem;
    }

    .social-icon:hover {
      background: var(--primary-color);
      color: white;
      transform: translateY(-3px);
    }

    /* Footer Headings */
    .footer-heading {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }

    .footer-heading:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 35px;
      height: 2px;
      background: var(--primary-color);
    }

    /* Footer Links */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links-spaced {
      margin-bottom: 1.25rem;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links li a {
      color: var(--gray-color);
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links li a i {
      font-size: 0.8rem;
      color: var(--primary-color);
      transition: var(--transition);
    }

    .footer-links li a:hover {
      color: var(--primary-color);
      transform: translateX(5px);
    }

    .footer-links li a:hover i {
      transform: translateX(3px);
    }

    /* Contact Info Items */
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 1rem;
    }

    .contact-icon {
      min-width: 32px;
      height: 32px;
      background: var(--gray-light);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-color);
      font-size: 1rem;
      transition: var(--transition);
    }

    .contact-item:hover .contact-icon {
      background: var(--primary-color);
      color: white;
      transform: scale(1.05);
    }

    .contact-text {
      flex: 1;
    }

    .contact-text a {
      color: var(--gray-color);
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
      display: block;
      margin-bottom: 0.25rem;
    }

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

    .contact-text p {
      color: var(--gray-color);
      font-size: 0.9rem;
      margin: 0;
      line-height: 1.5;
    }

    .footer-address-heading {
      margin-top: 0.5rem;
    }

    /* Footer Bottom Bar */
    .footer-bottom {
      background: #eef2f6;
      padding: 1.2rem 0;
      border-top: 1px solid #d5deea;
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .copyright {
      color: #2f3b4c;
      font-size: 0.8rem;
      margin: 0;
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      color: #253246;
      text-decoration: none;
      font-size: 0.8rem;
      transition: var(--transition);
    }

    .footer-bottom-links a:hover {
      color: #9f0a0a;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
      .footer-main {
        padding: 3rem 0 1.5rem;
      }
      .footer-heading {
        margin-top: 0.5rem;
      }
      .newsletter-title {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .newsletter-form {
        flex-direction: column;
        align-items: stretch;
      }
      .newsletter-input {
        width: 100%;
      }
      .subscribe-btn {
        justify-content: center;
      }
      .footer-bottom-content {
        flex-direction: column;
        text-align: center;
      }
      .footer-bottom-links {
        justify-content: center;
      }
      .footer-col {
        text-align: center;
      }
      .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
      }
      .social-icons {
        justify-content: center;
      }
      .contact-item {
        justify-content: center;
      }
      .footer-links li a {
        justify-content: center;
      }

      /* Keep arrow icons in one vertical line for the two middle footer columns */
      .footer-links-col {
        text-align: left;
      }

      .footer-links-col .footer-heading:after {
        left: 0;
        transform: none;
      }

      .footer-links-col .footer-links li a {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        line-height: 1.35;
      }

      .footer-links-col .footer-links li a i {
        width: 14px;
        min-width: 14px;
        text-align: center;
        margin-top: 2px;
      }
    }

    @media (max-width: 480px) {
      .footer-bottom-links {
        gap: 1rem;
      }
      .footer-logo {
        font-size: 1.4rem;
      }
    }
          /* ----- DESIGN SYSTEM ----- */
        :root {
            --primary-color: #e30b0b;
            --secondary-color: #ff9c00;
            --dark-color: #222222;
            --light-color: #ffffff;
            --gray-color: #6c757d;
            --gray-light: #f8f9fa;
            --gray-bg: #fafafc;
            --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        /* Premium Process Section */
        .process-section h2,
        .process-section h3,
        .process-section .section-header-services {
            font-size: inherit;
        }

        .process-section {
            padding: 2rem 1.5rem;
            background:
                radial-gradient(circle at 8% 12%, rgba(227, 11, 11, 0.08), transparent 34%),
                radial-gradient(circle at 92% 88%, rgba(255, 156, 0, 0.1), transparent 30%),
                linear-gradient(145deg, #fff4f2 0%, #fffaf3 52%, #f7fbff 100%);
            position: relative;
        }

        /* decorative background element */
        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 18% 82%, rgba(14, 53, 79, 0.06) 0%, transparent 72%);
            pointer-events: none;
        }

        /* section header */
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3.5rem auto;
            position: relative;
            z-index: 2;
        }

        .section-header .badge-label {
            display: inline-block;
            background: rgba(227, 11, 11, 0.12);
            color: #a10a0a;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 1rem;
            border-radius: 40px;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border: 1px solid rgba(227, 11, 11, 0.18);
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-header .lead-description {
            font-size: 1.05rem;
            color: #4f5e6f;
            line-height: 1.55;
            font-weight: 400;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Modern Horizontal Process Steps - All in One Line */
        .process-steps-wrapper {
            position: relative;
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem 0 2rem 0;
        }

        /* connecting line animation */
        .process-steps-wrapper::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 8%;
            right: 8%;
            height: 2px;
            background: linear-gradient(90deg, 
                rgba(227, 11, 11, 0.18) 0%,
                #e30b0b 16%,
                #ff9c00 50%,
                #e30b0b 84%,
                rgba(227, 11, 11, 0.18) 100%);
            pointer-events: none;
            z-index: 1;
        }

        /* Modern Step Card - No Number Badge, Clean Design */
        .modern-step {
            position: relative;
            background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
            border-radius: 1.25rem;
            padding: 1.8rem 1rem;
            text-align: center;
            height: 100%;
            transition: var(--transition);
            box-shadow: 0 10px 24px -16px rgba(19, 37, 58, 0.24);
            border: 1px solid rgba(19, 37, 58, 0.1);
            backdrop-filter: blur(0px);
            z-index: 2;
        }

        .modern-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 42px -18px rgba(227, 11, 11, 0.3);
            border-color: rgba(227, 11, 11, 0.24);
        }

        /* icon container with gradient background */
        .step-icon-modern {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ffeceb 0%, #fff5ea 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem auto;
            transition: var(--transition);
            border: 1px solid rgba(227, 11, 11, 0.14);
        }

        .step-icon-modern i {
            font-size: 2.2rem;
            color: #cf1313;
            transition: var(--transition);
        }

        .modern-step:hover .step-icon-modern {
            background: linear-gradient(135deg, #e30b0b 0%, #bd0a0a 100%);
            transform: scale(1.02);
            border-color: rgba(189, 10, 10, 0.3);
        }

        .modern-step:hover .step-icon-modern i {
            color: #ffffff;
            transform: scale(1.02);
        }

        .step-title-modern {
            font-size: 1.15rem;
            font-weight: 700;
            color: #12253a;
            margin-bottom: 0.6rem;
            letter-spacing: -0.2px;
        }

        .step-description-modern {
            font-size: 0.8rem;
            color: #546579;
            line-height: 1.5;
            margin-bottom: 0;
            padding: 0 0.2rem;
        }

        /* subtle step indicator dot */
        .step-dot {
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: #ff9c00;
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
        }

        .modern-step:hover .step-dot {
            opacity: 1;
            top: -12px;
        }

        /* ensure all 5 steps in one line on desktop */
        @media (min-width: 1200px) {
            .process-steps-wrapper .row {
                flex-wrap: nowrap;
            }
            .process-steps-wrapper .col-lg {
                flex: 1;
            }
            .modern-step {
                padding: 1.8rem 0.8rem;
            }
        }

        /* tablet and below - responsive wrap */
        @media (max-width: 1199px) and (min-width: 768px) {
            .process-steps-wrapper::before {
                display: none;
            }
            .modern-step {
                padding: 1.5rem;
            }
            .step-icon-modern {
                width: 60px;
                height: 60px;
            }
            .step-icon-modern i {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 991px) {
            .process-section {
                padding: 3.5rem 1.25rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            
        }

        @media (max-width: 767px) {
            .process-section {
                padding: 2.5rem 1rem;
            }
            .section-header h2,
            .section-header h3 {
                font-size: 1.7rem;
            }
            .section-header .lead-description {
                font-size: 0.9rem;
            }
            .process-steps-wrapper::before {
                display: none;
            }
            .modern-step {
                padding: 1.2rem;
                margin-bottom: 0;
            }
            .step-icon-modern {
                width: 55px;
                height: 55px;
            }
            .step-icon-modern i {
                font-size: 1.6rem;
            }
            .step-title-modern {
                font-size: 1rem;
            }
            .step-description-modern {
                font-size: 0.75rem;
            }
         
        }

        /* animation for steps */
        .modern-step {
            animation: fadeInUp 0.5s ease backwards;
        }

        .modern-step:nth-child(1) { animation-delay: 0.05s; }
        .modern-step:nth-child(2) { animation-delay: 0.1s; }
        .modern-step:nth-child(3) { animation-delay: 0.15s; }
        .modern-step:nth-child(4) { animation-delay: 0.2s; }
        .modern-step:nth-child(5) { animation-delay: 0.25s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        } /* ----- DESIGN SYSTEM ----- */
        :root {
            --primary-color: #e30b0b;
            --secondary-color: #ff9c00;
            --dark-color: #222222;
            --light-color: #ffffff;
            --gray-color: #6c757d;
            --transition: all 0.3s ease;
        }

        /* PREMIUM SERVICES SHOWCASE - HIGH CONTRAST + MODERN RED THEME */
        .services-showcase {
            padding: 3.2rem 1.35rem 2.6rem;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.15), transparent 34%),
                radial-gradient(circle at 90% 90%, rgba(255, 193, 7, 0.16), transparent 28%),
                linear-gradient(150deg, #d90410 0%, #ec0013 48%, #c1020b 100%);
        }

        .services-showcase::before,
        .services-showcase::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(3px);
            pointer-events: none;
            z-index: 1;
        }

        .services-showcase::before {
            width: 300px;
            height: 300px;
            top: -140px;
            left: -80px;
            background: rgba(255, 255, 255, 0.11);
        }

        .services-showcase::after {
            width: 260px;
            height: 260px;
            right: -80px;
            bottom: -120px;
            background: rgba(255, 190, 40, 0.16);
        }

        .services-showcase .section-header {
            text-align: center;
            max-width: 860px;
            margin: 0 auto 1.5rem auto;
            position: relative;
            z-index: 2;
        }

        .services-showcase .section-header h2 {
            font-size: clamp(1.75rem, 2.7vw, 2.35rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            color: #ffffff !important;
            margin-bottom: 0.55rem;
            line-height: 1.15;
            text-shadow: 0 7px 16px rgba(0, 0, 0, 0.28);
        }

        .services-showcase .section-header .lead-description {
            font-size: 0.92rem;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.5;
            font-weight: 500;
            max-width: 700px;
            margin: 0 auto;
        }

        /* service cards */
        .service-card-ultra {
            background: transparent;
            border-radius: 0;
            padding: 0.4rem 0.45rem 0.12rem;
            text-align: center;
            transition: transform 0.28s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            border: 0;
            position: relative;
            z-index: 2;
        }

        .service-card-ultra:hover {
            transform: translateY(-4px);
        }

        .icon-container-ultra {
            width: 120px;
            height: 120px;
            background: linear-gradient(150deg, #ff6b4d 0%, #ff5a3a 18%, #e53d1f 35%, #c1020b 62%, #8b0208 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.62rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            box-shadow: 0 14px 26px -16px rgba(0, 0, 0, 0.7), inset -15px -20px 0 rgba(116, 6, 14, 0.44), 0 0 0 5px rgba(255, 156, 0, 0.38), inset 0 1px 8px rgba(255, 156, 0, 0.22);
            border: 2.5px solid rgba(255, 156, 0, 0.48);
            position: relative;
        }

        .icon-container-ultra::before {
            content: '';
            position: absolute;
            inset: 8px 12px auto 12px;
            height: 28px;
            border-radius: 30px;
            background: linear-gradient(180deg, rgba(255, 180, 80, 0.32), rgba(255, 156, 0, 0.16), rgba(255, 200, 100, 0.08));
            pointer-events: none;
        }

        .icon-container-ultra i {
            font-size: 2.5rem;
            color: #ffffff;
            transition: transform 0.3s ease;
            z-index: 1;
        }

        .service-card-ultra:hover .icon-container-ultra {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 18px 28px -16px rgba(0, 0, 0, 0.78), inset -18px -22px 0 rgba(116, 6, 14, 0.5), 0 0 0 7px rgba(255, 156, 0, 0.48), inset 0 2px 12px rgba(255, 156, 0, 0.28);
            border-color: rgba(255, 156, 0, 0.62);
        }

        .service-card-ultra:hover .icon-container-ultra i {
            color: #ffffff;
            transform: scale(1.05);
        }

        .service-title-ultra {
            font-size: 0.96rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.22rem;
            letter-spacing: -0.01em;
            line-height: 1.28;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.26);
        }

        .service-description-ultra {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.38;
            margin-bottom: 0;
            padding: 0 0.32rem;
        }

        /* desktop sizing */
        @media (min-width: 992px) {
            .services-showcase {
                padding: 3.05rem 1.8rem 2.45rem;
            }
            
            .services-showcase .section-header {
                margin-bottom: 1.55rem;
            }
            
            .services-showcase .section-header h2 {
                font-size: 2.05rem;
            }
            
            .services-showcase .row.g-2 {
                --bs-gutter-x: 1rem;
                --bs-gutter-y: 0;
            }
            
            .service-card-ultra {
                min-height: 214px;
            }
            
            .services-showcase .col-lg-auto {
                flex: 1 1 20%;
                max-width: 20%;
            }
        }

        @media (min-width: 1200px) {
            .service-card-ultra {
                min-height: 224px;
            }

            .services-showcase .col-lg-auto {
                flex: 1 1 19%;
                max-width: 19%;
            }
        }

        @media (min-width: 1400px) {
            .service-card-ultra {
                min-height: 236px;
            }
        }

        @media (max-width: 991px) and (min-width: 768px) {
            .services-showcase {
                padding: 2.65rem 1.15rem 2.25rem;
            }

            .services-showcase .section-header h2 {
                font-size: 1.72rem;
            }

            .services-showcase .section-header .lead-description {
                font-size: 0.88rem;
            }

            .service-card-ultra {
                padding: 0.42rem 0.35rem 0.08rem;
            }

            .service-description-ultra {
                font-size: 0.72rem;
            }

            .service-title-ultra {
                font-size: 0.84rem;
            }

            .icon-container-ultra {
                width: 98px;
                height: 98px;
                box-shadow: 0 12px 22px -14px rgba(0, 0, 0, 0.65), inset -12px -16px 0 rgba(116, 6, 14, 0.42), 0 0 0 4px rgba(255, 156, 0, 0.36), inset 0 1px 6px rgba(255, 156, 0, 0.18);
                border: 2px solid rgba(255, 156, 0, 0.42);
                background: linear-gradient(150deg, #ff6b4d 0%, #ff5a3a 18%, #e53d1f 35%, #c1020b 62%, #8b0208 100%);
            }

            .icon-container-ultra i {
                font-size: 2rem;
            }

            .services-showcase .row.g-2 {
                --bs-gutter-x: 0.85rem;
                --bs-gutter-y: 0.85rem;
            }
        }

        /* mobile */
        @media (max-width: 767px) {
            .services-showcase {
                padding: 2.4rem 0.95rem 2.05rem;
            }

            .services-showcase .section-header {
                margin-bottom: 1.2rem;
            }

            .services-showcase .section-header h2 {
                font-size: 1.38rem;
            }

            .services-showcase .section-header .lead-description {
                font-size: 0.82rem;
                line-height: 1.42;
            }

            .service-card-ultra {
                padding: 0.32rem 0.3rem 0.05rem;
                max-width: 220px;
                margin: 0 auto;
                width: 100%;
            }

            .service-description-ultra {
                font-size: 0.69rem;
            }

            .service-title-ultra {
                font-size: 0.8rem;
            }

            .icon-container-ultra {
                width: 84px;
                height: 84px;
                box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.6), inset -10px -14px 0 rgba(116, 6, 14, 0.4), 0 0 0 3.5px rgba(255, 156, 0, 0.34), inset 0 0.5px 5px rgba(255, 156, 0, 0.16);
                border: 1.8px solid rgba(255, 156, 0, 0.38);
                background: linear-gradient(150deg, #ff6b4d 0%, #ff5a3a 18%, #e53d1f 35%, #c1020b 62%, #8b0208 100%);
            }

            .icon-container-ultra i {
                font-size: 1.7rem;
            }

            .services-showcase .row.g-2 {
                --bs-gutter-x: 0.95rem;
                --bs-gutter-y: 0.95rem;
            }
            .services-showcase .row.g-2 {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.95rem;
                justify-items: center;
            }
            .services-showcase .col-6,
            .services-showcase .col-sm-4,
            .services-showcase .col-md-3,
            .services-showcase .col-lg-auto {
                width: 100% !important;
                max-width: 100%;
                flex: unset;
            }
        }

        @media (max-width: 480px) {
            .services-showcase {
                padding: 2.15rem 0.7rem 1.8rem;
            }
            .services-showcase .row.g-2 {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.7rem;
            }

            .service-card-ultra {
                padding: 0.25rem 0.2rem 0.05rem;
                max-width: 100%;
            }

            .service-title-ultra {
                font-size: 0.74rem;
            }

            .service-description-ultra {
                font-size: 0.64rem;
            }

            .icon-container-ultra {
                width: 70px;
                height: 70px;
                box-shadow: 0 8px 16px -10px rgba(0, 0, 0, 0.58), inset -8px -12px 0 rgba(116, 6, 14, 0.38), 0 0 0 3px rgba(255, 156, 0, 0.32), inset 0 0.5px 4px rgba(255, 156, 0, 0.14);
                border: 1.8px solid rgba(255, 156, 0, 0.34);
                background: linear-gradient(150deg, #ff6b4d 0%, #ff5a3a 18%, #e53d1f 35%, #c1020b 62%, #8b0208 100%);
            }

            .icon-container-ultra i {
                font-size: 1.4rem;
            }
        }
        .trust-item {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.98);
            font-weight: 600;
            letter-spacing: 0.2px;
            background: rgba(255, 255, 255, 0.12);
            padding: 0.45rem 1.05rem;
            border-radius: 40px;
            transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.16);
        }
        
        .trust-item i {
            font-size: 0.82rem;
            color: var(--secondary-color);
        }
        
        .trust-item:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: translateY(-3px);
            color: #ffffff;
            box-shadow: 0 12px 22px -14px rgba(0, 0, 0, 0.55);
        }
        
        /* scoped column behavior for this section only */
        .services-showcase .row > [class*="col-"] {
            flex: 1 1 0;
        }
        
        @media (min-width: 992px) {
            .services-showcase .row > [class*="col-"] {
                max-width: none;
            }
        }

        /* Utility: hide by default, show on md+ */
        .desktop-only-block {
          display: none !important;
        }

        @media (min-width: 768px) {
          .desktop-only-block {
            display: block !important;
          }
        }

        
.testimonial-section{
background:#f6f8fb;
}

.testimonial-card{
background:#fff;
border-radius:14px;
padding:30px 25px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:0.3s;
border:1px solid #f1f1f1;
}

.testimonial-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.testimonial-quote i{
font-size:34px;
color:#f59e0b;
}

.testimonial-content{
font-size:15px;
color:#6b7280;
margin:15px 0 20px;
line-height:1.6;
}

.client-avatar{
width:50px;
height:50px;
border-radius:50%;
background:#4f46e5;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
margin:0 auto 10px;
}

.client-name{
font-weight:600;
margin-bottom:3px;
}

.client-location{
font-size:14px;
color:#6b7280;
margin-bottom:8px;
}

/* Red impact strip used in Home and View Service pages */
.relocation-impact-strip {
  padding: 0;
  margin-top: 0;
}

.relocation-impact-shell {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 22%),
    radial-gradient(circle at 100% 100%, rgba(255, 159, 67, 0.25) 0%, rgba(255, 159, 67, 0) 26%),
    linear-gradient(90deg, #f1132e 0%, #e9001a 100%);
  color: #ffffff;
}

.impact-stat-item {
  padding: 2.9rem 1.25rem 3.05rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.impact-stat-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.impact-stat-title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.impact-stat-text {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: clamp(1.25rem, 1.35vw, 1.85rem);
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
}

.relocation-impact-shell .row > [class*='col-']:first-child .impact-stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

@media (max-width: 991px) {
  .impact-stat-item {
    min-height: 220px;
    padding: 2.3rem 1rem 2.5rem;
  }

  .impact-stat-text {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
  }
}

@media (max-width: 767px) {
  .relocation-impact-shell .row > [class*='col-']:first-child .impact-stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .impact-stat-item {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .impact-stat-title {
    margin-bottom: 0.75rem;
  }
}

.testimonial-stars{
color:#f59e0b;
font-size:14px;
}

    /* ----- GLOBAL RESET & DESIGN SYSTEM (Root Variables) ----- */
    :root {
        --primary-color: #e30b0b;
        --secondary-color: #ff9c00;
        --dark-color: #222222;
        --light-color: #ffffff;
        --gray-color: #6c757d;
        --transition: all 0.3s ease;
    }

    /* modern service section container */
    .service-section {
        padding: 2rem 1.5rem;
        background:
            radial-gradient(circle at 8% 0%, rgba(227, 11, 11, 0.08), transparent 28%),
            radial-gradient(circle at 92% 100%, rgba(255, 156, 0, 0.08), transparent 28%),
            linear-gradient(145deg, #f7f9fc 0%, #f1f4f9 100%);
    }

    /* section header - center aligned, modern typography */
    .section-header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 3.5rem auto;
    }

    .section-header h2,
    .section-header .section-header-h2 {
        font-size: 2.8rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        color: #111111;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-header .lead-text {
        font-size: 1.125rem;
        color: #111111;
        line-height: 1.5;
        font-weight: 400;
        max-width: 650px;
        margin: 0 auto;
    }

    /* modern card grid */
    .service-card {
        background: var(--light-color);
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 22px 38px -20px rgba(16, 39, 67, 0.28), 0 1px 2px rgba(0, 0, 0, 0.02);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        border: 1px solid rgba(16, 39, 67, 0.08);
    }

    /* hover lift effect + increased shadow (premium) */
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 34px 48px -20px rgba(227, 11, 11, 0.3), 0 2px 6px rgba(0, 0, 0, 0.02);
    }

    /* image wrapper with subtle gradient overlay */
    .card-img-wrapper {
        position: relative;
        overflow: hidden;
        height: 270px;
        background: linear-gradient(140deg, #e7edf3, #f2f6fb);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        display: block;
    }

    .service-section .card-img-wrapper {
      background: #ffffff;
    }

    .service-section .card-img-wrapper img {
      object-fit: contain;
      padding: 0.75rem;
      background: #ffffff;
    }

    .service-section .service-card:hover .card-img-wrapper img {
      transform: none;
    }

    .service-card:hover .card-img-wrapper img {
        transform: scale(1.02);
    }

    /* elegant gradient overlay on image for depth */
    .img-gradient-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55%;
        background: linear-gradient(to top, rgba(16, 39, 67, 0.38), rgba(16, 39, 67, 0.05));
        pointer-events: none;
        z-index: 1;
    }

    /* badge / pill category label */
    .category-badge {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        z-index: 2;
        background: var(--light-color);
        backdrop-filter: blur(2px);
        background-color: rgba(255, 255, 255, 0.92);
        padding: 0.4rem 1rem;
        border-radius: 40px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        color: var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(227, 11, 11, 0.15);
        transition: var(--transition);
    }

    /* subtle variant for corporate badge (secondary accent) */
    .service-card.corporate-card .category-badge {
        color: var(--secondary-color);
        border-color: rgba(255, 156, 0, 0.25);
        background: rgba(255, 255, 255, 0.95);
    }

    /* card body spacing */
    .service-card .card-body {
        padding: 1.55rem 1.4rem 1.25rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .service-card .card-title {
        font-size: 1.95rem;
        font-weight: 700;
        color: #111111;
        margin-top: 0.25rem;
        margin-bottom: 0.72rem;
        line-height: 1.22;
        letter-spacing: -0.01em;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .service-card .card-text {
        color: #111111;
        font-size: 1.04rem;
        line-height: 1.64;
        margin-bottom: 1.1rem;
        flex: 1;
        max-width: 100%;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    /* button group: responsive + modern */
    .btn-group-flex {
        display: flex;
        gap: 0.72rem;
        flex-wrap: wrap;
        margin-top: 0.15rem;
        align-items: center;
        justify-content: flex-start;
        padding: 0.34rem;
        border: 1px solid #e3eaf2;
        border-radius: 10px;
        background: linear-gradient(130deg, #f9fbff, #f4f8ff);
    }

    /* primary button styling */
    .btn-primary-custom {
        background: linear-gradient(135deg, var(--primary-color), #c80b0b) !important;
        border: 1px solid var(--primary-color) !important;
        padding: 0.47rem 0.88rem;
        border-radius: 9px;
        font-weight: 700;
        font-size: 0.8rem;
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        color: #fff !important;
        display: inline-flex;
        align-items: center;
        gap: 0.34rem;
        letter-spacing: 0.01em;
        box-shadow: 0 12px 20px -14px rgba(227, 11, 11, 0.8);
        text-decoration: none;
        min-width: 126px;
        justify-content: center;
        flex: 0 0 auto;
    }

    .btn-primary-custom:hover {
        background: linear-gradient(135deg, #b70707, #a80505) !important;
        color: #fff !important;
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 16px 26px -14px rgba(227, 11, 11, 0.82), 0 0 0 3px rgba(227, 11, 11, 0.12);
    }

    /* secondary outline button (modern) */
    .btn-outline-custom {
        background: #ffffff !important;
        border: 1.8px solid #cfd9e6 !important;
        padding: 0.47rem 0.88rem;
        border-radius: 9px;
        font-weight: 700;
        font-size: 0.8rem;
        color: #111111 !important;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.34rem;
        min-width: 126px;
        justify-content: center;
        text-decoration: none;
        flex: 0 0 auto;
    }

    .btn-outline-custom:hover {
        border-color: var(--primary-color);
        background-color: #fff6f6;
        color: var(--primary-color) !important;
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 14px 22px -18px rgba(227, 11, 11, 0.7), 0 0 0 3px rgba(227, 11, 11, 0.1);
    }

    .btn-primary-custom:focus-visible,
    .btn-outline-custom:focus-visible {
        outline: 0;
        box-shadow: 0 0 0 3px rgba(227, 11, 11, 0.22);
    }

    /* icons inside buttons (bootstrap icons) */
    .btn i {
        font-size: 0.95rem;
    }

    /* responsive adjustments */
    @media (max-width: 991px) {
        .service-section {
            padding: 4rem 1.25rem;
        }

        .service-section .section-header h2 {
            font-size: 2.2rem;
        }

        .service-card .card-title {
            font-size: 1.65rem;
        }

        .service-card .card-text {
            font-size: 1rem;
            line-height: 1.56;
        }
    }

    @media (max-width: 768px) {
        .service-section {
            padding: 3rem 1rem;
        }

        .service-section .section-header h2 {
            font-size: 1.9rem;
        }

        .service-card .card-body {
            padding: 1.25rem 1.1rem 1rem;
        }

        .btn-group-flex {
            flex-direction: column;
            gap: 0.55rem;
            padding: 0.42rem;
        }

        .btn-primary-custom,
        .btn-outline-custom {
            justify-content: center;
            width: 100%;
            padding: 0.58rem 0.9rem;
            min-width: 100%;
        }

        .card-img-wrapper {
            height: 230px;
        }

        .category-badge {
            top: 1rem;
            right: 1rem;
            font-size: 0.7rem;
            padding: 0.3rem 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .service-section .section-header h2 {
            font-size: 1.7rem;
        }

        .lead-text {
            font-size: 1rem;
        }
    }

    /* optional: nice separator / custom scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    /* to ensure images are optimized & load fast (inline performance) */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

      :root {
    --primary-red: #DF1E08;
    --accent-blue: #5282bf;
    --dark-navy: #18385d;
    --pure-white: #ffffff;
    --light-gray: #f5f8fc;
    --text-dark: #1e2b3c;
    --text-muted: #546e8a;
  }

  .reviews-section {
    position: relative;
    padding: 50px 12px;
    background: none;
    overflow: hidden;
  }

  .reviews-section::before {
    content: none;
    pointer-events: none;
  }

  .reviews-section .container {
    position: relative;
    z-index: 1;
  }

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

  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
  }

  .section-label {
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .section-heading {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-navy) !important;
    margin-bottom: 10px;
  }
  .section-subheading {
    max-width: 700px;
    margin: auto;
    color: var(--text-muted);
  }

  .slider-wrapper {
    position: relative;
  }

  .review-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    min-width: 340px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue), var(--dark-navy));
    color: #fff;
    font-weight: 700;
  }

  .reviewer-info .reviewer-name {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-navy);
  }

  .reviewer-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
  }

  .review-stars {
    margin: 10px 0;
  }

  .review-stars i {
    color: #f8b739;
  }

  .review-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
  }

  .nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .nav-btn.prev {
 left: 8px;
 }

 .nav-btn.next {
 right: 8px;
 }

 .nav-btn:hover {
 background: var(--dark-navy);
 }


  @media(max-width:768px) {

    .review-card {
      min-width: 280px;
    }

    .section-heading {
      font-size: 28px;
    }
    .nav-btn {
 width: 34px;
 height: 34px;
 }

 .nav-btn.prev {
 left: 6px;
 }

 .nav-btn.next {
 right: 6px;
 }

  }