html, body {
  overflow-x: hidden;
}

/* banar section start*/

.custom-banner {
  margin-top: 15vh;
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 500px;

  background-image: url('../images/service/service-banar-c-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; 

  overflow: hidden;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75) 0%,   
    rgba(0, 0, 0, 0.2) 40%,  
    rgba(0, 0, 0, 0.05) 70%, 
    rgba(0, 0, 0, 0.0) 100%  
  );
}



@media (max-width: 768px) {
  .custom-banner {
    height: 60vh;
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .custom-banner {
    margin-top: 90px;
    height:30vh;
    min-height: 300px;
  }
}

/* banar section End*/




/* main intro section start*/
.main-intro {
  background-color: #ffffff;
  padding: 80px 20px 50px 20px;
  margin: 0;
  text-align: center;
}

.service-para {
  font-size: 52px;
  font-weight: 500;
  color: #0099ff;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.3;
}

/*  */
.line-break {
  display: block;
  margin-top: 0px;
  font-size: 52px;
}

/* TABLET */
@media (max-width: 992px) {
  .service-para {
    font-size: 42px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .main-intro {
    padding: 60px 15px 40px;
  }

  .service-para {
    font-size: 32px;
    line-height: 1.4;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .main-intro {
    padding: 50px 10px 30px;
  }

  .service-para {
    font-size: 24px;
  }

  .line-break {
    display: inline;
    font-size: 24px;
  }
}

/* main intro section End*/







/** main box section start*/

.explore-section{
    padding:100px 40px 40px 40px;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.explore-title{
    font-size:52px;
    font-weight:500;
    color:#0099ff;
    margin-bottom:50px;
  
}

.explore-container{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.explore-card{
    background:#eef2ff;
    flex:1;
    min-width:290px;
    padding:25px;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.explore-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#000000;
    font-weight: 600;
    letter-spacing: 1px;
}

.explore-card p{
    font-size:15px;
    line-height:1.6;
    color:#444;
}

.read-more-btn{
    margin-top:15px;
    display:inline-block;
    padding:8px 16px;
    background:#1d2b4f;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    border-radius:1px;
    transition:0.3s;
}

.read-more-btn:hover{
    background:#0f1a33;
}
/* TABLET */
@media (max-width: 992px) {
  .explore-section {
    padding: 80px 30px 30px;
  }

  .explore-title {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: left;
  }

  .explore-card {
    min-width: 45%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .explore-section {
    padding: 60px 20px 30px;
    text-align: left; /* 🔥 center hata diya */
  }

  .explore-title {
    font-size: 32px;
    text-align: left;
  }

  .explore-container {
    justify-content: flex-start; /* 🔥 left align */
  }

  .explore-card {
    min-width: 100%;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .explore-section {
    padding: 50px 15px 20px;
    text-align: left;
  }

  .explore-title {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: left;
  }

  .explore-card h3 {
    font-size: 18px;
    text-align: left;
  }

  .explore-card p {
    font-size: 14px;
    text-align: left;
  }
}



/* All service section start*/


  .custom-services {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-box {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 25px;
    text-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.6s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);

    opacity: 0;
    transform: translateY(50px);
}



.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #02afff;
    margin-bottom: 10px;
    margin-top: -10px;
    letter-spacing: 1px;
}



.service-box.show {
    opacity: 1;
    transform: translateY(0);
}

.service-box:nth-child(1) { transition-delay: 0.1s; }
.service-box:nth-child(2) { transition-delay: 0.2s; }
.service-box:nth-child(3) { transition-delay: 0.3s; }
.service-box:nth-child(4) { transition-delay: 0.4s; }
.service-box:nth-child(5) { transition-delay: 0.5s; }
.service-box:nth-child(6) { transition-delay: 0.6s; }

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px;
    height: 250px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  transition: transform 0.6s ease;
}

.shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(0, 255, 255, 0.2) 20%,  
        rgba(255, 0, 255, 0.3) 50%,  
        rgba(255, 255, 0, 0.2) 80%,  
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    filter: blur(5px);
    pointer-events: none;
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: #007bff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-box:hover .shine {
    left: 150%;
    transition: all 0.8s ease;
}

.service-box:hover img {
    transform: scale(1.08);
}

.service-box p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    padding: 0 10px;
}

@media (max-width: 992px) {
    .services-container {
        gap: 20px;
    }

    .service-box {
        min-width: 45%;
    }
}

@media (max-width: 600px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        min-width: 100%;
        max-width: 100%;
    }
}



