/* ===============================
   GLOBAL RESET
================================ */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

/* ===============================
   HEADER (FINAL)
================================ */
.site-header {
  width: 100%;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* ===============================
   LOGO ADJUSTMENT
================================ */

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;              /* Mobile default */
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo img:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Desktop and above */
@media (min-width: 768px) {
  .logo img {
    height: 40px;            /* Desktop size */
  }
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 22px;
}

/* CTA WRAPPER */
.nav-cta-wrapper {
  margin-left: auto;
  display: flex;
  gap: 12px;
  align-items: center;
}


/* ===============================
   HEADER HEIGHT VARIABLES
================================ */
:root {
  --header-height-desktop: 72px;
  --header-height-mobile: 64px;
}

/* ===============================
   RESPONSIVE HERO BANNER
   DESKTOP / TABLET / MOBILE
================================ */

.top-banner {
  width: 100%;
  margin-top: var(--header-height-desktop);
  overflow: hidden;
}

/* IMAGE – DESKTOP & TABLET */
.top-banner img {
  width: 100%;
  height: auto;              /* natural aspect ratio */
  display: block;
}

/* ===============================
   MOBILE ONLY (Improve visibility)
================================ */
@media (max-width: 768px) {
  .top-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f6f73;     /* match banner color */
  }

  .top-banner img {
    height: 100%;
    width: 100%;
    object-fit: contain;     /* full banner, no crop */
  }
}


/* NAV CONTAINER ALIGNMENT */
.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

