/* ===================================
    Fonts
    ================================== */

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/poppins-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/poppins-v24-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ===================================
     CSS Reset & Base Styles
     =================================== */

:root {
  --main-bg-color: #fff5f2; /*faf8f5*/
  --container-size: 85rem;
  --container-padding: 4rem;
  --white: #fff;
  --primary-dark-blue: #3da79b;
  --primary-light-blue: #97d6c9;
  --primary-dark-orange: #f05b40;
  --primary-light-orange: #f68d6a;
  --dark-blue-gray: #2c3e50;
  --main-text-dark: #2d3748;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif; /*Roboto*/
  line-height: 1.6;
  color: #333;
  background-color: var(--main-bg-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===================================
   Header & Navigation
   =================================== */

header {
  background-color: var(--main-bg-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  margin: 0 auto;
  padding: 0.75rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 75px;
  height: auto;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--dark-blue-gray);
  transition: color 0.3s ease;
  font-size: 16px;
}

nav a:hover {
  color: var(--primary-dark-orange);
}

/* ===================================
   Dropdown Styles
   =================================== */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.chevron {
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
  margin-top: 1px;
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  display: block;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
}

/* ===================================
   Hamburger Menu
   =================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-blue-gray);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Headers & Text
   =================================== */

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--main-text-dark);
}

h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--main-text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--main-text-dark);
  line-height: 1.6;
}

/* ===================================
   Sections
   =================================== */

.section-container {
  position: relative;
}
.section-white {
  background-color: var(--white);
}
.section-dark-blue {
  background-color: var(--primary-dark-blue);
  color: var(--white);
}
.section-light-blue {
  background-color: var(--primary-light-blue);
}

/* ===================================
   UTILS
   =================================== */
.flex-align-middle-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.margin-bottom-1 {
  margin-bottom: 1rem !important;
}
.margin-bottom-15 {
  margin-bottom: 1.5rem !important;
}
.margin-bottom-2 {
  margin-bottom: 2rem !important;
}
.margin-bottom-3 {
  margin-bottom: 3rem !important;
}
.margin-bottom-0 {
  margin-bottom: 0px !important;
}
.center-text {
  text-align: center;
}

.flex-center-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

/* ===================================
   Layout
   =================================== */
.spacer {
  padding-bottom: 96px;
}
.spacer-hero {
  padding-bottom: 96px;
}
.footer-spacer {
  padding-bottom: 3rem;
}
.spacer-header {
  padding-bottom: 12rem;
}
.spacer-header-2 {
  padding-bottom: 5rem;
}
.page-container {
  max-width: calc(
    min(100%, var(--container-size)) - var(--container-padding) * 2
  );
  width: 100%;
  position: relative;
}

.our-work-page-container {
  max-width: calc(
    min(100%, var(--container-size)) - var(--container-padding) * 2
  );
  width: 100%;
  position: relative;
}

.container {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* ===================================
   Hero Section
   =================================== */

.hero-bg {
  background-image: url("/assets/images/pool-main.webp");
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 475px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-container {
  display: flex;
  background: var(--primary-light-blue);
  color: #000;
  margin-bottom: 1rem;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
}
.map-marker {
  width: 20px;
  margin-right: 0.5rem;
}

/* ===================================
   Grids
   =================================== */

.one-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.two-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  height: 100%;
}

.three-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  height: 100%;
}

.three-grid-container-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.four-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.three-grid-container-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

/* ===================================
   Buttons and Links
   =================================== */

.cta-button {
  background-color: var(--primary-dark-orange);
  border-radius: 0.5rem;
  border-style: none;
  box-sizing: border-box;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  min-height: 44px;
  min-width: 10px;
  outline: none;
  overflow: hidden;
  padding: 9px 20px 8px;
  position: relative;
  text-align: center;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-light-orange);
}

