/*  */

/* ==========================================================
   HOMEPAGE- UNIFORM SPACING SYSTEM
   Uses: 16px + 24px rhythm
   Scoped ONLY to .home-page to avoid affecting other pages
   ========================================================== */

.home-page {
  --space-16: 16px;
  --space-24: 24px;
}

/* Reset default spacing inside page wrapper */
.home-page h1,
.home-page h2,
.home-page h3,
.home-page p,
.home-page ul,
.home-page ol {
  margin-top: 0;
}

/* Headings spacing */
.home-page h1,
.home-page h2,
.home-page h3 {
  margin-bottom: var(--space-16);
}

/* Paragraph + list spacing */
.home-page p,
.home-page ul,
.home-page ol {
  margin-bottom: var(--space-24);
}

/* Remove random spacing inside cards (keep text tight) */
.home-page .price-container p,
.home-page .package-container p,
.home-page .location-card p,
.home-page .col-details p {
  margin-bottom: 0;
}

/* Standardize section spacing */

/* Hero spacing fixed */
.home-page .hero-section {
  padding: 80px 0 100px;
}

/* Button spacing uniform */
.home-page .buttton-div {
  margin-top: var(--space-24);
}

/* Kill Bootstrap spacing inconsistencies (only for this page) */
.home-page .mt-3 {
  margin-top: var(--space-16) !important;
}
.home-page .mt-4 {
  margin-top: var(--space-24) !important;
}
.home-page .mb-2 {
  margin-bottom: var(--space-16) !important;
}
.home-page .mb-3 {
  margin-bottom: var(--space-16) !important;
}
.home-page .mb-4 {
  margin-bottom: var(--space-24) !important;
}

/* Reduce extra padding inside specific blocks */
.home-page .comparison-title h2,
.home-page .locations-section h2,
.home-page .businesses-choosing h2,
.home-page .benefit-section h2,
.home-page .serviced-package .para,
.home-page .locations-section .para {
  margin-bottom: var(--space-24);
}

/* Fix FAQ spacing */
.home-page .faq-container h2 {
  padding-bottom: var(--space-24);
}

/* MOBILE SPACING */
@media (max-width: 768px) {
  .home-page .hero-section {
    padding: 50px 20px 60px;
    height: fit-content;
  }

  .home-page p,
  .home-page ul,
  .home-page ol {
    margin-bottom: var(--space-16);
  }

  .home-page h1,
  .home-page h2,
  .home-page h3 {
    margin-bottom: var(--space-16);
  }

  .home-page .buttton-div {
    margin-top: var(--space-24);
  }
}

/*  */

.mobile-only {
  display: none;
}
body {
  font-weight: 100;
  color: #000;
}

.home-page p {
  font-size: 17px;
  line-height: 26px;
  color: #000;
  font-weight: 100;
}

.home-page p.large-para {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}

.buttton-div {
  display: flex;
  align-items: center;
}

.button-text {
  margin-left: 10px;
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 17px;
  line-height: 26px;
}

.button-text p {
  margin-bottom: 0;
  padding-right: 6px;
}

.button-text a {
  font-weight: bold;
  color: #000;
}
.button-text a:hover {
  font-weight: bold;
  color: #9b1c31;
}

.imager-container {
  margin: 0 10px;
}

.hero-row .slick-list {
  border-radius: 5px;
}
/* HERO SLIDER WRAPPER */
.hero-slider {
  position: relative;
}

.hero-slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
}

.hero-slider .slick-slide {
  height: auto !important;
}

.slick-slide {
  height: fit-content;
}
/* Slick dots styling */
.hero-slider .slick-dots {
  bottom: -59px;
  display: flex !important;
  justify-content: center;
  gap: 8px;
}

.hero-slider .slick-dots li button:before {
  display: none;
}

.hero-slider .slick-dots li {
  width: 20px;
  height: 1px;
  margin: 0;
}
.hero-slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #d6d6d6;
  border-radius: 2px;
}

/* Active bar */
.hero-slider .slick-dots li.slick-active button {
  background: #b21f2d; /* your brand red */
}

/* Slick arrows */

/* Hide all slides by default */
.hero-slider .imager-container {
  display: none;
}
 
/* Show ONLY first image as fallback */
/* .hero-slider .imager-container:first-child {
  display: block;
  overflow: hidden;
  border-radius: .25rem ;
} */

