/* =========================================================
   GLOBAL PAGE SETUP
   ========================================================= */
body {
  font-family: "Open Sans", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

/* =========================================================
   BRAND COLOURS
   ========================================================= */
:root {
  --wezen-blue: #003366;
  --wezen-grey: #f2f2f2;
  --wezen-green: #009933;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  background: var(--wezen-blue);
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

nav a,
nav .nav-link {
  background-color: var(--wezen-blue);
  color: #fff;
  text-decoration: none;
  padding: 0.5em 1em;
  font-size: 1em;
  border-radius: 4px;
}

nav a:hover {
  background-color: var(--wezen-green);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--wezen-blue);
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 0.4em 1em;
  text-decoration: none;
  display: block;
  font-size: 0.85em;
}

.dropdown-content a:hover {
  background-color: var(--wezen-green);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  background-color: #e9ecef;
}

.hero-text {
  max-width: 80%;
}

.hero img {
  width: 25%;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background-color: #fff;
}

.feature {
  width: 30%;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.feature button {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  background-color: var(--wezen-blue);
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

/* =========================================================
   EXPLORE SECTION
   ========================================================= */
.explore {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background-color: #f0f0f0;
}

.explore div {
  width: 30%;
  background-color: #fff;
  padding: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}

/* =========================================================
   REPORT GRID (Research / Training / Opinions)
   ========================================================= */
.report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.report-card {
  border: 1px solid #ddd;
  padding: 10px;
  background: #fafafa;
  border-radius: 6px;
  transition: box-shadow 0.3s ease;
  font-size: 11px;
  line-height: 1.4;
}

.report-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.report-card h3 {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--wezen-blue);
}

.report-card a.download-btn {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--wezen-blue);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
}

.report-card a.download-btn:hover {
  background-color: var(--wezen-green);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background-color: #f5f5f5;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: var(--wezen-blue);
  color: #fff;
}

/* =========================================================
   STATISTICS — TABS (WEZEN INDIA)
   ========================================================= */

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tabs button {
  background-color: var(--wezen-grey) !important;
  color: var(--wezen-blue) !important;
  font-weight: bold;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #dcdcdc;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tabs button:hover {
  background-color: var(--wezen-blue) !important;
  color: #fff !important;
}

.tabs button.active {
  background-color: var(--wezen-blue) !important;
  color: #fff !important;
  border-color: var(--wezen-blue) !important;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* =========================================================
   STATISTICS — COLLAPSIBLE PANELS
   ========================================================= */

.report-section {
  background: var(--wezen-grey) !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 6px;
  margin-bottom: 20px;
}

.report-heading {
  background: var(--wezen-blue) !important;
  color: #fff !important;
  padding: 12px 15px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}

.report-heading .icon {
  font-size: 22px;
  font-weight: bold;
  color: #fff !important;
}

.report-files {
  padding: 15px;
  background: #ffffff;
  border-radius: 0 0 6px 6px;
  display: none;
}

.report-item {
  background: var(--wezen-grey) !important;
  border: 1px solid #dcdcdc !important;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 10px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.report-item:hover {
  background: var(--wezen-blue) !important;
}

.report-item:hover a {
  color: #fff !important;
}

.report-item a {
  color: var(--wezen-blue) !important;
  text-decoration: none;
  font-weight: 600;
}

/* =========================================================
   MOBILE RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero img {
    width: 60%;
  }

  .features,
  .explore {
    flex-direction: column;
    gap: 20px;
  }

  .feature,
  .explore div {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* =========================================================
   DASHBOARD — FIXED 4-CARD GRID (WEZEN INDIA)
   ========================================================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* FOUR charts */
  gap: 20px;
  margin: 30px 0;
}

.card {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #003366; /* WEZEN blue */
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
