/* Dropdown design */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px; /* ✅ Fix width for equal boxes */
  border-radius: 8px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  z-index: 1000;
  overflow: hidden;
}

.dropdown-menu li a {
  padding: 12px 16px;
  color: #f0f0f0;
  display: block;
  transition: background 0.3s;
  width: 100%; /* Ensures full clickable area */
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional: pointer default so it doesn’t look like a link */
.dropdown > a {
  cursor: default;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #000; /* Header के अनुसार */
  color: #fff;
}

.gallery-section {
  padding: 40px 20px;
  background: #111;
  text-align: center;
}

.gallery-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  text-align:left;
}

.gallery-section p {
  font-size: 16px;
  color: #ccc;
  max-width: 800px;
  text-align:left;
  margin-bottom:20px;
  
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid white; /* ✅ White border */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.3s ease;
  color: white;
  margin: 0 auto;           /* ✅ Center align */
  display: block;           /* ✅ Needed for margin auto to work */
}


.image-grid img:hover {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #ccc;
}

.gallery-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase; /* ✅ सारे अक्षर कैपिटल हो जाएंगे */
}


