/* ================= GLOBAL ================= */
body {
  margin:0;
  font-family: Arial, sans-serif;
  background:#f5f7fa;
  color:#333;
}

/* ================= SIDEBAR ================= */
.sidebar {
  width:230px;
  height:100vh;
  position:fixed;
  top:0;
  left:0;
  background:linear-gradient(#5a1e0f, #a64b1f);
  color:white;
  overflow-y:auto;
  box-shadow:2px 0 10px rgba(0,0,0,0.3);
  z-index:1000;
}

/* ================= LOGO ================= */
.logo-box {
  text-align:center;
  padding:15px 10px;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

.logo {
  width:60px;
  height:60px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

.logo-box h2 {
  font-size:20px;
  margin-top:8px;
  color:#ffd700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ================= SIDEBAR LINKS ================= */
.sidebar a {
  display:block;
  padding:12px 15px;
  color:white;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
  border-left:3px solid transparent;
}

.sidebar a:hover {
  background:rgba(255,255,255,0.2);
  border-left:3px solid gold;
  padding-left:18px;
}

/* ================= MAIN ================= */
.main {
  margin-left:230px;
  padding:20px;
}

/* ================= TITLES ================= */
.page-title {
  font-size:26px;
  color:#b8860b;
  margin-bottom:20px;
}

.welcome-title {
  text-align:center;
  font-size:28px;
  color:#b8860b;
  margin-bottom:20px;
}

/* ================= SEARCH ================= */
.search-box {
  width:100%;
  padding:12px;
  margin-bottom:20px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:16px;
}

/* ================= GRID ================= */
.yojana-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
}

/* ================= CARD ================= */
.card {
  background:white;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  transition:0.3s;
  border-left:4px solid gold;
}

.card:hover {
  transform:translateY(-5px);
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.card h3 {
  color:#b8860b;
  margin-bottom:10px;
}

.card p {
  font-size:14px;
  margin:5px 0;
}

/* ================= BUTTON ================= */
.btn {
  display:block;
  width:100%;
  margin-top:10px;
  padding:10px;
  background:linear-gradient(45deg, #f4c430, #ff9800);
  color:white;
  border:none;
  border-radius:6px;
  cursor:pointer;
  font-weight:bold;
  text-align:center;
  text-decoration:none;
}

.btn:hover {
  opacity:0.9;
}

/* ================= INFO BOX ================= */
.info-box {
  background:linear-gradient(135deg, #fff8e1, #ffffff);
  border-left:5px solid #f4c430;
  padding:20px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  margin-bottom:20px;
}

.info-title {
  font-size:22px;
  color:#b8860b;
  margin-bottom:10px;
}

.info-text {
  font-size:15px;
  line-height:1.6;
  margin-bottom:12px;
}

/* ================= EXTRA ================= */
.eng {
  font-size:14px;
  color:#555;
  display:block;
  margin-top:5px;
}

.highlight {
  color:#ff9800;
  font-weight:bold;
}

.tag {
  display:inline-block;
  background:#ff9800;
  color:white;
  padding:4px 10px;
  border-radius:20px;
  font-size:12px;
  margin-bottom:10px;
}

/* ================= DISCLAIMER ================= */
.disclaimer {
  margin-top:30px;
  padding:15px;
  background:#ffe5e5;
  border-left:5px solid red;
  border-radius:8px;
  font-size:14px;
}

/* ================= MOBILE ================= */
@media (max-width:768px) {

  .sidebar {
    left:-230px;
    transition:0.3s;
  }

  .sidebar.active {
    left:0;
  }

  .main {
    margin-left:0;
    padding:15px;
  }

  .page-title {
    font-size:20px;
  }

  .menu-btn {
    display:block;
    background:#5a1e0f;
    color:white;
    padding:10px;
    cursor:pointer;
    margin-bottom:10px;
    border-radius:5px;
  }
}

@media (min-width:769px) {
  .menu-btn {
    display:none;
  }
}