@font-face {
  font-family: neu;
  src: url(./NeueHaasDisplayMediu.ttf);
}

@font-face {
  font-family: neu;
  font-weight: 100;
  src: url(./NeueHaasDisplayLight.ttf);
}

@font-face {
  font-family: neu;
  font-weight: 200;
  src: url(./NeueHaasDisplayRoman.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: neu;
  /* Set default text color to white for the dark theme */
  color: #ffffff;
}

html,
body {
  height: auto;
  min-height: 100%;
  overflow: visible !important;
}

#main {
  min-height: 100%;
  overflow: visible;
  position: relative;
}

#page1 {
  min-height: 100vh;
  width: 100%;
  /* background-color: #EFEAE3; */
  background-color: #000000; /* Main page background: BLACK */
  position: relative;
  padding: 0 2vw;
}

nav {
  padding: 2vw 0vw;
  width: 100%;
  /* background-color: red; */
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  justify-content: space-between;
}

/* Invert the Sundown logo to white if it's an SVG */
nav img {
  /* Assuming the logo is an SVG, invert it to white */
  filter: invert(1);
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  /* border: 1px solid #0000003c; */
  border: 1px solid #333333; /* Dark gray border */
  border-radius: 50px;
  /* font-weight: 500; */
  /* color: #000000bb; */
  color: #ffffff; /* White text */
  transition: all ease 0.4s;
  position: relative;
  font-size: 18px;
  overflow: hidden;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  /* background-color: black; */
  background-color: #1a1a1a; /* Dark gray fill for hover effect */
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  /* color: #000000bb; */
  color: #ffffff; /* White link text */
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4:hover a {
  color: #ffffff; /* Keep white text on hover */
}

nav h3 {
  display: none;
}

#center {
  height: 65vh;
  width: 100%;
  /* background-color: orange; */
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  /* border-bottom: 1px solid #0000003c; */

  padding-bottom: 2.5vw;
}

#left h3 {
  width: 25vw;
  font-size: 1.8vw;
  line-height: 2vw;
  color: #cccccc; /* Light gray for secondary/less important text */
}

#center h1 {
  font-size: 10vw;
  text-align: right;
  line-height: 8vw;
  color: #ffffff; /* Pure white for main heading */
}

#page1 video {
  position: relative;
  border-radius: 30px;
  margin-top: 4vw;
  width: 100%;
  /* Optional: Ensure the video is monochromatic if not already */
  /* filter: grayscale(100%); */
}

#hero-shape {
  position: absolute;
  width: 46vw;
  height: 36vw;
  right: 0;
  top: 65vh;
}

/* Remove the bright orange/red from the hero shapes for a minimal look, use dark gray or remove them entirely */
#hero-1 {
  /* background-color: #FE320A; */
  background-color: #1a1a1a; /* Dark Gray for the blurred shape */
  height: 100%;
  width: 100%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  filter: blur(10px);
  position: absolute;
  z-index: -1;
}

#hero-2 {
  /* background: linear-gradient(#FE320A, #fe3f0a); */
  background: linear-gradient(#333333, #1a1a1a); /* Dark Gray Gradient */
  height: 30vw;
  width: 30vw;
  border-radius: 50%;
  position: absolute;
  animation-name: anime2;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  filter: blur(25px);
  z-index: -1;
}

#hero-3 {
  /* background: linear-gradient(#FE320A, #fe3f0a); */
  background: linear-gradient(#333333, #1a1a1a); /* Dark Gray Gradient */
  height: 30vw;
  position: absolute;
  width: 30vw;
  border-radius: 50%;
  filter: blur(25px);
  animation-name: anime1;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  z-index: -1;
}

@keyframes anime1 {
  from {
    transform: translate(55%, -3%);
  }

  to {
    transform: translate(0%, 10%);
  }
}

@keyframes anime2 {
  from {
    transform: translate(5%, -5%);
  }

  to {
    transform: translate(-20%, 30%);
  }
}

#page2 {
  min-height: 100vh;
  width: 100%;
  /* background-color: #EFEAE3; */
  background-color: #000000; /* Main page background: BLACK */
  padding: 8vw 0;
  position: relative;
}

#moving-text {
  overflow-x: auto;
  white-space: nowrap;
}

#moving-text::-webkit-scrollbar {
  display: none;
}

