 /* Gallery Hero Section */
 .gallery-hero {
     padding: 6rem 0 90px 0;
     min-height: 60vh;
     display: flex;
     align-items: center;
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 }

 .gallery-hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 1.5rem;
     line-height: 1.2;
 }

 .gallery-hero-subtitle {
     font-size: 1.25rem;
     color: var(--text-gray);
     margin-bottom: 2rem;
 }

 .highlight-text {
     color: var(--primary-blue);
 }

 /* Gallery Grid - Improved */
 .gallery {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 2.5rem;
     margin-top: 3rem;
 }

 .gallery-item {
     position: relative;
     overflow: hidden;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
     transition: all 0.4s ease;
     cursor: pointer;
     background: white;
 }

 .gallery-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 /* Improved Image Sizing */
 .gallery-item img {
     width: 100%;
     height: 320px;
     /* Increased from 250px */
     object-fit: cover;
     object-position: center;
     display: block;
     transition: transform 0.4s ease;
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 .gallery-caption {
     padding: 20px;
     background: white;
 }

 .gallery-title {
     font-size: 18px;
     font-weight: 600;
     color: #333;
     margin-bottom: 10px;
     line-height: 1.4;
 }

 .gallery-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .gallery-count {
     font-size: 14px;
     color: #666;
     background: #f8f9fa;
     padding: 4px 8px;
     border-radius: 12px;
 }

 .view-more {
     font-size: 14px;
     color: #007bff;
     font-weight: 500;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .view-more:hover {
     color: #0056b3;
     text-decoration: underline;
 }

 /* Enhanced Modal Styles */
 .modal {
     display: none;
     position: fixed;
     z-index: 9999;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.85);
     backdrop-filter: blur(5px);
 }

 .modal-content {
     position: fixed;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: white;
     border-radius: 15px;
     max-width: 95%;
     max-height: 95%;
     overflow: auto;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 .close-btn {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 32px;
     color: #999;
     cursor: pointer;
     z-index: 10;
     background: white;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     line-height: 1;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .close-btn:hover {
     color: #333;
     background: #f8f9fa;
 }

 .modal-images {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     padding: 50px 25px 25px 25px;
 }

 /* Improved Modal Image Sizing */
 .modal-images img {
     width: 100%;
     height: 280px;
     /* Increased from 200px */
     object-fit: cover;
     object-position: center;
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .modal-images img:hover {
     transform: scale(1.02);
 }

 .modal-caption {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     color: #333;
     padding: 20px 25px;
     text-align: center;
     font-size: 20px;
     font-weight: 600;
     margin: 0;
     border-radius: 0 0 15px 15px;
 }