.cta-link {
  background-color: var(--primary-dark-orange);
  border-radius: 0.5rem;
  border-style: none;
  box-sizing: border-box;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  max-width: none;
  min-height: 44px;
  outline: none;
  overflow: hidden;
  padding: 9px 20px 8px;
  position: relative;
  text-align: center;
  text-transform: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.cta-link:hover {
  background-color: var(--primary-light-orange) !important;
  color: var(--white) !important;
}

/* ===================================
   Why Choose Us - Homepage
   =================================== */

/*why choose us homepage*/
.why-choose-us-container {
  display: flex;
  gap: 32px; /* Space between icon and text */
  align-items: flex-start; /* Aligns icon to top */
}

.why-choose-us-container:not(:last-child) {
  margin-bottom: 2rem;
}

.why-choose-us-icon {
  flex-shrink: 0; /* Prevents icon from shrinking */
  width: 32px; /* Adjust to your icon size */
  height: 32px;
  color: var(--primary-light-blue); /* Your mint color for the icons */
}

.why-choose-us-content {
  flex: 1; /* Takes up remaining space */
}

.why-choose-us-content p {
  margin: 0;
}

.why-choose-us h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-choose-us-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 1rem;
  position: relative;
  background-position: 75%;
  background-image: url(/assets/images/2.webp);
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.image-top {
  width: 90%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%; /* Adjust this percentage to control size */
  height: auto;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

/* Optional: Add some spacing/padding */
.image-container {
  padding-bottom: 40%; /* Creates space for the overlapping image */
}

/* ===================================
   card containers
   =================================== */

.card-container {
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  border: 1px solid rgba(228, 228, 228, 1);
}

.card-container h4,
h3 {
  margin-bottom: 1rem;
  color: var(--main-text-dark);
}

.card-container p {
  margin-bottom: 1rem;
}

.card-container img {
  margin-bottom: 1rem;
  width: 64px;
  height: auto;
}

/* ===================================
   Reviews - Homepage
   =================================== */
.review-container {
  background: var(--white);
}

.review-container-author {
  font-weight: 700;
}

.review-container-quote {
  margin-bottom: 0px !important;
}

.stars-container {
  display: flex;
  margin-bottom: 1rem;
}

.star {
  width: 16px !important;
  margin-bottom: 0px !important;
  height: auto;
}

.icon-svg {
  width: 100%;
  height: auto;
}

/* ===================================
   Services - Homepage
   =================================== */

.hp-service-icon-container {
  background: var(--main-bg-color);
  /* Add flexbox */
  display: flex;
  flex-direction: column;
}

.hp-service-icon-container p {
  flex-grow: 1; /* This pushes the link to the bottom */
  margin-bottom: 1.25rem !important;
}

/* ===================================
   Services - Services
   =================================== */

.offerings-service-container {
  background: var(--main-bg-color);
  display: flex;
  flex-direction: column;
}

.offerings-service-container p {
  flex-grow: 1; /* This pushes the link to the bottom */
}

.offerings-service-container-header {
  font-weight: 700;
  flex-grow: 0 !important;
}

/* ===================================
   Sub Services - Services
   =================================== */
.service-icon-container {
  background: var(--main-bg-color);
}

.service-icon-container:not(:last-child) {
  margin-bottom: 3rem;
}

.service-icon-container-content {
  margin-bottom: 0px !important;
}

.service-icon-container-header {
  font-weight: 700;
}

/* ===================================
   Blog
   =================================== */
.blog-container {
  background: var(--main-bg-color);
  display: flex;
  flex-direction: column;
}

.blog-container:not(:last-child) {
  margin-bottom: 3rem;
}

.blog-container-header {
  flex-grow: 0 !important;
  font-weight: 700;
}

.blog-container p {
  flex-grow: 1; /* This pushes the link to the bottom */
}

.blog-hr {
  margin: 3rem 0px;
}

.blog-content-container h2 {
  margin-bottom: 2rem !important;
}

.blog-list {
  list-style: initial;
  margin: initial;
  padding: 0 0 0 40px;
}

.blog-link {
  color: var(--primary-dark-orange);
}

.blog-link:hover {
  text-decoration: underline;
}

/* ===================================
   Contact Us
   =================================== */
.contact-form-container {
  background: var(--main-bg-color);
}

/* ===================================
   Contact Us - Homepage
   =================================== */
.form-container {
  display: flex;
  flex-direction: column;
}
input {
  border-radius: 0.5rem;
  border: 1px solid rgba(228, 228, 228, 1);
  padding: 8px;
  font-size: 16px;
  height: auto;
  box-shadow: none;
  margin-bottom: 16px;
  height: 42px;
  font-family: "Poppins", sans-serif; /*Roboto*/
}

label {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

textarea {
  resize: none;
  border-radius: 0.5rem;
  border: 1px solid rgba(228, 228, 228, 1);
  padding: 8px;
  font-size: 16px;
  font-family: "Poppins", sans-serif; /*Roboto*/
}

/* ===================================
   Services - Gallery
   =================================== */

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* Arrow Buttons */
.arrow-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--primary-dark-orange);
  background: var(--primary-dark-orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.arrow-btn:hover {
  background-color: var(--primary-light-orange) !important;
  color: var(--white) !important;
  border-color: var(--primary-light-orange);
}

.arrow-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Carousel Container */
.carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  /* gap: 1rem; */
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  transform: translateZ(0);
}

/* Cards */
.carousel-item {
  flex-shrink: 0;
  /* width: calc((100% - 32px) / 3); */
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  height: 450px;
}

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

/* Dot indicators */
.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--primary-dark-orange);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--primary-dark-orange);
  transform: scale(1.25);
}

