@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Lexend+Giga:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sigmar&display=swap');

.header-one{
font-family: 'Jost', sans-serif;
font-weight: 400;
font-size: 12px;

letter-spacing: 0%;

}

@keyframes wave {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-15deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

/* Style the filterable content */
#myBtnContainer {
  background-color:rgba(231, 241, 254, 1);
  
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

/* Button styling */
.filter-btn {
  background-color:rgba(231, 241, 254, 1);
  color:rgba(7, 27, 89, 1);
  
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover {
  background: linear-gradient(45deg, rgba(11, 111, 244, 1)
  , rgba(11, 111, 244, 1)
  );
  transform: translateY(-3px);
}

.filter-btn.active {
  background: linear-gradient(45deg, rgba(11, 111, 244, 1)
  , rgba(11, 111, 244, 1)
  );
}

/* Styling for filterable elements */
.filterDiv {
  display: none;
  padding: 20px;
  
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: bold;
  color: #333;
}
#border-radius-changing{
  border-radius:0px;
  margin:0px;
}



.filterDiv.show {
  display: block;
}

/* Container styling */
.container {
  margin-top: 20px;
}
#review-slider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#review-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

#awards-slider{
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  
  #awards-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }

  .awards-section {
    background: linear-gradient(to bottom, #e8f5e9, #ffffff);
    border-radius: 12px;
  }

  .awards-subtitle {
    font-size: 16px;
    color: #0B6FF4;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .awards-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
  }

  .scroll-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background-color: #0B6FF4;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
  }

  .scroll-left {
    left: 15px;
  }

  .scroll-right {
    right: 15px;
  }

  .awards-slider {
    scroll-behavior: smooth;
  }

  .award-card {
    flex-shrink: 0;
    width: 280px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
  }

  .award-card:hover {
    transform: translateY(-10px);
  }

  .award-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .scroll-btn {
      display: none;
    }

    .award-card {
      width: 150px;
    }

    .award-img {
      height: 120px;
    }
  }

  .actual-form-button:hover {
      background-color:white;
      border:1px solid yellow;
        color:yellow;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .hover-effect {
      transition: all 0.3s ease-in-out;
    }
  
    .hover-effect:hover {
      background: linear-gradient(45deg, #ffcc00, #ffd700);
      color: black;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
  
    .filter-btn.active {
      background-color: #0d6efd;
      color: white;
    }
 
