

/* ================= BASE STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #0b0214;
  color: #fff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(14px);
  z-index: 1000;
}

.nav-logo img {
  width: 120px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: .85;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-btn {
  background: #fff;
  color: #000;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  transform: scale(1.05);
}

/* Hide desktop nav on mobile - CRITICAL */
@media (max-width: 900px) {
  .navbar .nav-links,
  .navbar .nav-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(11, 2, 20, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

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

.mobile-nav-links {
  list-style: none;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  opacity: 1;
  color: #e326ff;
}

.mobile-register-btn {
  display: inline-block;
  background: linear-gradient(90deg, #e326ff, #26b3e1);
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 30px;
  text-align: center;
  margin-top: 20px;
}

/* ================= HERO ================= */
.hero {
  min-height: 130vh;
  padding: 120px 8% 80px 8%;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .85)),
    url("assets/home_bg.png") center 15% / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center; /* TEXT STARTS FROM TOP */
  align-items: flex-start;
  overflow: hidden;
  text-align: left;
  padding-top: 100px;
  background-position: center 20%;
}

.babloo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0%;
 
} 

@media (max-width: 900px) {
  .hero {
    background-size: cover;
    background-position: center center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    background-size: cover;
    background-position: center center;
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .hero {
    background-size: 200% auto;
    background-position: center center;
    padding-top: 80px;
  }
}

@media (max-width: 360px) {
  .hero {
    background-size: 250% auto;
    background-position: 40% center;
  }
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  opacity: .7;
  animation: rise linear infinite;
}

@keyframes rise {
  from {
    transform: translateY(100vh)
  }

  to {
    transform: translateY(-10vh)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 20px;

}

.hero small {
  letter-spacing: 2px;
  opacity: .8;
  font-size: 20px;
 
}

.hero-marquee {
  margin: 20px 0;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 18s linear infinite;
  letter-spacing: 3px;
  opacity: .7;
  font-size: clamp(10px, 2vw, 14px);
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-100%)
  }
}

.hero h1 {
  font-size: clamp(42px, 10vw, 80px);
  margin: 15px 0;
  line-height: 1.2;
}

.hero p {
  opacity: .85;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: #000;
  padding: 15px 30px;
 
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  z-index: 3;
  text-align: center;
 
}

.btn-outline {
  border: 1px solid #fff;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-size: clamp(13px, 2.5vw, 15px);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ================= GALLERY SECTION ================= */
.gsap-gallery {
  padding: 50px 8%;
  background: linear-gradient(180deg, #0b0214, #05000c);
  text-align: center;
 
}

.gsap-gallery h2 {
  font-size: clamp(32px, 6vw, 56px);
  
  margin-bottom: 10px;
}

.gsap-gallery p {
  opacity: .7;
  letter-spacing: 2px;
  margin-bottom: 60px;
  font-size: clamp(12px, 2.5vw, 16px);
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.slider-track {
  display: flex;
  gap: 30px;
}

.slide {
  width: 320px;
  height: 420px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  transform: scale(.9);
  filter: brightness(.7);
  transition: .4s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  transform: scale(1);
  filter: brightness(1.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, .7),
    0 0 40px rgba(255, 255, 255, .08);
}

.slide:hover {
  transform: scale(1.05) rotate(.3deg);
  filter: brightness(1.2);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: .3s;
  backdrop-filter: blur(8px);
}

.arrow:hover {
  background: #fff;
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

/* ================= PARTICIPATING COUNTRIES ================= */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 40px 8%;
}

.country-box {
  position: relative;
  padding: 14px 20px;
  text-align: center;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  font-size: clamp(13px, 2.5vw, 15px);
}

.country-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg,
      transparent 0%,
      #e326ff 10%,
      #26b3e1 50%,
      #e326ff 90%,
      transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}

.country-box::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: #0b0214;
  z-index: -1;
}

.country-box:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 30px rgba(227, 38, 255, .35),
    0 0 40px rgba(38, 179, 225, .35);
}

.country-box:hover::before {
  opacity: 1;
  animation: neonMove 1.8s linear infinite;
}