/* PUSH MENU TO CENTER, CTA TO RIGHT */
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
}
/* ===============================
   CTA BUTTON – SINGLE SOURCE
================================ */
.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  color: #ffffff;

  /* SAME COLOR FOR BOTH BUTTONS */
  background: linear-gradient(135deg, #2ea66b, #f0a93c);

  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* ===============================
   CTA WRAPPER
================================ */
.nav-cta-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* CTA spacing inside mobile menu */
.mobile-menu .nav-cta {
  display: block;
  margin-top: 20px;
  text-align: center;
}

/* ===============================
   MOBILE HEADER – CLEAN FIX
================================ */
@media (max-width: 900px) {

  /* Hide desktop links */
  .nav-links {
    display: none;
  }

  /* Show ONLY Registration in header */
  .nav-cta-wrapper {
    display: flex;
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }

  /* Hide Last Year Edition from header */
  .nav-cta-wrapper .nav-cta:not(.nav-cta-register) {
    display: none;
  }

  /* Smaller mobile button */
  .nav-cta {
    padding: 7px 16px;
    font-size: 12px;
  }

  /* Hamburger on top */
  .menu-toggle {
    display: block;
    z-index: 1002;
  }
}


/* EVENT INFO */
.event-info {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;              /* ðŸ”¥ FIX */
}

.event-info span {
  padding: 10px 18px;           /* ðŸ”¥ slightly smaller */
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;          /* prevents text break */
}


.date {
  border: 2px solid #fff;
}

.location {
  background: #1db954;
  color: #fff;
}

/* PARTNERS */
.partners {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partners img {
  height: 60px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}
/* === FORCE SCROLL BUTTON CLICKABLE === */
.scroll-top {
  position: fixed !important;
  right: 25px !important;
  bottom: 80px !important;

  width: 48px;
  height: 48px;

  border: 2px solid #0a2a3a;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  cursor: pointer;

  z-index: 2147483647 !important; /* ðŸš¨ MAX POSSIBLE */
  pointer-events: all !important;
}

/* Arrow */
.arrow-up {
  width: 10px;
  height: 10px;
  border-left: 3px solid #0a2a3a;
  border-top: 3px solid #0a2a3a;
  transform: rotate(45deg);
}
/* FIX: overlays must not block clicks */
.about-event,
.venue-overlay,
.prev-overlay,
.themes-slider,
.themes-track {
  pointer-events: auto;
}

/* BUT decorative overlays must NOT capture clicks */
.about-event::before,
.about-event::after,
.venue-overlay::before,
.venue-overlay::after {
  pointer-events: none !important;
}


/* ===============================
   ABOUT THE EVENT â€“ FINAL (POLISHED)
================================ */

.center-text {
  display: block;
  text-align: center;
  font-weight: 600;
}

/* SECTION */
.about-event {
  padding: 20px 24px;     /* ðŸ”¥ proper breathing space */
  color: #ffffff;

  background: linear-gradient(
    90deg,
    #0b4f6c 0%,
    #1aa6a0 45%,
    #f08a3c 100%
  );

  background-size: 200% 200%;
  animation: aboutGradient 14s ease infinite;
  overflow-x: hidden;
}

/* CONTENT CONTAINER */
.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

/* MAIN TITLE */
.about-container h2 {
  margin: 10px 0 12px;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

/* SUB HEADINGS */
.about-container h3 {
  margin: 10px 0 12px;
  font-size: 22px;
}

/* PARAGRAPHS */
.about-container p {
  hyphens: auto;
  text-align: justify;
  max-width: 1200px;      /* ðŸ”¥ logical width */
  margin: 12px auto;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.registration-cta {
  background: linear-gradient(135deg, #041e2c, #083344);
  padding: 30px 20px;
  text-align: center;
}

.cta-text {
  max-width: 800px;
  margin: 0 auto 22px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e5f3f3; /* ✅ readable on dark */
}

/* BUTTON */
.cta-button {
  display: inline-block;
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;

  background: linear-gradient(135deg, #14b8a6, #0ea5a4);
  border-radius: 40px;

  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.35);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.55);
  background: linear-gradient(135deg, #0ea5a4, #14b8a6);
}


/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

  .about-event {
    padding: 32px 16px;
    animation: none;
  }

  .about-container h2 {
    font-size: 26px;
  }

  .about-container h3 {
    font-size: 20px;
  }

  .about-container p,
  .about-container ul li {
    font-size: 15px;
    text-align: left;   /* ðŸ”¥ justified text off on mobile */
  }
}



/* Active (on scroll) */
.about-event.active {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle animated gradient */
.about-event {
  background-size: 200% 200%;
  animation: aboutGradient 14s ease infinite;
}

/* Gradient movement */
@keyframes aboutGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Disable animation on mobile */
@media (max-width: 768px) {
  .about-event {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===============================
   KEY THEMES â€“ AUTO SCROLLER
================================ */

.key-themes {
  padding: 1px 20px;
  text-align: center;
}

.key-themes h2 {
  font-size: 36px;
  color: #0b5c6d;
  margin-bottom: 20px;
}

/* VIEWPORT */
.themes-slider {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.themes-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* ITEM */
.theme-item {
  flex: 0 0 33.333%;
  text-align: center;
  padding: 0 20px;
}

.theme-item img {
  width: 120px;
  margin-bottom: 20px;
}

.theme-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0b5c6d;
  line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
  .theme-item {
    flex: 0 0 100%;
  }

  .key-themes h2 {
    font-size: 28px;
  }

  .theme-item img {
    width: 100px;
  }
}
/* ===============================
   TWO BOX PREMIUM SECTION
================================ */

.info-section {
  padding: 25px 10px;
  background: linear-gradient(135deg, #071a2b, #0b2f3a);
}

.info-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ===============================
   COMMON BOX STYLE
================================ */

.info-box {
  padding: 20px 35px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.info-box h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #f5faff;
}

/* ===============================
   WHY ATTEND LIST (FIXED)
================================ */

/* Lock bullet text width (equal right edge) */
.info-text {
  max-width: 650px; /* adjust if needed */
}

/* Perfect bullet wrapping */
.info-box ul {
  list-style: disc;
  padding-left: 0;
  margin: 0;
}

.info-box ul li {
  position: relative;
  padding-left: 2px;    /* space for bullet */
  text-indent: -1px;    /* pull first line only */
  margin-bottom: 14px;
  color: #d6e4ec;
  line-height: 1.6;
  text-align: left;
  font-size: 17px;
}

.info-box.highlight {
  background: linear-gradient(
    145deg,
    rgba(22, 101, 101, 0.85),
    rgba(12, 45, 66, 0.9)
  );
  border-left: 6px solid #22d3ee;
}

.info-box p {
  color: #e1edf4;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: left;
}

/* ===============================
   SINGLE CARD CONTAINER
================================ */

.info-container.single {
  max-width: 1400px;
  margin: auto;
}

/* ===============================
   BOX WITH IMAGE
================================ */

.info-box.with-image {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Text */
.info-text h3 {
  font-size: 30px;
  margin-bottom: 22px;
}

/* Image styling */
.info-image img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 900px) {
  .info-box.with-image {
    grid-template-columns: 1fr;
  }

  .info-text {
    max-width: 100%;
  }

  .info-image img {
    max-height: 260px;
  }
}


/* SPONSORSHIP SECTION - ELEVATED PREMIUM */

.sponsorship-section {
  padding: 40px 20px 50px;
  text-align: center;
  position: relative;
  color: #f4f7fb;
  overflow: hidden;

  /* Main gradient background */
  background: linear-gradient(
    135deg,
    #0f1c2a 0%,
    #1b2b3d 50%,
    #0f1c2a 100%
  );
}

/* -------------------------------------
   TOP SOFT DIVIDER (ELEGANT LINE)
------------------------------------- */
.sponsorship-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 180, 220, 0.55),
    transparent
  );
}

/* -------------------------------------
   BEAUTY EFFECT â€“ AURORA GLOW
------------------------------------- */
.sponsorship-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(120, 180, 220, 0.14),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(160, 200, 255, 0.10),
      transparent 60%
    );
  pointer-events: none;
}

/* -------------------------------------
   HEADING
------------------------------------- */
.sponsorship-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: 0.4px;
}

/* -------------------------------------
   DESCRIPTION
------------------------------------- */
.sponsorship-text {
  max-width: 920px;
  margin: 0 auto 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #d6e1ee;
}

/* -------------------------------------
   BUTTON CONTAINER
------------------------------------- */
.sponsorship-buttons {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* -------------------------------------
   COMMON BUTTON STYLE
------------------------------------- */
.btn-primary,
.btn-secondary {
  padding: 15px 38px;
  font-size: 16px;
  font-weight: 600;m
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
  position: relative;
}

/* -------------------------------------
   PRIMARY BUTTON (BROCHURE)
------------------------------------- */
.btn-primary {
  background: linear-gradient(
    135deg,
    #a8c3dc,
    #7fa6c8
  );
  color: #0b1620;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(140, 190, 235, 0.45);
}

/* -------------------------------------
   SECONDARY BUTTON (EMAIL)
------------------------------------- */
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(160, 200, 240, 0.6);
  color: #e6f0fb;
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(180, 220, 255, 0.8);
}

/* ===============================
   VENUE & UNIVERSITY SECTION (FIXED)
================================ */

#venue.venue-university {
  background-image: url("university-bg2.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
}

/* DARK OVERLAY */
#venue .venue-overlay {
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0.35);
}

