/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f4f4;
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#particle-canvas,
#mouse-trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#particle-canvas {
  z-index: -1;
}

#mouse-trail-canvas {
  z-index: 10;
}

.container {
  background-color: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;/* space around the content */
  position: relative;
  z-index: 1;
}

.circles-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.absolute {
  position: absolute;
}
/*calling altone trial font*/
@font-face {
  font-family: 'Altone Trial';
  src: url('/assets/fonts/altone-trial-cufonfonts/AltoneTrial-Bold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: 'Altone Trial';
  src: url('/assets/fonts/altone-trial-cufonfonts/AltoneTrial-RegularOblique.ttf') format('truetype');
 font-style: italic;
}
@font-face {
  font-family: 'Altone Trial';
  src: url('/assets/fonts/altone-trial-cufonfonts/AltoneTrial-Regular.ttf') format('truetype');
 font-weight: normal;
}
@font-face {
  font-family: 'Altone Trial';
  src: url('/assets/fonts/altone-trial-cufonfonts/AltoneTrial-BoldOblique.ttf') format('truetype');
 font-weight: bold;
 font-style: italic;
}
/*calling altone trial font ends here*/
/* h1 animation*/
h1 {
  clip-path: inset(0 0 0 0); /* initial clip-path */
  animation: reveal 2s forwards; /* animation */
}

@keyframes reveal {
  0% {
    clip-path: inset(0 100% 0 0); /* start with clip-path covering the entire text */
  }
  100% {
    clip-path: inset(0 0 0 0); /* end with clip-path revealing the entire text */
  }
}

h1 span {
  animation: word-reveal 2s forwards; /* animation for each word */
}

@keyframes word-reveal {
  0% {
    opacity: 0; /* start with opacity 0 */
  }
  100% {
    opacity: 1; /* end with opacity 1 */
  }
}

/* add a delay to each word to create a staggered effect */
h1 span:nth-child(1) {
  animation-delay: 0s;
}
h1 span:nth-child(2) {
  animation-delay: 0.2s;
}
h1 span:nth-child(3) {
  animation-delay: 0.4s;
}
/* add more delays for each word */
/* h1 animation ends here*/

.logo-container h1 {
  font-family: 'Altone Trial'Arial, Arial, Helvetica, sans-serif!important;
  font-weight: Bold;
  font-size: 4rem;
  text-transform: lowercase;
  color: #24346a;
  margin-top: 30px;
}
/*try*/

.logo-container p:nth-child(2) {
  font-family: 'Altone Trial', Arial !important;
  margin-top: 10px;
  font-size: 1.5rem;
  color: #24346a;
  text-align: center;
  font-weight:normal;
   text-shadow: 0 5px 3px rgba(31, 41, 55, 0.2);
  /*addintroFadeIn*/  
 position: relative;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 1s, transform 1s;
  animation: intro-animation 2s forwards;
  animation-delay: .4s;
  overflow: hidden;
  height: 0;
}

@keyframes intro-animation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    height: 100%;
  }
}
/*addintroFadeIn ends here*/  

.logo-container p:nth-child(1) {
  font-family: 'Altone Trial' ,Arial !important;
  margin-top: 10px;
  font-size: .9rem;
  color: #24346a;
  text-align: center;
  font-style:italic;
  /*addintroFadeIn*/  
     opacity: 0;
  transition: opacity 2s;
}

/* then, somewhere else in your code, you can add a class or a style to change the opacity */
.logo-container p:nth-child(1).visible {
  opacity: .4;
}
/*introFadeInUptoHere*/

.logo-container > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
 width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fbbf24;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}

.large-circle {
  width: 60px;
  height: 60px;
}

.circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  margin: 0 auto;
}

.circle-label1 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #fbbf24;
}

.circle-label2 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #fbbf24;
}

.circle-label3 {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #fbbf24;
}

.circle-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

/* Animation for circles on page load */
@keyframes raindropFall {
  0% {
    opacity: 0;
    transform: translateY(-400px) translateX(-40px) scale(1);
  }

  60% {
    opacity: 1;
    transform: translateY(40px) translateX(-40px) scale(1);
  }

  65% {
    transform: translateY(40px) translateX(-40px) scale(1.05);
  }

  70% {
    transform: translateY(40px) translateX(-40px) scale(1.1);
  }

  75% {
    transform: translateY(40px) translateX(-40px) scale(1.15);
  }

  80% {
    transform: translateY(40px) translateX(-40px) scale(1.2);
  }

  85% {
    transform: translateY(40px) translateX(-40px) scale(1.1);
  }

  90% {
    transform: translateY(40px) translateX(-40px) scale(0.9);
    opacity: 0.8;
  }

  95% {
    transform: translateY(40px) translateX(-40px) scale(0.4);
    opacity: 0.4;
  }

  100% {
    transform: translateY(40px) translateX(-40px)scale(0);
    opacity: 0;
  }
}

@keyframes circleDivide {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
  }
}

@keyframes circleLeft {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0px) scale(1);
  }
}

@keyframes circleRight {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) translateX(0px) scale(1);
  }
}

.raindrop-animation {
  position: absolute;
  animation: raindropFall 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 10;
}

.circle-animation-1 {
  animation: circleDivide 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2s;
  opacity: 0;
  transform: scale(0);
}

.circle-animation-2 {
  animation: circleLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2s;
  opacity: 0;
  transform: scale(0);
}

.circle-animation-3 {
  animation: circleRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2s;
  opacity: 0;
  transform: scale(0);
}


/* Media query for desktop */
@media (min-width: 768px) {
  .circle {
    width: 64px;
    height: 64px;
  }

  .large-circle {
    width: 80px;
    height: 80px;
  }

  .circle-row {
    flex-direction: row;
    gap: 64px;
  }

}

@media (max-width: 1536px){
  .logo-container{
margin-top: -2%;
  }
  .circles-container{
top:-2vh;
width: 70%;
  }
}

@media (max-width:767px)
{
.logo-container h1 {
 text-align: center;
  opacity: 1;
  font-size: 3.5em;
}

  .large-circle {
    margin-left: 8.5px;
    margin-top: 90px;
  }
.logo-container p:nth-child(2) {
  font-size: 1.5em;
  padding-bottom: 50px;
}
}
/*
@media (max-width: 1366px){
  .logo-container{
margin-top: -50%;
  }
  .circles-container{
top:-2vh;
width: 70%;
  }
}