/* ===================================
   Quote - About, Services
   =================================== */

.quote-container {
  text-align: center;
}

.quote-container h3 {
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 2rem;
  color: var(--white);
}

/* ===================================
   Footer
   =================================== */

footer {
  background-color: var(--dark-blue-gray);
  margin-top: auto;
  font-size: 14px !important;
}

.footer-content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 100px;
  margin-bottom: 2rem;
  height: auto;
}

.fspa-logo {
  width: 200px;
  height: auto;
}

footer p {
  color: var(--white);
}

footer a {
  color: var(--white);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

footer a:hover {
  text-decoration: underline;
}

.footer-header {
  font-weight: 700;
  margin-bottom: 2rem !important;
}

footer hr {
  margin: 2rem 0px;
}

/* ===================================
   FAQ - Services
   =================================== */
.accordion {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(228, 228, 228, 1);
}

.accordion-item {
  border-bottom: 1px solid rgba(228, 228, 228, 1);
}

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

.accordion-header {
  background-color: var(--white);
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  margin-bottom: 0px !important;
}

.accordion-title {
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
}

.accordion-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding: 0rem 2rem 2rem 2rem;
  background-color: var(--white);
  color: var(--main-text-dark);
  line-height: 1.6;
}

/* When checkbox is checked, expand content and rotate icon */
.accordion-checkbox {
  display: none;
}

.accordion-checkbox:checked ~ .accordion-content {
  max-height: 500px;
}

.accordion-checkbox:checked ~ .accordion-header .accordion-icon {
  transform: rotate(90deg);
}

/* ===================================
   Scroll Modal
   =================================== */

/* Modal overlay */
.scroll-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-modal-overlay.show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-modal-overlay.fade-in {
  opacity: 1;
}

.scroll-modal {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.scroll-modal-overlay.fade-in .scroll-modal {
  transform: scale(1);
}

.scroll-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.scroll-modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.scroll-modal h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--main-text-dark);
}

.scroll-modal p {
  margin-bottom: 1.2rem;
  color: var(--main-text-dark);
  line-height: 1.6;
}

/* ===================================
   Misc
   =================================== */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

th {
  background-color: var(--dark-blue-gray);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

tr:hover {
  background-color: #f8f9fa;
}

tr:last-child td {
  border-bottom: none;
}

.faq-link {
  color: var(--primary-dark-orange);
}

.faq-link:hover {
  text-decoration: underline;
}

/* ===================================
   About Us - About
   =================================== */
.about-us-img {
  border-radius: 1rem;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.team-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1rem;
  width: 100%;
  height: 400px;
  margin-bottom: 1rem;
}

@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5rem;
  }

  .spacer {
    padding-bottom: 64px;
  }

  .four-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .three-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    height: 100%;
  }
}

@media screen and (max-width: 900px) {
  nav {
    padding: 0.75rem 2rem;
  }

  .hamburger {
    display: flex;
  }

  nav > ul,
  nav .cta-button {
    display: none;
  }

  nav > ul.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--main-bg-color);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 1000;
    overflow-y: auto;
  }

  nav > ul.active li {
    width: 100%;
    text-align: center;
  }

  nav > ul.active a {
    font-size: 1.5rem;
    display: block;
    padding: 1rem;
  }

  /* Mobile dropdown styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0.5rem 0 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown > a {
    justify-content: center;
  }

  .dropdown-menu a {
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
  }

  .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  nav > ul.active .cta-button {
    display: block;
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 750px) {
  .two-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    height: 100%;
  }

  .three-grid-container-reviews {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .mobile-center {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .arrow-btn {
    width: 38px;
    height: 38px;
  }
  .arrow-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 650px) {
  .three-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    height: 100%;
  }
}

@media screen and (max-width: 600px) {
  .four-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .three-grid-container-footer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }

  .spacer-header {
    padding-bottom: 8rem;
  }
}

@media screen and (max-width: 450px) {
  .three-grid-container-footer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }

  .one-grid-container {
    display: block;
  }

  .spacer-header-2,
  .spacer-hero {
    padding-bottom: 3rem;
  }

  nav > ul.active a {
    font-size: 1.25rem;
    padding: 1rem;
  }

  .scroll-modal {
    padding: 1.25rem;
  }

  .scroll-modal h2 {
    margin-top: 1.25rem;
  }

  .service-gallery-image {
    height: 350px;
  }

  .carousel-wrapper {
    gap: 0.5rem;
  }

  .carousel-item {
    height: 300px;
  }

  .arrow-btn {
    width: 30px;
    height: 30px;
  }
  .arrow-btn svg {
    width: 14px;
    height: 14px;
  }

  .team-image {
    height: 350px;
  }
}
