* {
  font-family: "Poppins", sans-serif;
}

/* ── HEADER ── */
:root {
  --bs-primary: #285889;
  --bs-primary-rgb: 18, 89, 161;
}
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1050;
}
header .navbar-brand img {
  height: 40px;
  border-radius: 4px;
}
.navbar-nav .nav-link {
  color: #374151;
  font-weight: 500;
}
.navbar-nav .nav-link.active {
  color: #285889;
  border-bottom: 2px solid #285889;
}
.navbar-nav .nav-link:hover {
  color: #285889;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.nav-search-icon {
  color: #4b5563;
  font-size: 1.2rem;
}

/* ── BANNER ── */
.banner-bg {
  background: linear-gradient(135deg, #285889 0%, #1a3a5c 60%, #285889 100%);
  padding: 60px 0;
}
.banner-badge {
  background: #285889;
  color: #285889;
  padding: 4px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}
.banner-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
}
.banner-title span {
  color: #285889;
}

/* Swiper wrapper */
.swiper-wrapper-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
  /* height: 460px !important; */
}
@media (min-width: 768px) {
  .swiper-wrapper-box {
    height: 560px;
  }
}

.mySwiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(11,31,51,.85) 0%,#285889 60%); */
}
.slide-content {
  position: relative;
  z-index: 2;
  padding: 2rem 2.5rem;
  color: #fff;
}
.slide-content .slide-badge {
  background: #285889;
  color: #285889;
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}
.slide-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.slide-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
.slide-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.25s;
}
.slide-explore-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.swiper-pagination-bullet-active {
  background: #285889;
}

/* stat badges */
.stat-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stat-badge i {
  color: #285889;
}

/* ── GALLERY THUMBNAILS ── */
.section-subtitle {
  color: #285889;
  font-weight: 600;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #285889;
}
.section-title span {
  color: #285889;
}

.thumb-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  background: #fff;
}
.thumb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.thumb-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.thumb-card:hover .thumb-img {
  transform: scale(1.06);
}
.thumb-desc {
  padding: 16px;
}
.thumb-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}
.thumb-desc h4 {
font-size: 1rem;
    font-weight: 600;
    color: #285889;
    margin: 6px 0 4px;
}
.thumb-desc p {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 12px;
}
.view-more-link {
  color: #285889;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 2px solid #285889;
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.view-more-link:hover {
  color: #285889;
}

/* ── KEYNOTE ── */
.keynote-section {
  background: #f0edf7;
}
.keynote-fresh-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.keynote-fresh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.keynote-top-bar {
  height: 5px;
  background: linear-gradient(90deg, #285889, #285889);
}
.keynote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #285889, #285889);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.keynote-date-badge {
  font-size: 0.7rem;
  background: #eff6ff;
  color: #285889;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.keynote-fresh-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #285889;
  margin-bottom: 4px;
}
.keynote-fresh-card p {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 4px;
}
.keynote-location {
  font-size: 0.72rem;
  color: #9ca3af;
}
.keynote-location i {
  color: #285889;
}
.keynote-tag {
  font-size: 0.72rem;
  background: #f3f4f6;
  padding: 3px 12px;
  border-radius: 999px;
}
.keynote-read-more {
  color: #285889;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
}
.keynote-read-more i {
  color: #285889;
}

/* ── VIDEO SECTION ── */
.video-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.video-thumb {
  position: relative;
  text-align: center;
}
.video-thumb img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.video-card:hover .video-thumb img {
  transform: scale(1.05);
}
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition:
    transform 0.25s,
    background 0.25s;
}
.video-play-button:hover {
  background: #2563eb;
  transform: translate(-50%, -50%) scale(1.1);
  color: #fff;
}
.video-card .video-info {
  padding: 14px 16px;
}
.video-card .video-info p {
  font-size: 16px;
  font-weight: 600;
  color: #285889;
  margin-bottom: 6px;
}
.video-card .video-info small {
  color: #9ca3af;
  font-size: 0.75rem;
}

/* ── BUTTONS ── */
.witr_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #285889;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    background 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(11, 31, 51, 0.25);
}
.witr_btn:hover {
  background: #1e3a5f;
  color: #fff;
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.35);
}

.btn-outline-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #285889;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #285889;
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.btn-outline-dark-custom:hover {
  gap: 12px;
  color: #285889;
}

/* ── ABOUT / PARTNERS ── */
.about-section {
  background: #f5f3fe;
}
.partner-img {
  opacity: 0.75;
  filter: grayscale(100%);
  transition:
    filter 0.3s,
    opacity 0.3s;
  max-width: 280px;
}
.partner-img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── FOOTER ── */
footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

