
* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

/* scroll bar styling section  */

::-webkit-scrollbar-thumb {
  background: #000;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(179, 0, 0);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #ccc;
}

/* font styling section  */

.poppins {
  font-family: "Poppins", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.Montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.Poiret_One {
  font-family: "Poiret One", sans-serif;
  font-style: normal;
}

.Raleway {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.Oswald {
  font-family: "Oswald", sans-serif;
}

/* custom btn */

a {
  display: inline-block;
}

.custom-btn {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: white;
  background-color: #ff006e;
  box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
  height: 44px;
}

.custom-btn span,
.custom-btn div {
  position: relative;
  z-index: 20;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.custom-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0;
  background: white;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: height 0.3s ease;
  pointer-events: none;
}

.custom-btn:hover {
  color: #ff006e;
  opacity: 0.9;
}

.custom-btn:hover::before {
  height: 44px;
}

.custom-btn-2 {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: white;
  background-color: #ff006e;
  border: 1px solid #ff006e;
  box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
  height: 44px;
}

.custom-btn-2 span {
  position: relative;
  z-index: 20;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.custom-btn-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0;
  background: white;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: height 0.3s ease;
  pointer-events: none;
}

.custom-btn-2:hover {
  color: #ff006e !important;
  opacity: 0.9;
}

.custom-btn-2:hover::before {
  height: 44px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* header section */

/* Canvas Animation Styles */
.large-header {
  position: absolute;
  width: 100%;
  background: #f8f8f8;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

#main-header {
  background-image: -webkit-linear-gradient(30deg, #fff 50%, #001633 50%);
}

#inner-header {
  background-image: -webkit-linear-gradient(30deg, #fff 23%, #001633 23%);
}

@media screen and (min-width: 340px) and (max-width: 1280px) {
  #inner-header {
    background-image: -webkit-linear-gradient(30deg, #fff 50%, #001633 50%);
  }
}

.mobile-scrollbar-menu::-webkit-scrollbar {
  display: none;
}



/* client logo aniamtion slider */
.client-carousel-section {
  padding: 20px 0;
}

/* Styles for the wrapper created by JavaScript */
/* .carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  box-sizing: border-box;
} */

/* Styles for the animated flex container */
.carousel_slider_1,
.carousel-clone.carousel_slider_1 {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  flex-shrink: 0;
}

/* Item styles */
.carousel_slider_1 .item,
.carousel_slider_2 .item {
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px !important;
}

@media (max-width: 768px) {
  .carousel_slider_1 .item,
  .carousel_slider_2 .item {
    min-width: 180px !important;
    padding: 0 10px;
    height: 140px !important;
  }
}

.carousel_slider_1 .item img,
.carousel_slider_2 .item img {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
}

/* Pause animation on hover */
#carousel_slider_1-wrapper:hover .carousel_slider_1 {
  animation-play-state: paused;
}

/* Animation for the first slider */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Styles for the animated flex container */
.carousel_slider_2,
.carousel-clone.carousel_slider_2 {
  display: flex;
  width: max-content;
  animation: scroll2 30s linear infinite;
  flex-shrink: 0;
}

/* Pause animation on hover */
#carousel_slider_2-wrapper:hover .carousel_slider_2 {
  animation-play-state: paused;
}

@keyframes scroll2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* footer social icons */
.social-icons ul {
  display: flex;
  padding: 0px;
  margin-top: 30px;
}
.social-icons ul li {
  list-style: none;
}
.social-icons ul li a {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  background: none;
  text-decoration: none;
  color: #fff;
  margin-right: 20px;
  transition: 0.5s;
}

.social-icons ul li a span {
  position: absolute;
  transition: transform 0.5s;
}
.social-icons ul li a span:nth-child(1),
.social-icons ul li a span:nth-child(3) {
  width: 100%;
  height: 2px;
  background: #fff;
}

.social-icons ul li a span:nth-child(1) {
  top: 0px;
  left: 0px;
  transform-origin: right;
}
.social-icons ul li a:hover span:nth-child(1) {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.social-icons ul li a span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  transform-origin: left;
}
.social-icons ul li a:hover span:nth-child(3) {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}

.social-icons ul li a span:nth-child(2),
.social-icons ul li a span:nth-child(4) {
  width: 2px;
  height: 100%;
  background: #fff;
}

.social-icons ul li a span:nth-child(2) {
  top: 0px;
  left: 0px;
  transform: scaleY(0);
  transform-origin: bottom;
}
.social-icons ul li a:hover span:nth-child(2) {
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.5s;
}

.social-icons ul li a span:nth-child(4) {
  top: 0px;
  right: 0px;
  transform: scaleY(0);
  transform-origin: top;
}
.social-icons ul li a:hover span:nth-child(4) {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}

/* all form label floating animation when focus */

.form-input label {
  position: absolute;
  top: 13px;
  left: 0px;
}

.floating_label {
  font-size: 10px !important;
  top: -5px !important;
}

.form-error{
  font-size: 12px !important;
  margin-top: 0.25rem;
  color: transparent;
  background-image: linear-gradient(to right, #f87171, #dc2626);
  -webkit-background-clip: text;
  background-clip: text;
}

/* portfolio filter btn */
.filter-btn {
  padding: 0.75rem 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: white;
  color: #001633;
  border: 1px solid #ff006e;
  cursor: pointer;
}

.filter-btn:hover {
  background-color: #ff006e;
  color: white;
  border-color: #ff006e;
}

.filter-btn.active {
  background-color: #ff006e;
  color: white;
  border-color: #ff006e;
}