  .title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ff6b6b, #f7b733, #6dd5ed, #2193b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  animation: glow 2s infinite alternate;
}
 .gallery img {
    width: 100%;      /* screen ke hisaab se width adjust karega */
    height: auto;     /* aspect ratio maintain karega */
    border-radius: 10px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  /* Hover effect */
  .gallery img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
  }

  /* Automatic animation */
  @keyframes zoomInOut {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
  }

  .gallery img {
    animation: zoomInOut 6s infinite alternate;
  }

  .gallery {
    margin-top: 30px;
  }