/* Topbar */
.topbar {
  background: #22c55e;
  color: white;
  padding: 6px;
  font-size: 14px;
}

/* Glass Navbar */
.glass-nav {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero {
  padding: 120px 20px;
  background: linear-gradient(135deg, #0f172a);
  overflow: hidden;
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 15px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Icons */
.service-icon {
  font-size: 40px;
  color: #22c55e;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 80px 0;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.accordion-button {
  font-weight: 600;
}

.accordion-item {
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color:black;
}

section p {
  font-size: 16px;
  line-height: 1.7;
}

/* Hide on desktop */
.mobile-hero-cta {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {

  .mobile-hero-cta {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .mobile-hero-cta a {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: 0.3s ease;
  }

  .mobile-hero-cta a:hover {
    background: #222;
    color: #fff;
  }
}
