* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.navbar {
  height: 10vh;
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo {
  height: 180%;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: #ffffff;
  font-size: 1.2rem; /* Kept the larger font size */
  font-weight: 1000; /* Kept the bolder font-weight */
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #dd4e69;
}

.cta-btn {
  background-color: #dd4e69;
  color: #ffffff;
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 30%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #c1405a;
}

.pushable {
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  outline-offset: 4px;
  outline-color: #dd4e69;
  transition: filter 250ms;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.pushable .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Updated background */
  border-radius: 8px;
  filter: blur(2px);
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  will-change: transform;
}

.pushable .edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(
      to right,
      #b84057 0%,
      #dd4e69 8%,
      #b84057 92%,
      #9c3044 100%
  );
}

.pushable .front {
  position: relative;
  display: block;
  padding: 12px 24px; /* Updated padding */
  border-radius: 8px;
  background: #dd4e69;
  color: #fff;
  font-family: 'Raleway', sans-serif; /* Added font-family */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px; /* Updated letter-spacing */
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
  transform: translateY(-4px);
}

.pushable:hover {
  filter: brightness(1.1); /* Updated filter */
}

.pushable:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.pushable:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

.services-hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: url('img/faded.jpg') center/cover no-repeat; /* Updated background */
  font-family: 'Raleway', sans-serif;
  color: #fff;
}

.services-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 20px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  row-gap: 3rem;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.hero-header {
  text-align: center;
}

.hero-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-header .breadcrumb {
  font-size: 0.9rem;
  color: #bbb;
}

.hero-header .breadcrumb a {
  color: #bbb;
  text-decoration: none;
}

.hero-header .breadcrumb a:hover {
  text-decoration: underline;
}

.services-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services-intro h6 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.5rem;
}

.services-intro h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 4px;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-header .number {
  font-size: 1.6rem;
  margin-right: 1rem;
}

.service-header .line {
  flex: 1;
  height: 1px;
  background: #444;
}

.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

.offer-section {
  padding: 4rem 1rem;
  text-align: center;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  background-color: #000; /* Black background */
}

