body { 
  font-family: 'Segoe UI', sans-serif; 
}

.hero { 
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('https://creativedunia.com/image/banner.webp'); 
  background-size: cover; 
  color: white; 
  padding: 120px 20px; 
  text-align: center;
}

.card i { 
  font-size: 2rem; 
  color: #0d6efd; 
  margin-bottom: 15px; 
}

.whatsapp-btn { 
  position: fixed; 
  bottom: 20px; 
  right: 20px; 
  background: #25D366; 
  color: #fff; 
  border-radius: 50%; 
  padding: 15px; 
  font-size: 24px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
  z-index: 999;
}

.whatsapp-btn:hover { 
  background: #1ebe5b; 
  color: #fff;
}

.navbar { 
  background: #fff; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar-brand { 
  font-weight: bold; 
  color: #0d6efd; 
}

footer a { 
  color: #ccc; 
  text-decoration: none; 
}

footer a:hover { 
  color: #fff;
}

/* Industry Cards */
.industry-card {
  transition: all 0.4s ease;
  border-radius: 18px;
  background: #fff;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.industry-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.industry-card:hover .icon-wrapper {
  transform: scale(1.15) rotate(10deg);
}

/* Gradient Backgrounds */
.bg-gradient-1 { background: linear-gradient(135deg, #ff6a00, #ee0979); }
.bg-gradient-2 { background: linear-gradient(135deg, #36d1dc, #5b86e5); }
.bg-gradient-3 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.bg-gradient-4 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.bg-gradient-5 { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.bg-gradient-6 { background: linear-gradient(135deg, #fc466b, #3f5efb); }

/* About Cards */
.about-card {
  background: #fff;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.about-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-card img {
  max-width: 50px;
  max-height: 50px;
}

/* Titles */
.section-title {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
}

/* Service Cards */
.service-card {
  transition: all 0.4s ease;
  border-radius: 20px;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-card .icon-wrapper {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
  transform: rotate(12deg) scale(1.1);
}

/* Achievement Cards */
.achievement-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.achievement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.achievement-card .icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  color: #fff;
}

.counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0;
}

/* Fade-in Animation */
.achievement-card:nth-child(1) { animation-delay: 0.2s; }
.achievement-card:nth-child(2) { animation-delay: 0.4s; }
.achievement-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
