@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000000;
}
.services-hero {
  position: relative;
  width: 100%;
  height: 250px;
  background-color:#0c0c0c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay */
.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

/* Content */
.services-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.services-content h2 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.services-content .services-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin: 12px 0 0 0;
}

/* Tablet */
@media (max-width: 991px) {
  .services-hero {
    height: 260px;
  }

  .services-content h2 {
    font-size: 34px;
  }

  .services-content .services-sub {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .services-hero {
    height: 200px;
    padding: 0 16px;
  }

  .services-content h2 {
    font-size: 26px;
    letter-spacing: 1.5px;
  }

  .services-content .services-sub {
    font-size: 14px;
    margin-top: 8px;
  }
}

.services-section {
  max-width: 1500px;
  margin: 80px auto;
  padding: 0 20px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.service-row {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;

}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #ffffff;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 480px;
}

/* Tablet */
@media (max-width: 991px) {
  .service-row {
    gap: 30px;
    margin-bottom: 60px;
  }

  .service-content h3 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: left;
  }

  .service-content p {
    max-width: 100%;
  }

  .service-content h3 {
    font-size: 22px;
  }
}


.cta-section {
  position: relative;
  max-width: 1200px;
  margin: 80px auto;
  height: 260px;
  border-radius: 12px;
  background-image: url(https://images.unsplash.com/photo-1606964212858-c215029db704?w=1200&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8bG9naXN0aWNzfGVufDB8fDB8fHwy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35)
  );
}

.cta-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-btn {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8860b 100%);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e5c04a 0%, #c9a227 50%, #a67c00 100%);
}


.footer {
  background: #000;
  color: #ccc;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  max-width: 350px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #444;
  padding: 6px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
}


@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
  }

  .cta-content h2 {
    font-size: 26px;
  }
}


@media (max-width: 768px) {
  .cta-section {
    height: 220px;
    margin: 60px 16px;
  }

  .cta-content h2 {
    font-size: 22px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left {
    max-width: 100%;
  }
}