/* When slick is initialized, show everything */
.hero-slider.slick-initialized .imager-container {
  display: block;
}

.hero-slider .slick-prev,
.hero-slider .slick-next {
  display: block;
  z-index: 1;
  /* z-index: 10; */
}

.hero-slider .slick-prev {
  left: 40px;
}

.hero-slider .slick-next {
  right: 40px;
}

.hero-slider .slick-prev:focus,
.hero-slider .slick-next:focus {
  background: #9b1c31;
}

/* Base arrow button */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 40px;
  height: 40px;
  background: #9b1c31; /* dark circle */
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Remove default font arrow */
.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
  content: "";
}

/* Custom arrow using borders (chevron style) */
.hero-slider .slick-prev::after,
.hero-slider .slick-next::after {
  content: "";
  width: 8px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
}

/* Left arrow */
.hero-slider .slick-prev::after {
  transform: rotate(135deg);
}

/* Right arrow */
.hero-slider .slick-next::after {
  transform: rotate(-45deg);
}

/* Positioning */

/* Optional: hover effect */
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  background: #9b1c31;
}

/*  */

.slick-slide {
  height: fit-content;
}
/* Slick dots styling */
.hero-slider .slick-dots {
  bottom: -59px;
  display: flex !important;
  justify-content: center;
  gap: 8px;
}

.hero-slider .slick-dots li button:before {
  display: none;
}

.hero-slider .slick-dots li {
  width: 20px;
  height: 1px;
  margin: 0;
}
.hero-slider .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #d6d6d6;
  border-radius: 2px;
}

/* Active bar */
.hero-slider .slick-dots li.slick-active button {
  background: #b21f2d; /* your brand red */
}
/* Optional progress bar */
.hero-progress {
  height: 3px;
  background: #eee;
  width: 100%;
  margin-top: 15px;
  position: relative;
}











/* Optional progress bar */
.hero-progress {
  height: 3px;
  background: #eee;
  width: 100%;
  margin-top: 15px;
  position: relative;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: #b21f2d;
  transition: width 0.3s ease;
}

.subtitle {
  width: 80%;
}

body {
  font-weight: 100;
  color: #000;
}

.btn:active {
  background: #fff !important;
  border: 1px solid #9b1c31 !important;
}

strong {
  font-weight: 600;
}

.hero-section h1 {
  font-size: 32px;
  line-height: 45px;
}

.hero-section .custom-list li {
  font-size: 17px;
  line-height: 26px;
  font-weight: 100;
  margin-bottom: 10px;
}

.hero-section .custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/*  */
.hero-section .custom-list li {
  position: relative;
  padding-left: 32px;
}

.hero-section .horizontal-line.desktop-only {
  margin-bottom: var(--space-24);
}

/* Red circular check icon */
.hero-section .custom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #e6d1d5; /* red circle */
  color: #9b1c31;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  border: 2px solid #9b1c31;
}

/*  */

.home-page p {
  font-size: 17px;
  line-height: 26px;
  color: #000;
  font-weight: 100;
}

.badge-red {
  background: #9b1c31;
}

.btn-primary {
  background: #9b1c31;

  font-weight: 500;
  line-height: 18px;
  border: 0;

  font-size: 14px;

  padding: 15px;

  border-radius: 5px;

  border: 1px solid #9b1c31;
  width: fit-content;
}

.btn-primary:hover {
  background: #fff;

  border: 1px solid #9b1c31;

  color: #9b1c31;
}

.hero-row {
  align-items: center !important;
}

.btn-primary.mt-4 {
  margin-top: 32px !important;

  width: fit-content;
}

.slick-dots li button:before {
  font-size: 10px;
}

.bckg-light {
  background-color: #f4f4f4;
}

/*  */
.trusted-partner,
.locations-section,
.faq-section,
.contact-section,
.offer-section,
.media-section,
.reviews-section,
.blogs-section {
  padding: 100px 0;
}

.trusted-partner h2,
.benefits-section h2,
.locations-section h2,
.faq-section h2,
.offer-section h2,
.reviews-section h2,
.blogs-section h2 {
  font-size: 32px;
  line-height: 38px;
}

.locations-section h2 {
  margin-bottom: 32px;
}

.trusted-partner-inner {
  max-width: 1100px;

  height: min-content;

  flex-flow: column;

  flex: none;

  place-content: center;

  align-items: flex-start;

  /* gap: 24px; */

  width: 80%;

  padding: 0;

  display: flex;

  min-width: 780px;
}

