   /* 🌐 Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafc;
  color: #111;
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0 0 15px;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 🖨️ Hero Section */
.offset-hero {
  position: relative;
  height: 50vh;
  background: url('https://images.unsplash.com/photo-1693031630369-bd429a57f115?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.offset-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.offset-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  animation: fadeUp 1.2s ease;
}

.offset-content h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.offset-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.btn-explore {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #ff3e3e;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn-explore:hover {
  background: #c70039;
}

/* 📦 Services Section */
.offset-services {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
}

.offset-services h2 {
  font-size: 2.4rem;
  color: #102542;
  margin-bottom: 40px;
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.service-box {
  background: #f4f6f9;
  padding: 30px 20px;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-box i {
  font-size: 2rem;
  color: #ff3e3e;
  margin-bottom: 16px;
}

/* 🧲 CTA Section */
.offset-cta {
  padding: 70px 20px;
  background: linear-gradient(120deg, #ff3e3e, #ff7676);
  color: white;
  text-align: center;
}

.offset-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.offset-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-cta {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background: white;
  color: #ff3e3e;
  font-weight: bold;
  transition: 0.3s ease;
  border: none;
}

.btn-cta:hover {
  background: #fcecec;
}

/* 🎬 Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .offset-content h1 {
    font-size: 2rem;
  }

  .offset-content p {
    font-size: 1rem;
  }

  .btn-explore,
  .btn-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
