    /* ================================================================
 * 📄 File: style-common.css
 * 📍 Path: /assets/css/style-common.css
 * 🧩 Used for: Global layout (header, footer, body base)
 * ================================================================ */

body {
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
}

/* ================================================================
   🌈 PREMIUM HEADER (MCQUIZXAM – 2025 DESIGN)
   ================================================================ */

.mcqxam-header {
  /* Multi-tone Gradient: Indigo → Blue → Gold */
  background: linear-gradient(90deg, #003973 0%, #0098aa 35%, #4bd2be 70%, #f1c40f 100%);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  height: 40px;
}

.mcqxam-header-inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------------------------
   🔹 Logo Section
-------------------------- */
.header-left .site-logo {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.header-left .site-logo:hover {
  transform: scale(1.06);
  color: #f1c40f;
}

.logo-icon {
  font-size: 26px;
}

.logo-text {
  text-transform: uppercase;
  background: linear-gradient(90deg, #fff, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------------------------
   🔹 Navigation Menu
-------------------------- */
.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-right a {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.35s ease-in-out;
  background: transparent;
}

/* 🔥 Hover effect – glowing neon gold */
.header-right a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #f1c40f;
  box-shadow: 0 0 8px rgba(241, 196, 15, 0.6);
  transform: translateY(-2px);
}

/* ✨ Active Link (current page highlight) */
.header-right a.active {
  background: #f1c40f;
  color: #000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

/* -------------------------
   🔹 Underline Animation (hover)
-------------------------- */
.header-right a::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #f1c40f;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  opacity: 0.8;
}

.header-right a:hover::after {
  width: 60%;
}

/* -------------------------
   🔹 Responsive Design
-------------------------- */
@media (max-width: 992px) {
  .header-right {
    gap: 0px;
  }

  .header-right a {
    padding: 6px 10px;
    font-size: 14px;
  }

  .header-left .site-logo {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .header-right {
    
  }

  .mcqxam-header {
    padding: 0 0px;
    justify-content: space-between;
    height: 40px;
  }

  .header-left .site-logo {
    font-size: 18px;
  }
}

/* ================================================================
   🌟 FOOTER (unchanged)
   ================================================================ */
.mcqxam-footer {
  background: linear-gradient(90deg, #003973 0%, #0098aa 35%, #4bd2be 70%, #f1c40f 100%);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 0px 0;
  z-index: 1000;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}
