







/* ===================== ROOT ===================== */
#marathi-dept-page {
  font-family: "Poppins", sans-serif;
  background: #f5f7fb;
  color: #1f2937;
}

/* ===================== HERO ===================== */
.marathi-hero {
  background: linear-gradient(135deg, #eef2ff, #dbeafe);
  padding: 50px 20px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.dept-title h1 {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.tagline {
  font-size: 16px;
  color: #374151;
  max-width: 520px;
}

.dept-hero-img img {
  width: 380px;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===================== LAYOUT ===================== */
.marathi-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.marathi-layout {
  display: flex;
  gap: 30px;
}

/* ===================== SIDEBAR ===================== */
.marathi-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.marathi-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.marathi-sidebar li {
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.marathi-sidebar li:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}

.marathi-sidebar li.active {
  background: #1e3a8a;
  color: #ffffff;
}

/* ===================== CONTENT ===================== */
.marathi-content {
  flex: 1;
}

/* ===================== CARD ===================== */
.marathi-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-left: 6px solid #2563eb;
}

.marathi-card h2,
.marathi-card h3 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.marathi-card p {
  line-height: 1.7;
  color: #374151;
}

.marathi-card ul {
  padding-left: 18px;
}

.marathi-card ul li {
  margin-bottom: 8px;
}

/* ===================== TWO CARDS ===================== */
.two-cards {
  display: flex;
  gap: 20px;
}

.two-cards .marathi-card {
  flex: 1;
}

/* ===================== TABLE ===================== */
.marathi-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.marathi-table th,
.marathi-table td {
  padding: 12px;
  border: 1px solid #d1d5db;
  text-align: center;
}

.marathi-table th {
  background: #1e3a8a;
  color: #ffffff;
  font-weight: 600;
}

.marathi-table tr:nth-child(even) {
  background: #f1f5f9;
}

/* ===================== UTILITIES ===================== */
.hidden {
  display: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dept-hero-img img {
    width: 100%;
    height: auto;
  }

  .marathi-layout {
    flex-direction: column;
  }

  .marathi-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
  }

  .marathi-sidebar ul {
    display: flex;
    gap: 10px;
  }

  .marathi-sidebar li {
    white-space: nowrap;
    margin-bottom: 0;
  }

  .two-cards {
    flex-direction: column;
  }
}















