.hero-image {
  position: relative;
  max-width: 100%;
  margin: -30px auto 0;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-floater {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 120px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  background: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: var(--shadow);
}

/* Service Card (Home specific style) */
.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-img-wrapper {
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}

/* .service-img-wrapper img.icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.5s ease;
} */

.service-img-wrapper img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* FAQ Section */
.faq-item {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: var(--border-radius);
  margin-bottom: 20px; /* Increase spacing */
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05); /* Softer initial shadow */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--text-color); /* Use standard text color initially */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
  z-index: 2;
}

.faq-question:hover {
  background-color: #fafafa;
  color: var(--primary-color);
}

/* Custom Checkbox/Icon Style */
.faq-question span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  font-weight: 400; /* Regular weight for +/- */
}

/* Answer Area */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-light);
  line-height: 1.7;
  opacity: 0;
  background-color: white; /* Ensure consistent background */
  transform: translateY(-5px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.05rem;
}

/* Active State */
.faq-item.active {
  border-color: transparent; /* Remove default border */
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* Use box-shadow for prominence */
  transform: translateY(-2px);
}

.faq-item.active .faq-question {
  color: var(--primary-dark);
  background-color: white;
  padding-bottom: 12px; /* Reduce padding slightly when open to group with answer */
}

.faq-item.active .faq-question span {
  background: var(--primary-color);
  color: white;
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 24px;
  transform: translateY(0);
}

.faq-question span {
  transition: transform 0.3s;
  font-weight: bold;
  font-size: 1.5rem;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive specifics for Index */
@media (max-width: 768px) {
  .scroll-indicator{
    display: none !important;
  }
  .hero-image {
    margin-top: 30px;
  }
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.target-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.target-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.target-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.target-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 10px;
}

.target-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border-color: rgba(79, 70, 229, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.target-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transform: scale(1.2);
    filter: blur(8px);
}

.gradient-1 { background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%); color: white; }
.gradient-2 { background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%); color: white; }
.gradient-3 { background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%); color: white; }
.gradient-4 { background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%); color: white; }

.target-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.target-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #cbd5e1;
  border-radius: 20px;
  position: relative;
}

.mouse::after {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}
