* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: white;
  overflow-x: hidden;
}
.text-dark{
    color:#000;
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}
.nav-toggle{
       display: none !important; 
}
.nav-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* Header */
.top-header {
  width: 100%;
  background: #283349;
  padding: 16px 32px;
  animation: fadeIn 1s ease forwards;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 18px;
}

.icon {
  width: 18px;
  height: 18px;
  color: white;
}

.icon-large {
  width: 47px;
  height: 47px;
  color: #283349;
}

.divider {
  width: 1px;
  height: 21.5px;
  background: rgba(255, 255, 255, 0.3);
}

/* Banner */
.banner {
  width: 100%;
  background: linear-gradient(90deg, rgba(247, 170, 82, 1) 0%, rgba(142, 63, 77, 1) 100%);
  padding: 16px;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.banner-logo {
  height: 94px;
  object-fit: cover;
}

.banner-logo-small {
  width: 91px;
  height: 91px;
  border-radius: 6px;
  object-fit: cover;
}

.banner-title {
  font-family: 'Port Lligat Sans', sans-serif;
  font-size: 32px;
  color: white;
  text-align: center;
  max-width: 800px;
}


.nav-item {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  padding: 10px 15px;
  text-decoration: none;
}

/* ===== MOBILE TOGGLE BUTTON ===== */
.mobile-menu-toggle {
  width: 35px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  cursor: pointer;
  z-index: 9999;
  display:none;
  display: flex;
    background: rgba(247, 170, 82, 1);
    padding: 5px;
    border-radius: 5px;
}

.mobile-menu-toggle span {
  display: block;
  height: 4px;
  background: #000;
  border-radius: 2px;
  transition: 0.4s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9990;
}

/* ===========================
      MOBILE NAVIGATION
   =========================== */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-content {
    display: none;            /* hide menu initially */
    flex-direction: column;
    background: #000;
    padding: 15px;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .nav-content.active {
    display: flex;            /* show when toggled */
  }

  .nav-content.show-menu {
    left: 0;
  }

  /* Overlay visible */
  .menu-overlay.show {
    display: block;
  }

  /* Toggle animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1e1e1e;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #d7804c;
}

/* ================= NAV ITEMS ================= */
.nav-item,
.dropdown-toggle {
  position: relative;
  color: rgba(40, 51, 73, 0.79);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Gradient underline animation */
.nav-item::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #e53935, #ff6f61);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.nav-item:hover::after,
.dropdown:hover .dropdown-toggle::after {
  width: 70%;
}


/* ================= DROPDOWN CONTAINER ================= */
.dropdown {
  position: relative;
}

/* Arrow icon */
.dropdown-toggle::before {
  content: "▾";
  font-size: 13px;
  margin-right: 6px;
  display: inline-block;
  transition: transform 0.35s ease;
}

/* Rotate arrow */
.dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

/* ================= DROPDOWN MENU ================= */
.dropdown-menu {
  position: absolute;
  top: 135%;
  left: 0;
  min-width: 240px;
  padding: 8px 0;
  background: rgb(238 161 81);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.97);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ================= DROPDOWN ITEMS ================= */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  position: relative;
}

/* Sliding highlight */
.dropdown-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229,57,53,0.12), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 10px;
}

.dropdown-menu a:hover::before {
  opacity: 1;
}

.dropdown-menu a:hover {
  color: #e53935;
  padding-left: 26px;
}

/* Subtle divider */
.dropdown-menu a:not(:last-child) {
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}

/* ================= ACTIVE STATE ================= */
.nav-item.active,
.dropdown.active .dropdown-toggle {
  color: #e53935;
}

.nav-item.active::after,
.dropdown.active .dropdown-toggle::after {
  width: 70%;
}

/* ================= MOBILE REFINEMENT ================= */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    padding-left: 18px;
  }

  .dropdown-menu a {
    padding: 10px 0;
  }

  .dropdown-toggle::before {
    display: none;
  }
}


/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  animation: fadeIn 1s 0.6s ease forwards;
  opacity: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(153deg, rgba(56, 48, 102, 0.3) 0%, rgba(40, 51, 73, 0.79) 100%);*/
}