.offer-header h6 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.offer-header h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.offer-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.offer-card {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  text-decoration: none;
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card:hover img {
  transform: scale(1.05);
}

.offer-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.services-marquee {
  overflow: hidden;
  background-color: #000;
  padding: 2rem 0;
}

.marquee {
  display: flex;
  width: 200%;
  animation: scroll-left 20s linear infinite;
}

.marquee__group {
  display: flex;
  width: 50%;
}

.marquee__item {
  display: flex;
  align-items: center;
  margin-right: 4rem;
  white-space: nowrap;
}

.marquee__arrow {
  width: 8rem;
  height: auto;
  margin-right: 1.5rem;
}

.marquee__text {
  font-size: 8rem;
}

.marquee__text.outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.marquee__text.filled {
  color: #fff;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.benefits-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4rem 0;
  background-color: #000; /* Black background */
  color: #fff;
}

.benefits-image img {
  display: block;
  width: 40vw; /* Much bigger */
  max-width: none;
  height: auto;
  object-fit: cover;
}

.benefits-content {
  flex: 1; /* Added flex property */
  max-width: 600px;
  margin-left: 50rem; /* Adjusted margin for spacing */
}

.benefits-subtitle {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 0.5rem;
}

.benefits-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefit-item {
  margin-bottom: 1.5rem;
}

.benefit-header {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.symbol {
  font-size: 1.2rem;
  width: 1.2rem;
  text-align: center;
  color: #ff7b00;
  margin-right: 0.5rem;
}

.benefit-name {
  font-size: 1.1rem;
}

.benefit-desc {
  display: none;
  margin-top: 0.5rem;
  line-height: 1.6;
  color: #ccc;
}

.benefit-item.active .benefit-desc {
  display: block;
}


.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo img {
  width: 13rem;
  display: block;
  margin-bottom: 24px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 1.5rem;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #dd4e69;
}

.footer-column p,
.footer-column ul li {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #dd4e69;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom-links {
  margin-top: 12px;
}

.footer-bottom-links a {
  color: #888;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

@media (max-width: 48rem) {

  /* SERVICES HERO SECTION - Max width 100% and text adjustments */
  .hero-overlay {
    max-width: 100%; /* Make it take full width on mobile */
    padding: 2rem 1rem; /* Adjust padding for smaller screens */
    row-gap: 1.5rem; /* Reduce gap between rows */
  }

  .hero-header h1 {
    font-size: 2.5rem; /* Smaller heading for mobile */
  }

  .services-intro {
    align-items: center; /* Center intro text for mobile */
    text-align: center;
  }

  .services-intro h2 {
    font-size: 1.8rem; /* Smaller main heading */
    max-width: 100%; /* Allow it to take full width */
  }

  .services-list {
    grid-template-columns: 1fr; /* Stack service items vertically */
    gap: 1.5rem; /* Reduce gap between stacked items */
  }

  .service-item {
    padding: 1.5rem; /* Adjust item padding */
  }

  .service-header .number {
    font-size: 1.4rem; /* Slightly smaller number */
  }

  .service-item h3 {
    font-size: 1.1rem; /* Slightly smaller service title */
  }

  /* WHAT WE OFFER SECTION - Max width 100% and stacking */
  .offer-section {
    padding: 2rem 1rem; /* Adjust padding for mobile */
  }

  .offer-header h2 {
    font-size: 1.8rem; /* Smaller heading */
    margin-bottom: 1.5rem;
  }

  .offer-grid {
    flex-direction: column; /* Stack offer cards vertically */
    gap: 1.5rem; /* Reduce gap between stacked cards */
    align-items: center; /* Center stacked cards */
  }

  .offer-card {
    width: 100%; /* Make card take full width available */
    max-width: 20rem; /* Optional: cap max width for aesthetics (~320px) */
    height: 15rem; /* Adjust height for mobile (~240px) */
  }

  .offer-label {
    font-size: 1.1rem; /* Slightly smaller label */
  }

  /* SCROLLING MARQUEE SECTION - Smaller text */
  .services-marquee {
    padding: 1.5rem 0; /* Smaller vertical padding */
  }

  .marquee__arrow {
    width: 5rem; /* Smaller arrow for mobile */
    margin-right: 1rem;
  }

  .marquee__text {
    font-size: 3rem; /* Significantly smaller text for mobile */
  }

  .marquee__text.outline {
    -webkit-text-stroke: 0.03125rem #fff; /* Thinner stroke */
  }


  /* BENEFITS SECTION - Stack and adjust sizes */
  .benefits-section {
    flex-direction: column; /* Stack image and content */
    padding: 2.5rem 1rem; /* Adjust padding */
    align-items: center; /* Center items */
    gap: 2rem; /* Gap between stacked image and content */
  }

  .benefits-image img {
    width: 80vw; /* Make image take more width on mobile */
    max-width: 20rem; /* Cap max width for image to not be too giant */
  }

  .benefits-content {
    margin-left: 0; /* Remove large fixed margin */
    max-width: 100%; /* Allow content to take full width */
    text-align: center; /* Center content text */
  }

  .benefits-title {
    font-size: 2rem; /* Smaller title */
  }

  .benefits-list {
    text-align: left; /* Keep list items left aligned for readability */
    margin: 0 auto; /* Center list if it has max-width */
    max-width: 25rem; /* Optional: max width for list */
  }

  .benefit-item {
    margin-bottom: 1rem; /* Smaller gap between items */
  }

  .benefit-header {
    justify-content: center; /* Center header content */
  }

  .benefit-desc {
    padding: 0 1rem; /* Add padding to description for better readability */
  }

  /* FOOTER - Stack columns */
  .footer {
    padding: 2.5rem 1rem; /* Adjust footer padding for mobile */
  }

  .footer-container {
    flex-direction: column; /* Stack footer columns */
    gap: 1.5rem; /* Smaller gap between stacked columns */
    text-align: center; /* Center text in columns */
  }

  .footer-logo img {
    margin-left: auto; /* Center logo */
    margin-right: auto;
    width: 10rem; /* Smaller logo */
  }

  .footer-column {
    min-width: unset; /* Remove min-width to allow collapsing */
    width: 100%;
  }

  .footer-column h3 {
    margin-bottom: 0.75rem; /* Smaller margin for headings */
  }

  .footer-column ul li {
    margin-bottom: 0.75rem; /* Smaller margin for list items */
  }

  .footer-social {
    justify-content: center; /* Center social icons */
  }

  .footer-bottom {
    margin-top: 1.5rem; /* Smaller margin top */
    padding-top: 1rem; /* Smaller padding top */
  }

  .footer-bottom-links {
    margin-top: 0.5rem; /* Smaller margin top */
  }
   .services-marquee {
    padding: 1.5rem 0; /* Smaller vertical padding */
  }

  .marquee__arrow {
    width: 4rem; /* Smaller arrow for mobile */
    margin-right: 1rem;
  }

  .marquee__text {
    font-size: 1rem; /* Significantly smaller text for mobile */
  }

  .marquee__text.outline {
    -webkit-text-stroke: 0.03125rem #fff; /* Thinner stroke */
  }
}