@keyframes neonMove {
  from {
    background-position: 0% 50%
  }

  to {
    background-position: 200% 50%
  }
}

/* ================= SECTION TITLE ================= */
.section-title {
  text-align: center;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 2px;
  position: relative;
  background: linear-gradient(90deg, #e326ff, #26b3e1, #e326ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: titleGlow 6s linear infinite;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 120px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(90deg, transparent, #26b3e1, #e326ff, transparent);
  box-shadow: 0 0 20px rgba(38, 179, 225, .6),
    0 0 30px rgba(227, 38, 255, .6);
}

.section-title::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(227, 38, 255, .25), transparent 70%);
  z-index: -1;
}

@keyframes titleGlow {
  from {
    background-position: 0% center
  }

  to {
    background-position: 200% center
  }
}

/* ================= EXPERIENCE / CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 80px 8%;
}

.card {
  background: rgba(255, 255, 255, .05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(227, 38, 255, 0.3);
}

.card img {
  width: 70px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: clamp(16px, 3vw, 20px);
}

/* ================= REGISTRATION CHOICE ================= */
.registration-choice {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(180deg, #0b0214, #05000c);
}

.registration-choice p {
  opacity: .7;
  margin-bottom: 40px;
  font-size: clamp(14px, 2.5vw, 16px);
}

.choice-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.choice-btn {
  padding: 18px 40px;
  border-radius: 60px;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #e326ff, #26b3e1);
  transition: .4s ease;
  box-shadow: 0 0 25px rgba(227, 38, 255, .4),
    0 0 40px rgba(38, 179, 225, .3);
  display: inline-block;
}

.choice-btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 0 40px #26b3e1,
    0 0 60px #e326ff;
}

/* ================= ABOUT GLX ================= */
#about {
  position: relative;
  padding: 120px 8%;
  background: linear-gradient(180deg, #05000c, #0b0214);
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(227, 38, 255, .18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(38, 179, 225, .18), transparent 45%);
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 18px;
  background: linear-gradient(90deg, #e326ff, #26b3e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  opacity: .85;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: clamp(14px, 2.5vw, 16px);
}

.about-caption {
  display: block;
  margin-top: 24px;
  font-style: italic;
  font-size: clamp(12px, 2vw, 14px);
  letter-spacing: 1px;
  opacity: .65;
  position: relative;
}

.about-caption::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #e326ff, #26b3e1);
  margin-bottom: 10px;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-visual img {
  width: 100%;
  max-width: 260px;
  border-radius: 24px;
  padding: 30px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .7),
    0 0 40px rgba(227, 38, 255, .25);
  transition: .5s ease;
}

.about-visual img:hover {
  transform: scale(1.08) rotate(.8deg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .8),
    0 0 60px rgba(38, 179, 225, .35);
}

.about-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(227, 38, 255, .6);
  animation: spin 14s linear infinite;
  z-index: -1;
}

