/* ===== Reset básico y estilo global ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
  }
  @font-face {
  font-family: 'Runner';
  src: url('../fonts/Runner.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
/* botones fixed */

/* Botón de llamada */
.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #fada0b;
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(250, 218, 11, 0.5);
  z-index: 1000;
  font-size: 20px;
}

/* Botón scroll top */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  cursor: pointer;
  padding: 0;
  font-size: 18px;
}

/* Progress ring SVG */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring .bg {
  fill: none;
  stroke: #ddd;
}

.progress-ring .progress {
  fill: none;
  stroke: #2bc4e3;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  transition: stroke-dashoffset 0.2s linear;
}
.floating-social {
  position: fixed;
  bottom: 170px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #2bc4e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(43, 196, 227, 0.5);
  z-index: 1000;
  font-size: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.floating-social:hover {
  background-color: #2bc4e3;
  color: #fff;
}


/* cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #fff;
  padding: 15px 20px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner a {
  color: #2bc4e3;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #fada0b;
  color: #111;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #cf7e2b;
  color: white;
}
/* pop-up */
#roofPopup {
  display: none; /* Muy importante */
}

.roof-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  padding: 30px 25px;
  border-radius: 20px;
  max-width: 320px;
  width: 90%;
  z-index: 9999;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  animation: borderRainbow 5s linear infinite;
  border: 4px solid transparent;
  background-clip: padding-box;
}

.popup-content h2 {
  font-size: 22px;
  color: #fada0b;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popup-content p {
  font-size: 15px;
  color: #ccc;
  text-align: center;
  margin-bottom: 20px;
}

