body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #e0f7fa 25%, #e6f2ff 100%);
  background-image: repeating-linear-gradient(
    45deg,
    #e0f2f1 0,
    #e0f2f1 1px,
    transparent 1px,
    transparent 20px
  );
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.card-container {
  width: 100%;
  max-width: 400px;
  padding: 10px;
}

.card {
  background: #fff;
  border: 5px solid #d1d9e6;
  border-radius: 6px;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  width: 100%;
  text-align: center;


}

.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: crimson;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  border-bottom-right-radius: 12px;
  z-index: 10;
}


.logo-badge {
  position: absolute;
  top: 20px;  /* moves it slightly above so it overlaps */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  background: white; /* white base so it floats over both backgrounds */
  padding: 8px 16px;
  border-radius: 50px; /* rounded for smooth floating look */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 
              0 0 12px rgba(255, 0, 0, 0.3); /* shadow + slight glow */
}
.logo-badge img {
  height: 100px;   
  width: auto;
  object-fit: contain;
}




.card-header {
  /* background: linear-gradient(to right, #9face6, #74ebd5); */
 background: linear-gradient(135deg, #4b134f, #8f6aae, #d4af37);

  padding: 24px 16px 60px;
  color: white;
  position: relative;
  height: 100px;

  
}

.card-header h2 {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px #00000033;
 
}

.card-header span {
  color: #ffe600;
  text-shadow: 1px 1px 2px #00000033;

}

.profile-img {
  margin-top: 100px;
  width: 80%;
  height: 230px;
  margin: 0 auto; 
  object-fit: cover;
  display: block;
  border-radius: 30%;
  position: absolute;
  top: 100px;
  transform: translateX(-50%);
  background-color: white;
  z-index: 2; 
  margin-top: -35px;
  padding: 20px;
  object-fit: contain;
  background: transparent;  
  transform: none;
}


.card-body {
  padding: 80px 20px 20px;
  background: linear-gradient(135deg, #fff9f5, #f6efe9);
  margin-top: 40px;
  color: #2d2d2d;
}


h3 {
  margin: 10px 0 5px;
  font-size: 25px;
}

.subtitle {
  font-size: 16px;
  color: #777;
}

.contact-info {
  margin: 10px 0;
  font-size: 22px;
  color: #333;
 
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #4CAF50; /* Default green */
  color: white;
  border-radius: 46%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  line-height: 1;
  margin-right: 10px;
  flex-shrink: 0;
 
}


.social-icons {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icons a {
  width: 60px;
  height: 60px;
  border-radius: 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 40px;
  text-decoration: none;
 
}


.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.facebook { background: #1877F2; }
.web { background: #D44638; }


.share-btn {
  width: 60px;
  height: 60px;
  border-radius: 46%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  border: none;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, #ff8c00, #ff3c3c); /* orange-red gradient */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.share-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.services {
  text-align: left;
  padding: 10px 20px;
}

.services h4 {
  margin-bottom: 8px;
  font-size: 20px;
  margin-top: 10px;
}

.services ul {
  padding-left: 20px;
  margin: 0;
}

.services li {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.6;
}

.save-btn {
  margin-top: 20px;
  background: linear-gradient(to right, #00b09b, #96c93d);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

.save-btn i {
  margin-right: 8px;
}

.save-btn:hover {
  opacity: 0.9;
}

.corner-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 100px;
  background: linear-gradient(135deg, #f12711, #f5af19);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
  pointer-events: none;
}

/* 🌐 MEDIA QUERY FOR MOBILE */
@media (max-width: 768px) {
 body {
    padding: 20px 10px;
  }

  .card {
    width: 100%;
    height: auto;
  }

  .profile-img {
    width: 80%;
    height: 180px;
    top: 60px;
    margin-top: 30px;
    margin-bottom: 5px;
    /* left: 30px; */
   
  }

  .card-header {
    height: 100px;
    padding-bottom: 40px;
  }

  .card-body {
    padding-top: 60px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 27px;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
    font-size: 27px;
  }

  .share-btn{
    width: 50px;
    height: 50px;
    font-size: 27px;
  }

  .save-btn {
    font-size: 16px;
    padding: 8px 16px;
  }

  .logo-badge img {
    height: 100px;  /* smaller size on mobile */
  }


 
 
  

}