/* ── Badge ── */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-light);
  color: var(--red);
  border: 1.5px solid var(--red-mid);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.about-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

/* ── Heading ── */
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 0;
}

.about-title .highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}

.about-title .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #285889);
  border-radius: 2px;
}

/* ── Divider ── */
.title-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 22px;
}

.title-divider span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
}

/* ── Sub heading ── */
.about-sub {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ── Body text ── */
.about-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ── Checklist ── */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: #fafafa;
  border: 1px solid #f0f0f0;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.check-list li:hover {
  background: var(--red-light);
  border-color: var(--red-mid);
  transform: translateX(4px);
}

.check-list li i {
  color: var(--red);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn-about-primary {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 11px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-about-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 40, 57, 0.25);
}

.btn-about-outline {
  background: #285889;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 11px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  color: white;
}

.btn-about-outline:hover {
  background: #448acf;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 40, 57, 0.2);
}

/* ── Image side ── */
.img-side {
  position: relative;
}

/* Decorative background shape */
.img-bg-shape {
  position: absolute;
  inset: -20px -20px -20px -20px;
  background: var(--red-light);
  border-radius: 30px;
  z-index: 0;
}

/* Dot grid */
.dot-grid {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(var(--red-mid) 2px, #285889 2px);
  background-size: 18px 18px;
  border-radius: 12px;
  z-index: 2;
}

/* Top-left accent block */
.accent-block {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--red-mid);
  border-radius: 14px;
  z-index: 2;
}

.main-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(214, 40, 57, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.main-img:hover img {
  transform: scale(1.03);
}

/* Stats badge floating */
.stats-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.stats-badge .icon-box {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stats-badge .stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stats-badge .stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Top-right floating tag */
.tag-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--red);
  color: #fff;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(214, 40, 57, 0.35);
}

@media (max-width: 991px) {
  .img-side {
    margin-top: 60px;
  }
  .stats-badge {
    left: 10px;
  }
  .tag-badge {
    right: 10px;
  }
}

.navbar-brand.p-2.rounded {
  background: #285889;
}

.custom-footer {
  background-color: #285889;
}

.site-header {
  background: linear-gradient(135deg, #0e1016 0%, #1c1f2b 100%);
  border-bottom: 1px solid var(--dark-border);
  padding: 2.2rem 0 1.8rem;
  position: relative;
  overflow: hidden;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% -20%,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.site-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  margin: 0;
  /* background: linear-gradient(90deg, #fff 30%, var(--gold-light) 100%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 0.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.9rem auto 0;
}

/* ─── NAV TABS ───────────────────────────────── */
.album-nav {
  background: var(--dark-card);
  border-bottom: 1px solid var(--dark-border);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.album-nav .nav-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.album-nav .nav-link:hover {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.07);
}
.album-nav .nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

/* ─── SECTION TITLE ──────────────────────────── */
/* .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 3vw, 1.75rem);
      color: #fff;
      position: relative;
      padding-left: 1rem;
    } */
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

/* ─── GALLERY GRID ───────────────────────────── */
.gallery-section {
  padding: 3rem 0 1rem;
  scroll-margin-top: 64px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.8);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.9rem;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  margin-left: auto;
}
.photo-count-badge {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ─── LIGHTBOX BACKDROP ──────────────────────── */
#lightboxModal .modal-dialog {
  max-width: 860px;
  margin: auto;
}
#lightboxModal .modal-content {
  background: #13151b;
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  overflow: hidden;
}
#lightboxModal .modal-body {
  padding: 0;
  position: relative;
}

/* carousel image */
#lightboxCarousel .carousel-item {
  background: #0d0f13;
}
#lightboxCarousel .carousel-item img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

/* counter bar */
.lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: #0d0f13;
  border-top: 1px solid var(--dark-border);
}
.lb-counter {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.lb-album-name {
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.lb-close-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1rem;
}
.lb-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* prev / next buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.3);
  opacity: 1;
  margin: 0 0.6rem;
  transition: background 0.2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(201, 168, 76, 0.35);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* indicators */
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 3px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.carousel-indicators .active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── DIVIDER ─────────────────────────────────── */
.album-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--dark-border),
    transparent
  );
  margin: 2.5rem 0 0;
}

/* ─── RESPONSIVE TWEAKS ──────────────────────── */
@media (max-width: 576px) {
  .album-nav .nav-link {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
  }
  #lightboxCarousel .carousel-item img {
    max-height: 55vw;
  }
}

.section-title span {
  color: var(--accent);
}

.divider-line {
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* Associate Card */
.assoc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  margin-bottom: 1.4rem;
}

