/* Main Card Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #333;
}

.card-container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 20px;
}

.card-header {
  padding: 30px 20px;
  text-align: center;
  color: white;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header h1 {
  margin: 10px 0 5px;
  font-size: 24px;
  font-weight: 700;
}

.card-header .title {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

.card-header .company {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.8;
}

.card-body {
  padding: 20px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-item i {
  margin-right: 10px;
  color: #6e8efb;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #6e8efb;
}

.qr-section {
  text-align: center;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.qr-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  display: block;
}

.download-link {
  display: inline-block;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.download-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(110, 142, 251, 0.3);
}

.download-link i {
  margin-right: 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f2f5;
  color: #6e8efb;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: #6e8efb;
  color: white;
  transform: translateY(-3px);
}

/* Tabs Styles */
.tabs-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tab-button {
  flex: 1;
  padding: 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  transition: all 0.3s;
}

.tab-button.active {
  color: #6e8efb;
  border-bottom: 2px solid #6e8efb;
}

.tab-button:hover:not(.active) {
  background-color: #f9f9f9;
  color: #555;
}

.tab-content {
  padding: 20px;
  display: none;
}

.tab-content h3 {
  margin-top: 0;
  color: #6e8efb;
  font-size: 18px;
}

.tab-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  font-size: 24px;
  color: #555;
}

/* Company Logo Styles */
.company-logo-container {
  text-align: center;
  margin-bottom: 15px;
}

.company-logo {
  width: 80px; /* Fixed size for perfect circle */
  height: 80px; /* Same as width */
  object-fit: cover; /* Ensures image fills the circle */
  border-radius: 50%; /* This makes it circular */
  background-color: #f8f9fa; /* Light gray background */
  padding: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid white; /* Optional: adds a clean border */
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .card-container {
    padding: 10px;
  }
  
  .card-header {
    padding: 20px 15px;
  }
  
  .profile-img {
    width: 100px;
    height: 100px;
  }

  .company-logo {
    width: 60px; /* Smaller circle on mobile */
    height: 60px;
  }

}