body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0c0c1f;
  color: #ffffff;
  line-height: 1.6;
    overflow-x: hidden;
}

.hero {
  position: relative;
  width: 105%;
  height: 100vh; /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
  padding: 0;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the video fully covers the area */
  z-index: 0;
  opacity: 0.6;
  filter: brightness(1) contrast(1.15);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Container for all logos */
.logos-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* center Logo1 horizontally */
  margin-top: -70px;
}

/* Logo1 styling (largest) */
.logo1 {
  width: 160px; /* biggest logo */
  height: auto;
  margin-bottom: 15px; /* space below Logo1 */
}

/* Container for Logo2 and Logo3 side by side */
.logo-stack {
  display: flex;
  gap: 20px; /* space between Logo2 and Logo3 */
  justify-content: center;
  align-items: flex-start; /* align logos at top */
}

/* Logo2 styling */
.logo2 {
  width: 60px; /* smaller than Logo1 */
  height: auto;
}

/* Logo3 styling */
.logo3 {
  width: 60px; /* same as Logo2 */
  height: auto;
}

/* Responsive adjustments for small screens */
@media (max-width: 480px) {
  .logo-stack {
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
  }
}

 .road-container {
  position: relative;
  width: 100%;
  height: 550px; /* enough space for 475px car + banner */
  overflow: hidden;
}

.car {
  position: absolute;
  bottom: 120px; /* lift car so it's on the road */
  left: -600px; /* start off-screen */
  display: flex;
  align-items: center;
  animation: drive 12s linear infinite;
}

.car img {
  height: 475px; /* fixed height for your image */
  width: auto;
}

.car-banner {
  background: #e21b1b;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 20px;
  margin-left: -60px; /* attach close to car’s back */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transform: rotate(-5deg);
}

@keyframes drive {
  0% { left: -600px; }
  100% { left: 100%; }
}
/* Inquiry Button */
        .inquiry-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #4a88d2, #3769a6);
            color: #fff;
            padding: 16px 24px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            z-index: 1000;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(74, 136, 210, 0.4);
            transition: all 0.3s ease;
        }

        .inquiry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(74, 136, 210, 0.6);
        }

        /* Popup Container */
        .inquiry-popup {
            display: none;
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 350px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            z-index: 1001;
            animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .inquiry-popup.show {
            display: block;
        }

        /* Popup Content */
        .popup-content {
            padding: 30px;
            position: relative;
        }

        .popup-content h3 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
            text-align: center;
        }

        .popup-content input,
        .popup-content textarea {
            width: 90%;
            margin: 12px 0;
            padding: 14px 16px;
            border-radius: 10px;
            border: 2px solid #e1e5e9;
            font-size: 14px;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }

        .popup-content input:focus,
        .popup-content textarea:focus {
            outline: none;
            border-color: #4a88d2;
        }

        .popup-content textarea {
            resize: vertical;
            min-height: 80px;
        }

        .popup-content button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #4a88d2, #3769a6);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .popup-content button:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(74, 136, 210, 0.4);
        }

        /* Close Button */
        .close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #333;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            text-align: center;
            border: 1px solid #c3e6cb;
        }

        /* Animations */
        @keyframes slideUp {
            from { 
                opacity: 0; 
                transform: translateY(30px) scale(0.9); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        @keyframes fadeOut {
            from { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
            to { 
                opacity: 0; 
                transform: translateY(30px) scale(0.9); 
            }
        }

        .inquiry-popup.hide {
            animation: fadeOut 0.3s ease-in-out forwards;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .inquiry-popup {
                width: calc(100vw - 40px);
                right: 20px;
                bottom: 90px;
            }

            .inquiry-btn {
                right: 20px;
                bottom: 20px;
                padding: 14px 20px;
            }

            .main-content {
                padding: 30px 20px;
            }

            .main-content h1 {
                font-size: 2rem;
            }
        }
        
/* =====================
   Tournament Title
===================== */
.title {
  text-align: center;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 12px #ff007f;
  margin: -1rem 0;
}
.title span {
  color: #00ffe5;
  text-shadow: 0 0 10px #00ffe5;
}

.top-highlight {
  display: none; /* Hidden by default */
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 12px 20px;
  font-size: 16px;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 9999;
}


/* Responsive */
@media (max-width: 480px) {
  .top-highlight {
    font-size: 14px;
    padding: 10px;
    top: 60px;
    right: 10px;
  }
}



.step-desc1 {
        font-size: 1.3rem;
        color: #cfcfcf;
        line-height: 1.4;
    }
    
    
/* =====================
   Venue Cards
===================== */
.venue-card {
  background: #1e293b;
  border-radius: 50%; /* make it round */
  padding: 40px;
  width: 180px;
  height: 180px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}


.venue-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
  background: #334155;
}

.venue-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #38bdf8;
}

.venue-card.highlight {
  outline: 3px solid #facc15;
  box-shadow: 0 0 25px rgba(250, 204, 21, 0.6);
}

.venue-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force exactly 3 cards per row */
  gap: 24px;
  max-width: 960px;
  margin: 40px auto;
}

.venue-card h3 {
  color: #38bdf8;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.venue-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.venue-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}


.venue-final-callout {
  background: #000;
  color: #fff; /* Fixed text color */
  padding: 40px;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
  text-align: center;
}



.venue-final-callout:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
  background: #334155;
}