.assoc-card:hover {
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.1);
  transform: translateY(-2px);
}

.assoc-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--header-bg);
  border-bottom: 1.5px solid var(--border);
  padding: 0.85rem 1.3rem;
}

.assoc-card-header .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.assoc-card-header h5 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: #2c1f1a;
  margin: 0;
  line-height: 1.4;
}

.assoc-card-body {
  display: flex;
  flex-direction: row;
}

.logo-col {
  flex-shrink: 0;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-right: 1.5px solid var(--border);
  padding: 1.1rem 0.6rem;
}

.logo-col img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09);
}

.desc-col {
  padding: 1.1rem 1.4rem;
  flex: 1;
}

.desc-col p {
  font-size: 0.915rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Green variant */
.assoc-card.green-variant {
  border-color: #c8e6c9;
}
.assoc-card.green-variant .assoc-card-header {
  background: #f1f8f1;
  border-color: #43a047;
}
.assoc-card.green-variant .assoc-card-header .badge-dot {
  background: #2e7d32;
}
.assoc-card.green-variant .assoc-card-header h5 {
  color: #2e7d32;
}
.assoc-card.green-variant .logo-col {
  background: #f9fff9;
  border-color: #c8e6c9;
}

@media (max-width: 575px) {
  .assoc-card-body {
    flex-direction: column;
  }
  .logo-col {
    width: 100%;
    border-right: none;
    border-bottom: 1.5px solid var(--border);
    padding: 1rem;
    flex-direction: row;
    gap: 0.8rem;
    justify-content: flex-start;
  }
}

h2.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.session-card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1.5px solid #e2eaff;
}

.session-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(26, 86, 219, 0.18);
}

.card-header-date {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 10px;
  background: #fff;
  border-bottom: 1.5px solid #e8efff;
}

.date-icon {
  background: var(--accent);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.date-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.date-label {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

/* Session image */
.session-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.35);
}

.carousel-control-prev {
  left: -22px;
}
.carousel-control-next {
  right: -22px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #1342b0;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b0c4ff;
  border: none;
  opacity: 1;
  transition:
    background 0.3s,
    transform 0.3s;
}

.carousel-indicators .active {
  background-color: var(--accent);
  transform: scale(1.4);
}

.slide-track {
  padding: 8px 0 20px;
}

/* Mobile: show 1 card, Desktop: 4 cards */
/* We achieve this by having separate mobile carousel (1 per slide)
       and desktop carousel (4 per slide) */

.desktop-carousel {
  display: none;
}
.mobile-carousel {
  display: block;
}

@media (min-width: 768px) {
  .desktop-carousel {
    display: block;
  }
  .mobile-carousel {
    display: none;
  }
}

.form-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.page-eyebrow .line {
  flex: 1;
  height: 1px;
  background: #d1d5db;
}
.page-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(40, 88, 137, 0.07);
  top: 9px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: linear-gradient(135deg, #1a3f6b 0%, #285889 60%, #3474b0 100%);
  position: relative;
  overflow: hidden;
}
.card-header::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.card-header::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.badge-letter {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header h6 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.card-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.header-icon {
  margin-left: auto;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.card-body {
  padding: 24px;
}

.space-y > * + * {
  margin-top: 18px;
}

label.field-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
}

select,
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: #374151;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  outline: none;
  font-family: inherit;
}
select:hover,
input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover {
  border-color: #9ca3af;
}
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #285889;
  box-shadow: 0 0 0 3px rgba(40, 88, 137, 0.12);
}
textarea {
  resize: none;
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 4px 0;
}
.or-divider .line {
  flex: 1;
  height: 1px;
  background: #f3f4f6;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}
.span-2 {
  grid-column: 1 / -1;
}

.rating-section {
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}
.rating-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rating-section:first-child {
  padding-top: 0;
}

.rating-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.q-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #285889;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rating-label p {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.rating-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.rating-pills input[type="radio"] {
  display: none;
}
.rating-pills label {
  flex: 1;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.rating-pills label .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  flex-shrink: 0;
  transition: all 0.15s;
}
.rating-pills label:hover {
  border-color: #285889;
  color: #374151;
}
.rating-pills input[type="radio"]:checked + label {
  background: #285889;
  border-color: #285889;
  color: #fff;
  font-weight: 600;
}
.rating-pills input[type="radio"]:checked + label .dot {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
}
.consent-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #285889;
  flex-shrink: 0;
}
.consent-box label {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  cursor: pointer;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 0 4px;
}
.privacy-note {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}
.privacy-note i {
  color: #285889;
  font-size: 13px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #1a3f6b, #285889 60%, #3474b0);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    opacity 0.15s,
    transform 0.1s;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(40, 88, 137, 0.3);
}
.btn-submit:hover {
  opacity: 0.9;
}
.btn-submit:active {
  transform: scale(0.98);
}

