/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #0054FF, #0DAAFF);
  color: #fff;
  text-align: center;
}

header .logo img {
  max-width: 150px;
  height: auto;
  margin-right: 1rem;
}

header .title h1 {
  font-size: 2rem;
  letter-spacing: 1px;
}

header .title p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Gallery Section */
.gallery {
  padding: 3rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0054FF;
}

.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery .image {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #111;
  color: #ddd;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-top: 3rem;
}
