/* Hero Section */
.hero-section {
  width:100%;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

h1{
  font-size: 91px;
  line-height: 1.2em;
  margin-top: 20px;
  color: black;
  font-weight:800;
}
h3{
  font-weight: 700;
}
.line-after:after{
  content: "";
  display: block;
  width: 60%;
  height: 10px;
  background: var(--primary-color);
  margin-bottom: 10px;
}
h6{
  font-weight: 700;
}

.hero-section h4 {
  font-size: 1.5em;
  /* line-height: 1.6; */
  color: #000;
  margin: 2rem 0;
  font-weight: 700;
  
  
}
.dash-card{
  border-radius: 10px;
  border: 1px solid var(--primary-color);
}
.icon{
  max-width: 75px;
}
.green-underline {
  position: relative;
  display: inline-block;
}

.green-underline:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10px;
  background: var(--primary-color);
  /* border-radius: 5px; */
}

/* Sparkle Mouse Effect */
.sparkle-mouse .star {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
}

@keyframes fall-1 {
  0% {
    transform: translate(0px, 0px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(0.25);
    opacity: 0;
  }
  5% {
    transform: translate(10px, -10px) rotateX(45deg) rotateY(30deg) rotateZ(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(25px, 200px) rotateX(180deg) rotateY(270deg) rotateZ(90deg) scale(1);
    opacity: 0;
  }
}

@keyframes fall-2 {
  0% {
    transform: translate(0px, 0px) rotateX(-20deg) rotateY(10deg) scale(0.25);
    opacity: 0;
  }
  10% {
    transform: translate(-10px, -5px) rotateX(-20deg) rotateY(10deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-10px, 160px) rotateX(-90deg) rotateY(45deg) scale(0.25);
    opacity: 0;
  }
}

@keyframes fall-3 {
  0% {
    transform: translate(0px, 0px) rotateX(0deg) rotateY(45deg) scale(0.5);
    opacity: 0;
  }
  15% {
    transform: translate(7px, 5px) rotateX(0deg) rotateY(45deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(20px, 120px) rotateX(-180deg) rotateY(-90deg) scale(0.5);
    opacity: 0;
  }
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-description {
  color: #666;
  line-height: 1.6;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: .7rem 2rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-btn img {
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  transition: transform 0.5s ease-in-out;
}

.cta-btn:hover img {
  transform: rotate(180deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section h4 {
    font-size: 1.2rem;
  }

  .feature-card {
    margin-bottom: 1rem;
  }

  .green-underline:after {
    height: 6px;
    bottom: -6px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

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

/* Utility Classes for Index Page */
.text-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
} 