
/* banar section start */

.banner-swapper {
  position: relative;
  width: 100%;
  height: 86vh;
  overflow: hidden;
  background-size: cover;
  background-position: top center;  /* 👈 ab image hamesha upar se safe rahegi */
  margin-top: 87px;
}


    .color-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0,255,255,0.95); 
      transform: translateX(-100%);
      transition: transform 0.8s ease-in-out;
      z-index: 2;
    }

    .banner-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      z-index: 3;
      text-shadow: 0 2px 6px rgba(0,0,0,0.6);
      font-size: clamp(18px,3vw,36px);
      text-align: center;
    }


    #banner-heading {
  font-size:60px !important;
  width: 80%;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px; 
}

    /* heading animation */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


/* Tablets */
@media (max-width: 1024px) {
  .banner-swapper {
    height: 380px;
    margin-top: 70px;
  }

  #banner-heading {
    font-size: 40px !important;
    letter-spacing: 1.5px;
  }

  .banner-content {
    padding: 0 20px;
    font-size: 20px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .banner-swapper {
    height: 320px;
    margin-top: 65px;
  }

  #banner-heading {
    font-size: 32px !important;
    letter-spacing: 1px;
  }

  .banner-content {
    padding: 0 18px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .banner-swapper {
    height: auto;
    min-height: 220px;
    margin-top: 65px;
    padding: 20px 0;
  }

  #banner-heading {
    font-size: clamp(20px, 6vw, 28px);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    word-break: break-word;
  }

  .banner-content {
    padding: 0 12px;
    font-size: clamp(14px, 4.5vw, 18px);
    line-height: 1.4;
    text-align: center;
  }
}
    /* banar section End */




   /* Intro section start */

  .intro-section {
  text-align: center;
  padding: 40px 10px; 
  color: gray;
  background:white;
}
.intro-section h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
.intro-section p {
  font-size: 22px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}


@media (max-width: 480px) {
  .intro-section {
    padding: 25px 10px; 
  }

  .intro-section h1 {
    font-size: 24px; 
  }

  .intro-section p {
    font-size: 15px;  
    line-height: 1.4; 
    font-weight: 500;
    max-width: 100%;  
  }
}

/* Intro section End */





/* Service section start */

/* Base Styles */
.catalogue-section {
  padding: 10px 0;      
  margin-bottom: 40px;  
}

.catalogue-section .wrap {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px;
  max-width: 1280px;
  margin: auto;
  background: white;
}

.catalogue-section .box {
  flex: 0 0 calc(33.33% - 14px); /* desktop: 3 boxes per row */
  max-width: calc(33.33% - 14px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catalogue-section .card {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(34, 34, 34, 0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 480px;
  border: 0px solid #858585; 
}

.catalogue-section .img-wrap {
  flex: 6; 
  padding: 25px 16px 0 16px;
  box-sizing: border-box;
}

.catalogue-section .img-wrap img {
  width: 100%;
  height: 300px;      
  object-fit: cover;  
  border-radius: 8px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.catalogue-section .img-wrap img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(250, 1, 229, 0.2);
}

.catalogue-section .box-title {
  flex: 0;
  margin: 15px 0 1px 0; 
  font-size: 22px;
  text-align: center;
  color: black;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}

.catalogue-section .content {
  flex: 3; 
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.catalogue-section .content p {
  font-size: 16px;
  color: black;
  line-height: 1.3;
  font-weight: 500;
}

/* Tablet / Small Desktop (481px – 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
  .catalogue-section .wrap {
    padding: 0 20px; /* left-right gap */
    box-sizing: border-box;
  }

  .catalogue-section .box {
    flex: 0 0 calc(50% - 20px); /* 2 boxes per row */
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }

  .catalogue-section .card {
    height: auto; 
  }

  .catalogue-section .img-wrap img {
    height: 250px;
  }

  .catalogue-section .box-title {
    font-size: 20px;
    text-align: center;
    position: relative;
  }

  .box-title .underline1 {
    display: block;
    position: relative;
    width: 180px;          
    height: 6px;           
    background: #00a0e3;
    border-radius: 2px;
    margin: 12px auto 5px;       
    overflow: hidden;
  }

  /* Sliding white block animation */
  .box-title .underline1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: #fff;
    animation: underline-move 4s infinite linear;
  }

  @keyframes underline-move {
    0% { left: 0; }
    50% { left: 170px; } /* 180px width minus 10px block */
    100% { left: 0; }
  }
}



/* Mobile (0 – 480px) */
@media (max-width: 480px) {
  .catalogue-section .wrap {
    padding: 0 12px; /* left-right gap */
    box-sizing: border-box;
  }

  .catalogue-section .box {
    flex: 0 0 100%; 
    max-width: 100%;
    margin-bottom: 15px;
  }

  .catalogue-section .card {
    height: auto; 
  }

  .catalogue-section .img-wrap img {
    height: 270px;
  }

  .catalogue-section .box-title {
    font-size: 18px;
    text-align: center;
    position: relative;
  }

  .box-title .underline1 {
    display: block;
    position: relative;
    width: 180px;          
    height: 6px;           
    background: #00a0e3;
    border-radius: 2px;
    margin: 12px auto 5px;       
    overflow: hidden;
  }

  /* Sliding white block animation */
  .box-title .underline1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: #fff;
    animation: underline-move 4s infinite linear;
  }

  @keyframes underline-move {
    0% { left: 0; }
    50% { left: 170px; } /* 180px width minus 10px block */
    100% { left: 0; }
  }
}





