
/* 🔹 Logo Bar */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 15px;
  background: #fff;
  border-bottom: 2px solid #ddd;
  text-align: center;
}

.logo {
  height: 320px;   /* बड़ा logo */
  margin-right: 10px;
}


/* 🔹 Main Navigation */
.navbar {
  background: #004080;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar ul li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.navbar ul li a:hover {
  background: #003060;
}

/* ========== INDEX / MAIN CONTENT ========== */
.content {
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
}

.hero {
  background: url('assets/banner.jpg') no-repeat center center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  border-radius: 8px;
  margin-bottom: 30px;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #004080;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Cards for quick links or notices */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #004080;
}

.card p {
  font-size: 14px;
  color: #555;
}

/* ========== FOOTER ========== */
footer {
  background: #004080;
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  margin-top: 40px;
}

footer p {
  margin: 5px 0;
  font-size: 14px;
}

footer a {
  color: #ffdd00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
