 .card-container {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 20px;
     padding: 20px;
 }

 .card {    
     /* width: 400px; */
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     cursor: pointer;
     transition: transform 0.3s;
 }

 /* .card:hover {
     transform: scale(1.05);
 } */

 .card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 0;
 }

 .card h3 {
     margin: 0;
     padding: 15px;
     background: #333;
     color: #fff;
     text-align: center;
 }

 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     z-index: 1000;
     overflow-y: auto;
     padding: 40px 20px;
 }

 .modal-content {
     max-width: 1200px;
     margin: 70px;
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     position: relative;
 }

 .modal h2 {
     text-align: center;
     margin-bottom: 20px;
 }

 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 15px;
 }

 .gallery-grid img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     border-radius: 8px;
 }

 .close-btn {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 25px;
     color: #333;
     cursor: pointer;
 }

 @media (max-width: 600px) {
     .card-container {
         flex-direction: column;
         align-items: center;
     }
 }