/* === Process Banner Section === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Mulish', sans-serif;
}

.service-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 80px;
  background: url('../images/Services.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}

/* Overlay for better text visibility */
.service-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Text content */
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: 8%;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Button Style */
.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #ff4d4d;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background-color: #ff4d4d;
  color: #fff;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */

/* Tablet & Small Laptop (≤1024px) */
@media (max-width: 1024px) {
  .service-banner {
    height: 80vh;
    justify-content: center;
    text-align: center;
    background-position: center top;
  }

  .banner-content {
    margin-left: 0;
    max-width: 80%;
  }

  .banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
  }

  .banner-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .banner-btn {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .service-banner {
    height: 70vh;
    padding: 0 20px;
    text-align: center;
    background-position: center center;
  }

  .banner-content {
    margin-left: 0;
    max-width: 100%;
    margin-bottom: -24%;
  }

  .banner-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .banner-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
    border-width: 1.5px;
  }
}




body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  color:#0d0d0d;
  background: #0d0d0d;
}

/* Common container */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ====== Section 1: Header Area ====== */
.services-header-bg {
  background: url('../images/service-section.jpg') no-repeat center center/cover;
  padding: 60px 0;
  position: relative;
}
.services-header-bg h2{
  font-size: 40px;
  color: #fff;
  font-weight: 800; 
  text-align: center;
  margin-bottom: 40px;
}
.services-header-bg h2 span {
  color: #e63946;
}
.services-header {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.services-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.25);
}


.services-content p {
  color: #ccc;
  line-height: 1.7;
  margin: 25px 0;
  max-width: 550px;
  font-size: 17px;
  text-align: justify;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #e63946;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #c92c3a;
  transform: translateY(-4px);
}

/* ====== Section 2: Services List Area ====== */
.services-list-bg {
  background: url('../images/service-section-1.jpg') no-repeat center center/cover;
  padding: 20px 0;
  position: relative;
}

.services-list h3 {
  color: #e63946;
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.service-item {
  background: rgba(17, 17, 17, 0.9);
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.3), transparent);
  transition: 0.4s;
}

.service-item:hover::before {
  top: 0;
}

.service-item:hover {
  transform: translateY(-8px);
  background: #181818;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.service-item h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.service-item p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
}

/* ====== Animation ====== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item {
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    text-align: center;
  }

  .services-content h2 {
    font-size: 30px;
  }

  .services-content p {
    max-width: 100%;
    font-size: 13px;
    text-align: justify;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .services-content h2 {
    font-size: 24px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* === Scroll Animation Base Styles === */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
