@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Prata&display=swap');

body {
  font-family: "Bricolage Grotesque", sans-serif;
  overflow-x: hidden;
}

* {
  user-select: none;
}

img {
  user-select: none;
}

body {
  -webkit-user-select: none;
  /* Chrome, Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
  user-select: none;
  overflow-x: hidden;
  /* Standard */
}

.font-title {
  font-family: "Prata", serif;
}

.play-size {
  font-size: 80px;
}

.icon-size {
  font-size: 50px;
}

.icon-size-1 {
  font-size: 35px;
}
.icon-size-2{
  font-size: 20px;
}
.icon-size-3{
  font-size: 30px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  /* width of scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #09b850;
}

::-webkit-scrollbar-thumb:hover {
  background: #1d9d50;
  /* hover color */
}

#typing-text {
  border-right: 5px solid #09b850;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

/* -----------------------------------------------Header css------------------------------------------------- */

/* Basic Styling for your header */
header {
  position: absolute;
  z-index: 10;
   top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
}


header.sticky img {
  display: block;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: smooth-scroll 0.4s ease-in alternate;
}

@keyframes smooth-scroll {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

/* Active state style for the navigation links */
nav a.active {
  color: #09b850 !important;
  /* Green color for the active link */
}

.button-hover {
  position: relative;
  /* Ensure positioning context for the pseudo-element */
  z-index: 0;
}

.button-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  transition: width 0.7s ease;
  z-index: -1;
  /* Keeps it behind the text */
}

.button-hover:hover::before {
  width: 100%;
  /* Expands the pseudo-element to fill the button */
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.active-a {
  padding-top: 0.75rem; 
  padding-bottom: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); 
  opacity: 1;
}