.trusted-partner .container {
  display: flex;

  justify-content: center;
}

.underline-button {
  padding: 15px 0 10px 0;
  font-size: 14px;
  font-weight: bold;
  color: #9b1c31;
  text-transform: uppercase;
  border-bottom: 1px solid #9b1c31;
  width: fit-content;
  padding: 15px 0 10px;
}
.underline-button:hover {
  color: rgb(107, 36, 48);
}

.benefits-section {
  display: flex;
  flex: 0 0 auto;
  flex-flow: column;
  gap: 80px;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  padding: 100px 0px;
  position: relative;
  width: 100%;
  align-items: center;
}

.benefits-section-inner {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row;
  gap: 60px;
  height: min-content;
  max-width: 1100px;
  overflow: var(--overflow-clip-fallback, clip);
  padding: 0px;
  position: relative;
  width: 100%;
}
.benefits-section h2 {
  width: 100%;
}

.benefits-section-inner p {
  margin-bottom: 0;
}
.image-container {
  align-items: center;
  border-radius: 5px;
  display: flex;
  filter: brightness(1);
  flex: 1 0 0px;
  flex-flow: row;
  gap: 16px;
  height: 400px;
  overflow: var(--overflow-clip-fallback, clip);
  padding: 0px;
  position: relative;
  width: 1px;
}

.image-container-wrapper {
  align-items: center;
  border-radius: 5px;
  display: flex;
  filter: brightness(1);
  flex: 1 0 0px;
  flex-flow: row;
  gap: 16px;
  padding: 0px;
  position: relative;
  width: 1px;
}

.imager-container {
  height: 400px;
}

.text-container {
  align-items: flex-start;
  display: flex;
  flex: 0.7 0 0px;
  flex-flow: column;
  gap: 24px;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  padding: 0px;
  position: relative;
  width: 1px;
}

.image-wrapper {
  position: absolute;
  border-radius: inherit;
  corner-shape: inherit;
  inset: 0px;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  corner-shape: inherit;
  object-position: center center;
  object-fit: cover;
}

.text-container-inner {
  place-content: center;
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-flow: column;
  gap: 24px;
  height: min-content;
  overflow: var(--overflow-clip-fallback, clip);
  padding: 0px;
  position: relative;
  width: 100%;
}

/* Locations */

.locations-section .container {
  padding-right: 0;
}
.locations-section .row {
  margin: 0;

  border-radius: 5px;

  border: 1px solid rgba(17, 17, 17, 0.2);
}

.locations-section .row .col-lg-7,
.locations-section .row .col-lg-5 {
  margin-top: 0;
}

.locations-section .row .col-lg-7 {
  padding-left: 0;
}

.locations-section .row .col-lg-5 {
  padding-right: 0;
}

.locations-section .tab-content > .tab-pane {
  padding: 0 !important;

  border-radius: 5px;
}
.location-title {
  font-size: 22px;
  font-weight: 600;

  margin-bottom: 8px;
}

.location-card {
  /* border: 1px solid #e5e5e5; */

  border-radius: 5px;

  padding: 16px;

  cursor: pointer;

  transition: all 0.2s ease;
}

.location-card.active,
.location-card:hover {
  background: #fff;

  /* border-color: #9B1C31; */

  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06); */
}

.location-card img {
  width: 90px;

  height: auto;

  border-radius: 5px;
}
.location-card p {
  font-size: 14px;
}

