/* Hero Section Styles */
.hero {
  padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
  background: linear-gradient(125deg, var(--dark) 40%, #cccccc 100%);
  /* background: linear-gradient(135deg, var(--dark) 0%, var(--gray-800) 100%); */
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  align-content: flex-end;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}
.girl-leaning img {
  max-width: 500px;
}
.girl-leaning {
  margin-bottom: -20px;
  justify-content: flex-end;
  display: flex;
}
.hero-carousel {
  flex: 1;
  position: relative;
}

/* Hero Background Animation */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}

.hero-particle {
  position: absolute;
  background-color: pink);
  border-radius: 50%;
  opacity: 0.5;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-30px) translateX(15px);
  }
  50% {
    transform: translateY(-15px) translateX(30px);
  }
  75% {
    transform: translateY(-25px) translateX(-15px);
  }
}

/* Hero Headline Animation */
.hero-headline {
  font-size: 3rem;
font-family: var(--font-heading);
  margin-bottom: 0;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-headline span {
  display: inline-block;
  color: var(--primary-blue);
}
.hero h3 {
  opacity: 0;
  transform: translateY(20px)!important;
  animation: fadeInUp 0.8s forwards 0.4s!important;
   font-size: 2rem !important;
font-family: var(--font-heading);
}
.hero-subheadline {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.4s;
}
.hero-content h3 span {
  display: inline-block;
  color: var(--primary-blue);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero CTA Button */
.hero-cta {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-lg);
  background-color: var(--primary-purple);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-cta:hover {
  background-color: #8904d4;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #d404c84a;
}

.hero-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.hero-cta:hover:before {
  left: 100%;
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-md);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-item-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-blue);
}

.carousel-item-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.carousel-item-description {
  font-size: 1rem;
  color: var(--gray-100);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: var(--primary-blue);
}

.carousel-arrow-left {
  left: -20px;
}

.carousel-arrow-right {
  right: -20px;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s forwards 1.5s;
}

.scroll-indicator-text {
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-indicator-arrow {
  width: 30px;
  height: 30px;
  animation: bounce 2s infinite;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: var(--spacing-xl);
    text-align: center;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .carousel {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .carousel-arrow {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 1.8rem;
  }

}
.size-up{
font-size:100%!important;
}

header#site-header {
    padding: var(--spacing-md) 0;
    background-color: var(--white);
    background: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    border-left: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}
