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

body {
  font-family: "Segoe UI", sans-serif;
  background: #f5f9fc;
}

/* NAVBAR */
.navbar{
  position:absolute ;        /* stay at top while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;          /* ensure it sits above hero */
  display: flex;
  justify-content: right;
   background: #2222227c;          /* 15 %‑opaque white */
  backdrop-filter: blur(12px);                /* glassy blur */
  -webkit-backdrop-filter: blur(12px);        /* Safari/iOS */
  padding: 20px 10%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-links li a:hover{
  color: #ffc107;
  font-weight: bold;
}
/* MOBILE MENU BUTTON */
.nav-links{display:flex;gap:20px;}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1001;
}

/* DASHBOARD SECTION */
.dashboard-section {
  margin-top: 120px;
  padding: 25px;
  display: flex;
  justify-content: center;
}

.dashboard-container {
  max-width: 1100px;
  width: 100%;
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.dashboard-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dashboard-desc {
  font-size: 17px;
  color: #555;
  margin-bottom: 35px;
}

/* ACTION CARDS GRID */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.action-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 72px;
  height: 72px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #00aaff22;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #0077cc;
}

.action-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.action-card p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background: #1f3a93;
  color: #fff;
}

.btn.primary:hover {
  background: #0088cc;
}

.btn.secondary {
  background: #eee;
  color: #222;
}

.btn.secondary:hover {
  background: #ddd;
}



/* ------------------ */
/* MOBILE RESPONSIVE */
/* ------------------ */