.location-card .imgdiv {
  width: 100px;

  height: 100%;

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.location-card img {
  height: 110px;

  border-radius: 5px;

  width: 100px;

  background-size: cover;

  background-position: center;
}

iframe {
  border-radius: 5px;

  border: 0;
}

.locations-section .nav {
  height: 100%;

  justify-content: space-between;
}

.know-more {
  color: #9b1c31;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.faq-container h2 {
  padding-bottom: 32px;
}

.faq-item {
  border: 1px solid rgba(155, 28, 49, 0.3);

  border-radius: 5px;

  margin-bottom: 12px;

  overflow: hidden;
}

.faq-item a {
  color: #9b1c2f;
}
.faq-item a:hover {
  color: #840014;
}

.faq-question {
  width: 100%;

  background: white;

  border: none;

  outline: none;

  padding: 18px 22px;

  font-size: 18px;

  text-align: left;

  line-height: 1.6em;

  cursor: pointer;

  display: flex;

  justify-content: space-between;

  align-items: center;

  font-weight: 500;
  color: #000 !important;
}

.faq-question:hover {
  /* background: #fee1e1; */
}

.faq-question .icon {
  content: "+";

  font-size: 30px;

  color: #000;

  font-weight: 100;

  height: 27px;
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.35s ease;

  padding: 0 22px;
}

.faq-answer p {
  /* font-size: 14px; */

  margin: 10px 0 18px;

  line-height: 26px;

  /* color: #555; */
}

.faq-item.active .faq-answer {
  max-height: fit-content;
}

.faq-item.active .icon {
  content: "-";
}

.contact-section h2 {
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -0.02em;
}

.contact-section .col-md-6 {
  padding-left: 0;
}

/* Contact us Form */

.contact-form-service {
  background: #fff;

  border-radius: 5px;

  padding: 40px 40px 16px;

  /* margin-right: 45px; */
}

.contact-form-service .wpcf7-submit {
  width: fit-content !important;
}
.contact-form-service .wpcf7-form label {
  font-size: 17px;

  margin-bottom: 0;
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.contact-form-service .wpcf7 input,
.contact-form-service .wpcf7 select,
.contact-form-service .wpcf7 textarea {
  width: 100%;

  border: 1px solid #eee;

  background: #f8f8f8;

  padding: 12px;

  font-size: 17px;

  border-radius: 5px;
}

.contact-form-service .cf7-row {
  display: flex;

  gap: 16px;
}

.contact-form-service p {
  margin-bottom: var(--space-24);
}

.contact-form-service .cf7-col {
  flex: 1;
}

.contact-form-service .wpcf7-submit {
  background: #9b1c31 !important;

  color: white !important;

  border: none;

  padding: 15px !important;

  font-size: 14px !important;

  border-radius: 5px;

  cursor: pointer;
  font-weight: 600 !important;
}

.contact-form-service .wpcf7-spinner {
  /* display: none; */
  background-color:#9b1c31 ;
}

/*  */

.contact-info {
  display: flex;

  flex-direction: column;

  justify-content: center;

  height: 100%;

  gap: 140px;
}

.contact-info .small-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.desc {
  margin-bottom: 0;
}
.info-item {
  display: flex;

  gap: 20px;

  align-items: center;
}

.info-item p {
  margin-bottom: 0 !important;
}

.icon-mail img {
  width: 30px;
  height: 25px;
}

.icon-phone img {
  width: 30px;
  height: 30px;
}

.icon-pin img {
  width: 30px;
  height: 36px;
}

.info-item p {
  margin-bottom: 0;
}

.info-item small {
  color: #000;

  font-size: 14px;

  line-height: 1.4em;
}

.info-item-container {
  gap: 32px;

  display: flex;

  flex-direction: column;
}

.info-item a {
  color: #000;
}

.offer-card {
  padding: 0 24px 0 0;
}

.offer-section .card-inner {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.offer-section .card-inner img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/*  */

.offer-section .card-title {
  margin-bottom: 0;
}
.offer-section .card-title a {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
}
.offer-section .card-title a:hover {
  color: #fff;
}

/* Overlay gradient */
.offer-section .card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}

/* Plus Button */
.offer-section .plus-btn {
position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ffff;
    background: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 0;
    line-height: 40px;
    align-content: center;
    align-items: flex-end;
}
.offer-section .plus-btn:hover,
.offer-section .plus-btn:active
{
  border: none;
  background: #fff;
  font-size: 36px;
  color: #000;
}

/* Progress Line */
.offer-section .slider-progress {
  margin-top: 30px;
  height: 2px;
  background: #e5e5e5;
  position: relative;
}

.offer-section .progress-bar {
  height: 100%;
  width: 0;
  background: #c41e3a;
  transition: width 0.3s ease;
}

/* Arrows */
.offer-section .slider-arrows {
  margin-top: 30px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.offer-section .slider-arrows button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #2f2f2f;
    color: #fff;
    font-size: 22px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 37px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    line-height: 50px;
}

/* 
.media-section .media-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.6fr;
  grid-auto-rows: 280px;
  gap: 20px;
} */

/*  */

.media-section .container {
  display: grid;
  gap: 20px;
}
.media-section .custom-grid-top {
  display: grid;
  grid-template-columns: 0.6fr 1fr 0.6fr;
  grid-auto-rows: 280px;
  gap: 20px;
}

.media-section .custom-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 20px;
}

/* General box styling */
.media-section .custom-grid-top a,
.media-section .custom-grid-bottom a,
.video-box {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  object-fit: cover;
}

.media-section .video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 5px;
  overflow: hidden;
  background: #000;
}