.con {
  white-space: nowrap;
  display: inline-block;
  animation-name: move;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

#moving-text h1 {
  font-size: 9vw;
  /* background-color: lightblue; */
  display: inline-block;
  color: #ffffff;
}

#gola {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: inline-block;
  /* background-color: #FE320A; */
  background-color: #ffffff; /* White separator circles */
  margin: 1vw 2vw;
}

@keyframes move {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

#page2-bottom {
  /* Keeping general layout */
  height: 80vh;
  width: 100%;
  padding: 4.5vw;
  display: flex;
  align-items: center; /* Vertically center aligned */
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

#page2-bottom h1 {
  font-size: 4vw;
  /* MODIFIED: Reduce width to 55% to give space to the right column */
  width: 55%;
  line-height: 4.5vw; /* Slightly increased line height for better readability */
  color: #ffffff;
  /* Add padding-right to separate it visually from the right column */
  padding-right: 3vw;
}

#bottom-part2 {
  /* MODIFIED: Increased width from 20% to 35% for a better layout */
  width: 35%;
}

#bottom-part2 img {
  width: 100%;
  /* Optional: Grayscale the image for the minimal theme */
  filter: grayscale(100%);
  border-radius: 15px;
}

#bottom-part2 p {
  font-weight: 200;
  margin-top: 2vw;
  /* MODIFIED: Increased font size for better readability next to the heading */
  font-size: 1.15vw;
  line-height: 1.7vw; /* Add line height for readability */
  color: #cccccc; /* Light gray for paragraph text */
}

/* --- Gooey Effect (Unchanged but included for context) --- */
#page2 #gooey {
  height: 32vw;
  width: 32vw;
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to top right, #333333, #1a1a1a);

  top: 58%;
  left: 25%;
  filter: blur(20px);
  animation-name: gooey;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
/* --- PAGE 3 (SERVICES) MODIFICATIONS --- */

#page3 {
  min-height: 100vh;
  width: 100%;
  background-color: #000000; /* Main page background: BLACK */
  padding: 4vw 0;
}

.elem {
  /* MODIFIED: Increased min-height to accommodate all text */
  height: auto;
  min-height: 180px;
  width: 100%;
  position: relative;
  /* Dark gray separator */
  border-bottom: 1px solid #333333;
  overflow: hidden;
  display: flex;
  /* Align items to the start of the container */
  align-items: flex-start;
  /* MODIFIED: Increased padding for more breathing room */
  padding: 3vw 2vw;
  flex-direction: column; /* Stack content vertically */
  justify-content: center;
}

/* NEW: Styles for the content container inside .elem */
.elem-content {
  position: relative;
  z-index: 9;
  width: 100%;
}

.elem-content h2 {
  /* MODIFIED: Reduced size from 3vw for less horizontal overflow, kept bold */
  font-size: 3vw;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.8vw;
  line-height: 1.1;
}

.elem-content p {
  /* Styles for the service description text */
  font-size: 1.25vw;
  color: #cccccc; /* Light gray for description */
  width: 80%; /* Ensure text doesn't run too wide */
  line-height: 1.5;
  margin-bottom: 1vw;
  font-weight: 200;
}

.service-link {
  /* Styles for the "View Details" link */
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1vw;
  font-weight: 500;
  transition: color 0.3s ease;
  width: fit-content;
}

.service-link:hover {
  color: #aaaaaa;
}

/* Revert to the original top-to-bottom overlay animation */
.elem .overlay {
  height: 100%;
  width: 100%;
  /* Dark gray overlay on hover */
  background-color: #1a1a1a;
  position: absolute;
  left: 0;
  /* REVERTED: Hide the overlay at the top */
  top: -100%;
  transition: all ease 0.35s; /* Slightly slower transition for smoothness */
  z-index: 1;
}

.elem:hover .overlay {
  /* REVERTED: Drop the overlay down */
  top: 0;
}

/* Keep the rest of the fixed/image styles as they were */
#fixed-image {
  height: 30vw;
  width: 24vw;
  border-radius: 15px;
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 25%;
  display: none;
  background-size: cover;
  background-position: center;
}

/* --- PAGE 4 (TESTIMONIALS) MODIFICATIONS --- */
#page4 {
  /* Remove excessive bottom padding since dots are gone */
  height: fit-content; /* Slightly reduced height */
  width: 100%;
  background-color: #000000;
  /* Reduced bottom padding */
  padding: 8vw 2vw 4vw 2vw;
  position: relative;
}