@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(180deg, #0d0d0d, #050505);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(227, 38, 255, 0.12),
      transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-copy {
  color: #bbb;
  font-size: clamp(12px, 2vw, 14px);
  margin-bottom: 10px;
}

.footer-copy span {
  color: #e326ff;
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #26b3e1;
  text-decoration: none;
  font-size: clamp(12px, 2vw, 14px);
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #e326ff, #26b3e1);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(227, 38, 255, 0.8);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links span {
  color: #666;
}

/* ================= MODAL ================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(145deg, #0e0e0e, #050505);
  border-radius: 16px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  border: 1px solid rgba(227, 38, 255, 0.25);
  box-shadow: 0 0 30px rgba(227, 38, 255, 0.3),
    0 0 60px rgba(38, 179, 225, 0.15);
  animation: modalPop 0.4s ease;
}

@keyframes modalPop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: clamp(18px, 4vw, 22px);
  background: linear-gradient(90deg, #e326ff, #26b3e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-content p {
  color: #ccc;
  font-size: clamp(12px, 2.5vw, 14px);
  line-height: 1.7;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #e326ff;
  transform: rotate(90deg);
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Tablets and below - 900px */
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
  }

  .nav-btn {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar {
    padding: 0 5%;
  }

  .hero-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-buttons {
    justify-content: center;
  }

  .mega {
    position: static;
    transform: none;
    margin-top: 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-caption::before {
    margin-left: auto;
    margin-right: auto;
  }

  .cards {
    padding: 60px 5%;
  }

  .gsap-gallery {
    padding: 80px 5%;
  }

  .countries-grid {
    padding: 40px 5%;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .registration-choice {
    padding: 80px 5%;
  }

  #about {
    padding: 80px 5%;
  }
}

/* Mobile devices - 768px and below */
@media (max-width: 768px) {
  .slide {
    width: 260px;
    height: 360px;
  }

  .arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .choice-buttons {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .choice-btn {
    width: 90%;
    max-width: 350px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons a {
    width: 90%;
    max-width: 280px;
    text-align: center;
  }

  .btn-primary {
    width: 90%;
    max-width: 300px;
    text-align: center;
  }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
  .navbar {
    height: 60px;
    padding: 0 4%;
  }

  .nav-logo img {
    width: 90px;
  }

  .mobile-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .mobile-nav-links {
    padding: 30px 5%;
    gap: 20px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    max-width: none;
    padding: 12px 20px;
  }

  .mega {
    width: 100%;
    padding: 0 5%;
  }

  .btn-primary {
    width: 100%;
    max-width: none;
    padding: 14px 20px;
  }

  .cards {
    grid-template-columns: 1fr;
    padding: 40px 4%;
  }

  .countries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 30px 4%;
  }

  .country-box {
    padding: 12px 15px;
  }

  .slide {
    width: 200px;
    height: 280px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .gsap-gallery {
    padding: 60px 4%;
  }

  .registration-choice {
    padding: 60px 4%;
  }

  .choice-buttons {
    gap: 15px;
  }

  .choice-btn {
    padding: 15px 30px;
    width: 100%;
    max-width: none;
  }

  #about {
    padding: 60px 4%;
  }

  .footer {
    padding: 25px 15px;
  }

  .modal-content {
    padding: 25px 20px;
  }
}

/* Extra small devices - 360px and below */
@media (max-width: 360px) {
  .nav-logo img {
    width: 80px;
  }

  .hero small,
  .marquee-track {
    font-size: 9px;
  }

  .slide {
    width: 180px;
    height: 240px;
  }

  .about-visual img {
    max-width: 200px;
    padding: 20px;
  }

  .hero-buttons a {
    font-size: 13px;
    padding: 10px 15px;
  }

  .btn-primary {
    font-size: 13px;
    padding: 12px 15px;
  }
}

/* Landscape mode adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .gsap-gallery {
    padding: 60px 8%;
  }

  .registration-choice {
    padding: 60px 8%;
  }

  #about {
    padding: 60px 8%;
  }
}

/* Large desktop - 1400px and above */
@media (min-width: 1400px) {
  .navbar {
    padding: 0 10%;
  }

  .hero {
    padding-left: 10%;
    padding-right: 10%;
  }

  .cards,
  .gsap-gallery,
  .countries-grid,
  .registration-choice,
  #about {
    padding-left: 10%;
    padding-right: 10%;
  }
}

/* Print styles */
@media print {
  .navbar,
  .mobile-menu-toggle,
  .mobile-menu,
  .stars,
  .arrow,
  .modal {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* ================= ULTRA-AGGRESSIVE MOBILE NAV HIDING ================= */
/* This ensures desktop nav NEVER shows on mobile regardless of other CSS */
@media (max-width: 900px) {
  nav.navbar ul.nav-links,
  nav.navbar a.nav-btn,
  .navbar > ul,
  .navbar > a.nav-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  
  /* Show only logo and hamburger on mobile */
  .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .nav-logo {
    display: block !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  nav.navbar ul.nav-links,
  nav.navbar a.nav-btn,
  .navbar > ul,
  .navbar > a.nav-btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  nav.navbar ul.nav-links,
  nav.navbar a.nav-btn,
  .navbar > ul,
  .navbar > a.nav-btn {
    display: none !important;
  }
}
