  
  /* Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            box-sizing: border-box;
            font-size: 16px;
            line-height: 1.6;
        }
        
      
        
        /* Typography */
        .font-orbitron { 
            font-family: 'Orbitron', monospace; 
        }
        .font-inter { 
            font-family: 'Inter', sans-serif; 
        }
        
        /* Enhanced Visual Effects */
        .neon-glow {
            box-shadow: 
                0 0 10px #00ffff, 
                0 0 20px #00ffff, 
                0 0 30px #00ffff,
                0 0 40px rgba(0, 255, 255, 0.3);
            animation: neonPulse 3s ease-in-out infinite alternate;
        }
        
        .neon-text {
            text-shadow: 
                0 0 5px #00ffff, 
                0 0 10px #00ffff, 
                0 0 15px #00ffff,
                0 0 20px rgba(0, 255, 255, 0.5);
            animation: textGlow 4s ease-in-out infinite alternate;
        }
        
        @keyframes neonPulse {
            0% { 
                box-shadow: 
                    0 0 10px #00ffff, 
                    0 0 20px #00ffff, 
                    0 0 30px #00ffff,
                    0 0 40px rgba(0, 255, 255, 0.3);
            }
            100% { 
                box-shadow: 
                    0 0 15px #00ffff, 
                    0 0 30px #00ffff, 
                    0 0 45px #00ffff,
                    0 0 60px rgba(0, 255, 255, 0.5);
            }
        }
        
        @keyframes textGlow {
            0% { 
                text-shadow: 
                    0 0 5px #00ffff, 
                    0 0 10px #00ffff, 
                    0 0 15px #00ffff,
                    0 0 20px rgba(0, 255, 255, 0.5);
            }
            100% { 
                text-shadow: 
                    0 0 8px #00ffff, 
                    0 0 16px #00ffff, 
                    0 0 24px #00ffff,
                    0 0 32px rgba(0, 255, 255, 0.7);
            }
        }
        
        /* Interactive Elements */
        .arcade-btn {
            background: linear-gradient(45deg, #ff0080, #00ffff, #8000ff);
            background-size: 200% 200%;
            border: 2px solid #fff;
            border-radius: 8px;
            box-shadow: 
                0 0 15px rgba(255, 0, 128, 0.4), 
                inset 0 0 15px rgba(0, 255, 255, 0.2),
                0 0 25px rgba(128, 0, 255, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .arcade-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 
                0 8px 25px rgba(255, 0, 128, 0.6), 
                inset 0 0 25px rgba(0, 255, 255, 0.3);
        }
        
        .arcade-btn:active {
            transform: translateY(-1px) scale(1.01);
        }
        
        /* Background Gradients */
        .hero-bg {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #000a1a 100%);
            position: relative;
        }
        
        /* Card Components */
        .card-hover {
            background: rgba(0, 255, 255, 0.03);
            border: 1px solid rgba(51, 51, 51, 0.8);
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        
        .card-hover:hover {
            background: rgba(0, 255, 255, 0.08);
            border: 1px solid rgba(0, 255, 255, 0.5);
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
        }
        
        /* Animations */
        .pulse-animation {
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.8; 
                transform: scale(1.02);
            }
        }
        
        .countdown-digit {
            background: linear-gradient(45deg, #ff0080, #8000ff);
            border: 2px solid #00ffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
        }
        
        .tab-active {
            background: linear-gradient(45deg, #ff0080, #00ffff);
            color: #000;
            border-radius: 8px;
        }
        
        .spin-wheel {
            background: conic-gradient(from 0deg, #ff0080, #00ffff, #8000ff, #ff4000, #00ff80, #ff0080);
            border-radius: 50%;
            animation: spin 10s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Gaming Boxes */
        .arcade-box {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 2px solid #333;
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(5px);
        }
        
        .arcade-box:hover {
            border-color: #00ffff;
            transform: translateY(-12px) scale(1.03);
            box-shadow: 
                0 20px 40px rgba(0, 255, 255, 0.25),
                0 0 30px rgba(0, 255, 255, 0.1),
                0 0 50px rgba(255, 0, 128, 0.15),
                inset 0 0 20px rgba(0, 255, 255, 0.05);
            background: linear-gradient(145deg, #1f1f1f, #0f0f0f);
        }
        
        .arcade-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff0080, #00ffff, #8000ff, #ff4000, #00ff80);
            background-size: 300% 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: rainbowFlow 4s linear infinite;
        }
        
        .arcade-box:hover::before {
            opacity: 1;
        }
        
        @keyframes rainbowFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }
        
        /* Gaming Animations */
        .vr-animation {
            animation: vrFloat 3s ease-in-out infinite;
        }
        
        @keyframes vrFloat {
            0%, 100% { 
                transform: translateY(0px) rotateY(0deg); 
            }
            50% { 
                transform: translateY(-12px) rotateY(8deg); 
            }
        }
        
        .arcade-animation {
            animation: arcadeBlink 2s ease-in-out infinite;
        }
        
        @keyframes arcadeBlink {
            0%, 100% { 
                opacity: 1; 
                filter: brightness(1);
            }
            50% { 
                opacity: 0.7; 
                filter: brightness(1.2);
            }
        }
        
        .bowling-animation {
            animation: bowlingRoll 4s linear infinite;
        }
        
        @keyframes bowlingRoll {
            0% { 
                transform: translateX(-25px) rotate(0deg); 
            }
            100% { 
                transform: translateX(25px) rotate(360deg); 
            }
        }
        
        .cricket-animation {
            animation: cricketSwing 2.5s ease-in-out infinite;
        }
        
        @keyframes cricketSwing {
            0%, 100% { 
                transform: rotate(0deg) scale(1); 
            }
            25% { 
                transform: rotate(-15deg) scale(1.1); 
            }
            75% { 
                transform: rotate(15deg) scale(1.1); 
            }
        }
        
        /* COMPREHENSIVE RESPONSIVE DESIGN */
        /* 3D Card Effects */
.card-3d {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-3d:hover {
    transform: rotateY(10deg) rotateX(10deg) translateZ(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
        /* Mobile Portrait (320px - 479px) */
        @media screen and (min-width: 320px) and (max-width: 479px) {
            .container { 
                padding: 10px 16px; 
                max-width: 100%;
            }
            h1 { 
                font-size: clamp(1.6rem, 7vw, 2.3rem) !important; 
                line-height: 1.2;
            }
            h2 { 
                font-size: clamp(1.5rem, 6vw, 1.8rem) !important; 
                line-height: 1.3;
            }
            .arcade-btn { 
                padding: 12px 20px; 
                font-size: 14px; 
                width: 100%;
                max-width: 280px;
            }
            .grid { 
                gap: 12px; 
                grid-template-columns: 1fr;
            }
            .arcade-box { 
                padding: 16px; 
                margin-bottom: 16px;
            }
            .countdown-digit {
                padding: 8px 12px;
            }
            .countdown-digit .text-3xl {
                font-size: 1.5rem !important;
            }
            .neon-glow {
                box-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
            }
        }
        
        /* Mobile Landscape (480px - 767px) */
        @media screen and (min-width: 480px) and (max-width: 767px) {
            .container { 
                padding: 10px 20px; 
                max-width: 100%;
            }
            h1 { 
                font-size: clamp(2.5rem, 7vw, 3.5rem) !important; 
                line-height: 1.2;
            }
            h2 { 
                font-size: clamp(1.8rem, 5vw, 2.2rem) !important; 
                line-height: 1.3;
            }
            .arcade-btn { 
                padding: 14px 24px; 
                font-size: 16px; 
                max-width: 320px;
            }
            .grid { 
                gap: 16px; 
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
            .arcade-box { 
                padding: 20px; 
            }
            .countdown-digit {
                padding: 12px 16px;
            }
        }
        
        /* Tablet Portrait (768px - 1023px) */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
            .container { 
                padding: 10px 24px; 
                max-width: 100%;
            }
            h1 { 
                font-size: clamp(3.5rem, 6vw, 4.5rem) !important; 
                line-height: 1.1;
            }
            h2 { 
                font-size: clamp(2.2rem, 4vw, 2.8rem) !important; 
                line-height: 1.2;
            }
            .arcade-btn { 
                padding: 16px 32px; 
                font-size: 18px; 
            }
            .grid { 
                gap: 20px; 
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .arcade-box { 
                padding: 24px; 
            }
            .countdown-digit {
                padding: 16px 20px;
            }
        }
        
        /* Desktop Small (1024px - 1279px) */
        @media screen and (min-width: 1024px) and (max-width: 1279px) {
            .container { 
                padding: 15px 32px; 
                max-width: 1200px;
                margin: 0 auto;
            }
            h1 { 
                font-size: clamp(4.5rem, 5vw, 5.5rem) !important; 
            }
            h2 { 
                font-size: clamp(2.8rem, 3vw, 3.2rem) !important; 
            }
            .arcade-btn { 
                padding: 18px 36px; 
                font-size: 20px; 
            }
            .grid { 
                gap: 24px; 
            }
            .arcade-box { 
                padding: 28px; 
            }
            .countdown-digit {
                padding: 20px 24px;
            }
        }
        
        /* Desktop Medium (1280px - 1599px) */
        @media screen and (min-width: 1280px) and (max-width: 1599px) {
            .container { 
                padding: 15px 40px; 
                max-width: 1400px;
                margin: 0 auto;
            }
            h1 { 
                font-size: clamp(5.5rem, 4vw, 6.5rem) !important; 
            }
            h2 { 
                font-size: clamp(3.2rem, 2.5vw, 3.8rem) !important; 
            }
            .arcade-btn { 
                padding: 20px 40px; 
                font-size: 22px; 
            }
            .grid { 
                gap: 28px; 
            }
            .arcade-box { 
                padding: 32px; 
            }
            .countdown-digit {
                padding: 24px 28px;
            }
        }
        
        /* Desktop Large (1600px - 1919px) */
        @media screen and (min-width: 1600px) and (max-width: 1919px) {
            .container { 
                padding: 20px 48px; 
                max-width: 1600px;
                margin: 0 auto;
            }
            h1 { 
                font-size: clamp(6.5rem, 3.5vw, 7.5rem) !important; 
            }
            h2 { 
                font-size: clamp(3.8rem, 2vw, 4.2rem) !important; 
            }
            .arcade-btn { 
                padding: 22px 44px; 
                font-size: 24px; 
            }
            .grid { 
                gap: 32px; 
            }
            .arcade-box { 
                padding: 36px; 
            }
            .countdown-digit {
                padding: 28px 32px;
            }
        }
        
        /* Ultra Wide (1920px - 2559px) */
        @media screen and (min-width: 1920px) and (max-width: 2559px) {
            .container { 
                padding: 20px 56px; 
                max-width: 1800px;
                margin: 0 auto;
            }
            h1 { 
                font-size: clamp(7.5rem, 3vw, 8.5rem) !important; 
            }
            h2 { 
                font-size: clamp(4.2rem, 1.8vw, 4.8rem) !important; 
            }
            .arcade-btn { 
                padding: 24px 48px; 
                font-size: 26px; 
            }
            .grid { 
                gap: 36px; 
            }
            .arcade-box { 
                padding: 40px; 
            }
            .countdown-digit {
                padding: 32px 36px;
            }
        }
        
        /* Super Ultra Wide (2560px+) */
        @media screen and (min-width: 2560px) {
            .container { 
                padding: 20px 64px; 
                max-width: 2200px;
                margin: 0 auto;
            }
            h1 { 
                font-size: clamp(8.5rem, 2.5vw, 10rem) !important; 
            }
            h2 { 
                font-size: clamp(4.8rem, 1.5vw, 5.5rem) !important; 
            }
            .arcade-btn { 
                padding: 28px 56px; 
                font-size: 28px; 
            }
            .grid { 
                gap: 40px; 
            }
            .arcade-box { 
                padding: 48px; 
            }
            .countdown-digit {
                padding: 36px 40px;
            }
        }
        
        /* High DPI Displays */
        @media screen and (-webkit-min-device-pixel-ratio: 2), 
               screen and (min-resolution: 192dpi) {
            .neon-glow {
                box-shadow: 
                    0 0 5px #00ffff, 
                    0 0 10px #00ffff, 
                    0 0 20px #00ffff;
            }
            .neon-text {
                text-shadow: 
                    0 0 3px #00ffff, 
                    0 0 6px #00ffff, 
                    0 0 12px #00ffff;
            }
        }
        
        /* Landscape Orientation Adjustments */
        @media screen and (orientation: landscape) and (max-height: 500px) {
            .hero-bg {
                min-height: 100vh;
                padding: 20px 0;
            }
            h1 {
                font-size: clamp(2rem, 6vh, 4rem) !important;
            }
            .arcade-btn {
                padding: 10px 20px;
                font-size: 16px;
            }
        }
        
        /* Accessibility and Motion Preferences */
        @media (prefers-reduced-motion: reduce) {
            .pulse-animation,
            .vr-animation,
            .arcade-animation,
            .bowling-animation,
            .racing-animation,
            .spin-wheel {
                animation: none;
            }
            
            .arcade-btn:hover,
            .card-hover:hover,
            .arcade-box:hover {
                transform: none;
            }
        }
        
        /* Print Styles */
        @media print {
            .neon-glow,
            .neon-text {
                box-shadow: none;
                text-shadow: none;
            }
            
            .arcade-btn {
                background: #333;
                color: white;
                border: 2px solid #333;
            }
        }

  .scrollbar-hide::-webkit-scrollbar { display: none; }
  .animate-scroll {
    animation: scroll-left 20s linear infinite;
  }
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* FOOTER BASE */
.footer {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-top: 25px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* NEW - Contact Row */
.contact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-box-single {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 30px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  width: 250px;
  transition: background 0.3s;
}

.contact-box-single:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact-box-single h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.contact-box-single p {
  margin: 0;
  font-size: 0.95rem;
  color: #ddd;
}

/* Override for copy msg */
.copy-msg {
  display: none;
  text-align: center;
  font-size: 0.9rem;
  color: #34c759;
  margin-bottom: 15px;
}


/* Basic highlight styles with color only */
.highlight1 { color: #facc15; font-weight: 600; }
.highlight3 { color: #facc15; font-weight: 600; }
.highlight2  { color: #facc15; font-weight: 600; }
.highlight4   { color: #facc15; font-weight: 600; }
.highlight5 { color: #facc15; font-weight: 600; }
.highlight6   { color: #facc15; font-weight: 600; }

/* No changes to social + logo sections; they stay centered */

/* RESPONSIVE UPDATE */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-right: 15px;
  }

  .contact-box-single {
    width: 100%;
    max-width: 300px;
  }
}


/* SOCIAL MEDIA */
.social-section {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icon img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
}

.social-icon img:hover {
  transform: scale(1.2);
}

/* LOGOS SECTION */
.logos-section {
  text-align: center;
  margin-top: 0px;
}

.sponsorship-info {
  margin-top: 15px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.sponsorship-info a {
  color: #FFD700;
  text-decoration: none;
}

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


.logos-section img {
  height: 50px;
  max-width: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255,255,255,0.2));
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .glass-panel.contact-box {
    width: 100%;
    max-width: 400px;
  }
}

.event-gallery-section {
  padding: 40px 20px;
  background: #0d0d0d;
  color: #fff;
}

.gallery-heading {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.masonry-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: scroll;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.masonry-gallery::-webkit-scrollbar {
  height: 8px;
}

.masonry-gallery::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.masonry-gallery img {
  height: auto;
  width: auto;
  max-height: 250px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.masonry-gallery img:hover {
  transform: scale(1.05);
}

.sponsorship-contact {
  text-align: center;
  margin-top: 20px;
  font-family: Arial, sans-serif;
}
.sponsorship-contact a {
  color: #000;
  text-decoration: none;
}
.sponsorship-contact a:hover {
  text-decoration: underline;
}

.logo {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    }

    /* Common styles for both logos */
.logos-container img,
.logo-stack img {
  height: 40px;   /* default small size for mobile */
  width: auto;
}

/* Smaaash logo - top left */
.logos-container {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

/* Esmaaash logo - top right */
.logo-stack {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

/* Tablet screens */
@media (min-width: 600px) {
  .logos-container img,
  .logo-stack img {
    height: 50px; /* slightly larger */
  }
  .logos-container {
    top: 15px;
    left: 15px;
  }
  .logo-stack {
    top: 15px;
    right: 15px;
  }
}

/* Desktop screens */
@media (min-width: 1024px) {
  .logos-container img,
  .logo-stack img {
    height: 60px; /* bigger for desktops */
  }
  .logos-container {
    top: 20px;
    left: 20px;
  }
  .logo-stack {
    top: 20px;
    right: 20px;
  }
}

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Default for large screens */
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

/* Very small mobiles (up to 320px) */
@media (max-width: 320px) {
    .hero {
        height: 28vh;
            width: 105%;
    }
}



/* Small mobiles (321px - 390px) */
@media (min-width: 321px) and (max-width: 380px) {
    .hero {
        height: 24vh;
    }
}
@media (min-width: 381px) {
    .hero {
        height: 28vh;
    }
}
/* Exact 425px width */
@media (width: 425px) {
    .hero {
        height: 35vh; /* adjust the height as you want */
    }
}

@media (min-width: 480px) {
    .hero { 
        height : 35vh;
    }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        height: 41vh;
    }
}

/* Laptops / small desktops (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 45vh;
    }
}

/* Large desktops (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .hero {
        height: 90vh;
    }
}

/* Very large desktops / 4K screens (1441px and above) */
@media (min-width: 1441px) {
    .hero {
        height: 100vh;
    }
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    animation: spin 1s linear infinite;
}
@keyframes spin {0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}

 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

 .gallery-section {
    padding: 30px 10px;
    background: #1b1717;
    color: #fff;
  }

  .gallery-rail {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 15px 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #666 #1b1717;
    -webkit-overflow-scrolling: touch; /* momentum scroll on iOS */
  }

  .gallery-rail::-webkit-scrollbar {
    height: 8px;
  }

  .gallery-rail::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
  }

  .gallery-item {
    flex: 0 0 auto; /* don't shrink, fixed width */
    width: 280px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.18);
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .gallery-item {
      width: 220px;
      height: 150px;
    }
  }

  @media (max-width: 480px) {
    .gallery-item {
      width: 280px;
      height: 200px;
    }
  }