* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #0e1a36 0%, #1a2f5a 100%);
  color: white;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Zig-zag decorative lines */
.zigzag-top,
.zigzag-bottom {
  position: absolute;
  width: 100%;
  height: 30px;
  background: repeating-linear-gradient(
    45deg,
    #1381de,
    #1381de 15px,
    transparent 15px,
    transparent 30px
  );
  z-index: 1;
}

.zigzag-top {
  top: 50px;
  left: 0;
}

.zigzag-bottom {
  bottom: 150px;
  right: 0;
  transform: rotate(180deg);
}

.container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

/* Profile Section */
.profile-section {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(19, 129, 222, 0.3);
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #1381de;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1381de, #0a5eb3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  color: white;
  overflow: hidden;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.profile-phone {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.profile-phone a {
  color: white;
  text-decoration: none;
}

.profile-phone a:hover {
  text-decoration: underline;
}

/* Catchline Section */
.catchline-section {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(19, 129, 222, 0.1);
  border-radius: 15px;
  border-left: 4px solid #1381de;
}

.catchline {
  font-size: 18px;
  font-style: italic;
  color: white;
  font-weight: 500;
}

/* Companies Section */
.companies-section {
  margin-bottom: 30px;
}

.section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #1381de;
  backdrop-filter: blur(5px);
}

.company-name {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-location {
  font-size: 14px;
  color: white;
  margin-bottom: 5px;
  line-height: 1.4;
}

.company-email {
  font-size: 14px;
  color: white;
  text-decoration: none;
}

.company-email:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(19, 129, 222, 0.3);
}

.qr-codes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 20px;
}

.qr-item {
  text-align: center;
  flex: 0 0 auto;
  margin: 0 10px;
  max-width: 100px;
}

.qr-code {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 10px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1381de;
  overflow: hidden;
}

.qr-image {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 6px;
  max-width: 76px;
  max-height: 76px;
}

.qr-label {
  font-size: 12px;
  color: white;
  font-weight: bold;
  margin-bottom: 5px;
}

.qr-text {
  font-size: 10px;
  color: white;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 15px;
    max-width: 100%;
  }

  .profile-image {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }

  .profile-name {
    font-size: 20px;
  }

  .profile-phone {
    font-size: 16px;
  }

  .catchline {
    font-size: 16px;
  }

  .company-name {
    font-size: 14px;
  }

  .company-location {
    font-size: 12px;
  }

  .qr-code {
    width: 70px;
    height: 70px;
  }

  .qr-image {
    width: 66px;
    height: 66px;
    max-width: 66px;
    max-height: 66px;
  }

  .zigzag-top,
  .zigzag-bottom {
    height: 20px;
  }
}

@media (max-width: 320px) {
  .qr-codes {
    flex-direction: column;
    gap: 15px;
  }

  .qr-item {
    margin: 0;
  }
}

/* Animation for subtle effects */
.profile-section,
.companies-section .company,
.contact-section {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-section:hover,
.companies-section .company:hover,
.contact-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(19, 129, 222, 0.2);
}

.qr-code {
  transition: transform 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.1);
}