.swiper {
  width: 100%;
  /* let height adjust automatically */
  padding: 0;
}

.swiper-wrapper {
  display: flex;
  gap: 2vw; /* space between slides */
}

.swiper-slide {
  /* Remove fixed width, let Swiper handle slidesPerView */
  flex: 1 0 auto; /* allow slides to grow and shrink */
  padding: 2vw;
  background-color: #000000;
  border: 1px solid #333333;
  color: #ffffff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  /* Make all slides same height */
  height: 100%;
  box-sizing: border-box;
}

/* Optional: make font scale a bit better */
.swiper-slide .quote {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 200;
  margin-bottom: 1.5rem;
}

.swiper-slide .client-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cccccc;
}

/* --- Mobile Styles Adjustment for Page 4 --- */
@media (max-width: 600px) {
  #page4 {
    height: auto;
    /* Remove padding intended for dots */
    padding: 10vw 0 5vw 0;
  }

  .swiper {
    padding: 0;
  }

  .swiper-slide {
    padding: 6vw;
    width: 85% !important;
    margin: 0 5vw;
  }
}

/* --- FOOTER FIX - Replace your existing footer styles with this --- */

#page5 {
  min-height: 60vh; /* Changed from fit-content */
  width: 100%;
  background-color: #000000;
}

#footer {
  position: relative;
  height: auto;
  width: 100%;
  background-color: #000;
  color: #fff;
  z-index: 10; /* Increased z-index */
  bottom: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 4vw 8vw 4vw 8vw; /* Added top padding */
  margin-top: 0; /* Ensure no negative margin */
}

#footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2vw;
  border-bottom: 1px solid #333333;
}

#footer-links {
  display: flex;
  gap: 3vw;
}

#footer-links h4 {
  margin: 0;
  padding: 0;
}

#footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1vw;
  font-weight: 200;
  transition: color 0.3s;
}

#footer-links a:hover {
  color: #cccccc;
}

#footer-social {
  display: flex;
  gap: 1.5vw;
}

#footer-social a {
  color: #ffffff;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

#footer-social a:hover {
  color: #cccccc;
}

#footer h1 {
  display: none;
}

#footer-div {
  display: none;
}

#footer-bottom {
  border-top: none;
  height: auto;
  width: 100%;
  padding-top: 2vw; /* Increased padding */
  text-align: center;
}

#footer-bottom p {
  margin: 0;
  color: #cccccc;
  font-size: 0.9vw;
}

/* Remove any conflicting full-screen elements */
#full-scr {
  height: 100vh;
  width: 100%;
  background-color: #000000;
  position: fixed;
  z-index: 999; /* Higher than footer */
  top: -100%;
  transition: all ease 0.5s;
  pointer-events: none; /* Don't block clicks when hidden */
}

#full-scr.active {
  top: 0;
  pointer-events: all;
}

#full-div1 {
  height: 50%;
  width: 100%;
  background-color: #1a1a1a;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Mobile Footer Styles */
@media (max-width: 600px) {
  #page5 {
    min-height: 30vh;
    padding: 8vw 5vw;
  }

  #footer {
    padding: 10vw 5vw 8vw 5vw;
    z-index: 10;
  }

  #footer-top {
    flex-direction: column;
    gap: 5vw;
    text-align: center;
    padding-bottom: 5vw;
  }

  #footer-links {
    flex-direction: column;
    gap: 3vw;
    align-items: center;
  }

  #footer-links a {
    font-size: 4vw;
  }

  #footer-social {
    gap: 5vw;
    justify-content: center;
  }

  #footer-bottom {
    padding-top: 5vw;
  }

  #footer-bottom p {
    font-size: 3vw !important;
  }
}

/* Tablet Footer Styles */
@media (min-width: 601px) and (max-width: 1024px) {
  #footer {
    padding: 6vw 6vw 5vw 6vw;
  }

  #footer-links a {
    font-size: 1.5vw;
  }

  #footer-bottom p {
    font-size: 1.2vw !important;
  }
}

#full-scr {
  height: 100vh;
  width: 100%;
  /* background-color: #00000070; */
  background-color: #000000; /* Solid black for full-screen menu */
  position: fixed;
  z-index: 99;
  top: -100%;
  transition: all ease 0.5s;
}