.media-section .video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-section .custom-grid-top img,
.media-section .custom-grid-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-section .custom-grid-top img:hover,
.media-section .custom-grid-bottom img:hover {
  transform: scale(1.05);
}

/* Video */
.media-section .video-box iframe {
  width: 100%;
  height: 100%;
}

/* Second row: force 3 equal columns */
/*  */

/*  */
/*  */
.reviews-section{
  display: none !important;
}

.reviews-section .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.reviews-section .review-card {
  background: linear-gradient(
    rgb(255, 255, 255) 0%,
    rgba(155, 28, 49, 0.05) 100%
  );
  padding: 35px;
  border-radius: 5px;

  border: 1px solid #e7c9cd; /* soft pink border */
  margin: 0 15px 0 0;
  min-height: 320px;

  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card p {
  flex-grow: 1;
}

.review-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.reviews-section .review-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.reviews-section .review-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.reviews-section .stars {
  color: #ffb400;
  margin-bottom: 15px;
}

.review-card .stars .icon-review {
  padding-left: 0;
  margin-bottom: 25px;
  margin-top: 25px;
}

.reviews-section .view-all-btn {
  background: #a41d2c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.reviews-section .review-user span {
  font-size: 18px;
  font-weight: 600;
}

.horizontal-line {
  margin-bottom: 0;
  margin-top: 0;
  border-top: 2px solid rgba(109, 110, 112, 0.2);
}

/*  */

.rating {
  display: flex;
  align-items: center;
}

.rating p {
  margin-bottom: 0;
}

.icon-review {
  padding-left: 10px;
  font-size: 17px;
  height: 17px;
}

.reviews-slider .slick-track {
  margin: 0 !important;
}
.reviews-slider .slick-prev,
.reviews-slider .slick-next {
  display: none;
  width: 48px;
  height: 48px;
  background: #d8d8d8;
  border-radius: 50%;
  z-index: 2;
}

.reviews-slider .slick-prev {
  left: -60px;
}

.reviews-slider .slick-next {
  right: -60px;
}

.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
  color: #555;
  font-size: 20px;
  opacity: 1;
}

.reviews-slider .slick-prev:hover,
.reviews-slider .slick-next:hover {
  background: #c9c9c9;
}

.reviews-slider .slick-dots {
  bottom: -57px;
}

.reviews-slider .slick-dots li button:before {
  font-size: 10px;
  color: #e0b6bb; /* light pink */
  opacity: 1;
}

.reviews-slider .slick-dots li.slick-active button:before {
  color: #a61d2d; /* deep brand red */
}

/*  */

.reviews-slider .slick-track {
  display: flex !important;
  margin: 0 -15px;
}

.reviews-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
}

/* Blogs */

.blogs-section .blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.view-all {
  font-size: 14px;
  color: #9b1c31;
  font-weight: 700;
}

.blogs-section .blogs-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.blog-featured {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.blog-featured img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.featured-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: 0;
  bottom: 0;
  padding: 0 0 40px 40px;
  background-color: rgba(0, 0, 0, 0.15);
}

.featured-overlay h3 {
  font-size: 22px;
  line-height: 29px;
  max-width: 80%;
}

.read-more {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  width: fit-content;
  font-size: 14px;
}

.read-more .arrow {
  transition: transform 0.3s ease;
}

.blog-list {
  display: grid;
  gap: 20px;
}

.blog-list.mobile-only {
  display: none;
}

.blog-card {
  background: #fff;
  padding: 30px;
  border-radius: 5px;

  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-end;

  text-decoration: none;
  color: inherit;

  transition: 0.3s ease;
}

.blog-card:hover {
  background: #dedede;
}

.circle-arrow {
  min-width: 55px;
  width: 55px;
  height: 55px;
  background: #a61d2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-overlay .arrow {
  color: #000;
}

