body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom right, #060636, #174891);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  direction: rtl;
}

.container {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  padding: 40px;
}

.profile {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 40px;
  gap: 30px;
}

.profile img {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  margin-left: 20%;
  object-fit: cover;
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.5);
}

.profile .text {
  font-family: 'Arial', sans-serif;
  text-align: right;
  margin-left: 5%;
}

.profile h1 {
  margin: 0;
  text-align: left;
  font-size: 48px;
}

.profile p {
  margin: 10px 0;
  font-size: 27.5px;
}

.coming-soon {
  font-family: 'Arial', sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin-top: 100px;
}


/* Media Queries for responsiveness */

/* For screens smaller than 1024px (Tablets) */
@media (max-width: 1024px) {
  .profile img {
    width: 300px;
    height: 300px;
    margin-left: 0;
  }
  .profile .text {
    margin-left: 0;
  }
  .profile h1 {
    text-align: left;
    font-size: 36px;
  }
  .profile p {
    font-size: 22px;
  }
  .coming-soon {
    font-size: 30px;
    margin-top: 50px;
  }
}


@media (max-width: 768px) {
  .profile {
    flex-direction: column;  
    align-items: center;   
    gap: 30px;           
    margin-bottom: 20px;
  }
  .profile img {
    width: 400px;  
    height: 400px;
    margin-bottom: 30px;
  }
  .profile h1 {
    text-align: left;
    font-size: 30px;
  }
  .profile p {
    font-size: 20px;
  }
  .coming-soon {
    text-align: left;
    font-size: 28px;
    margin-left: 5%;
    margin-top: 60px;
  }
}

/* For screens smaller than 480px (Small mobile devices) */
@media (max-width: 480px) {
  .profile {
    flex-direction: column;  
    align-items: center;   
    gap: 25px;           
    margin-bottom: 20px;
  }
  .profile img {
    width: 250px;
    height: 250px;
  }
  .profile h1 {
    text-align: left;
    font-size: 24px;
  }
  .profile p {
    text-align: left;
    font-size: 18px;
  }
  .coming-soon {
    font-size: 22px;
    margin-top: 30px;
  }
}
