* {
  margin: 0;
  padding: 0;
}

/* Full width slider */
.slider {
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

/* Each slide */
.slider .slide {
  position: relative;
  text-align: center;
}

/* Image styling */
.slider .slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Title styling */
.slider .slide h1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 35px;
  line-height: 90px;
  color: rgb(255, 255, 255);
  text-transform: capitalize;
  margin-bottom: 35px;
  font-family: "Abril Fatface", cursive;
  z-index: 10;
}

/* Subtitle styling */
.slider .slide p {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 500;
  line-height: 34px;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  z-index: 10;
}

/* Button styling */
.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 24px;
  color: #fff;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 32px 0 32px 32px;
  overflow: hidden;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  vertical-align: middle;
  box-shadow: 0px 15px 40px 0px rgba(32, 171, 148, 0.2);
  z-index: 20;
  width: auto;
  /* Ensure the width adapts to content */
  min-width: 150px;
  /* Set a minimum width */
  text-align: center;
}

/* Additional positioning fixes for button */
.slider .slide .link-box {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  justify-content: center;
  /* Centers the button horizontally */
  width: 100%;
}

/* Button hover effect */
.btn-style-one:hover {
  color: #fff !important;
  background-color: #2b2c2e;
}

/* Button before hover effect */
.btn-style-one:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  content: "";
  background-color: #2b2c2e;
  transition: 0.5s;
  border-radius: 32px 0 32px 32px;
}

.btn-style-one:hover:before {
  width: 100%;
}

/* Slick navigation arrows (disabled) */
.slick-prev,
.slick-next {
  display: none;
}

/* Responsive text sizes and button positioning */
@media screen and (max-width: 768px) {
  .slider .slide h1 {
    font-size: 1.5rem;
  }

  .slider .slide p {
    font-size: 1rem;
  }

  .slider .slide .link-box a {
    font-size: 1rem;
    padding: 10px 20px;
    min-width: 120px;
    /* Ensure the button maintains a reasonable width */
  }
}

@media screen and (max-width: 480px) {
  .slider .slide h1 {
    font-size: 0.9rem;
    top: 20%;
    margin-bottom: 10px;
    /* Added margin for space between title and subtitle */
  }

  .slider .slide p {
    font-size: 0.7rem;
    top: 40%;
    /* Adjusted top value to ensure subtitle doesn't overlap with title */
    margin-bottom: 15px;
    /* Added margin for space between subtitle and button */
  }

  .slider .slide .link-box a {
    font-size: 0.4rem;
    padding: 4px 8px;
    min-width: 50px;
    /* Ensure button has a reasonable minimum width */
    top: 70%;
    /* Adjusted top value to make sure the button appears below the subtitle */
    margin-top: 10px;
    /* Added margin for better spacing */
    z-index: 20;
    /* Ensure button appears above other elements */
  }
}


.our-clients {
    margin-top: 5vh;
    position: relative;
}

/* Swiper container styling */
.swiper-container {
    width: 100%;
    height: 300px;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

/* Styling for the title */
.sec-title {
    text-align: center;
    margin-bottom: 20px;
}

.container {
    max-width: 1400px;
    padding: 60px 15px;
}

.section-title h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: black;
}

.section-title p {
    font-size: 1.1rem;
    color: #777;
}

/* Product Card */
.product-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: 20px;
}

.product-card-body h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.product-card-body p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
}

/* Filter Section */
.filter-section {
    margin-bottom: 40px;
    text-align: center;
}

.form-select {
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Centered Button Section */
.text-center-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Badge Styles */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}