/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #006699;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header .logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 10px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Section styling */
section {
  padding: 60px 20px;   /* yaha se sections ke beech proper gap aa jayega */
  max-width: 900px;
  margin: auto;
  background: #fff;
  margin-bottom: 40px;  /* har section ke neeche white box + gap */
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

h2 {
  color: #006699;
  margin-bottom: 20px;
  text-align: center;
}

ul, ol {
  margin: 10px 0 20px 20px;
}

/* Gallery styling */
.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery img {
  width: 250px;   /* fixed size rakha */
  height: auto;   /* proportional resize hoga */
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
