 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     min-height: 100vh;
 }

 /* Header Styles */
 .gallery-header {
     text-align: center;
     padding: .5rem 1rem;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     margin-bottom: 1rem;
 }

 .gallery-header h1 {
     font-size: 1.8rem;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     margin-bottom: 0.5rem;
     animation: fadeInDown 0.8s ease;
 }

 .gallery-header p {
     color: #666;
     font-size: 1.1rem;
 }

 @keyframes fadeInDown {
     from {
         opacity: 0;
         transform: translateY(-30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Main Gallery Container */
 .gallery-wrapper {
     max-width: 900px;
     margin: 0 auto;
     padding: .5rem;
 }

 /* Carousel Container */
 .carousel-container {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 25px;
     padding: 1.5rem;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
         inset 0 1px 1px rgba(255, 255, 255, 0.3);
     border: 1px solid rgba(255, 255, 255, 0.2);
     margin-bottom: 2rem;
 }

 .slider-wrapper {
     position: relative;
     overflow: hidden;
     border-radius: 20px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     background: #000;
 }

 .slider {
     display: flex;
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
 }

 .slide {
     min-width: 100%;
     position: relative;
     overflow: hidden;
 }

 .slide img {
     width: 100%;
     height: 500px;
     object-fit: contain;
     display: block;
     transition: transform 0.5s ease;
 }

 .slide:hover img {
     transform: scale(1.05);
 }

 .slide-caption {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: white;
     padding: 2rem 1.5rem 1rem;
     transform: translateY(100%);
     transition: transform 0.3s ease;
 }

 .slide:hover .slide-caption {
     transform: translateY(0);
 }

 .slide-caption h3 {
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
 }

 .slide-caption p {
     font-size: 0.9rem;
     opacity: 0.9;
 }

 /* Navigation Buttons */
 .nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.9);
     border: none;
     border-radius: 50%;
     cursor: pointer;
     font-size: 1.3rem;
     color: #667eea;
     transition: all 0.3s ease;
     z-index: 10;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .nav-btn:hover {
     background: white;
     transform: translateY(-50%) scale(1.1);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
 }

 .prev-btn {
     left: 20px;
 }

 .next-btn {
     right: 20px;
 }

 /* Thumbnails */
 .thumbnail-container {
     margin-top: 1.5rem;
     overflow-x: auto;
     padding: 1rem 0;
     scrollbar-width: thin;
 }

 .thumbnail-wrapper {
     display: flex;
     gap: 1rem;
     justify-content: center;
 }

 .thumbnail {
     width: 100px;
     height: 75px;
     object-fit: cover;
     border-radius: 12px;
     cursor: pointer;
     opacity: 0.6;
     transition: all 0.3s ease;
     border: 3px solid transparent;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .thumbnail.active {
     opacity: 1;
     border-color: #667eea;
     transform: scale(1.05);
     box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
 }

 .thumbnail:hover {
     opacity: 0.8;
     transform: scale(1.05);
 }

 /* Dots Indicator */
 .dots-container {
     display: flex;
     justify-content: center;
     gap: 0.8rem;
     margin-top: 1.5rem;
 }

 .dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .dot.active {
     background: #667eea;
     width: 30px;
     border-radius: 5px;
     box-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
 }

 /* News Section */
 .news-section {
     max-width: 900px;
     margin: 1rem auto;
     padding: 0 1rem;
 }

 .news-title {
     text-align: center;
     font-size: 1.5rem;
     color: white;
     margin-bottom: 2rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1rem;
 }

 .news-card {
     background: rgba(255, 255, 255, 0.95);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     cursor: pointer;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     /* max-width: 250px;
     margin: .5rem auto; */


 }

 .news-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
 }

 .news-card img {
     width: 100%;
     height: 180px;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .news-card:hover img {
     transform: scale(1.05);
 }

 .news-card-content {
     padding: 1.5rem;
 }

 .news-card-content h3 {
     font-size: 1.3rem;
     color: #333;
     margin-bottom: 0.8rem;
     font-weight: 600;
 }

 .news-card-content p {
     color: #666;
     line-height: 1.5;
     margin-bottom: 1.2rem;
 }

 .news-btn {
     display: inline-block;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 0.7rem 1.5rem;
     text-decoration: none;
     border-radius: 14px;
     transition: all 0.3s ease;
     font-weight: 500;
     border: none;
     cursor: pointer;
     -webkit-border-radius: 14px;
     -moz-border-radius: 14px;
     -ms-border-radius: 14px;
     -o-border-radius: 14px;
 }

 .news-btn:hover {
     transform: translateX(5px);
     box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
 }

 /* Lightbox Modal */
 .lightbox-modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.95);
     z-index: 2000;
     animation: fadeIn 0.3s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 .lightbox-modal.active {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .lightbox-content {
     position: relative;
     max-width: 90%;
     max-height: 90%;
     text-align: center;
     margin-bottom: 3rem;
 }

 .lightbox-image {
     max-width: 100%;
     max-height: 90vh;
     object-fit: contain;
     cursor: grab;
     transition: transform 0.2s ease;
     border-radius: 10px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
 }

 .lightbox-image:active {
     cursor: grabbing;
 }

 .lightbox-caption {
     margin-top: 1rem;
     padding: 1rem;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     color: white;
     font-size: 1.1rem;
     backdrop-filter: blur(10px);
 }

 /* Close Button - Prominent and Clear */
 .lightbox-close {
     position: absolute;
     top: 20px;
     right: 30px;
     background: rgba(255, 69, 58, 0.9);
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     width: 55px;
     height: 55px;
     border-radius: 50%;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2001;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
 }

 .lightbox-close:hover {
     background: rgba(255, 69, 58, 1);
     transform: rotate(90deg) scale(1.1);
     box-shadow: 0 8px 25px rgba(255, 69, 58, 0.5);
 }

 .lightbox-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.2);
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .lightbox-nav:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: translateY(-50%) scale(1.1);
 }

 .lightbox-prev {
     left: 30px;
 }

 .lightbox-next {
     right: 30px;
 }

 /* Zoom Controls */
 .zoom-controls {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 1rem;
     background: rgba(0, 0, 0, 0.8);
     padding: 0.8rem 1.5rem;
     border-radius: 50px;
     backdrop-filter: blur(10px);
     z-index: 2001;
 }

 .zoom-controls button {
     background: rgba(255, 255, 255, 0.2);
     border: none;
     color: white;
     font-size: 1rem;
     padding: 8px 15px;
     border-radius: 25px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: bold;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .zoom-controls button:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: scale(1.05);
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .slide img {
         height: 500px;
     }

     .lightbox-prev {
         left: 10px;
     }

     .lightbox-next {
         right: 10px;
     }
 }

 @media (max-width: 800px) {
     .gallery-header h1 {
         font-size: 1.5rem;
     }

     .carousel-container {
         padding: 1rem;
     }

     .slide img {
         height: 500px;
     }

     .nav-btn {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }

     .thumbnail {
         width: 70px;
         height: 55px;
     }

     .lightbox-content {
         max-width: 95%;
     }

     .lightbox-image {
         max-height: 90vh;
     }

     .lightbox-nav {
         width: 40px;
         height: 40px;
         font-size: 1.2rem;
     }

     .lightbox-close {
         top: 10px;
         right: 10px;
         width: 45px;
         height: 45px;
         font-size: 1.5rem;
     }

     .zoom-controls button {
         padding: 6px 12px;
         font-size: 0.9rem;
     }

     .news-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .news-card img {
         height: 200px;
     }

     .news-card-content h3 {
         font-size: 1.1rem;
     }
 }

 @media (max-width: 480px) {
     .slide img {
         height: 600px;
     }

     .thumbnail {
         width: 60px;
         height: 45px;
     }

     .zoom-controls {
         bottom: 20px;
         padding: 0.5rem 1rem;
         gap: 0.5rem;
     }

     .zoom-controls button {
         padding: 5px 10px;
         font-size: 0.8rem;
     }
 }

 /* Scrollbar Styling */
 .thumbnail-container::-webkit-scrollbar {
     height: 5px;
 }

 .thumbnail-container::-webkit-scrollbar-track {
     background: rgba(255, 255, 255, 0.1);
     border-radius: 10px;
 }

 .thumbnail-container::-webkit-scrollbar-thumb {
     background: #667eea;
     border-radius: 10px;
 }