.hero-content {
  position: absolute;
  top: 161px;
  right: 0;
  bottom: 7px;
  width: 736px;
  height: auto;
  backdrop-filter: blur(20px);
  background: linear-gradient(153deg, rgba(56, 48, 102, 0.3) 0%, rgba(40, 51, 73, 0.79) 100%);
  padding: 54px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 37px;
  color: white;
  line-height: 66.4px;
}

.hero-details {
  display: flex;
  flex-direction: column;
}

.hero-detail {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: white;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-cta-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 25px;
  color: white;
}

.btn-primary {
  padding: 17px 12px;
  background: #d7804c;
  border-radius: 16px;
  border: 1px solid white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #c67043;
  transform: scale(1.05);
}

.carousel-dots {
  position: absolute;
  bottom: 73px;
  left: 272px;
  display: flex;
  gap: 24px;
}


.dot.active {
  background: #393185;
}


/* Organizing Committee */
/* -----------------------------------------
   TEAM SECTION (Organizing Committee)
------------------------------------------ */
.team-section {
  width: 100%;
  padding: 40px 16px;
  overflow: hidden;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 25px;
}

/* -----------------------------------------
   SCROLL WRAPPER
------------------------------------------ */
.team-scroll {
  max-width: 1250px;
  overflow: hidden;     /* STOP native scrolling */
  position: relative;
  justify-self: anchor-center;
  width: 100%;
}

.team-track {
  display: flex;
  transition: transform 0.5s ease;
  width: max-content;
  gap: 10px;
}

.team-scroll::-webkit-scrollbar {
  height: 6px;
}

.team-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Card Scroll Snapping (Optional but smooth) */
.team-scroll {
  scroll-snap-type: x mandatory;
}
.team-card {
  scroll-snap-align: start;
}

