@import url('https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  :root {
    --primary-color: #004203; /* Green */
    --secondary-color: #C62828; /* Red */
    --accent-color: #FFEB3B; /* Yellow */
    --background-color: #F5F5F5;
    --text-color: #212121;
    --link-color: #2E7D32;
    --link-hover-color: #C62828;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  font-family: 'Amaranth';
  background: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1600px; 
  margin: 0 auto;
  padding: 1rem;
}

.sticky-wrapper {
  position: fixed;
  top: 0;
  z-index: 9999;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
}


.site-header {
  background-color: #ffffff98 ;
  color: white;
  padding: 10px 20px;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 120px;
}

.logo-title h1 {
  font-size: 1em;
  margin-left: 0;
  color: rgb(0, 64, 9);
}

.dropdown-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: rgb(5, 137, 16);
  margin-top: 10px;
}

/* NAVIGATION BAR STYLING */

.dropdown-nav {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  background-color: white;
  padding: 15px 0;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
}

.dropdown-menu li a {
  display: inline-block;
  background-color: var(--primary-color);
  color: #04611a;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: green;
  color: var(--text-color);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .dropdown-icon {
    display: block;
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-menu.show {
    display: flex;
  }

  .logo-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-title h1 {
    margin-left: 0;
    margin-top: 10px;
  }
}



/* Navigation Bar */
.navbar {
  background-color: #f9f9f9;
  padding: 1rem ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.navbar .nav-links a {
  font-size: 0.9rem; /* or try 14px */
  padding: 0.5rem 1rem;
}


.nav-links li a {
  text-decoration: none;
  color: var(--title-color);
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.nav-links li a:hover {
  color: var(--first-color);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: contents;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 2rem;
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 100;
  }

  .nav-links.show {
    display: flex;
  }
}

/* Hero Title Styling */
/* HERO SECTION WITH BACKGROUND IMAGE */
/* HERO SECTION WITH BACKGROUND IMAGE */
.hero-section {
  background-image: url('11861789_7575.jpg'); /* Change path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  margin-top: 140px;
}

.highlight-heading {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
}

.highlight-line {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 6px;
  color: #000;
  margin: 5px 0;
}

.green-bg {
  background-color: #c6f79e; /* soft green */
}

.yellow-bg {
  background-color: #fff6a1; /* pastel yellow */
}

.blue-bg {
  background-color: #d0e8ff; /* soft blue */
}

.tagline {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-style: italic;
  color: #000;
  text-align: center;
  margin-top: 10px;
}


.text-blue {
  color: #fff; /*Tailwind blue-500 */
}

.text-white {
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay for contrast */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 2000px;
  margin-bottom: 2rem;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.hero-section p { 
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
  color: #000;
}

/* Hero buttons */
.hero-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn.primary {
  background-color: #1669f9; /* Tailwind orange-500 */
  color: white;
}

.btn.primary:hover {
  background-color: #0c5aea; /* Tailwind orange-600 */
}

.btn.secondary {
  background-color: #d0e8ff;
  color: #000;
  border: 2px solid #004200;
}

.btn.secondary:hover {
  background-color: #d0e8ff;
  color: white;
}

/*Quick Stats*/

.quick-stats-section {
  padding: 60px 20px;
  background-color:#5ba7ff;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #000000;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-card {
  background-color: #124584;
  padding: 30px 40px;
  border-radius: 10px;
  width: 250px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #fff;
}

.stat-card p {
  margin-top: 10px;
  font-size: 1rem;
  color: #ccc;
}

.social-media h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0e52c8;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  color: blue;
}

.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1); /* make SVGs white */
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(0) invert(58%) sepia(87%) saturate(4737%) hue-rotate(346deg) brightness(93%) contrast(118%);
}

/*About Section*/

.about-section {
  background: linear-gradient(to bottom right, #ffffff, #c6f79e);
  padding: 60px 20px;
  color: #333;
}

.about-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}

.about-goals {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.goals-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #111;
}

.goals-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

/* AGENDA SECTION */
.agenda-heading {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.agenda-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color:rgb(20, 78, 136);
  margin-bottom: 0.5rem;
  position: relative;
}

.agenda-heading h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color:rgb(18, 112, 243); /* Accent color */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.agenda-heading p {
  font-size: 1rem;
  color: #555;
  margin-top: 1rem;
  line-height: 1.6;
}

.agenda-section {
  padding: 60px 20px;
  background-color: linear-gradient(to bottom right, #ffffff, #8dbbff);
  color: #222;
}

.agenda-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #e50914;
  margin-bottom: 30px;
}

.agenda-day, .interactive-experience {
  margin-bottom: 40px;
}

.agenda-day h3,
.interactive-experience h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
}

.agenda-day ul,
.interactive-experience ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.closing-note {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  color: #111;
}