/* Main heading nav bar old website section start */

.sonar-testimonials-area {
    position: relative;
    padding: 60px 0 150px 0;
    overflow: hidden; 
}

.testimonial-bg-image {
    position: absolute;
    top: 0;
    left: 250px;   
    width: auto; 
    height: 1460px; 
    overflow: hidden;
    z-index: 0;
}
.testimonial-bg-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}


/* White content box */
.testimonial-content {
    position: relative;
    z-index: 1; 
    background: #fff;
    padding: 20px 15px 35px 15px;
    max-width: 750px;
    margin-left: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.testimonial-content p {
    font-size: 35px;
    font-weight: 550;
    line-height: 1.3;
    color: rgb(31, 30, 30);
    margin: 0 0 10px 0;
    text-align: left;
}

/* Carousel slides */
.testimonial-slides .single-tes-slide {
    text-align: left;
    padding: 10px 0;
}



/* Full list styling */
.list ul {
    display: flex;
    flex-wrap: wrap;
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    justify-content: flex-start;
     row-gap: 15px; 
}


.list ul li {
    width: 30%;
    margin: 3px 1%;
    font-size: 15px;
    color: #1e4db7;
}


.list ul li a {
    display: inline-block; 
    color: #1e4db7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s; 
}

.list ul li a:hover {
    color: magenta;
    transform: translateY(-2px) scale(1.05); 
}

/* Main heading */
.testimonial-content .section-heading {
    font-size: 50px;  
    font-weight: 700;
    margin-bottom: 1px;
    color: #1e4db7;
    text-align: left; 
}

/* Buttons container */
.owl-nav {
    display: flex !important;
    justify-content: flex-start !important; 
    gap: 20px;          
    margin-bottom: 10px; 
    padding-left: 0;     
}

/* Owl Carousel buttons */
.owl-nav .owl-prev,
.owl-nav .owl-next {
    width: 60px;           
    height: 60px;          
    color: #000000 !important;
    border-radius: 50%;
    font-size: 50px !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: none; 
    border: none;    
}

/* Hover effect */
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
    .testimonial-content .section-heading { font-size: 36px; }
    .owl-nav .owl-prev,
    .owl-nav .owl-next { width: 50px; height: 50px; font-size: 24px !important; }
}
@media only screen and (max-width: 480px) {
    .testimonial-content .section-heading { font-size: 28px; }
    .owl-nav .owl-prev,
    .owl-nav .owl-next { width: 40px; height: 40px; font-size: 20px !important; }
}



/* Large screens */
@media only screen and (max-width: 1100px){
    .list ul li {
        width: 30%;
        margin: 3px 1.5%;
    }
}

/* Medium screens */
@media only screen and (max-width: 992px){
    .list ul li {
        width: 45%;
        margin: 4px 2%;
    }
}

/* Small screens */
@media only screen and (max-width: 768px){ 
    .testimonial-bg-image {
        height: 250px;
    }
    .testimonial-content {
        padding: 15px 15px 30px 15px;
        max-width: 95%;
        margin-left: 0;
    } 
    .testimonial-content p {
        font-size: 22px;
        line-height: 1.2;
    }
    .list ul li {
        width: 45%;
        margin: 5px 2%;
        font-size: 12px;
    } 
}

/* Extra small screens / mobiles */
@media only screen and (max-width: 480px){ 
    .testimonial-bg-image {
        height: 500px;
    }
    .testimonial-content p {
        font-size: 18px;
        line-height: 1.1;
    }
    .list ul li {
        width: 90%;
        margin: 3px 0;
        font-size: 11px;
    } 
}


/* Main heading nav bar old website section End */