/* minimal custom style for gallery thumbs */
.gallery .thumb {
  margin-bottom: 1.5rem;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.gallery figure:hover {
  transform: scale(1.02);
}
.img-thumbnail {
  border: none;
  padding: 0;
  background: transparent;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 940/650; /* keep consistent ratio */
}

/* ----- LIGHTBOX (fullscreen overlay) ----- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

/* lightbox content container */
.lightbox-content {
  position: relative;
  width: 42%;
  max-width: 1050px; /* comfortable near original size */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* main image */
.lightbox-image {
  width: 100%;
  max-height: 48vh; /* fits within viewport with margin */
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #111; /* subtle background if image has transparency */
}

/* navigation arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2.5rem;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  transition:
    background 0.2s,
    transform 0.1s;
  z-index: 10;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* close button (top right) */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
  text-shadow: 0 2px 5px black;
  line-height: 1;
  padding: 0 10px;
}

.close-btn:hover {
  color: #ccc;
}

/* image counter (e.g. 3/9) */
.counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 1rem;
  font-family: sans-serif;
  letter-spacing: 1px;
  backdrop-filter: blur(2px);
  z-index: 15;
}

/* ensure thumbs are clickable & pointer */
.thumb a {
  cursor: pointer;
  display: block;
}

/* responsive fine-tuning for tiny devices */
@media (max-width: 480px) {
  .nav-btn {
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
  }
  .prev-btn {
    left: 5px;
  }
  .next-btn {
    right: 5px;
  }
  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
  }
  .counter {
    font-size: 0.85rem;
    padding: 0.2rem 0.8rem;
  }
}

.conf-card,
.featured-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #fff;
  position: relative;
  top: 40px;
}
.card-header-custom {
  background: #285889;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.card-header-custom.center {
  justify-content: center;
}
.card-header-custom svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
}
.gallery-grid a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.gallery-grid a:hover img {
  transform: scale(1.05);
}

/* Events List */
.events-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  max-height: 400px;
  overflow-y: auto;
}
.events-scroll::-webkit-scrollbar {
  width: 4px;
}
.events-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.event-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #eee;
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  background: #285889;
  border-radius: 6px;
  padding: 5px 6px;
  color: #fff;
  flex-shrink: 0;
}
.event-date .day {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.event-date .month {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 2px;
}
.event-img {
  width: 64px;
  height: 44px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.event-label {
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .navbar-nav.mx-auto.gap-xl-2 {
    background: #ffffff;
    padding: 5px;
  }
}

.stats-section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, #534AB7, #1D9E75, #D85A30); */
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888780;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 0.4rem;
}
.section-rule {
  width: 48px;
  height: 2px;
  background: #ccc;
  margin: 0.75rem auto 3rem;
  border-radius: 2px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1221px;
  margin: 0 auto;
}
.stat-card {
  background: #f8f8f6;
  border-radius: 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  padding: 2rem 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.stat-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.stat-badge {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}

.stat-number {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.num-purple {
  color: #534ab7;
}
.num-teal {
  color: #0f6e56;
}
.num-coral {
  color: #993c1d;
}
.stat-divider {
  width: 24px;
  height: 1px;
  background: #e0e0e0;
  margin: 0.75rem auto;
}
.stat-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-sub {
  font-size: 11px;
  color: #aaa;
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-badge {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-badge svg {
  width: 55px;
  height: 55px;
  display: block;
  flex-shrink: 0; /* prevents flex from squishing the icon */
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px;
  padding: 10px;
}

.card {
  min-width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e0e7ff;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.date {
  background: #285889;
  color: white;
  padding: 8px 16px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.card-content {
  padding: 24px;
}

.name {
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.conference {
  color: #374151;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.view-more {
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.view-more:hover {
  color: #3b82f6;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #285889;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: #1e40af;
  color: white;
}

.prev {
  left: 8px;
}

.next {
  right: 8px;
}

@media (max-width: 768px) {
  .card {
    min-width: 280px;
  }
}

@media (min-width: 1200px) {
  .display-5 {
    font-size: 2rem;
  }
}


/* pesignation style */
    .custom-pagination {
    gap: 8px;
}

.custom-pagination .page-item {
    display: inline-block;
}

.custom-pagination .page-link {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hover */
.custom-pagination .page-link:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Active */
.custom-pagination .active .page-link {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: 600;
}

/* Disabled */
.custom-pagination .disabled .page-link {
    opacity: 0.5;
    pointer-events: none;
}


