
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{
  background-image: url(service1_banner.jpg);
  background-attachment: fixed;
  color:#2E2E2E;
  scroll-behavior:smooth;
  
}

/* ===== HEADER ===== */
header{
  background:#555555b2;
  padding:15px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  width:100%;
  z-index:1000;
  top:0;
}
.logo img{height:45px;}
nav{display:flex;gap:30px;align-items:center;}
nav a{color:#fff;text-decoration:none;font-weight:500;padding:5px 0;transition:0.3s;}
nav a:hover{color:#1ABC9C;}
.call-btn{background:#1ABC9C;color:#000;padding:10px 22px;border-radius:25px;text-decoration:none;font-weight:600;transition:0.3s;}
.call-btn:hover{background:#16a085;transform:scale(1.05);}
.dropdown{position:relative;}
.dropbtn{color:#fff;cursor:pointer;font-weight:500;display:flex;align-items:center;gap:5px;}
.dropdown-content{position:absolute;top:35px;left:0;background:#121212;min-width:180px;display:none;flex-direction:column;border-radius:2px;box-shadow:0 10px 25px rgba(0,0,0,0.4);z-index:1000;}
.dropdown-content a{padding:12px 18px;color:#fff;text-decoration:none;font-size:0.95rem;transition:0.3s;}
.dropdown-content a:hover{background:#1ABC9C;color:#000;}
.dropdown:hover .dropdown-content{display:flex;}
.hamburger{display:none;font-size:1.8rem;color:#fff;cursor:pointer;}
@media(max-width:992px){
  nav{position:fixed;top:70px;right:-100%;width:250px;height:100%;background:#121212;flex-direction:column;gap:20px;padding:20px;transition:0.3s;}
  nav.active{right:0;}
  .hamburger{display:block;}
  .dropdown-content{position:relative;top:0;box-shadow:none;}
}

/* ===== HERO ===== */
.hero{
  position:relative;
  height:90vh;
  background:url('service1_banner.jpg') center/cover no-repeat;
  background-attachment: fixed;
  display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(18, 18, 18, 0.349);
}
.hero h1{
  font-size:3rem;
  background:rgba(0, 0, 0, 0);
  color:#00ffcc;
  padding:20px 40px;
  border-radius:10px;
}


.service-details{
  max-width:100%;
  margin:auto;
  background-color: #fff;
  padding:80px 20px;
}
.process-row{
  display:flex;
  align-items:center;
  gap:40px;
  margin-bottom:80px;
  flex-wrap:wrap;
}
.process-row.reverse{
  flex-direction:row-reverse;
}
.process-text{
  flex:1;
  min-width:300px;
}
.process-text h3{font-size:1.8rem;margin-bottom:15px;color:#121212;}
.process-text p{font-size:1rem;color:#2E2E2E;line-height:1.6;}

.process-carousel{
  flex:1.5;
  border: 5px solid #1ABC9C;
  min-width:350px;
  overflow:hidden;
  background:#F2F2F2;
  padding:10px;
}
.carousel-wrapper{
  display:flex;
  gap:20px;
  width:max-content;
  animation:scrollInfinite1 12s linear infinite;
}
.carousel-wrapper img{
  width:600px;
  height:350px;
  object-fit:cover;
  border-radius:10px;
  transition:0.3s;
}
.carousel-wrapper img:hover{transform:scale(1.05);}

/* Different animation for each step to look independent 
.step1{animation:scrollCarousel1 12s linear infinite;}
.step2{animation:scrollCarousel2 12s linear infinite;}
.step3{animation:scrollCarousel3 12s linear infinite;} */


@keyframes scrollInfinite1{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}



/* Scroll animation keyframes */
@keyframes scrollCarousel1{
  0%{transform:translateX(0);}
  33%{transform:translateX(-33.33%);}
  66%{transform:translateX(-66.66%);}
  100%{transform:translateX(0);}
}
@keyframes scrollCarousel2{
  0%{transform:translateX(0);}
  33%{transform:translateX(-33.33%);}
  66%{transform:translateX(-66.66%);}
  100%{transform:translateX(0);}
}
@keyframes scrollCarousel3{
  0%{transform:translateX(0);}
  33%{transform:translateX(-33.33%);}
  66%{transform:translateX(-66.66%);}
  100%{transform:translateX(0);}
}

/* Responsive */
/* ===== MOBILE VIEW FIX ===== */
@media (max-width: 768px){

  .service-details{
    padding:50px 15px;
  }

  .process-row{
    flex-direction:column;
    gap:25px;
    margin-bottom:60px;
  }

  .process-text{
    text-align:center;
  }

  .process-text h3{
    font-size:1.5rem;
  }

  .process-text p{
    font-size:0.95rem;
    line-height:1.5;
  }

  .process-carousel{
    width:100%;
    min-width:100%;
    padding:8px;
    border-width:3px;
  }

  .carousel-wrapper{
    gap:15px;
    animation-duration:12s;
  }

  .carousel-wrapper img{
    width:85vw;   /* mobile screen ke hisaab se */
    height:200px;
    border-radius:8px;
  }
}


/* ===== Live Project Section ===== */
.live-section {
  text-align: center;
  padding: 70px 20px;
  background: #dfdede;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.live-title {
  font-size: 32px;
  color: #1ABC9C;
  font-weight: 700;
}

.live-para {
  font-size: 22px;
  color: #050505c9;
  margin-bottom: 10px;
  font-weight: 700;
}

.live-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}

.live-card {
  width: 300px;
  border-radius: 5px;
  background: #1ABC9C;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.live-card:hover { transform: translateY(-6px); }

.live-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.live-slide-container {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.live-slide-container img {
  width: 100%;
  object-fit: cover;
  height: 200px;
}

.live-card h4 {
  padding: 15px;
  background: #1ABC9C;
  color: #000000;
  font-size: 20px;
}

.live-card p{
  padding: 15px;
  color: #000;
}

/* ===== ASK CTA ===== */
.ask{max-width: 100%;text-align:center;background:#f1f0f0;padding: 50px 20px;}
.ask h2{font-size:2rem;margin-bottom:15px;color:#121212;}
.ask p{font-size:1rem;color:#2E2E2E;max-width:700px;margin:auto;}
.ask a{display:inline-block;margin-top:20px;background:#1ABC9C;color:#000;padding:14px 30px;border-radius:30px;text-decoration:none;font-weight:600;transition:0.3s;}
.ask a:hover{background:#16a085;transform:scale(1.05);}

/* ================= STATS ================= */
.stats-section{
  background:#121212b7;
  padding:80px 20px;
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  text-align:center;
}

.stat-box h2{
  color:#1ABC9C;
  font-size:3rem;
  transition:0.3s;
}

.stat-box h4{
  color:#fff;
  margin:10px 0;
}

.stat-box p{
  color:#CFCFCF;
  font-size:.95rem;
}

/* ===== FOOTER ===== */
footer{background:#121212;color:#fff;padding:20px 40px;display:flex;justify-content:space-between;align-items:center;}
.social a{color:#fff;margin-left:15px;text-decoration:none;transition:0.3s;}
.social a:hover{color:#1ABC9C;}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){.steps,.gallery-grid,.stats-container{grid-template-columns:1fr;}}
