:root {
  --gold: #b68832;
  --gold-dark: #8a6a28;
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-light: #1a2744;
  --charcoal: #2d2d2d;
}

.main-nav {
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.main-nav.nav-scrolled {
  border-bottom-color: #b68832;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-nav .navbar-nav .nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 20px;
  height: 2px;
  background: #b68832;
}

.main-nav .navbar-nav .nav-item .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 20px;
  height: 2px;
  background: #b68832;
}

.main-nav .navbar-nav .nav-item .nav-link {
  position: relative;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler .fa-bars {
  font-size: 1.4rem;
  color: #222;
  transition: color 0.3s;
}

.navbar-toggler:hover .fa-bars,
.navbar-toggler:focus .fa-bars {
  color: #b68832;
}

.main-nav .dropdown-slide .dropdown-menu .dropdown-item:hover {
  color: #b68832;
  background: rgba(182, 136, 50, 0.06);
}

.main-nav .ticket {
  transition: all 0.3s ease;
}

.main-nav .ticket:hover {
  background: #a37528;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(182, 136, 50, 0.3);
}

.footer-main {
  border-top: 3px solid #b68832;
}

.footer-main .block a:hover {
  color: #b68832 !important;
}

.footer-main .social-links-footer li a {
  transition: all 0.3s ease;
}

.footer-main .social-links-footer li a:hover {
  background: #b68832 !important;
  box-shadow: 0 0 20px rgba(182, 136, 50, 0.4);
  transform: translateY(-2px);
}

.subfooter .to-top {
  transition: all 0.3s ease;
}

.subfooter .to-top:hover {
  background: #b68832 !important;
  box-shadow: 0 0 20px rgba(182, 136, 50, 0.4);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .section {
    padding: 35px 0;
  }

  .section-title h3 {
    font-size: 1.4rem;
  }

  .page-title {
    padding: 120px 0 40px;
  }

  .page-title .title h3 {
    font-size: 1.6rem;
  }

  .single-speaker .block .row>div {
    margin-bottom: 25px;
  }

  .footer-main {
    padding: 40px 0;
  }

  .footer-main .block h6 {
    text-align: center;
  }

  .footer-main .social-links-footer {
    text-align: center !important;
  }

  .footer-main .footer-desc {
    text-align: center;
  }

  .subfooter .copyright-text {
    text-align: center;
    margin-bottom: 10px;
  }

  .to-top {
    width: 38px;
    height: 38px;
    line-height: 38px;
  }

  .main-nav .navbar-brand img {
    max-width: 155px;
  }

  .main-nav .ticket span {
    font-size: 0.85rem;
  }

  .main-nav .ticket {
    padding: 15px 20px;
  }

  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .banner {
    padding: 110px 0 50px;
  }

  .section-title h3 {
    font-size: 1.2rem;
  }

  .btn-main-md {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

.hero-block .hero-heading .hero-s {
  color: var(--gold);
}

.stats-block {
  background: var(--navy) !important;
}

.stats-block .number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.stats-block .unit {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.countdown-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-box span {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 90px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.countdown-box .number {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.countdown-box .unit {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.benefits-list li .svg-inline--fa {
  color: var(--gold);
}

.schedule-nav .nav-link.active {
  background: var(--gold) !important;
  color: #fff !important;
}

.schedule-nav .nav-link {
  color: var(--navy);
}

.schedule-tab-content .item .meta .time {
  color: var(--gold);
}

.schedule-tab-content .item:after {
  border-color: var(--gold);
}

.pricing .heading {
  background: var(--gold);
}

.offers-list li .icon-holder {
  color: var(--gold);
}

.footer .social-list a:hover {
  color: var(--gold) !important;
}

.modal-speaker .modal-header .btn-close {
  background: var(--gold);
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-secondary {
  background: var(--navy-light);
}

.btn-secondary:hover {
  background: var(--navy);
}

.btn-ghost:hover {
  color: var(--gold);
}

a.theme-link:hover {
  color: var(--gold);
}

.hero-block {
  height: auto;
  min-height: 620px;
  padding-top: 150px;
  padding-bottom: 80px;
}

.hero-carousel {
  top: 60px;
  height: calc(100% - 60px);
}

.hero-carousel .carousel-item-1 {
  background: url('../downloaded_photos/DSC01829.JPG') no-repeat center 10%;
  background-size: cover;
}

.hero-carousel .carousel-item-2 {
  background: url('../downloaded_photos/DSC01509.JPG') no-repeat center top;
  background-size: cover;
}

.hero-carousel .carousel-item-3 {
  background: url('../downloaded_photos/DSC01513.JPG') no-repeat center 10%;
  background-size: cover;
}

/* Smooth crossfade — override Bootstrap's exit delay+snap */
.hero-carousel.carousel-fade .active.carousel-item-start,
.hero-carousel.carousel-fade .active.carousel-item-end {
  transition: opacity 0.6s ease-in-out;
}

.brand-sponsor {
  max-width: 200px;
  margin: 0 auto;
}

.brand-sponsor img {
  max-width: 100%;
}

.sponsor-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.media-block iframe {
  border-radius: 8px;
}

.schedule-tab-content .item.item-other .content .title {
  color: var(--gold);
}

.hero-event-badge {
  display: inline-block;
  background: rgba(182, 136, 50, 0.15);
  border: 1px solid rgba(182, 136, 50, 0.3);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-event-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.hero-event-info i {
  color: var(--gold);
  margin-right: 5px;
}

.hero-event-info span {
  margin: 0 8px;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.site-logo img {
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-brand img {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.hero-carousel-item {
  position: relative;
  height: 100%;
}

.hero-slide-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 15;
  text-align: center;
  padding: 20px;
}

.hero-slide-content .slide-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
  border-radius: 4px;
}

.hero-slide-content .slide-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.wa-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  left: 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wa-float:hover {
  background: #1ebe5e;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.speakers-section .card-img-top {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.navbar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.navbar-backdrop.show {
  opacity: 1;
  visibility: visible;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, visibility 0.3s;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.testimonials-section {
  background: #f8f6f2;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.72rem;
  color: #888;
}

.gallery-strip-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.gallery-strip-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-strip-section {
  background: #fff;
}

@media (max-width: 991.98px) {
  .header {
    z-index: 1030 !important;
  }

  .navbar-collapse {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-top: 8px;
  }

  .navbar-nav .nav-link {
    color: #222 !important;
    padding: 12px 16px !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--gold) !important;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    margin: 0;
    float: none;
    width: 100%;
    background: transparent;
  }

  .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
  }

  .navbar-nav .dropdown-item {
    color: #222 !important;
    padding: 8px 16px;
  }

  .navbar-nav .dropdown-item:hover {
    color: var(--gold) !important;
    background: transparent;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
  }
}

@media (max-width: 767.98px) {
  .hero-block {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-event-badge {
    font-size: 0.55rem;
  }

  .hero-event-info {
    font-size: 0.8rem;
  }

  .countdown-box {
    gap: 0.5rem;
  }

  .countdown-box span {
    padding: 0.75rem 1rem;
    min-width: 70px;
  }

  .countdown-box .number {
    font-size: 1.5rem;
  }

  .countdown-box .unit {
    font-size: 0.65rem;
  }
}

.beam-btn-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 48px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
  --spread: 90deg;
  --shimmer-color: #ffffff;
  --radius: 100px;
  --speed: 1.5s;
  --cut: 0.1em;
  --bg: radial-gradient(ellipse 80% 50% at 50% 120%, var(--gold-dark), var(--navy));
  background: var(--bg);
  border-radius: var(--radius);
}

.beam-btn-wrap:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px 8px rgba(182, 136, 50, 0.7);
}

.beam-btn-outer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.beam-btn-beam {
  position: absolute;
  inset: -100%;
  animation: beam-spin var(--speed) linear infinite;
}

.beam-btn-beam::after {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from calc(270deg - (var(--spread) * 0.5)), transparent 0, hsl(0 0% 100% / 1) var(--spread), transparent var(--spread));
}

.beam-btn-inner-bg {
  position: absolute;
  background: var(--bg);
  border-radius: var(--radius);
  inset: var(--cut);
}

.beam-btn-label {
  position: relative;
  z-index: 1;
}

@keyframes beam-spin {
  to {
    transform: rotate(360deg);
  }
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 0.25s ease-out both fade-out;
}

::view-transition-new(root) {
  animation: 0.35s ease-in both fade-in;
}

@keyframes fade-out {
  to {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

/* Important link */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #ffffff;
  /* padding:60px 20px; */
}

.important-links-section {
  max-width: 100%;
  margin: auto;
  padding: 70px 30px;
  position: relative;
}

.important-links-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg,
      rgba(182, 136, 50, .08),
      transparent);
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 25px;
  color: #0f2239;
  font-weight: 700;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #0f2239;
  padding: 14px 24px;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.tab-btn:hover {
  border-color: #b68832;
  color: #b68832;
}

.tab-btn.active {
  background: #b68832;
  color: #fff;
  border-color: #b68832;
}

@media(max-width:768px) {

  .section-header h2 {
    font-size: 28px;
    padding-top: 30px;
  }

  .important-links-section {
    padding: 0;
  }

}

.table-wrapper {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.important-links-table {
  width: 100%;
  border-collapse: collapse;
}

.important-links-table thead {
  background: #0f2239;
}

.important-links-table th {
  color: #fff;
  text-align: left;
  padding: 16px;
  font-size: 15px;
}

.important-links-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.important-links-table tbody tr:hover {
  background: #faf8f2;
}

.visit-link {
  display: inline-block;
  padding: 8px 15px;
  background: #b68832;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: .3s;
}

.visit-link:hover {
  background: #0f2239;
}

.important-links-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.search-box {
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.pagination button {
  min-width: 40px;
  height: 40px;
  border: none;
  border-radius: 6px;
  background: #f1f1f1;
  cursor: pointer;
  font-weight: 600;
}

.pagination button.active {
  background: #b68832;
  color: #fff;
}

.pagination button:hover {
  background: #0f2239;
  color: #fff;
}

/* ───── Mobile responsive fixes ───── */

html, body {
  overflow-x: hidden;
}

@media (max-width: 767.98px) {
  .hero-block {
    min-height: 480px;
  }
  .beam-btn-wrap {
    white-space: normal;
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .important-links-table th,
  .important-links-table td {
    white-space: nowrap;
  }
  .tab-btn {
    font-size: 0.75rem;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .hero-block {
    min-height: 380px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-text-block h1.hero-heading {
    font-size: 2rem !important;
  }
  .hero-text-block .hero-intro {
    font-size: 1rem !important;
  }
  .hero-text-block .hero-meta {
    font-size: 1rem !important;
  }
  .stats-block .number {
    font-size: 1.4rem;
  }
  .stats-block .unit {
    font-size: 0.85rem;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .countdown-box span {
    min-width: 55px;
  }
  .countdown-box .number {
    font-size: 1.2rem;
  }
}

@media (max-width: 380px) {
  .hero-block {
    min-height: 320px;
    padding-top: 80px;
  }
  .hero-text-block h1.hero-heading {
    font-size: 1.6rem !important;
  }
  .stats-block .number {
    font-size: 1.2rem;
  }
  .tab-btn {
    font-size: 0.65rem;
    padding: 8px 12px;
  }
}

/* Important link */