.popup-call-btn {
  display: block;
  background: #fada0b;
  color: #111;
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.popup-call-btn:hover {
  background: #cf7e2b;
  color: #fff;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

@keyframes borderRainbow {
  0% { box-shadow: 0 0 0 4px #ff0055; }
  25% { box-shadow: 0 0 0 4px #00ff99; }
  50% { box-shadow: 0 0 0 4px #0099ff; }
  75% { box-shadow: 0 0 0 4px #ffcc00; }
  100% { box-shadow: 0 0 0 4px #ff0055; }
}

  /* Styles for reviews icon facebook y google */
.rating-boxes {
  display: flex;
  gap: 20px;
  font-family: Arial, sans-serif;
  justify-content: center;
  padding: 40px clamp(16px, 5vw, 60px); /* margen horizontal adaptable */
  flex-wrap: wrap;
  box-sizing: border-box;
}

.rating-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px 35px;
  text-align: center;
  width: 220px;
  height: 233px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.rating-card:hover {
  transform: scale(1.05);
}

.rating-title {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
  font-weight: bold;
}

.rating-score {
  font-size: 38px;
  font-weight: bold;
  color: #fcb62a;
  margin-bottom: 10px;
}

.logo {
  width: 75px;
  height: auto;
}

.google-logo {
  width: 130px;
  margin-top: 2px;
}

/* Responsive: stack cards on small screens */
@media (max-width: 500px) {
  .rating-boxes {
    flex-direction: column;
    align-items: center;
  }

  .rating-card {
    min-width: 250px;
    max-width: 300px;
  }

  .logo, .google-logo {
    width: 100px;
  }
}

/*Styles for Videos*/
.video-scroll-container {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 16px;
  scroll-snap-type: x mandatory;
  padding: 20px;
  background: #101010;
}

.video-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
}
.video-card iframe {
  width: 100%;
  height: 180px;
}

/* Styles for incons facebook y google end */
.numbersloc{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
/* Styles for Reviews on Index */

.carousel-container {
  width: 1260px; /* 3 cards * 420px */
  overflow: hidden;
  margin: auto;
  position: relative;
  padding-bottom: 30px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 400px;
  max-width: 400px;
  margin: 0 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
}

.testimonial-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tag {
  position: absolute;
  background: #222; /* fondo oscuro para mejor contraste */
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  top: 12px;
  left: 12px;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.tag:empty {
  display: none;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}

.avatar {
  background: #555;
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.avatar.blue { background: #1e88e5; }
.avatar.green { background: #43a047; }
.avatar.orange { background: #fb8c00; }
.avatar.red { background: #e53935; }
.avatar.purple { background: #8e24aa; }

.stars {
  color: #ffc107;
  font-size: 16px;
}

.testimonial-card p,
.testimonial-card strong,
.testimonial-card em {
  color: #222;
}

.testimonial-card p {
  padding: 0 15px 20px;
  font-size: 14px;
}

.testimonial-card em {
  color: #0066cc;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
}


/* Responsive adjustments */
@media (max-width: 1260px) {
  .carousel-container {
    width: 840px; /* 2 cards * 420px */
  }
}

@media (max-width: 860px) {
  .carousel-container {
    width: 420px; /* 1 card */
  }
}

@media (max-width: 480px) {
  .carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 0 16px 35px;
  }

  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .testimonial-card {
    min-width: calc(100% - 32px); /* 100% menos padding lateral */
    max-width: calc(100% - 32px);
    margin: 0 16px;
    box-sizing: border-box;
  }
}

/* Styles for Befor&After Start */


.before-after-section{
  background-color: #f9f9f9;
  padding-bottom: 35px;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-family: 'Runner', sans-serif;
  font-weight: normal; /* depende de cómo está embebida la fuente */
  color: #1a2e63; /* azul profundo del logo */
  margin-bottom: 10px;
}


.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #fdb813; /* amarillo del logo */
  color: #111;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e2a600;
}

.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px clamp(20px, 5vw, 80px);
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
}

.before-after-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.before-after-card:hover {
  transform: scale(1.03);
}

.before-after-card img {
  width: 100%;
  height: auto;
  display: block;
}

.label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #1a2e63; /* azul del logo */
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.label.before {
  background-color: #555; /* gris oscuro para 'before' */
}

.label.after {
  background-color: #fdb813; /* amarillo del logo */
  color: #000;
}
/* Animación */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estado inicial oculto */
.before-after-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Cuando se hace visible */
.before-after-card.show {
  animation: fadeUp 0.6s ease forwards;
}


/* Section for Roof Types Start */
.roof-types {
  padding: 40px clamp(16px, 5vw, 60px);
  font-family: Arial, sans-serif;
  background-color: #fdfdfd;
}

.roof-types h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a2e63;
  font-weight: 700;
}

.roof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.roof-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 10px;
  transition: transform 0.2s ease;
}

.roof-item:hover {
  transform: translateY(-5px);
}

.roof-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.roof-item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}



/* Section for Benefits Start */
.benefits-section {
  background-color: #121212;
  color: #f1f1f1;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-title-dark {
  text-align: center;
  font-size: 32px;
  color: #fdb813;
  margin-bottom: 40px;
  font-weight: 800;
}

.benefit-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #1c1c1c;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  gap: 0;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-card img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.benefit-content {
  width: 60%;
  padding: 30px;
  box-sizing: border-box;
}

.benefit-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.benefit-content p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.highlight {
  background-color: #fdb813;
  color: #111;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 768px) {
  .benefit-card {
    flex-direction: column;
  }

  .benefit-card img {
    width: 100%;
  }

  .benefit-content {
    width: 100%;
    padding: 20px;
  }
}



/* style for claim offer free consultation */

@font-face {
  font-family: 'Runner';
  src: url('fonts/Runner.otf') format('opentype');
}

.claim-section {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.claim-title {
  font-family: 'Runner', sans-serif;
  font-size: 2.1rem;
  color: #fdb813;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(253, 184, 19, 0.3);
}

.promo-code {
  font-size: 24px;
  background: #333;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 1px;
  box-shadow: inset 0 0 10px #000;
}

.claim-btn, .send-btn {
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.4s ease;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(270deg, #00c6ff, #0072ff, #00c6ff);
  background-size: 600% 600%;
  animation: gradientFlow 4s ease infinite;
  box-shadow: 0 4px 20px rgba(0, 198, 255, 0.4);
}

.claim-btn:hover, .send-btn:hover {
  transform: scale(1.05);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.claim-form {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s ease;
}

.claim-form.show {
  max-height: 600px;
  opacity: 1;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.claim-form input {
  padding: 12px;
  width: 80%;
  max-width: 350px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  transition: box-shadow 0.3s ease;
  outline: none;
}

/* Ticket-style border for code input */
.claim-form input#code {
  border: 2px dashed #fdb813;
  background-color: #181818;
  color: #fdb813;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 12px;
  position: relative;
}

.claim-form input#code::placeholder {
  color: #aaa;
}

.claim-form input:focus {
  box-shadow: 0 0 10px rgba(253, 184, 19, 0.4);
}


/* mapa */
.map-section {
  background-color: #0e0e0e;
  color: #f1f1f1;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.map-header h2 {
  color: #fada0b;
  font-size: 28px;
  margin-bottom: 10px;
}

.btn-call-map {
  background-color: #fada0b;
  color: #111;
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 30px;
  transition: background 0.3s ease;
}

.btn-call-map:hover {
  background-color: #cf7e2b;
  color: #fff;
}
.social-icons {
  margin-top: 40px;
}

.social-icons p {
  font-weight: 700;
  font-size: 18px;
  color: #fada0b;
  margin-bottom: 15px;
}

.icon-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.icon-row a img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 3px rgba(250, 218, 11, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-row a img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(250, 218, 11, 0.8));
}

.rating {
  font-size: 16px;
  font-weight: bold;
  color: #fada0b;
}



/* styles for about us */
.about-section {
  background-color: #101010;
  color: #f1f1f1;
  padding: 60px 30px;
  font-family: 'Runner', sans-serif;
  text-align: center;
}

.about-intro h2 {
  color: #fada0b;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-family: 'Open Sans', sans-serif;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.card.large-card {
  background-color: #1a1a1a;
  border: 1px solid #fada0b2a;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  flex: 1 1 300px;
  box-shadow: 0 0 10px rgba(250, 218, 11, 0.2);
  transition: transform 0.3s ease;
}

.card.large-card:hover {
  transform: translateY(-5px);
}

.values h3 {
  margin-bottom: 20px;
  color: #fada0b;
}

.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 60px;
}

.card.small-card {
  background-color: #181818;
  border: 1px solid #fada0b22;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #f1f1f1;
  box-shadow: 0 0 8px rgba(250, 218, 11, 0.1);
  transition: background 0.3s ease;
}

.card.small-card:hover {
  background-color: #cf7e2b;
  color: white;
}

.review-section h3 {
  color: #fada0b;
  margin-bottom: 20px;
}

.reviews {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  width: 180px;
  box-shadow: 0 0 12px rgba(250, 218, 11, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card img {
  max-height: 40px;
  margin-bottom: 10px;
}
.review-card img {
  max-height: 40px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1); /* blanco en dark mode */
}
.highlights {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  text-align: left;
  margin-bottom: 25px;
}

.highlight-row.reverse {
  flex-direction: row-reverse;
}

.highlight-img {
  flex: 1 1 500px; /* permite más espacio mínimo */
  max-width: 900px; /* antes era 400px */
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(250, 218, 11, 0.2);
}


.highlight-text {
  flex: 1 1 300px;
  max-width: 900px;
}

.highlight-text h3 {
  color: #fada0b;
  font-size: 26px;
  margin-bottom: 12px;
}

.highlight-text p {
  font-size: 18px;
  color: #f1f1f1;
  font-family: 'Open Sans', sans-serif;
}
@media (max-width: 1450px) {
  .highlight-row,
  .highlight-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 60px;
  }

  .highlight-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .highlight-text {
    max-width: 100%;
  }

  .highlight-text h3 {
    font-size: 24px;
  }

  .highlight-text p {
    font-size: 16px;
  }
}

/*esponsive para tablets y móviles */
@media (max-width: 768px) {
  .highlight-row,
  .highlight-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 60px; /* Aumenta separación entre filas */
  }

  .highlight-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
  }

  .highlight-text {
    max-width: 100%;
  }

  .highlight-text h3 {
    font-size: 22px;
  }

  .highlight-text p {
    font-size: 16px;
  }
}


@media (max-width: 480px) {
  .highlight-img {
    height: 220px;
  }

  .highlight-text p {
    font-size: 15px;
  }
}




/* styles for brands we use */
.brands-section {
  background-color: #111;
  color: #fff;
  padding: 60px 30px;
  text-align: center;
  font-family: 'Runner', sans-serif;
  border-top: 3px solid #fada0b;
}

.brands-header h2 {
  font-size: 28px;
  color: #fada0b;
  margin-bottom: 10px;
}

.brands-header p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.brand-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(250, 218, 11, 0.2);
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 0 12px rgba(250, 218, 11, 0.1);
  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-card img {
  max-width: 100%;
  max-height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.brand-card p {
  font-size: 16px;
  color: #ccc;
}


/* styles for services we offer */
/* IMPORTACIÓN DE POPPINS */


.services-section {
  background-color: #0e0e0e;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.services-section h2 {
  font-family: 'Runner', sans-serif;
  font-size: 36px;
  color: #fada0b;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: linear-gradient(135deg, #1d2b2d, #2bc4e3);
  border-radius: 16px;
  padding: 30px 20px;
  color: #fff;
  box-shadow: 0 0 20px rgba(43, 196, 227, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(43, 196, 227, 0.5);
}

.service-title {
  font-family: 'Runner', sans-serif;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-tag {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: rgba(250, 218, 11, 0.2);
  color: #fada0b;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.service-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #eeeeee;
}

.service-call {
  font-family: 'Poppins', sans-serif;
  background-color: #fada0b;
  color: #111;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.service-call:hover {
  background-color: #cf7e2b;
  color: #fff;
}

.service-card.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
