body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
}
.parallax {
  background-image: url('https://picsum.photos/id/1018/1200/400');
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-shadow: 2px 2px 4px #000;
}
.card-title {
  font-size: 1.1rem;
}
.card-text i {
  color: #555;
}
footer {
  font-size: 0.9rem;
}
/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to animated sections */
.animated-section {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/* Section backgrounds */
.bg-soft {
  background-color: #f8f9fa;
}

.bg-review {
  background: #fff8e1;
  border: 1px solid #ffecb3;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.05);
  padding: 16px;
  margin-bottom: 12px;
}

.about-company-section {
  background: linear-gradient(to right, #e0eafc, #cfdef3);
  padding: 40px 20px;
  border-radius: 12px;
  margin-top: 40px;
}

.review-heading {
  font-weight: bold;
  color: #333;
}
.shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.circle-shape {
  width: 100px;
  height: 100px;
  background: #ffe0b2;
  border-radius: 50%;
  position: absolute;
  top: 100px;
  left: 30px;
  opacity: 0.4;
}

.triangle-shape {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #b3e5fc;
  position: absolute;
  bottom: 100px;
  right: 50px;
  opacity: 0.5;
}
  .details-btn {
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.details-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #5a73e8, #8a5eea);
  color: #fff;
}

.details-btn i {
  transition: transform 0.3s ease-in-out;
}

.details-btn:hover i {
  transform: translateX(5px);
}