.arrow {
  color: #fff;
  font-size: 20px;
  display: inline-block;
  transform: rotate(45deg); /* default diagonal */
  transition: transform 0.3s ease;
}
.blog-card .arrow {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.blog-card:hover .arrow {
  transform: rotate(45deg);
}

.blog-card:hover {
  color: #000;
}

.blogs-section .blog-list p {
  margin-bottom: 0;
}
.blogs-section .blog-list h3 {
  font-size: 22px;
  line-height: 29px;
}

/*  */
.slider-progress {
  position: relative;

  height: 2px;

  background: #e0e0e0;

  margin-top: 40px;
  margin-right: 20px;
}

.slider-progress .locations-mobile-business-progress {
  position: absolute;
  height: 2px;
  width: 0;
  background: #9b1c31;
  transition: width 0.3s ease;
}

/*  */

body.lightbox-open {
  overflow: hidden;
  height: 100vh;
}
html.lb-disable-scrolling {
  overflow: hidden !important;
}

body.lb-disable-scrolling,
html.lb-disable-scrolling {
  overflow: hidden !important;
}

.lb-overlay {
  background: rgba(0, 0, 0, 0.85) !important;
}

.lb-outerContainer {
  max-width: 1100px !important;
  width: 100% !important;
}

.lb-image {
  max-width: 1100px !important;
  max-height: 85vh !important;
  width: auto !important;
  height: auto !important;
}

.lb-container {
  padding: 0 !important;
}

.lb-dataContainer {
  max-width: 1100px;
  margin: 0 auto;
}

/*  */

/* Always show arrows */

.lightboxOverlay {
  background-color: #fff !important;
  opacity: 1 !important;
}

.lb-container {
  border-radius: 5px !important;
}
.lightbox .lb-image {
  border-radius: 5px !important;
  border: 0 !important;
}

.lb-nav {
  top: 50% !important;
}
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 42px !important;
  height: 42px;

  background: #a61d2d !important; /* red from screenshot */
  border-radius: 50%;

  top: 50%;
  transform: translateY(-50%);
}

/* Position */
.lb-nav a.lb-prev {
  left: 30px !important;
  margin-left: 30px;
}

.lb-nav a.lb-next {
  right: 30px !important;
  margin-right: 30px;
}

/* Remove default sprite */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  background-image: none !important;
}

/* Arrow icons */
.lb-nav a.lb-prev:before,
.lb-nav a.lb-next:before {
  content: "";
  width: 12px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
}

/* Left arrow */
.lb-nav a.lb-prev:before {
  transform: rotate(135deg);
}

/* Right arrow */
.lb-nav a.lb-next:before {
  transform: rotate(-45deg);
}

/*  */
.lb-closeContainer {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 9999;
}

.lb-close {
  background: #a61d2d !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;

  opacity: 1 !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background-image: none !important;
}

/* Create X manually */
.lb-close:before,
.lb-close:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
}

.lb-close:before {
  transform: rotate(45deg);
}

