body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #fff; /* keep page background white */
  min-height: 100vh;
}

/* Center container with patterned background */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  text-align: center;
  background: url('../images/background.png') repeat;
  background-size: contain; /* or use 'auto' or 'cover' as needed */
}

/* Desktop layout */
@media (min-width: 768px) {
  .container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .cover-photo {
    border-radius: 10px;
  }
}

.promotion-banner {
  background-color: #f0f8ff;
  color: #111;
  padding: 12px 20px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center; /* Add this line */
}

.promotion-banner a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.cover-photo {
  width: 100%;
  height: 200px;
  background-image: url('../images/cover.png'); /* correct relative path */
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 60px;
  cursor: pointer;
  border-radius: 0;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  position: absolute;
  bottom: -40px;
  left: 20px;
  background: white;
  cursor: pointer;
}

.call-now {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: linear-gradient(to right, #0099ff, #66ccff);
  color: white;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.role {
  font-weight: bold;
  padding: 0 20px;
}

.location {
  font-style: italic;
  color: #555;
  margin: 5px 0;
  padding: 0 20px;
}

.location.job-description {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  padding: 5px 20px;
}

.bio {
  margin: 15px 0;
  color: #333;
  padding: 0 20px;
}

.save-contact-btn {
  display: inline-block;
  background: black;
  color: white;
  padding: 15px 30px;
  margin: 20px 0;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.link-row {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  justify-content: start;
}

.link-row a, .link-row button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}

.link-row img {
  width: 30px;
  margin-right: 15px;
}

.link-row span {
  flex-grow: 1;
  text-align: left;
}

.banking-section {
  margin: 25px 0 15px;
  text-align: center;
  padding: 0 20px;
}

.banking-section button {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.bank-details {
  display: none;
  background-color: #f7f7f7;
  padding: 15px;
  margin-top: 10px;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
}

.bank-details.show {
  display: block;
}

.portfolio-section {
  margin-top: 20px;
  padding: 0 20px;
}

.portfolio-section h3 {
  margin-bottom: 10px;
}

.carousel-container {
  position: relative;
  width: 100%;
}

.carousel {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.carousel-track {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 1000%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 10%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #f9f9f9;
}

/* Desktop-specific adjustments */
@media (min-width: 768px) {
  .carousel {
    padding-bottom: 100%;
  }
  
  .carousel-track img {
    object-fit: contain;
    background-color: #000;
  }
}

.branding {
  margin-top: 30px;
  text-align: center;
  padding: 0 20px 20px;
}

.branding .brand-name {
  font-size: 16px;
  font-weight: bold;
}

.branding .brand-desc {
  margin-top: 40px; /* pushes "Designed by" lower */
  font-size: 14px;
  color: #555; /* optional: softer text color */
}


.branding a {
  text-decoration: none;
}

.logo {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.brand-desc {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

#clickableCarousel {
  cursor: pointer;
}



