body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}

header {
  background: url('./images/ganagBridge.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

header p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.section {
  padding: 30px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
  font-weight: 600;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.feature-card:hover img {
  transform: scale(1.03);
}

.feature-card h3 {
  margin-top: 0;
  font-size: 20px;
  color: #222;
  font-weight: 600;
}

.feature-card p {
  font-size: 16px;
  color: #555;
}

.rishikesh-img {
  width: 100%;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

footer {
  background: #1e1e1e;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 15px;
}

.section:nth-of-type(2) {
  background: linear-gradient(to bottom, #fdfdfd, #f3f3f3);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 32px;
  }

  .feature-card img {
    height: 160px;
  }

  .section h2 {
    font-size: 28px;
  }
}

/* Lightbox modal styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-close {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.3s;
  z-index: 10000;
}

.lightbox-close:hover {
  color: #ccc;
}

.lightbox-content {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


@media (max-width: 600px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 70vh;
  }

  .lightbox-close {
    font-size: 30px;
    right: 20px;
  }
}

.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 8px;
  pointer-events: none;
}

.feature-card:hover .image-wrapper img {
  transform: scale(1.03);
}

.direction-button {
  margin-top: 15px;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.direction-button:hover {
  background-color: #0056b3;
}

.map-action {
  text-align: center;
}

.contact-section {
  background-color: #fff;
  border-top: 1px solid #eee;
  text-align: center;
  padding: 50px 20px;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-info a {
  color: #0077cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}



