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

body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f8ff; /* Açıq mavi tonunda fon */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
    width: 110px;
    height: 110px;
    margin-bottom: 20px;
    object-fit: cover;
}

.card {
  display: flex;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 1000px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.left-side {
  background-color: #000000c2;
  color: #f5c22c;
  padding: 30px;
  width: 350px;
  text-align: center;
  border-radius: 15px 0 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.title {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 300;
}

.socials {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.socials a {
  margin: 0 12px;
}

.socials i {
  font-size: 28px; /* Böyük sosial media ikonları */
  color: #f5c22c;
  transition: transform 0.3s ease;
}

.socials i:hover {
  transform: scale(1.3);
}

.contact-info {
  font-size: 14px;
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.contact-info .fa {
  vertical-align: middle;
  margin-right: 10px;
}

.phone-number {
  display: inline-block;
  margin-right: 15px;
  color: #f5c22c;         /* Ağ rəng üçün */
  text-decoration: none; /* Alt xətti silmək üçün */
}


.right-side {
  padding: 30px;
  width: 100%;
  border-radius: 0 15px 15px 0;
}

h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #f5c22c;
}

.info-boxes {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.box, .third-box {
  background-color: #3d3d3d00;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
text-decoration: none;
}

.box h4, .third-box h4 {
  color: #f5c22c;
  font-size: 18px;
  margin-bottom: 10px;
}

.box p, .third-box p {
  font-size: 14px;
  color: #333;
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    width: 90%;
  }

  .left-side {
    width: 100%;
    text-align: center;
    border-radius: 15px 15px 0 0;
  }

  .right-side {
    width: 100%;
  }

  .info-boxes {
    flex-direction: column;
  }

  .box, .third-box {
    width: 100%;
  }

  .contact-info p {
    font-size: 16px;

  }

  /* Sosial media iconlarını kiçiltmək */
  .socials i {
    font-size: 28px;
  }

  /* Mobil versiyada nömrələr yan yana olması */
  .contact-info p {
    display: flex;
  }

  /* Nömrələr və e-mail altı xətt */
  .contact-info .fa-phone,
  .contact-info .fa-envelope {
    text-decoration: none;
    border-bottom: 2px solid #4682b4; /* Göy xətt */
  }

  /* Mobil versiya üçün poçt və nömrələrin düzülüşü */
  .contact-info p {
    margin-bottom: 15px;
  }
}