.venue-final-callout h3 {
  color: #f83888;
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.venue-final-callout p {
  color: #1374d5;
  font-size: 1.5rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #facc15);
  }
  50% {
    transform: scale(1.3);
    filter: drop-shadow(0 0 10px #facc15);
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px #facc15);
  }
}


/* =====================
   Section Titles
===================== */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #00ffe5;
  margin-top: 3rem;
  text-shadow: 0 0 8px #00ffe5;
}
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/*  Glass Box  */
.glass-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 12px rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

/*  CTA & Register Buttons  */
.cta-button, .register-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff007f, #00ffe5);
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  margin: 1rem auto;
  transition: transform 0.2s ease;
}
.cta-button:hover, .register-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.7);
}
.tournament-format-section {
  padding: 60px 25px;
  background: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.format-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

/* iPhone Outer Shell */
.iphone-shell {
  width: 375px;
  height: 665px;
  background: #0e0e0e;
  border: 10px solid #09333d;;
  border-radius: 60px;
  box-shadow: 0 0 40px rgba(251, 7, 7, 0.634), inset 0 0 20px rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

/* iPhone Notch */
.iphone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

/* Main Content Box (inside screen) */
.iphone-box {
  height: 100%;
  overflow-y: auto;
  padding: 40px 24px 24px 24px;
}

/* Title */
.format-title {
  text-align: center;
  color: #facc15;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Format Steps List */
.format-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual Card */
.iphone-card {
  background: #1c1c1c;
  border-radius: 28px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.iphone-card:hover {
  transform: scale(1.02);
}

/* Round Number Circle */
.circle {
  width: 36px;
  height: 36px;
  background: #ff6a00;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title and Description */
.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.step-title.blue {
  color: #1580fa;
}
.step-title.yellow {
  color: #facc15;
}
.step-desc {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.4;
}

.iphone-home-line {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: white;
  border-radius: 10px;
  opacity: 0.6;
}



.format-content {
  flex: 2 1 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
background-clip: padding-box;
box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);

background-origin: border-box;

  color: #ffffff;
  margin-top: 10px;
  animation: fadeInUp 0.8s ease-out;
}

.format-content .title {
  font-size: 2rem;
  font-weight: 700;
  color: #facc15;
  text-align: center;
  margin-bottom: 24px;
}

.format-content .title span {
  color: #38bdf8;
}

.format-content .section-subtitle {
  font-size: 1rem;
  margin: 12px 0;
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
}

.format-content .section-subtitle::before {
  content: "🎳";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Container Styling */
.highlight-container {
  background-color: #000;
  padding: 120px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

/* Title Styling */
.title {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

/* Boxes Flex Wrap */
.highlight-boxes {
  display: flex;
  justify-content: center; 
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
}

.highlight-boxes .box {
  flex: 0 0 45%; /* 2 visible at a time */
  scroll-snap-align: start;
}


/* Individual Box */
.highlight-box {
  background-color: #1a1a1a;
  padding: 20px 30px;
  border-radius: 15px;
  text-align: center;
  width: 180px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.highlight-box:hover {
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.7);
  transform: translateY(-5px);
}
.highlight-box h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: deepskyblue;
}
.highlight-box p {
  margin: 5px 0 0;
  font-size: 14px;
  opacity: 0.85;
  color: darksalmon;
}

/* Red Line */
.format-title3 {
  color: #00E0FF;   
  text-shadow: 2px 2px 6px rgba(255, 59, 59, 0.6);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Button Styling */
.cta-button1 {
  display: inline-block;
  background: linear-gradient(90deg, #ff007f, #00ffe5);
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cta-button1:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 229, 0.7);
}

/* Center Wrapper */
.bottom-highlight {
  margin-top: 10px;
}

 


.faq-section {
  background: linear-gradient(to right, #1a1a2e, #16213e);
  color: white;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  color: #e0e0e0;
  padding: 0 24px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 24px 24px;
}

@media screen and (max-width: 600px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}




/* Tag */
.value-tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(to right, #ffcc00, #ff8800);
  color: #000000;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
 border-radius: 999px;
  box-shadow: 0 0 10px rgb(255 0 177);
}

.bar {
  height: 6px;
  border-radius: 999px; /* ⬅️ Fully rounded bars */
  margin-right: 28px;
  margin-bottom: 4px;
}

/* Gradient Heading */
.section-title-gradient {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, #f953c6, #20e3b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* Price Display */
.price-amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(to right, #f953c6, #20e3b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.per-participant {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* Benefits */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.benefits-list li {
  position: relative;
  margin-bottom: 24px;
  padding-left: 0;
}

.benefits-list .text {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

/* Colored Bars */
.purple { background: linear-gradient(to right, #f953c6, #20e3b2); }
.blue1  { background: linear-gradient(to right, #f953c6, #20e3b2); }
.blue2  { background: linear-gradient(to right, #f953c6, #20e3b2); }
.teal   { background: linear-gradient(to right, #f953c6, #20e3b2); }
.green1 { background: linear-gradient(to right, #f953c6, #20e3b2); }
.pink   { background: linear-gradient(to right, #f953c6, #20e3b2); }

.tick {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1rem;
  color: #34c759;
}

/* CTA Button */
.cta-pricing {
  display: inline-block;
  background-color: #E76614;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px; /* ⬅️ Rounded button */
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-pricing:hover {
  background-color: #c25611;
}

/* 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: 40px;
  }

  .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;
}
