

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f2f2f2;
    }

  

/*  */
      /* Carousel */
      #liftCarousel {
      position: relative;
      margin-top: -80px;
    }

    .carousel-inner {
      min-height: 70vh;
    }

    .carousel-item img {
      height: 80vh;
      width: 100%;
      object-fit: cover;
    }

    .carousel-caption-custom {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 10;
      background-color: rgba(0, 0, 0, 0.4);
      padding: 30px;
      border-radius: 10px;
    }

    .carousel-caption-custom h2 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .carousel-caption-custom p {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .carousel-caption-custom .btn {
      background-color:#EF3C3C;
      color: white;
      border: none;
    }

    .carousel-caption-custom .btn:hover {
      background-color: #F7941D;
    }
@media (max-width: 768px) {
  #liftCarousel {
    margin-top: -60px;
  }

  .carousel-inner {
    min-height: 50vh;
  }

  .carousel-item img {
    height: 80vh;
  }

  .carousel-caption-custom {
    width: 90%;
    padding: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .carousel-caption-custom h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .carousel-caption-custom p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .carousel-caption-custom .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}


        /* card section second  */
        .section-title {
      text-align: center;
      padding: 20px;
    }
    .section-title small {
      color: #EF3C3C;
      font-weight: 700;
      display: block;
      margin-bottom: 10px;
      font-size: 32px;
    }
    .section-title h2 {
      font-size: 24px;
      font-weight: 700;
      margin: 0;
    }
    .services {
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 40px;
      flex-wrap: wrap;
    }
.card {
  width: 400px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: visible;   /* auto se visible try karo */
  height: auto !important;
  display: block;      /* ensure it's block */
}

    .card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .card-number {
      background: #EF3C3C;
      color: #fff;
      font-weight: bold;
      text-align: center;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: 0;
      right: 0;
    }
    .card-content {
      padding: 20px;
      position: relative;
    }
    .card h3 {
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: 700;
    }
    .card p {
      font-size: 14px;
      color: #555;
      margin: 0 0 20px;
    }
    .view-btn {
      background:#EF3C3C;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: bold;
      cursor: pointer;
    }

/* General mobile adjustments */
@media (max-width: 1024px) {
  .services {
    flex-direction: column;
    padding: 20px;
  }

  .card {
    width: 100%;
    max-width: 100%;
    height: auto; /* Ensure the card height adjusts to content */
  }

  .card img {
    height: 200px; /* Reduced image height for mobile */
    object-fit: cover; /* Keeps image proportionate */
  }

  .card-content {
    padding: 10px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 12px;
  }

  .view-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* For smaller mobile screens (below 768px) */
@media (max-width: 768px) {
  .section-title small {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .services {
    padding: 15px;
  }
  .servicecard{
      width: 100%;
    max-width: 100%;
    height: auto; /* Adjust card height */ 
  }

.servicecard img {
    height: 180px; /* Adjust image size for smaller screens */
    object-fit: cover; /* Ensures the image doesn't stretch */
  }

  .servicecard h3 {
    font-size: 16px;
  }

  .servicecard p {
    font-size: 12px;
  }

  .card {
    width: 100%;
    max-width: 100%;
    height: auto; /* Adjust card height */
  }

  .card img {
    height: 180px; /* Adjust image size for smaller screens */
    object-fit: cover; /* Ensures the image doesn't stretch */
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 12px;
  }

  .view-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* For very small mobile screens (below 480px) */
@media (max-width: 480px) {
  .section-title small {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .services {
    padding: 10px;
  }
  
  
  .servicecard {
    width: 100%;
    max-width: 100%;
    height: auto; /* Ensure card height adjusts */
  }

  .servicecard img {
    height: 150px; /* Further adjust image size */
    object-fit: cover; /* Keep the image proportions intact */
  }

  .servicecard h3 {
    font-size: 14px;
  }

  .servicecard p {
    font-size: 10px;
  }


  .card {
    width: 100%;
    max-width: 100%;
    height: auto; /* Ensure card height adjusts */
  }

  .card img {
    height: 150px; /* Further adjust image size */
    object-fit: cover; /* Keep the image proportions intact */
  }

  .card h3 {
    font-size: 14px;
  }

  .card p {
    font-size: 10px;
  }

  .view-btn {
    padding: 8px 12px;
    font-size: 10px;
  }
}


    /* card section section  */

    /* third section */
       /* third section */
       .section {
      display: flex;
      flex-wrap: wrap;
      padding: 70px 0px;
      gap:50px;
    }
    .left {
      flex: 1;
      min-width: 300px;
    }
    .left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .right {
      flex: 1;
      background: #fff;
      padding: 40px 50px;
      width: 100%;
      height: 100vh;
    }
    .heading{
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
      color:#EF3C3C;
    }
    .right h1 {
      font-size: 22px;
      font-weight: 650;
      margin-bottom: 10px;
      
    }
    .tabs {
      display: flex;
      background: #f0f0f0;
      margin: 30px 0;
      padding: 10px 20px;
    }
    .tab {
      margin-right: 40px;
      font-weight: 700;
      cursor: pointer;
    }
    .description {
      color: #888;
      line-height: 1.6;
      margin-bottom: 30px;
    }
    .stats {
      font-size: 40px;
      font-weight: 700;
      color:#EF3C3C;
    }
    .subtext {
      font-size: 14px;
      margin-bottom: 30px;
    }
    .features {
      list-style: none;
      padding: 0;
    }
    .features li {
      margin-bottom: 10px;
      color: #222;
    }
    .features li::before {
      content: '\2713';
      color:#EF3C3C;
      margin-right: 10px;
    }

    
/* Mobile responsive styles */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .left {
    flex: none;
    min-width: 100%;
  }

  .right {
    flex: none;
    width: 100%;
    padding: 30px 20px;
    height: auto;
  }

  .heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .right h1 {
    font-size: 18px;
  }

  .tabs {
    flex-direction: column;
    padding: 5px 10px;
  }

  .tab {
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .description {
    font-size: 14px;
  }

  .stats {
    font-size: 30px;
  }

  .subtext {
    font-size: 12px;
  }

  .features li {
    font-size: 14px;
  }

  .features li::before {
    font-size: 18px;
    margin-right: 8px;
  }
}

    /* third section */


/* im slider four  */

.projSlider_section {
      /* max-width: 1300px; */
      margin: 50px auto;
      padding: 0 0px;
    }

    .projSlider_section h2 {
      font-size: 32px;
      margin-bottom: 20px;
    }

    .projSlider_container {
      position: relative;
      overflow: hidden;
    }

    .projSlider_track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .projSlider_slide {
      flex: 0 0 33.3333%;
      max-width: 33.3333%;
      position: relative;
      padding: 10px;
    }

    .projSlider_slide img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 8px;
    }

    .proheding {
  margin-left: 180px;
  font-size: 34px;
      font-weight: 700;
      text-transform: uppercase;

      color:#EF3C3C;
}
.proheding2 {
  margin-left: 180px;
  font-size: 22px;
  text-transform: uppercase;

      font-weight: 650;
      
  
}



    @media (max-width: 768px) {
      .projSlider_slide {
        flex: 0 0 100%;
        max-width: 100%;
      }

      .projSlider_slide img {
        height: 200px;
      }
    }


/* Mobile View */
/* Mobile View */
@media (max-width: 768px) {
  /* For the Slider */
  .projSlider_section {
    padding: 0 15px; /* Adding some padding */
  }

  .projSlider_slide {
    flex: 0 0 100%; /* Ensures one slide takes full width */
    max-width: 100%; /* Ensures one slide takes full width */
    padding: 5px; /* Smaller padding on mobile */
  }

  .projSlider_slide img {
    height: 200px; /* Reduced height for mobile */
    border-radius: 5px; /* Slightly smaller border radius */
  }

  /* Heading Adjustments */
  .proheding {
    margin-left: 0; /* No margin for mobile */
    font-size: 28px; /* Smaller font size for mobile */
    text-align: center; /* Centering the heading */
  }

  .proheding2 {
    margin-left: 0; /* No margin for mobile */
    font-size: 18px; /* Smaller font size for mobile */
    text-align: center; /* Centering the subheading */
  }
}

/* Very Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .projSlider_slide img {
    height: 150px; /* Even smaller height for very small devices */
  }

  .proheding {
    font-size: 24px; /* Smaller font size */
  }

  .proheding2 {
    font-size: 16px; /* Smaller font size */
  }
}

/* img slider four  */
    /* services page css  */
    
    .info-section {
  display: flex;
  justify-content: space-between;
  background:#EF3C3C;
  padding: 0;
}

.info-box {
  flex: 1;
  padding: 30px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.black-box {
  background-color: #121212;
  background-image: url('https://www.transparenttextures.com/patterns/black-felt.png');
}

/* Add border to left of first box */
.info-box:first-child {
  border-left: 20px solid #EF3C3C; 
}

/* Add border to right of last box */
.info-box:last-child {
  border-right: 20px solid #EF3C3C;
}

.orange-box {
  background-color:#EF3C3C;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon {
  width: 40px;
  height: 40px;
}

small {
  font-size: 12px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}
/* Mobile Styles */
@media (max-width: 767px) {
  /* Stack the boxes vertically on small screens */
  .info-section {
    flex-direction: column;
    align-items: center;
  }

  /* Adjust padding and box size */
  .info-box {
    flex: none;
    width: 100%;
    padding: 20px;
  }

  /* Make the text and icons smaller for mobile */
  .icon-text {
    gap: 10px;
  }

  .icon {
    width: 30px;
    height: 30px;
  }

  small {
    font-size: 10px;
  }

  h3 {
    font-size: 18px;
  }

  /* Border adjustments for mobile */
  .info-box:first-child {
    border-left: none;
    border-bottom: 20px solid #F7941D;
  }

  .info-box:last-child {
    border-right: none;
    border-top: 20px solid #F7941D;
  }
}

/* Tablet and larger screens */
@media (max-width: 1024px) {
  .info-box {
    padding: 25px;
  }

  h3 {
    font-size: 18px;
  }

  small {
    font-size: 11px;
  }
}

    /* secvices page end  */

    /* team section  */

.tech-heading {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center; /* This will center the text */
  margin: 0 auto; 
  color:#EF3C3C;
  margin-top: 50px;
}

.tech-subheading {
  font-size: 22px;
  text-transform: uppercase;
  text-align: center; /* This will center the text */
  margin: 0 auto; 
  font-weight: 650;
}

    .team-card-container {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .team-card-michel,
.team-card-mark,
.team-card-jone {
  width: 400px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.team-card-michel img,
.team-card-mark img,
.team-card-jone img {
  width: 100%;
  height: 350px; /* Fixed height */
  object-fit: cover; /* Ensures the image fills space without distortion */
  display: block;
  padding: 20px;
}


    .team-card-michel h3,
    .team-card-mark h3,
    .team-card-jone h3 {
      font-size: 22px;
      font-weight: bold;
      margin: 10px 0 5px;
    }

    .team-card-michel p,
    .team-card-mark p,
    .team-card-jone p {
      color: #777;
      margin: 0 0 10px;
    }

    .contact-info {
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease-in-out;
    }

    .team-card-michel:hover .contact-info,
    .team-card-mark:hover .contact-info,
    .team-card-jone:hover .contact-info {
      opacity: 1;
      max-height: 100px;
      padding-top: 10px;
    }

    .contact-info p {
      margin: 5px 0;
      color: #333;
    }


    /* Mobile responsiveness */
@media (max-width: 768px) {
  .tech-heading {
    font-size: 28px;
    margin-top: 30px;
  }

  .tech-subheading {
    font-size: 18px;
  }

  .team-card-container {
    gap: 15px;
    margin-top: 20px;
  }

  .team-card-michel,
  .team-card-mark,
  .team-card-jone {
    width: 100%; /* Cards will take full width on small screens */
    padding: 10px;
  }

  .team-card-michel img,
  .team-card-mark img,
  .team-card-jone img {
    height: 250px; /* Adjust image height for mobile view */
    padding: 10px;
  }

  .team-card-michel h3,
  .team-card-mark h3,
  .team-card-jone h3 {
    font-size: 18px;
  }

  .team-card-michel p,
  .team-card-mark p,
  .team-card-jone p {
    font-size: 14px; /* Adjust text size */
  }

  .contact-info {
    max-height: 80px; /* Reduced max height for mobile */
  }
}

@media (max-width: 480px) {
  .tech-heading {
    font-size: 24px;
  }

  .tech-subheading {
    font-size: 16px;
  }

  .team-card-container {
    gap: 10px;
  }

  .team-card-michel,
  .team-card-mark,
  .team-card-jone {
    width: 100%;
    padding: 5px;
  }

  .team-card-michel img,
  .team-card-mark img,
  .team-card-jone img {
    height: 200px; /* Further adjust image height */
    padding: 5px;
  }

  .team-card-michel h3,
  .team-card-mark h3,
  .team-card-jone h3 {
    font-size: 16px;
  }

  .team-card-michel p,
  .team-card-mark p,
  .team-card-jone p {
    font-size: 12px; /* Further adjust text size */
  }

  .contact-info {
    max-height: 60px; /* Further reduce max height */
  }
}

    /* team section  */

    /* statas section  */
    .stats-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      background-color: #0a0a0a;
    }
    .stats-section .box h2 {
  transition: all 5s ease-in-out;
}

    .heading-section {
      width: 100%;
      max-width: 1200px;
      margin-bottom: 40px;
    }
    .heading-section h3 {
      color:#EF3C3C;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
      font-size: 36px;
    }
    .heading-section h1 {
      font-size: 16px;
      font-weight: bold;
      line-height: 1.3;
      color: #ccc;
    }
    .stats-boxes {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .box {
      background-color:#EF3C3C;
      color: white;
      width: 300px;
      padding: 30px 20px;
      text-align: center;
      border-radius: 8px;
    }
    .box-icon {
      background: white;
      color:#EF3C3C;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 28px;
    }
    .box h2 {
      font-size: 32px;
      margin: 0 0 10px;
    }
    .box p {
      margin: 0;
      font-size: 15px;
    }



/* Tablet and below (max-width: 768px) */
@media screen and (max-width: 768px) {
  .heading-section h3 {
    font-size: 28px;
  }

  .heading-section h1 {
    font-size: 14px;
  }

  .stats-boxes {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 90%;
  }

  .box {
    width: 100%; /* increased from 100% to slightly narrower for better spacing */
    max-width: 500px;
    padding: 20px 15px;
  }

  .box h2 {
    font-size: 28px;
  }

  .box p {
    font-size: 14px;
  }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .stats-section {
    padding: 40px 10px;
  }

  .heading-section h3 {
    font-size: 24px;
  }

  .stats-boxes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .box {
    width: 100%; /* more width but not full to avoid touching screen edges */
    max-width: 380px;
    padding: 18px 12px;
  }

  .box-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .box h2 {
    font-size: 24px;
  }

  .box p {
    font-size: 13px;
  }
}

    /* statas section  */

    /* testinomal */

    .testimonial-unique-slider {
      width: 100%;
      max-width: 1300px;
      margin: 40px auto;
      border: 1px solid #eee;
      padding: 30px;
      position: relative;
      overflow: hidden;
      background-color: #fff;
    }

    .testimonial-unique-content {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .testimonial-unique-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 60px;
}


    .testimonial-unique-img {
      text-align: center;
    }

    .testimonial-unique-img img {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      margin-left: 28px;
    }

    .testimonial-unique-img .quote {
      font-size: 50px;
      color:#EF3C3C;
      margin-top: 10px;
    }

    .testimonial-unique-text {
      flex: 1;
    }

    .testimonial-unique-text h3 {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .testimonial-unique-text p {
      font-size: 22px;
      line-height: 1.5;
      color: #111;
    }

    .testimonial-unique-text .author {
      margin-top: 20px;
      font-size: 14px;
    }

    .testimonial-unique-text .author span {
      color:#EF3C3C;
      font-weight: bold;
    }

    .testimonial-unique-nav {
      position: absolute;
      bottom: 30px;
      right: 30px;
      display: flex;
      gap: 10px;
    }

    .testimonial-unique-btn {
      background-color:#EF3C3C;
      color: #fff;
      border: none;
      padding: 10px 15px;
      font-size: 18px;
      cursor: pointer;
    }

    /*  */
/* Mobile view adjustments */
@media (max-width: 768px) {
  .testimonial-unique-slider {
    padding: 15px;
    margin: 15px auto;
  }

  .testimonial-unique-img img {
    width: 90px;
    height: 90px;
  }

  .testimonial-unique-text h3 {
    font-size: 14px;
  }

  .testimonial-unique-text p {
    font-size: 14px;
  }

  .testimonial-unique-text .author {
    font-size: 10px;
  }

  .testimonial-unique-nav {
    bottom: 10px;
    right: 10px;
    gap: 10px;
  }

  .testimonial-unique-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* Smaller mobile view (under 480px) */
@media (max-width: 480px) {
  .testimonial-unique-slider {
    padding: 10px;
  }

  .testimonial-unique-img img {
    width: 70px;
    height: 70px;
  }

  .testimonial-unique-text h3 {
    font-size: 12px;
  }

  .testimonial-unique-text p {
    font-size: 12px;
  }

  .testimonial-unique-text .author {
    font-size: 8px;
  }

  .testimonial-unique-btn {
    padding: 6px 10px;
    font-size: 10px;
  }
}


    /* testinomal */

    /* footer  */

  
    /* footer  */
