body {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.floating-btn {
    position: fixed;
    right: 20px;
    z-index: 50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.call-btn {
    bottom: 100px;
    background-color: #10b981;
}

.whatsapp-btn {
    bottom: 30px;
    background-color: #25d366;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .call-btn {
        bottom: 80px;
    }
}
.hero {
  position: relative;
  min-height: 90vh;
  background-image: url("/Images/H1upscaled.jpeg"); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero-content {
  position: relative; 
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-text h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.2;
}

.hero-text p {
  color: #e5e7eb;
  margin-top: 12px;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.why-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: #ede9fe;
  color: #6d28d9;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.9rem;
  color: #6b7280;
}

.how-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6d28d9;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.testimonials {
  padding: 80px 8%;
  background: #fafafa;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #0f172a;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}


.review {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 25px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user h4 {
  font-size: 16px;
  margin: 0;
  color: #0f172a;
}

.user span {
  font-size: 13px;
  color: #64748b;
}

.rating {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: -2px;
}
.contact-card .icon i {
  font-size: 28px;
  color: #7c3aed; /* purple */
  background: #f3e8ff;
  padding: 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-card:hover .icon i {
  background: #7c3aed;
  color: #ffffff;
  transform: scale(1.1);
}