#full-div1 {
  height: 50%;
  width: 100%;
  /* background-color: #EFEAE3; */
  background-color: #1a1a1a; /* Dark gray background for full-div1 */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (max-width: 600px) {
  #page1 {
    min-height: 100vh;
    width: 100vw;
    padding: 0 0vw;
  }

  nav {
    padding: 8vw 5vw;
    /* background-color: #EFEAE3; */
    background-color: #000000; /* Black for mobile nav */
    /* padding: 0 5vw; */
  }

  nav img {
    transition: all ease 0.2s;
    height: 9vh;
  }

  #nav-part2 {
    display: none;
  }

  nav h3 {
    display: block;
    padding: 3vw 5vw;
    /* border: 1px solid #ababab; */
    border: 1px solid #333333; /* Dark gray border */
    border-radius: 50px;
    font-size: 4vw;
    font-weight: 200;
    padding-left: 10vw;
    color: #ffffff;
  }

  #center {
    height: 62vh;
    width: 100%;
    /* background-color: orange; */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /* border-bottom: 1px solid #0000003c; */
    border-bottom: 1px solid #333333; /* Dark gray separator */
    padding: 7vw 5vw;
    padding-bottom: 10vw;
    flex-direction: column-reverse;
    position: relative;
    z-index: 9;
  }

  #left h3 {
    width: 80%;
    font-size: 5.5vw;
    line-height: 6vw;
    color: #cccccc;
  }

  #center h1 {
    font-size: 17vw;
    text-align: right;
    line-height: 15vw;
    color: #ffffff;
  }

  #page1 video {
    position: relative;
    border-radius: 15px;
    margin-top: 4vw;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    width: 92%;
    margin-left: 4%;
  }

  #page2 {
    min-height: 100vh;
    width: 100%;
    /* background-color: #EFEAE3; */
    background-color: #000000; /* Black */
    padding: 8vw 0;
    position: relative;
  }

  /* ... moving-text styles remain the same ... */

  #gola {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    /* background-color: #FE320A; */
    background-color: #ffffff; /* White circles */
    margin: 2vw 2vw;
  }

  #page2-bottom {
    height: 90vh;
    width: 100%;
    /* background-color: aliceblue; */
    padding: 10vw 4vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
    z-index: 9;
  }

  #page2-bottom h1 {
    font-size: 8.2vw;
    width: 100%;
    line-height: 9vw;
    color: #ffffff;
  }

  #bottom-part2 {
    width: 70%;
    /* background-color: aqua; */
  }

  #bottom-part2 img {
    width: 100%;
    border-radius: 10px;
  }

  #bottom-part2 p {
    font-weight: 200;
    margin-top: 2vw;
    font-size: 3vw;
    color: #cccccc;
  }

  #page2 #gooey {
    height: 62vw;
    width: 62vw;
    position: absolute;
    border-radius: 50%;
    /* background: linear-gradient(to top right, #ff2d03, #ff5c0b); */
    background: linear-gradient(
      to top right,
      #333333,
      #1a1a1a
    ); /* Dark Gray Gradient */

    top: 58%;
    left: 25%;
    filter: blur(20px);
    animation-name: gooey;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
  }
}

/* Loader is the most complicated color change */
#loader {
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 999;
  top: 0;
  transition: all ease 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader h1 {
  font-size: 4vw;
  color: transparent;
  /* Use a clean white/light gray gradient instead of orange/red */
  /* background: linear-gradient(to right,orange,orangered); */
  background: linear-gradient(to right, #ffffff, #cccccc);
  -webkit-background-clip: text;
  position: absolute;
  opacity: 0;
  animation-name: load;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: linear;
}
#loader h1:nth-child(2) {
  animation-delay: 2s;
}
#loader h1:nth-child(3) {
  animation-delay: 3s;
}

@keyframes load {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  #loader h1 {
    font-size: 9vw;
  }
}

/* NEW CLASS: Button style for 'Contact Us' (like old nav links) */
.nav-button {
  padding: 10px 20px;
  border: 1px solid #ffffff; /* White border */
  border-radius: 50px;
  font-weight: 500;
  color: #ffffff;
  transition: all ease 0.4s;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
}

.nav-button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ffffff; /* White fill on hover */
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}

