/* GLOBAL STYLES */
body {
    font-family: "Noto Sans Devanagari", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #a21caf;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.section {
    padding: 50px 20px;
}

h1, h2 {
    color: #a21caf;
}

/* FOOTER */
footer {
    background: #222;
    color: #eee;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* BUTTON */
.btn-primary {
    background: #a21caf;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* IMAGE STYLES */
img {
    max-width: 100%;
    border-radius: 10px;
    margin: 15px 0;
}

.image-row {
  display: flex;
  flex-wrap: wrap; /* Wraps images to next line if screen is small */
  gap: 15px;       /* Space between images */
  justify-content: center; /* Center the row */
}

.image-row img {
  width: 200px;    /* Or use % like 23% for 4 in a row */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.image-row img:hover {
  transform: scale(1.05);
}