.agenda-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.agenda-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.agenda-card:hover {
  transform: scale(1.03);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 1rem;
  text-align: center;
}

.agenda-details {
  display: none;
  background: rgba(133, 194, 230, 0.95);
  color: #333;
  padding: 1rem;
  position: align-items;
  top: 0;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  z-index: 10;
}

.agenda-card.active .agenda-details {
  display: block;
}



/*Speaker Section */

.speakers-section {
  padding: 60px 20px;
  background-color: linear-gradient(to bottom right, #ffffff, #8dbbff);
  text-align: center;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.speaker-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  cursor: pointer;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.speaker-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.speaker-info {
  padding: 20px;
}

.speaker-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.speaker-info p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #777;
}

.speaker-bio {
  display: none;
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}

.speaker-card:hover .speaker-bio {
  display: block;
}

/*Exhibit Section*/

.exhibit-section {
  padding: 60px 20px;
  background-color: linear-gradient(to bottom right, #ffffff, #8dbbff);
  text-align: center;
}

.exhibit-intro {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555;
}

.exhibitor-categories,
.exhibit-pricing {
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.category-list,
.pricing-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.category-list li,
.pricing-list li {
  background-color: #f4f4f4;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 16px;
}

.exhibit-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.cta-button {
  padding: 12px 24px;
  background-color: #e94e1b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c73f12;
}

.cta-button.secondary {
  background-color: #0078d7;
}

.cta-button.secondary:hover {
  background-color: #005fab;
}



/*Exhibit Section*/

/* Caption */
.caption {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background-color: rgba(37, 96, 179, 0.5);
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-size: 1.2rem;
  text-align: center;
}

/* Dots */
.dots-container {
  text-align: center;
  margin-top: 1rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active, .dot:hover {
  background-color: var(--first-color);
}

/* Slideshow*/

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* Slideshow */
.slideshow-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  display: block;
  width: 100%;
  height: 80vh;
  position: relative;
  opacity: 9;
  transition: opacity 0.3 ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
  text-align: center;
}

/* Navigation Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  z-index: 10;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Dots */
.dots-container {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
  z-index: 10;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #717171;
}

/* CTA Buttons */
.slide-buttons {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.cta-btn {
  background-color:rgb(0, 60, 255);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color:rgb(0, 60, 225);
}

.slideshow-title {
  position: absolute;
  top: 30px;
  left: 60px;
  font-size: 2.5rem;
  color: var(--white-color);
  font-weight: bold;
  z-index: 5;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Smaller captions */
.caption {
  position: absolute;
  bottom: 80px;
  width: 100%;
  text-align: center;
  font-size: 1rem; /* reduced size */
  color: var(--white-color);
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

@keyframes fade {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-title {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  z-index: 10;
  font-weight: bold;
}

.caption {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  z-index: 10;
}

.slide-buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.cta-btn {
  background-color: #1779f0;
  color: rgb(0, 0, 0);
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #2870c8;
}

/* === Explore Section Styles === */

/* Explore Section */
.explore-section {
  padding: 40px 20px;
  text-align: center;
}

.circle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.circle-item {
  position: relative;
  width: 150px;
  height: 150px;
  cursor: pointer;
  text-align: center;
}

.circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.circle-item:hover .circle-img {
  transform: scale(1.05);
}

.activity-label {
  display: block;
  margin-top: 0px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.circle-overlay {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.7);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 15px;
  font-size: 0.85rem;
  overflow-y: auto;
}

.circle-item:hover .circle-overlay {
  opacity: 1;
}

.circle-item.active .circle-overlay {
  opacity: 1;
}





/* Shareholders / Partners Section */
.partners-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom right, #ffffff, #8dbbff);
  color: #002244;
  padding-bottom: 20px;
}

.partners-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.partners-section h3 {
  font-size: 1.8rem;
  color: #3399ff;
  margin-bottom: 1.5rem;
}

.partners-section p {
  font-size: 1rem;
  color: blue;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-weight: 300;
}

.vendor-button {
  background: linear-gradient(to bottom right, #fff7e6, #fde6c9);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #002244;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.vendor-button:hover {
  background: linear-gradient(to bottom right, #fff7e6, #fde6c9);
}

.partner-logos {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
  justify-content: flex-start;
  scroll-snap-type: x mandatory;
}

.partner-logo {
  flex: 0 0 auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #cce0ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  scroll-snap-align: start;
}

.partner-logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/*Event Features Section*/

/* EVENT FEATURES SECTION */
.event-features-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom right, #ffffff, #8dbbff);
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2a7fe0;
  text-align: center;
  margin-bottom: 3rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.feature-cylinder {
  position: relative;
  width: 160px;
  height: 160px;
  border: 3px solid #01275a;
  border-radius: 50%;
  background-color: #67a2f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.4s ease, background-color 0.3s ease;
}

.feature-cylinder:hover {
  background-color: #2d65be;
  cursor: pointer;
  transform: scale(1.05);
}

.feature-cylinder h3 {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #1e57ac;
  font-weight: 600;
}

.icon {
  font-size: 2rem;
  color: #ffffff;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  opacity: 0;
  padding: 1rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.4s ease;
}

.feature-cylinder:hover .feature-overlay {
  opacity: 1;
}

.feature-cylinder .feature-overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 1rem;
  text-align: center;
  border-radius: 0 0 1rem 1rem;
  pointer-events: none;
}

.feature-cylinder.active .feature-overlay {
  opacity: 1;
  pointer-events: auto;
}

/*Tickets Section*/

.tickets-venue-section {
  padding: 60px 20px;
  background-color:rgba(44, 136, 255, 0.61);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .info-cards {
    flex-direction: row;
    justify-content: center;
  }
}

.info-card {
  background-color: #98bcff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  flex: 1;
  max-width: 700px;
}

.info-card h3 {
  color:rgb(30, 91, 233);
  margin-bottom: 15px;
}

.ticket-price {
  font-size: 1.2rem;
  color: #0078d7;
  font-weight: 600;
}

.map-embed iframe {
  border-radius: 8px;
  margin-top: 10px;
}

.tickets-venue-section .cta-button {
  margin-top: 15px;
  display: inline-block;
  background-color:rgb(3, 56, 108);
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
}






/*ContactUs Section*/

.footer-section {
  background: linear-gradient(to bottom right, #689dec, #4a92ff);
  padding: 50px 20px 30px;
  color: linear-gradient(to bottom right, #689dec, #4a92ff);
  border-top: 3px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-left h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.footer-left h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #cbe3ff;
}

.social-icons a {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #cbe3ff;
}

.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.footer-links li i {
  margin-right: 10px;
  color: #fff;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.sponsor-logos {
  margin-top: 40px;
  text-align: center;
}

.sponsor-logos img {
  max-height: 60px;
  margin: 0 15px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left, .footer-right {
    width: 100%;
  }

  .sponsor-logos img {
    margin: 10px;
  }
}


.contact-section {
  background: linear-gradient(to bottom right, #689dec, #4a92ff);
  padding: 4rem 2rem;
  color: white;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-content .left {
  max-width: 45%;
}

.contact-content .left h2 {
  font-size: 2.5rem;
  color: white;
}

.contact-content .left h1 {
  font-size: 3.5rem;
  color: #cbe3ff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  animation: bounce 0.4s;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.contact-content p {
  color: white;
  font-size: 1rem;
}

.right {
  max-width: 45%;
}

.nav-links {
  list-style:circle;
  padding: 0;
  margin: 0;
  color: white;
}

.nav-links li {
  font-size: 1.3rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid white;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #88ccff;
}

.contact-nav {
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 20px;
  margin-top: 40px;
  margin-right: 260px;
  font-size: 20px;
}

.contact-nav a {
  color: white;
  text-decoration: none;
  position: relative;
  padding-right: 10px;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
}

.contact-nav a:hover {
  color: #a3d3ff;
}


.sponsor-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 2rem;
  gap: 0.2rem;
  flex-wrap: wrap;
  background-color: #fff;
}

.sponsor-logos img {
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #004aad;
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 999;
  transition: background 0.3s ease;
}

#backToTop:hover {
  background: #007bff;
}

/*sticky footer*/

/* Sticky Footer */
.sticky-footer {
  position: sticky; /* Keep it fixed at the bottom */
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95); /* Soft white background */
  display: flex;
  justify-content: center;
  align-items: left;
  padding: 0.5rem 1rem;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Make sure it’s above everything else */
}

.footer-logos {
  display: flex;
  overflow-x: auto; /* enable horizontal scrolling */
  white-space: nowrap; /* keep logos in one line */
  gap: 20px;
  padding: 0 10px;
}

.footer-logos img {
  height: 100px;
  object-fit: contain;
  flex-shrink: 0; /* prevent shrinking */
}

.footer-logos .first-logo {
  height: 95px;
}

/* Optional: Hide scrollbar for cleaner look */
.footer-logos::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .footer-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer-logos img {
    flex-shrink: 0;
  }

  /* Optional: Hide scrollbars for a cleaner look */
  .footer-logos::-webkit-scrollbar {
    display: none;
  }
}


/* Forms Styling */

.form-section {
  max-width: 600px;
  margin: 80px auto;
  padding: 45px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-section h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #005a2c;
}

.expo-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.expo-form input,
.expo-form select,
.expo-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.expo-form button {
  background-color: #005a2c;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.expo-form button:hover {
  background-color: #008040;
}

.sponsor-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.form-container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #2d2d2d; 
}

.form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border 0.2s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color:rgb(42, 114, 197);
  outline: none;
}

.submit-btn {
  background-color:rgb(87, 122, 204);
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: auto;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #3e8e41;
}