/* -----------------------------------------
   TEAM CARD
------------------------------------------ */
.team-card {
  flex-shrink: 0;
  width: 250px;
  /*min-height: 360px;*/
  padding: 20px;
  border-radius: 14px;
  text-align: center;

  background: linear-gradient(180deg, #000000 0%, #283349 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;

  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Alternate card gradient */
.team-card-alt {
  background: linear-gradient(180deg, #283349 0%, #000000 100%);
}

/* Avatar */
.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

/* Name */
.team-name {
  font-family: 'Montserrat', sans-serif;
  /*font-weight: 700;*/
  font-size: 20px;
  color: #fff;
}

/* Designation */
.team-designation {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #ffffff;
}

/* Fade animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Delay animations for grid cards */
.team-card:nth-child(1) { animation-delay: 0s; }
.team-card:nth-child(2) { animation-delay: 0.1s; }
.team-card:nth-child(3) { animation-delay: 0.2s; }
.team-card:nth-child(4) { animation-delay: 0.3s; }
.team-card:nth-child(5) { animation-delay: 0.4s; }
.team-card:nth-child(6) { animation-delay: 0.5s; }
.team-card:nth-child(7) { animation-delay: 0.6s; }
.team-card:nth-child(8) { animation-delay: 0.7s; }

/* -----------------------------------------
   DOTS INDICATOR
------------------------------------------ */
.carousel-dots-center {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.dot-orange {
  width: 12px;
  height: 12px;
  background: #f4a261;
  opacity: 0.4;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.dot-orange.active {
  opacity: 1;
  transform: scale(1.2);
}

/* -----------------------------------------
   RESPONSIVE DESIGN
------------------------------------------ */




/* Registration Section */
.registration-section {
  width: 100%;
  padding: 64px 16px;
}

.registration-container {
  max-width: 1298px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0px 0px 15.1px 5px rgba(56, 48, 102, 0.78);
  background: linear-gradient(153deg, rgba(177, 89, 37, 1) 0%, rgba(215, 128, 76, 1) 100%);
  padding: 40px;
  position: relative;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.registration-container::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(121deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.registration-header {
  margin-bottom: 32px;
}

.registration-subtitle {
  font-family: 'Moon Dance', cursive;
  font-size: 40px;
  color: white;
  margin-bottom: 8px;
}

.registration-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: white;
}

.registration-grid {
  display: grid;
  grid-template-columns: 380px 1fr auto;
  gap: 48px;
  margin-bottom: 32px;
}

.registration-periods {
  display: flex;
  flex-direction: column;
  gap: 13px;
}


.registration-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.registration-table th {
  background: #f9f9f9;
  color: #283349;
  padding: 12px;
  text-align: center;
}

.registration-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
}

.registration-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.registration-table tr:nth-child(even) {
  background: #f9f9f9;
}

.complimentary {
  color: #2e7d32;
  font-weight: 700;
}

.table-responsive {
  overflow-x: auto;
}


.period-item {
  background: transparent;
  border-radius: 10px;
  padding: 21px 9px;
  min-height: 61px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: black;
  cursor: pointer;
  transition: background 0.3s;
}

.period-item:hover {
  background: rgba(40, 51, 73, 0.8);
  color: white;
}

.period-item.active {
  background: #283349;
  box-shadow: inset -6px -6px 0px rgba(0, 0, 0, 0.25);
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.registration-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #283349;
  margin-bottom: 8px;
}

.category-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: white;
}

.registration-amounts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amount-card {
  width: 143px;
  backdrop-filter: blur(14.5px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(153, 153, 153, 0.25) 100%);
  border: 1px solid white;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.amount-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: white;
}

.registration-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.important-notes {
  margin-top: 20px;
  padding: 18px 20px;
  background: #f8f9ff;
  border-left: 5px solid #1A237E;
  border-radius: 6px;
  font-size: 14px;
}

.notes-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1A237E;
}

.notes-title i {
  margin-right: 6px;
  color: #E53935;
}

.notes-list {
  padding-left: 18px;
  margin: 0;
}

.notes-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.notes-list a {
  color: #1A237E;
  font-weight: 600;
  text-decoration: none;
}

.notes-list a:hover {
  text-decoration: underline;
}

.highlight-note {
  color: #E53935;
  font-weight: 700;
}


.btn-register {
  background: #283349;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 21px;
  padding: 24px 40px;
  border-radius: 8px;
  border: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-register:hover {
  background: rgba(40, 51, 73, 0.9);
  transform: scale(1.05);
}

/* Conference Highlights */
.highlights-section {
  position: relative;
  width: 100%;
  padding: 71px 0;
  overflow: hidden;
}

.highlights-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-content {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-title-dark {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #283349;
  line-height: 45px;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.highlights-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 1;
}

.highlight-card {
  flex-shrink: 0;
  width: 312px;
  height: 176px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  padding: 33px 41px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-card.dark {
  background: linear-gradient(180deg, rgba(57, 49, 133, 0.57) 0%, rgba(0, 0, 0, 0.57) 100%);
}

.highlight-card.light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.57) 0%, rgba(255, 255, 255, 0.28) 100%);
}

.highlight-number {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: white;
}

.highlight-number.blue {
  color: #004767;
}

.highlight-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: white;
  line-height: 24px;
  max-width: 231px;
}

/* Committee Section */
.committee-section {
  position: relative;
  width: 100%;
  padding: 64px 16px;
}

.section-title-center {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #283349;
  text-align: center;
  margin-bottom: 32px;
}

.carousel-dots-center {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.dot-orange {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  border: 3px solid #f7aa52;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.dot-orange.active {
  background: #f7aa52;
}

.committee-button {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.venue-info {
    position:absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
  padding:30px 70px;
}

.venue-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.venue-details {
  width: 100%;
}

.venue-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #283349;
}

.venue-text {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  color: #283349;
}

/* Venue Image Section */
.venue-image-section {
  position: relative;
  width: 100%;
  padding: 0 64px 64px;
  justify-items: center;
}

.venue-image {
  width: 100%;
  max-width: 1316px;
  height: 782px;
  border-radius: 16px;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}

/* About Section */
.about-section {
background-image:url('https://c.animaapp.com/mizfl92wyVgAh8/img/image-59.png');
  position: relative;
  width: 100%;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 481px;
  object-fit: cover;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  background: linear-gradient(180deg, rgba(247, 239, 239, 1) 0%, rgba(255, 223, 185, 1) 39%, rgba(15, 47, 76, 1) 100%);
  mix-blend-mode: multiply;
}

.about-content {
  position: absolute;
  top: 20px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1326px;
  padding: 0 16px;
  display: flex;
  gap: 64px;
  justify-content: center;
  animation: fadeIn 1s 0.2s ease forwards;
  opacity: 0;
}

.about-logos {
  display: flex;
  
  flex-direction: column;
  align-items: flex-end;
  gap: 17px;
  padding: 0 77px;
  width: 253px;
}

.about-logo {
  width: 98px;
  height: 98px;
  border-radius: 3px;
  /*border: 0.42px solid white;*/
  object-fit: cover;
}

.about-info {
  display: flex;
  flex-direction: column;
  width: 350px;
  gap: 12px;
}

.about-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18.8px;
  color: white;
  line-height: 37.2px;
}

.about-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: white;
  line-height: 24px;
}

.about-organizer {
  width: 537px;
  background: #1e2638;
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.about-organizer::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 8px;
  background: linear-gradient(124deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.organizer-logo {
  width: 260px;
  /*height: 65px;*/
  margin-bottom: 9px;
}

/* Countdown Section */
.countdown-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  padding: 40px 16px;
  animation: fadeIn 1s 0.4s ease forwards;
  opacity: 0;
}

.countdown-card {
  width: 100%;
  max-width: 632px;
  background: rgba(255, 255, 255, 0.51);
  border-radius: 7.61px;
  border: 1.04px solid #f7aa52;
  padding: 19px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.countdown-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19.5px;
  color: black;
  text-align: center;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.countdown-digits {
  display: flex;
  align-items: center;
  gap: 5px;
}

.countdown-digit {
  width: 37.62px;
  height: auto;
  background: #283349;
  border-radius: 8.36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 29.3px;
  color: #f7aa52;
  text-align: center;
}

.countdown-label {
  width: 86px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18.8px;
  color: #333333;
  text-align: center;
}

.countdown-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 29.3px;
  color: #283349;
  text-align: center;
  margin-bottom: 32px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content {
    width: 600px;
    padding: 40px;
  }

  .hero-title {
    font-size: 32px;
  }


  .about-content {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
  .banner-logo {
    width: auto !important;
    height: 94px;
    object-fit: cover;
}

  .banner-title {
    font-size: 24px;
  }

  .nav-content {
    gap: 12px;
  }

  .nav-item {
    font-size: 14px;
  }
  /* Dropdown container */
.dropdown {
  position: relative;
  cursor: pointer;
}

/* Toggle */
.dropdown-toggle {
  font-weight: 500;
  display: inline-block;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #e53935;
}

/* Show dropdown on hover (Desktop) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile-friendly */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
  }

  .dropdown-menu a {
    padding: 10px 0;
  }
}


  .hero-content {
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
    height: auto;
    padding: 24px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .hero-detail {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    margin-block: 40px;
  }

  .hero-cta-text {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .registration-container {
    padding: 24px;
  }

  .registration-grid {
  grid-template-columns: none;
    gap: 16px;
  }

  .about-logos {
    padding: 0;
  }

  .about-organizer {
    width: 100%;
  }
  /* Venue Image Section */
    .venue-image-section {
      padding: 0px;
    }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    gap: 8px;
  }

  .contact-item {
    font-size: 14px;
  }

  .banner-logo,
  .banner-logo-small {
    width: 60px;
    height: 60px;
  }

  .banner-title {
    font-size: 18px;
  }

  .hero-section {
    height: auto;
  }

  .countdown-timer {
  gap:0px;
    flex-wrap: nowwrap;
  }
    .carousel-dots {
        position: relative;
        bottom: 38px;
         left: 0px; 
        display: flex;
        gap: 24px;
        justify-content: center;
    }
  .countdown-digit {
    width: 30px;
    height: 60px;
    font-size: 24px;
  }

  .countdown-label {
    font-size: 14px;
  }
}