/* GRID LAYOUT â€” FORCE TWO BOXES */
#venue .venue-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid !important;
  grid-template-columns: 55% 45%;
  gap: 40px;

  align-items: flex-start;
}

/* ===============================
   LEFT: MAP SECTION
================================ */

#venue .venue-map {
  width: 100%;
}

#venue .venue-map h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

#venue .venue-address {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

#venue .venue-map iframe {
  width: 100%;
  height: 260px;
  display: block;
  border-radius: 12px;
  border: none;
}

/* ===============================
   RIGHT: UNIVERSITY INFO
================================ */

#venue .university-info {
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  padding: 26px;
  border-radius: 14px;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#venue .university-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

#venue .university-header img {
  height: 88px;
  width: auto;
  background: #ffffff;
  padding: 8px;
  border-radius: 10px;
}

#venue .university-header h2 {
  font-size: 26px;
  font-weight: 700;
}

#venue .university-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* FORCE WHITE TEXT */
#venue,
#venue h2,
#venue h3,
#venue p,
#venue span {
  color: #ffffff;
}

#venue p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  #venue .venue-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  #venue .venue-overlay {
    padding: 30px 16px;
  }

  #venue .venue-map iframe {
    height: 220px;
  }

  #venue .university-info {
    padding: 18px;
  }

  #venue .university-header img {
    height: 64px;
  }

  #venue .university-header h2 {
    font-size: 22px;
  }
}


/* SECTION BACKGROUND */
.previous-editions {
   padding: 40px 20px;   /* â¬… was ~80px, now tighter */
  background: linear-gradient(
    135deg,
    #0b5c6d 0%,
    #1aa6a0 45%,
    #f08a3c 100%
  );
  padding: 10px 10px;
  color: #ffffff;
}

