:root {
  --primary-color: #3498db;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --info-color: #17a2b8;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.card-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.digital-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 40px 20px;
  position: relative;
}

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

.profile-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 15px 0 5px;
}

.profile-title {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

.profile-company {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

.profile-tagline {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  max-width: 600px;
}

.qr-section {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.qr-code {
  width: 150px;
  height: 150px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.qr-code i {
  font-size: 4rem;
  color: var(--dark-color);
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.btn-action {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

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

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 10px;
}

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

.content-section {
  padding: 40px 30px;
}

.service-card,
.product-card,
.team-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover,
.product-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon,
.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-icon i,
.product-icon i {
  font-size: 1.8rem;
  color: white;
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.testimonial-card {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin-bottom: 25px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
}

.timeline-date {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
}

.faq-question {
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding-bottom: 15px;
  display: none;
}

.footer-section {
  background: var(--secondary-color);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  .profile-img {
    width: 120px;
    height: 120px;
  }
  .profile-name {
    font-size: 1.6rem;
  }
  .content-section {
    padding: 30px 20px;
  }
  .action-buttons {
    justify-content: center;
  }
}
body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .profile-img {
  float: right;
  margin-left: 20px;
  margin-right: 0;
}

body.rtl .action-buttons,
body.rtl .social-icons {
  justify-content: flex-end;
}

body.rtl .section-title::after {
  left: auto;
  right: 0;
}

body.rtl .testimonial-card {
  border-left: none;
  border-right: 4px solid var(--primary-color);
  padding-left: 0;
  padding-right: 20px;
}

body.rtl .timeline {
  padding-left: 0;
  padding-right: 30px;
}

body.rtl .timeline::before {
  left: auto;
  right: 10px;
}

body.rtl .timeline-item::before {
  left: auto;
  right: -33px;
}

body.rtl .timeline-date {
  text-align: right;
}

body.rtl .faq-question,
body.rtl .faq-answer {
  text-align: right;
}/*# sourceMappingURL=visting-card12.css.map */