:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d ;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.hero-card {
  background: linear-gradient(135deg, var(--primary-color) 0, #1a2530 100%);
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.2);
  -o-object-fit: cover;
     object-fit: cover;
}

.qr-code {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-weight: 600;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--dark-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-3px);
}

.contact-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.call-btn {
  background-color: #2ecc71;
  color: #fff;
}

.whatsapp-btn {
  background-color: #25d366;
  color: #fff;
}

.email-btn {
  background-color: var(--accent-color);
  color: #fff;
}

.sms-btn {
  background-color: #9b59b6;
  color: #fff;
}

footer {
  background-color: var(--primary-color);
  color: #fff;
}

@media (max-width: 768px) {
  .profile-img {
    width: 120px;
    height: 120px;
  }
  .qr-code {
    width: 100px;
    height: 100px;
  }
}/*# sourceMappingURL=visting-card11.css.map */