.lb-close:after {
  transform: rotate(-45deg);
}

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

  .trusted-partner,
  .locations-section,
  .faq-section,
  .contact-section,
  .offer-section,
  .media-section,
  .reviews-section,
  .blogs-section,
  .benefits-section {
    padding: 60px 0;
  }

  .trusted-partner h2,
  .benefits-section h2,
  .locations-section h2,
  .faq-section h2,
  .offer-section h2,
  .reviews-section h2,
  .blogs-section h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .home-page h3,
  .blogs-section .blog-list h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .home-page p {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-slider img {
    height: 300px;
  }

  .hero-section .custom-list li,
  .hero-section p {
    font-size: 16px;
    line-height: 24px;
  }
  .desktop-only {
    display: none;
  }

  .hero-section .container {
    padding-right: 0;
    padding-left: 0;
  }
  .container {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1000px;
  }

  .locations-section .mobile-only {
    display: flex;
  }

  .locations-section .para {
    margin-bottom: 24px;
  }

  /*  */
  .locations-section {
    padding-right: 0;
  }

  .hero-section .mobile-only {
    padding-top: 30px;
    display: block;
    padding-bottom: 0;
  }
  .hero-section h1 {
      font-size: 22px;
      line-height: 26px;
  }

  .home-page p.large-para {
    font-size: 18px;
    line-height: 26px;
  }

  .hero-slider .slick-dots {
    bottom: -40px;
  }

  .horizontal-line {
    margin-top: 6px;
    border-top: 1px solid #11111159;
  }

  .trusted-partner-inner {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .image-container-wrapper {
    padding: 0 5px;
  }

  .underline-button {
    padding: 15px 0 10px;
  }

  .offer-card {
    padding: 0 24px 0 0;
  }

  .offer-section .container {
    padding-right: 0;
  }

  .offer-section .slider-arrows {
    padding-right: 20px;
  }

  .offer-section .card-inner img {
    height: 400px;
  }

  .benefits-section {
    gap: 40px;
  }

  .benefit-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .benefits-section-inner {
    flex-flow: column;
    gap: 24px;
  }

  .text-container-inner {
    width: 100%;
    gap: 0;
  }
  .image-container {
    width: 100%;
    flex-direction: column;
    flex: 0 0 100;
  }

  .text-container {
    width: 100%;
    flex-direction: column;
    flex: 1111;
  }

  .image-wrapper {
    position: relative;
  }

  .text-first {
    flex-flow: column-reverse;
  }

  .locations-mobile-only .location-card > .d-flex {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .location-card .imgdiv {
    width: 100%;
    height: auto;
  }

  .location-card img {
    height: 365px;
    border-radius: 5px;
    width: auto;
  }
  .location-card.active,
  .location-card:hover {
    background: 0 0;
  }

  .loc-content {
    padding-top: 16px;
  }

  .location-card .d-flex.gap-3 {
    justify-content: space-between;
  }
  .locations-mobile-only .location-card .loc-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .location-card {
    padding: 0 32px 0 0;
    height: 100%;
  }

  .media-section .custom-grid-top.desktop-only,
  .media-section .custom-grid-bottom.desktop-only {
    display: none;
  }

  .media-section .mobile-only {
    display: block;
    margin-right: 0;
    margin-left: 20px;
    border-radius: 5px;
  }

  .media-gallery-slider .slick-list {
    border-radius: 5px;
  }

  .reviews-slider .slick-slide {
    height: 100%;
    display: flex !important;
  }
  .media-gallery-slider .media {
    border-radius: 5px;
    height: 300px;
    padding-right: 20px;
    border-radius: 5px;
    margin-right: 20px;
    overflow: hidden;
  }

  .media-gallery-slider .slick-dots {
    padding-right: 20px;
  }

  .media-gallery-slider .media img {
    width: auto;
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .media-gallery-slider .slick-dots {
    margin-bottom: -10px !important;
  }

  .reviews-slider {
    margin-left: 0;
  }

  .reviews-section .review-card {
    padding: 15px;
  }

  .media-gallery-slider .slick-dots li button:before {
    font-size: 10px;
    color: #e0b6bb;
    opacity: 1;
  }

  .media-gallery-slider .slick-dots li.slick-active button:before {
    color: #a61d2d;
  }

  .reviews-section .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-all-btn {
    margin-top: 24px;
  }

  .reviews-section .container {
    margin: 0;
  }

  .blogs-section .blogs-grid {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .blog-list.mobile-only,
  .blog-list.mobile-only .slick-list {
    display: flex;
  }

  .blog-list.mobile-only .slick-track ,
    .blog-list.mobile-only .slick-slide
  {
    display: flex;
    height: 100%;
  }

  .blog-list.mobile-only .slick-slide {
    border-radius: 5px;
    display: flex;
  }

  .blogs-header h2 {
    margin-bottom: 0;
  }

  .blog-card {
    margin-right: 15px;
    display: flex !important;
  }
  .blog-card:hover {
    background: #fff;
  }

  .blog-featured img {
    height: 350px;
  }

  .contact-section .row {
    margin-right: 0;
    margin-left: 0;
  }

  /*  */

  .contact-section h2 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.02em;
  }

  .contact-section .col-md-6 {
    padding: 0;
  }

  .contact-form-service {
    margin-left: 0;

    margin-right: 0;

    position: relative;
  }

  .contact-section .col-md-6 {
    padding: 0;
  }

  .contact-info {
    gap: 15px;
  }

  .info-item-container {
    gap: 16px;

    padding-bottom: 30px;
  }

  .info-item p {
    margin-bottom: 0 !important;
  }

  .contact-form-service {
    padding: 30px 20px 40px;
  }

  .other-workspace h3 {
    font-size: 22px;

    line-height: 29px;
  }

  .workspace-card {
    padding: 0 20px 0 0;
  }

  /*  */

  .contact-form-service .cf7-row {
    flex-direction: column;
    gap: 0;
  }

  .container {
    max-width: 1140px;
  }

  .contact-info .small-title {
    font-size: 18px;
    line-height: 26px;
  }
}
