@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

  .glassmorphism {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .glass {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .navglass {
    background: rgba(198, 198, 198);
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(120px);
  }

  .blur {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .gradient-text{
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.7));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  .gradient-bg{
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  }

  .clip-inward-radius {
    clip-path: path("M0,0 Q50,20 100,0 L100,100 Q50,80 0,100 Z");
  }

  .slider-wrapper{
    overflow: hidden;
    max-width: 1200px;
    margin: 0 70px 55px;
    display: flex;
    justify-content: center;
  }


  .slider-wrapper .swiper-pagination-bullet{
    background: #393939;
    width: 80px;
    height: 5px;
    border-radius: 40px;
  }



  /* .slider-wrapper2 .swiper-slide {
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-top: 96px;
  }

  .slider-wrapper2 .swiper-slide-active {
    margin-top: 0;

  } */

  .card-list .card-item {
    color: #fff;
    user-select: none;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(225, 225, 255, 0.5);
  }

  .card-list .card-item .user-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }

  .card-list .card-item .user-profession {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 500;
    margin: 14px 0 40px;
  }

  .card-list .card-item .message-button {
    font-size: 1.25rem;
    padding: 10px 35px;
    color: #030728;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    background: white;
    border: 1px solid transparent;
  }

  .card-list .card-item .message-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    color: #fff;
  }

  .slider-wrapper .slider-buttons{
    color: #fff;
    width: 5px;
    height: 5px;
    font-size: 5px;
  }

  /* infinite scroll animation */

  .scroller {
    --animation-duration: 300s;
    --animation-direction: forwards;
  }
  .scroller2 {
    --animation-duration: 50s;
    --animation-direction: forwards;
  }

  .animate-scroll {
    animation: scroll var(--animation-duration) linear infinite var(--animation-direction);
  }

  .animate-scroll-reverse {
    animation: scroll-reverse var(--animation-duration) linear infinite var(--animation-direction);
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  @keyframes scroll-reverse {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .hero-section {
    position: relative;
    background-color: white;
    padding-bottom: 3rem;
    clip-path: ellipse(100% 100% at 50% 0%);
    margin-bottom: -3rem;
    z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    clip-path: ellipse(150% 100% at 50% 0%);
  }
}

.explore-content {
  position: relative;
  background-color: white;
  margin: 0 auto;
  margin-top: -7rem;
  clip-path: ellipse(100% 100% at 50% 100%);
}

@media (max-width: 768px) {
  .explore-content {
      clip-path: ellipse(150% 80% at 50% 100%);
  }
}
/* 
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  display: flex;
  width: calc(288px * 6);
  gap: 1rem;
} */


.jobs-modal {
  z-index: 100;
}
.brand-modal {
  z-index: 100;
}

/* Markdown Content Styles */
.markdown-content h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 1em 0;
}

.markdown-content h2 {
  font-size: 1.9375rem;
  font-weight: 500;
  font-family: 'New Aeonik Trial', sans-serif;
  margin-bottom: 20px;
  color: #616161;
}

.markdown-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #616161;
}

.markdown-content h4 {
  font-size: 2.4375rem;
  font-weight: 500;
  color: #616161;
}

.markdown-content strong {
  font-weight: bold;
}

.markdown-content p {
  font-size: 1.1rem;
  margin: 1em 0;
  line-height: 1.6;
}

.markdown-content ul {
  list-style-type: disc;
  margin: 1em 0;
  padding-left: 2em;
}

.markdown-content .location {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 1em 0;
}

.markdown-content ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding-left: 2em;
}

.markdown-content blockquote {
  border-left: 4px solid #ddd;
  padding-left: 1em;
  margin: 1em 0;
}

.markdown-content code {
  background-color: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
}