@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: Poppins;
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

body {
 background: url("https://images.unsplash.com/photo-1620207418302-439b387441b0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1267&q=80")
  no-repeat;
 background-size: cover;
 background-position: center;
 height: 100vh;
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
}
.container {
 padding: 20px 40px;
 width: 350px;
 border-radius: 20px;
 background: linear-gradient(
  108.16deg,
  rgba(255, 255, 255, 0.75) 3.4%,
  rgba(255, 255, 255, 0.2) 97.55%
 );
 border: 1px solid rgba(255, 255, 255, 0.3);
 backdrop-filter: blur(6px);
 text-align: center;
}

.image {
 width: 100px;
 height: 100px;
 border-radius: 50%;
 border: 2px solid #fff;
 margin: 0 auto;
 overflow: hidden;
}
.image img {
 width: 110%;
 height: 120%;
 padding-right: 10px;
 object-fit: cover;
}
.title {
 margin: 30px 0;
}
.title h1 {
 font-size: 20px;
 color: #fff;
}
.title p {
 font-size: 16px;
}
.content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensures all items are vertically centered */
    margin: 30px 0;
  }
  .content :nth-child(2) {
    align-self: center;
    margin-left: 10px; /* أو أي قيمة تناسبك */
}

 

.content .content-item h3 {
 font-weight: normal;
 font-size: 14px;
}
.cta {
 display: flex;
 justify-content: space-between;
 padding: 10px 0;
}.cta .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    color: #fff;
    margin: 0 5px;
    transition: all 0.3s ease;
  }
  
  /* Follow button */
  .cta .button:first-child {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, rgba(252, 76, 79, 0.7), rgba(255, 168, 99, 0.48));
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .cta .button:first-child:hover {
    background: linear-gradient(135deg, rgba(255, 168, 99, 0.7), rgba(252, 76, 79, 0.7));
    color: #252525;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  /* Message and Website buttons */
  .cta .button:nth-child(2),
  .cta .button:nth-child(3) {
    color: #252525;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
  }
  
  .cta .button:nth-child(2):hover,
  .cta .button:nth-child(3):hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
.social-media {
 display: flex;
 justify-content: space-between;
 margin-top: 40px;
 padding: 0 50px;
}
.social-media .icons {
 height: 30px;
 width: 30px;
 backdrop-filter: blur(6px);
 background: linear-gradient(
  108.16deg,
  rgba(255, 255, 255, 0.75) 3.4%,
  rgba(255, 255, 255, 0.2) 97.55%
 );
 border: 1px solid rgba(255, 255, 255, 0.3);
 border-radius: 50%;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.3s;
}
.icons .icon {
 color: #a3a3a3;
 font-size: 16px;
}
.icons:hover {
 margin-top: -5px;
}
.icons:hover .icon {
 color: #000;
}