/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

/* ===== HEADER ===== */
.top-header {
  background: linear-gradient(135deg, #0f2027, #203a43);
  color: #fff;
  font-size: 14px;
}

.top-header-container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== LEFT INFO ===== */
.header-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-item i {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #203a43;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
}

.info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.info-item a:hover {
  color: #00ffd5;
}

/* ===== SOCIAL ICONS ===== */
.header-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.social-icon i {
  color: #333;
  transition: 0.3s;
}

/* Hover Colors */
.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.instagram:hover {
  background: #e4405f;
}

.social-icon.youtube:hover {
  background: #ff0000;
}

.social-icon.linkedin:hover {
  background: #0077b5;
}

.social-icon:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .top-header-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .header-info {
    justify-content: center;
  }

  .header-social {
    justify-content: center;
  }
}
