* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f5;
}

/* ===================================
           HEADER WRAPPER
        =================================== */

.uv-header-wrapper {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ===================================
           HEADER CONTAINER
        =================================== */

.uv-header-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: 0.3s ease;
}

/* ===================================
           LEFT SECTION
        =================================== */

.uv-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* LOGO */

.uv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.uv-logo img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
}

.uv-logo h2 {
  font-size: 26px;
  color: #111;
  font-weight: 700;
}

.uv-logo span {
  color: #009dff;
}

/* CONTACT INFO */

.uv-contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.uv-contact-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.uv-contact-box i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009dff, #00d9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.4s ease;
  cursor: pointer;
}

.uv-contact-box:hover i {
  transform: rotate(360deg) scale(1.1);
}

.uv-contact-box a,
.uv-contact-box span {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.uv-contact-box a:hover {
  color: #009dff;
}

/* ===================================
           RIGHT SECTION
        =================================== */

.uv-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* SOCIAL ICONS */

.uv-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.uv-social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
}

.uv-social-icons a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 100%;
  left: 0;
  transition: 0.4s ease;
}

.uv-social-icons a:hover::before {
  top: 0;
}

.uv-social-icons a:hover {
  transform: translateY(-6px) scale(1.08);
}

/* SOCIAL COLORS */

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(135deg, #ff0080, #ff8c00);
}

.linkedin {
  background: #0077b5;
}

.youtube {
  background: #ff0000;
}

/* ===================================
           TABLET RESPONSIVE
        =================================== */

@media (max-width: 992px) {
  .uv-header-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .uv-header-left {
    flex-direction: column;
    justify-content: center;
  }

  .uv-contact-info {
    justify-content: center;
  }

  .uv-header-right {
    justify-content: center;
  }
}

/* ===================================
           MOBILE RESPONSIVE
        =================================== */

@media (max-width: 576px) {
  .uv-header-container {
    padding: 12px 15px;
  }

  .uv-logo {
    flex-direction: column;
  }

  .uv-logo img {
    width: 55px;
    height: 55px;
  }

  .uv-logo h2 {
    font-size: 22px;
  }

  .uv-contact-info {
    flex-direction: column;
    gap: 14px;
  }

  .uv-contact-box {
    flex-direction: row;
    justify-content: center;
  }

  .uv-contact-box i {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .uv-contact-box a,
  .uv-contact-box span {
    font-size: 14px;
  }

  .uv-social-icons {
    gap: 10px;
  }

  .uv-social-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
