* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #0a192f;
  color: #ffffff;
}

.header {
  background-color: #ff6b35;
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 200px;
  margin-bottom: 15px;
}

.nav {
  background-color: #ffffff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #0a192f;
  font-weight: bold;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ff6b35;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ff6b35;
  border-bottom: 2px solid #ff6b35;
  padding-bottom: 10px;
}

.video-container {
  margin: 30px 0;
}

.main-video {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.video-item {
  background-color: #1a2942;
  padding: 15px;
  border-radius: 8px;
}

.event-info {
  background-color: #1a2942;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.countdown {
  background-color: #ff6b35;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0;
}

.footer {
  background-color: #1a2942;
  padding: 30px 0;
  text-align: center;
  margin-top: 50px;
}

.contact-info {
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  background-color: #ff6b35;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  margin: 20px 0;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e55a2b;
}

@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}
/* General Navigation Styles */
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #333;
  display: flex;
}

.nav li {
  position: relative;
}

.nav a {
  display: block;
  padding: 12px 16px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.nav a:hover {
  background: #555;
}

/* Dropdown Styles */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #444;
  min-width: 200px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

.sub-menu li {
  display: block;
}

.sub-menu a {
  padding: 10px 15px;
  color: white;
  white-space: nowrap;
}

/* Show submenu on hover (For Desktop) */
.menu-item-has-children:hover .sub-menu {
  display: block;
  opacity: 1;
}

/* Mobile-Friendly Dropdown */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
  }

  .sub-menu {
    position: static;
    display: none;
    opacity: 1;
    background: #555;
  }

  .menu-item-has-children.active .sub-menu {
    display: block;
  }
}
.header {
  display: flex;
  align-items: center; /* Vertically centers the logo and text */
  justify-content: center; /* Centers the whole block */
  gap: 20px; /* Adds space between the logo and text */
  text-align: left; /* Ensures text stays aligned to the left */
}

.logo {
  max-width: 220px; /* Adjust the size of the logo */
  height: auto;
}

.header-text {
  max-width: 600px; /* Prevents text from being too wide */
}

/* Section Title */
.title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Contact Row Layout */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

/* Contact Info */
.contact-info {
  width: 45%;
  padding-left: 40px;
}

.contact-info h3 {
  margin-bottom: 10px;
}

/* Google Map */
.map {
  width: 45%;
}

.map iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* Centered Section */
.centered-info {
  text-align: center;
  padding: 30px 0;
}

.centered-info img {
  width: 400px;
  margin-bottom: 20px;
}

.centered-info h3 {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info,
  .map {
    width: 100%;
    padding: 0;
  }
}

.video-item h4 {
  margin-bottom: 10px;
}
.slideshow-container {
  position: relative;
  width: 100%;
  height: 400px; /* Set a fixed height for the slideshow */
  overflow: hidden;
}

.slideshow-container img {
  width: 100%;
  height: 100%;
  display: none; /* Hide images initially */
  object-fit: cover; /* Ensure images cover the area */
  transition: opacity 1s ease-in-out; /* Smooth transition */
}

/* Initially show the first image */
.slideshow-container img:nth-child(1) {
  display: block;
}

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1000;
}

button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h5 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.expo-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.social-icons img {
  width: 30px;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

.video-item video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr; /* Stack videos in one column on smaller screens */
  }
}

.whats-on p {
  line-height: 24px;
}

.exclusive-photos {
  text-align: center;
}
.trade-visitor {
  display: flex;
  align-items: flex-start;
  max-width: 1000px;
  margin: auto;
}
.text-column {
  flex: 1;
  padding-right: 20px;
}
.text-column p {
  margin-bottom: 20px;
}
.image-column {
  flex: 1;
  text-align: center;
}
.image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.highlight {
  font-weight: bold;
  color: #d9534f;
}
.text-column ul li {
  margin-bottom: 20px;
}
.text-column h2 {
  margin-bottom: 20px;
}
/* Container for the image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* Image wrapper */
.image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Ensure links behave properly */
.image-box a {
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Centering the button */
.twitter-follow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.twitter-follow-button:hover {
  background-color: #0d8de0;
}

/* Twitter Logo */
.twitter-follow-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.footer-columns a {
  color: #1da1f2;
}
.footer-columns p {
  line-height: 20px;
}
/* Button Styling */
.twitter-follow-button {
  display: inline-flex;
  align-items: center;
  background-color: #1da1f2;
  color: black !important;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
  border: none;
  cursor: pointer;
}
