body,
html {
  height: 100%;
  color: #181818;
  font-family: 'Inter', sans-serif;
}

.hero-section {
  min-height: 100vh;
  height: 100%;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

#hero-text-container {
  position: relative;
  height: 100vh;
  /* width: 100%; */
  overflow: hidden;
}

#canvasContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tag-cloud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: auto;
  max-width: 90%;
  backdrop-filter: blur(10px);
}

.text-gradient {
  background: linear-gradient(45deg, #1a1a1a, #a10707);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  position: absolute;
  margin: 5px;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.tag:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background: white;
}

.hero-content {
  padding: 15vh 0;
}

.btn-custom-dark {
  background-color: #1a1a1a;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-custom-red {
  background-color: #a10707;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-custom-dark:hover,
.btn-custom-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

.image-overlay {
  position: relative;
  height: 100%;
  background: url("/static/img/bg/hero_home.png") no-repeat center center;
  background-size: cover;
}

.image-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(161, 7, 7, 0.8), rgba(26, 26, 26, 0.8));
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.counter-container:hover {
  transform: translateY(-5px);
}

.counter {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 1rem 0;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.bg-none {
  background-color: transparent !important;
}

.bg-talent {
  background-color: #182638;
  color: white;
}

.startups-section {
  background-color: #16162e;
  color: white;
  padding: 40px 0;
}

.pink-bg {
  background-color: #fff0f5;
}

.icon-circle {
  background: linear-gradient(45deg, #a10707, #ff4d4d);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 0, 0, 0.02);
  transform: translateX(5px);
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.feature-text p {
  color: #666;
  margin: 0;
}

.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content i {
  color: #a10707;
  font-size: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-author h5 {
  margin: 0;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.testimonial-author p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.partner-logo {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }

  #hero-text-container {
    height: auto;
    min-height: 100vh;
  }

  .counter-container {
    margin: 15px 0;
  }

  .feature-item {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    margin-bottom: 1.5rem;
  }
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.bg-light-subtle {
  background-color: #f8f9fa;
}

.gap-3 {
  gap: 1rem;
}

.feature-image-placeholder {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 10px;
  color: #a10707;
}

.feature-image-placeholder i {
  margin-bottom: 1rem;
}

.testimonial-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #a10707;
}

/* Navigation Styles */
.nav-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 0.5rem 0;
}

.nav-link {
  color: #1a1a1a !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #a10707 !important;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #a10707;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
  width: 80%;
}

.logo-hover {
  transition: transform 0.3s ease;
}

.logo-hover:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 6px;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  border-color: #a10707;
  color: #a10707;
}

.btn-outline-primary:hover {
  background-color: #a10707;
  border-color: #a10707;
  color: white;
}

.btn-primary {
  background-color: #a10707;
  border-color: #a10707;
}

.btn-primary:hover {
  background-color: #8a0606;
  border-color: #8a0606;
}