.nav-button:hover::after {
  bottom: 0;
  border-radius: 0;
}

.nav-button a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 9;
  display: block;
  padding: 0;
}

.nav-button:hover a {
  color: #000000; /* Black text on white hover */
}

/* Enhanced Testimonials Styles - Add this to your existing style.css */

/* Testimonials Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 5vw;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header h2 {
  font-size: 5vw;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2vw;
}

.testimonials-header p {
  font-size: 1.5vw;
  line-height: 2.2vw;
  color: #cccccc;
  font-weight: 200;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 3vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #0f0f0f;
  left: 0;
  top: 100%;
  transition: all ease 0.4s;
  z-index: 1;
}

.testimonial-card:hover::after {
  top: 0;
}

.testimonial-card > * {
  position: relative;
  z-index: 2;
}

.testimonial-card:hover {
  border-color: #555555;
  transform: translateY(-5px);
}

.quote-icon {
  color: #333333;
  margin-bottom: 2vw;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc;
  font-weight: 200;
  margin-bottom: 2vw;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-bottom: 1.5vw;
}

.client-avatar {
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2vw;
  color: #ffffff;
  font-weight: 500;
  border: 1px solid #333333;
}

.client-name {
  font-size: 1.2vw;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.3vw;
}

.client-role {
  font-size: 0.9vw;
  color: #888888;
  font-weight: 200;
}

.rating {
  display: flex;
  gap: 0.3vw;
  font-size: 1.2vw;
  color: #ffffff;
}

/* Testimonials Stats */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
  max-width: 1200px;
  margin: 5vw auto 0 auto;
  padding: 0 2vw;
}

.testimonials-stats .stat {
  text-align: center;
  padding: 3vw 2vw;
  background-color: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 10px;
  transition: all ease 0.3s;
}

.testimonials-stats .stat:hover {
  border-color: #ffffff;
  transform: translateY(-5px);
}

.testimonials-stats .stat h3 {
  font-size: 4vw;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1vw;
}

.testimonials-stats .stat p {
  font-size: 1.1vw;
  color: #cccccc;
  font-weight: 200;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 600px) {
  .testimonials-header {
    margin-bottom: 8vw;
  }

  .testimonials-header h2 {
    font-size: 10vw;
    margin-bottom: 4vw;
  }

  .testimonials-header p {
    font-size: 4vw;
    line-height: 6vw;
  }

  .testimonial-card {
    padding: 6vw;
  }

  .quote-icon {
    margin-bottom: 4vw;
  }

  .quote-icon svg {
    width: 50px;
    height: 50px;
  }

  .testimonial-card .quote {
    font-size: 3.8vw;
    line-height: 1.6;
    margin-bottom: 4vw;
  }

  .client-info {
    gap: 3vw;
    margin-bottom: 3vw;
  }

  .client-avatar {
    width: 12vw;
    height: 12vw;
    font-size: 4vw;
  }

  .client-name {
    font-size: 4vw;
    margin-bottom: 1vw;
  }

  .client-role {
    font-size: 3vw;
  }

  .rating {
    gap: 1vw;
    font-size: 4vw;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 5vw;
    margin-top: 8vw;
  }

  .testimonials-stats .stat {
    padding: 6vw 4vw;
  }

  .testimonials-stats .stat h3 {
    font-size: 12vw;
    margin-bottom: 2vw;
  }

  .testimonials-stats .stat p {
    font-size: 3.5vw;
  }
}

/* Tablet Responsive for Testimonials */
@media (min-width: 601px) and (max-width: 1024px) {
  .testimonials-header h2 {
    font-size: 6vw;
  }

  .testimonials-header p {
    font-size: 2vw;
    line-height: 3vw;
  }

  .client-avatar {
    width: 5vw;
    height: 5vw;
    font-size: 1.8vw;
  }

  .client-name {
    font-size: 1.8vw;
  }

  .client-role {
    font-size: 1.3vw;
  }

  .testimonials-stats {
    gap: 4vw;
  }

  .testimonials-stats .stat h3 {
    font-size: 5vw;
  }

  .testimonials-stats .stat p {
    font-size: 1.5vw;
  }
}

html,
body {
  height: 100%;
  overflow: hidden; /* Locomotive controls scrolling */
}

#main {
  position: relative;
  overflow: hidden;
}

[data-scroll-container] {
  min-height: 100vh;
}