.prev-overlay {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.previous-editions h2 {
  margin-bottom: 10px;
}

.previous-editions p {
  margin-bottom: 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* TITLE */
.prev-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* TEXT */
.prev-text {
  font-size: 16px;
  margin-bottom: 24px;   /* â¬… reduce gap before images */
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.95);
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 35px;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: 100%;
  height: 200px;
  max-width: 280px;
  margin: 0 10px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* DOTS */
.dots {
  margin-top: 15px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #ffffff;
}

/* BUTTON */
.prev-btn {
  margin-top: 20px;
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  background: #0b2d3a;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prev-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* BUTTON RIPPLE EFFECT */
.prev-btn span {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 10%, transparent 10%);
  background-size: 300% 300%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.prev-btn:hover span {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slides img {
    max-width: 90%;
  }
}
/* ===============================
   PREMIUM ANIMATED LINE DIVIDER
================================ */
.line-divider-premium {
  width: 100%;
  height: 8px;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    90deg,
    #0b5c6d,
    #1aa6a0,
    #f08a3c
  );

  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.line-divider-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );

  animation: dividerShimmer 3.5s ease-in-out infinite;
}

@keyframes dividerShimmer {
  0% { left: -30%; }
  50% { left: 100%; }
  100% { left: 100%; }
}
.line-divider-premium::after {
  animation: dividerShimmer 2.5s ease-in-out infinite;
}
/* GLOBAL FIX */
html, body {
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* HEADER */
.site-header {
  width: 100%;
  background: linear-gradient(
    90deg,
    
    #9fb28a 0%,   /* soft warm blend */
    #5fb2a6 60%,   /* light teal-green */
    #3aa39f 100%   /* fresh teal (right side) */
  );

  position: fixed;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
}
.logo span {
  font-weight: 400;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  font-size: 19px;
  font-weight: 580;
  color: #0B2C4D;   /* deep navy */
  text-decoration: none;
  position: relative;
}


.nav-links a:hover {
  color: #6EC1FF;   /* brighter blue */
}

/* MOBILE BUTTON */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0b5c6d, #1aa6a0, #f08a3c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;

  transform: translateX(100%);
  transition: transform 0.45s ease;
  z-index: 2000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

/* CLOSE BUTTON */
.close-menu {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===============================
   FOOTER SECTION
================================ */
.event-footer {
  background:
    linear-gradient(
      135deg,
      rgba(11, 92, 109, 0.10) 0%,
      rgba(26, 166, 160, 0.10) 45%,
      rgba(240, 138, 60, 0.10) 100%
    ),
    url("bannerbackground2.png");

  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;

  padding: 20px 20px;
  min-height: 280px;
  text-align: center;
  color: #ffffff;
}




.event-footer p,
.event-footer a {
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* Content */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.event-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.35);
}

/* TEXT */
.event-footer p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}

.footer-contact {
  font-weight: 600;
}

.footer-highlight {
  margin-top: 18px;
  font-size: 17px;
}

.footer-signoff {
  margin-top: 26px;
}

.footer-team {
  font-weight: 700;
}

.footer-org {
  opacity: 0.9;
  font-size: 15px;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(255,255,255,0.35);
  box-shadow: 0 0 14px rgba(255,255,255,0.45);
  
}

@media (max-width: 768px) {
  .event-footer {
    padding: 36px 16px;

    /* ✅ FIX */
    background-size: cover;          /* NOT contain */
    background-position: center top; /* better framing on mobile */
  }

  .footer-inner {
    max-width: 100%;
  }

  .event-footer p {
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-social {
    gap: 14px;
    margin-top: 16px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
  .visa-section {
    background-image: url('bannerbackground2.png'); /* add your background photo path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 20px;
    position: relative;
  }

  .visa-overlay {
    background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
    padding: 20px 20px;
    border-radius: 16px;
    max-width: 1200px;
    margin: auto;
    color: #ffffff;
  }

  .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .section-subtitle {
    text-align: center;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    opacity: 0.9;
  }

  .visa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .visa-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    padding: 30px;
    border-radius: 14px;
  }

  .visa-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .visa-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #f1f1f1;
  }

  .contact-info {
    margin-top: 10px;
    font-size: 15px;
  }

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

    .section-title {
      font-size: 28px;
    }
  }
.visa-btn {
  display: inline-block;
  
  padding: 12px 30px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.visa-btn:hover {
  background: linear-gradient(135deg, #ffa726, #ff7043);
  transform: translateY(-2px);
}
.visa-section a,
.visa-section a:visited {
  color: #ffffff;
  text-decoration: none;
}

.visa-section a:hover {
  text-decoration: underline;
}
.visa-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  overflow-y: auto;
}

.visa-popup-content {
  background: #0f2b3a;
  color: #ffffff;
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

.visa-popup-content h2,
.visa-popup-content h3 {
  color: #ff9800;
}

.visa-popup-content a {
  color: #ffcc80;
  text-decoration: underline;
}

.visa-popup-content ul {
  padding-left: 20px;
}

.visa-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}
