
/* background image */
/* .bg-image {
    background-image: url(/img/img3.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh; /* or a fixed height */
    /* display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
} */

/* .text {
    max-width: 600px;
    color: white;
} 

.btn {
    margin-top: 20px;
} */

/* Add a media query for smaller screens */
/* @media (max-width: 768px) {
    .text h1 {
        font-size: 24px;
    }
    .text p {
        font-size: 16px;
    }
    .btn {
        width: 100%;
        margin-right: 0;
    }
} */


.bg-image {
    background-image: url('/img/img2.jpg'); /* replace with your image */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: flex-start; /* aligns content to the top vertically */
    justify-content: flex-start; /* aligns content to the left horizontally */
    padding: 60px 20px 20px 40px; /* top, right, bottom, left padding */
    text-align: left;
    /* padding-top: 250px; */
}

.text {
    max-width: 600px;
    color: white;
}

.text h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: lighter;
}

.text p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: lighter;
}

.btn {
    padding: 10px 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bg-image {
        padding: 40px 20px 20px 20px;
    }

    .text h1 {
        font-size: 28px;
    }

    .text p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }
}



/* card styling */

.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body h5.card-title {
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.row.g-4 {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}

.card-body {
  padding-bottom: 1rem;
}

.card.h-100 {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.card.h-100:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  /* background-color: #f8f9fa; */
  background-color: antiquewhite;
}






/* .caru{
    width: 500px;
    margin: auto;
    text-align: center;
}
.form{
    width: 600px;
    margin: auto;
    margin-top: 7%;
}
.form .btn{
    margin-left: 180px;
    width: 45%;
}
.form h5{
    margin-left: 180px;
    font-weight: bold;
    font-size: x-large;
} */





  .carousel-caption {
    background: rgba(0, 0, 0, 0.5); /* Optional: dark overlay for better text readability */
    padding: 20px;
    border-radius: 10px;
  }

  .carousel img {
    object-fit: cover;
    height: 400px;
  }

  @media (max-width: 768px) {
    .carousel img {
      height: 250px; /* Adjust height for smaller screens */
    }

    .carousel-caption {
      font-size: 1rem; /* Adjust font size for smaller screens */
    }
  }


/* testimonia carousel */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 70px;
    /* background: #f8f9fa; */
  }

  .testimonial-section {
    background: #fff;
    padding: 60px 0;
    text-align: center;
    /* height: 10%; */
  }

  .testimonial-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .title-underline {
    width: 60px;
    height: 3px;
    background: #d50000;
    margin: 0 auto 40px;
  }

  .slider-wrapper {
    max-width: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
  }

  .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
  }

  .testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px 20px;
    background-color: #fafafa;
    /* box-shadow: 0 4px 16px rgba(200, 150, 100, 0.8); */
    box-shadow: 0 20px 40px rgba(200, 150, 100, 0.8);
    border-radius: 10px;
  }

  .testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px 0;
  }

  .testimonial-name {
    font-weight: 600;
    font-size: 18px;
  }

  .testimonial-role {
    font-size: 14px;
    color: #d50000;
  }

  .nav-buttons {
    margin-top: 20px;
  }

  .nav-buttons button {
    background-color: #d50000;
    border: none;
    color: white;
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
  }

  .dots {
    margin-top: 15px;
  }

  .dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }

  .dots .active {
    background-color: #d50000;
  }



  /* counter styling */

  .counter-section {
      background: url('/img/img8.png') no-repeat center center/cover;
      position: relative;
      color: white;
      padding: 100px 0;
    }

    .counter-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
      z-index: 1;
    }

    .counter {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .counter-number {
      font-size: 48px;
      font-weight: 700;
    }

    .counter-label {
      font-size: 18px;
      font-weight: 400;
    }


    /* product styling */
    


