
/* MODERN PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.preloader-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

/* Animated Background */
.preloader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.gradient-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, 
    rgba(184, 0, 0, 0.2) 0%,
    rgba(255, 107, 107, 0.1) 30%,
    transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.gradient-circle.delay-1 {
  width: 500px;
  height: 500px;
  animation-delay: 1s;
  background: radial-gradient(circle at center, 
    rgba(184, 0, 0, 0.15) 0%,
    rgba(255, 107, 107, 0.05) 40%,
    transparent 80%);
}

.gradient-circle.delay-2 {
  width: 600px;
  height: 600px;
  animation-delay: 2s;
  background: radial-gradient(circle at center, 
    rgba(184, 0, 0, 0.1) 0%,
    rgba(255, 107, 107, 0.02) 50%,
    transparent 90%);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Logo Container */
.logo-container {
  position: relative;
  margin-bottom: 60px;
}

.logo-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoFloat 3s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, 
    rgba(255, 107, 107, 0.3) 0%,
    rgba(184, 0, 0, 0.1) 40%,
    transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Logo Text */
.logo-text {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.logo-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: white;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
  line-height: 1;
}

.logo-accent {
  background: linear-gradient(135deg, #b80000, #b80000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

/* Loading Progress */
.loading-progress {
  max-width: 400px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b80000, #b80000);
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
  z-index: 1;
}

.loading-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.loading-percent {
  font-weight: 700;
  color: #b80000;
  min-width: 40px;
}

.loading-status {
  text-align: right;
  flex: 1;
}

/* Loading Dots */
.loading-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  animation: fadeInUp 1s ease-out 1s both;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

.dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    background: rgba(255, 255, 255, 0.3);
  }
  40% {
    transform: scale(1);
    background: #b80000;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade Out Animation */
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.preloader.fade-out .preloader-container {
  transform: scale(0.95);
  transition: transform 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .preloader-logo {
    width: 100px;
  }
  
  .logo-title {
    font-size: 32px;
  }
  
  .logo-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }
  
  .gradient-circle {
    width: 300px;
    height: 300px;
  }
  
  .gradient-circle.delay-1 {
    width: 400px;
    height: 400px;
  }
  
  .gradient-circle.delay-2 {
    width: 500px;
    height: 500px;
  }
}

/* MINIMALIST FOOTER - Logo & Copyright Only */
.site-footer {
  background: #0a0a0a;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 107, 0.3) 50%, 
    transparent 100%);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
    align-content: center;
    gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* .logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
} */

/* .footer-brand:hover .logo-img {
  transform: scale(1.1) rotate(-5deg);
  filter: brightness(0) invert(0.8);
} */

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo-primary {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-secondary {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
}

.copyright-container {
  text-align: center;
  position: relative;
  padding-top: 20px;
}

.copyright-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #b80000, #b80000);
  border-radius: 1px;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.legacy-text {
  color: #b80000;
  font-weight: 600;
}

/* Optional: Add a subtle background pattern */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 0, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-content > * {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 0;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .logo-primary {
    font-size: 24px;
  }
  
  .logo-secondary {
    font-size: 10px;
    letter-spacing: 2px;
  }
  
  .copyright {
    font-size: 13px;
  }
}

/* MODERN NAVBAR */
.custom-navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 107, 107, 0.1);
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}


.brand-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: white;
  letter-spacing: 1px;
}

.brand-highlight {
  color: #b80000;
  font-weight: 700;
}

/* Nav Items */
.nav-item {
  margin: 0 8px;
}

.nav-link {

  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.nav-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #b80000 !important;
  transform: translateY(-2px);
}

.nav-link:hover .nav-icon {
  transform: scale(1.2);
}

.nav-link.active {
  background: rgba(255, 107, 107, 0.15);
  color: #b80000 !important;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #b80000;
  border-radius: 2px;
}

/* Register Button */
.btn-nav {
  background: linear-gradient(135deg, #b80000, #b80000);
  color: white !important;
  padding: 14px 28px !important;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 20px rgba(184, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.btn-nav:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(184, 0, 0, 0.4);
}

.btn-nav:hover::before {
  left: 100%;
}

.btn-text {
  position: relative;
  z-index: 1;
  color: white;
}

.btn-icon {
  position: relative;
  z-index: 1;
  font-size: 18px;
  transition: transform 0.3s ease;color: white;
}

.btn-nav:hover .btn-icon {
  transform: translateX(5px);
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile Menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }
  
  .nav-link {
    justify-content: center;
    margin: 5px 0;
  }
}

/* Optional animation on load */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-content {
  animation: fadeUp 0.6s ease-out 0.3s both;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 20px;
}

.socials { display: flex; gap: 12px; align-items: center; }
.social-link { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.02); color: #fff; transition: transform 0.2s ease, background 0.2s ease; }
.social-link svg { width: 18px; height: 18px; stroke: #fff; }
.social-link:hover { transform: translateY(-4px); background: linear-gradient(90deg,#b80000,#b80000); }

.copyright { color: #bfc3c8; }

@media (max-width: 992px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-top > div:nth-child(4) { order: 4; }
  .nav-link {
    color: rgb(255 255 255) !important;
   
}
.navbar-nav {
   
    align-content: flex-start;
    flex-wrap: nowrap;
    align-items: flex-start;
}
}

@media (max-width: 640px) {
  .site-footer { padding: 40px 6%; }
  .site-footer .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
  color: #222;
  background: #fff;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}
/* NAVBAR */
/* Minimalist header */
.custom-navbar {
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.2s ease;
}

.custom-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(16,16,16,0.06);
  padding: 8px 0;
}

.navbar-brand {
  font-size: 20px;
  letter-spacing: 0.6px;
  color: #fff !important;
  font-weight: 700;
  display: flex;
  align-items: center;
}


.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.navbar-brand:hover .logo-img {
  transform: scale(1.05);
}

.navbar-brand span {
  color: #b80000;
}

.nav-link {
  color: rgb(0 0 0);
  font-weight: 600;
  position: relative;
  font-size: 15px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #b80000, #b80000);
  left: 0;
  bottom: -6px;
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Register Button */
.btn-nav {
      background: #b80000;
  color: rgba(255,255,255,0.95) !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.18s ease, transform 0.18s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.btn-nav:hover { background: rgba(255,255,255,0.04); transform: translateY(-2px); }

.custom-navbar.scrolled .nav-link { color: #222 !important }
.custom-navbar.scrolled .navbar-brand { color: #b80000 !important }
.custom-navbar.scrolled .btn-nav { background: linear-gradient(135deg, #b80000, #b80000); color: #fff !important; border-color: transparent }

/* Mobile */
.navbar-toggler {
  border: none;
  filter: invert(1);
}

/* Active Menu Item Styles */
.nav-link.active {
  background: rgba(255, 107, 107, 0.15) !important;
  color: #b80000 !important;
  font-weight: 600;
}

.nav-link.active .nav-icon {
  transform: scale(1.2);
  color: #b80000;
}

.active-indicator {
  display: none;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #b80000;
  border-radius: 2px;
  animation: indicatorPulse 2s infinite;
}

.nav-link.active .active-indicator {
  display: block;
}

@keyframes indicatorPulse {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(1.2);
  }
}

/* Register Button Active State */
.btn-nav.active {
  background: linear-gradient(135deg, #b80000, #b80000) !important;
  box-shadow: 0 8px 30px rgba(184, 0, 0, 0.4);
  position: relative;
  overflow: visible;
}

.btn-nav.active::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: #b80000;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Mobile Active State */
@media (max-width: 991px) {
  .nav-link.active {
    background: rgba(255, 107, 107, 0.2) !important;
  }
  
  .active-indicator {
    display: none !important;
  }
}
/* MODERN HERO SECTION */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
      padding: 20px 0 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(234 234 234 / 10%) 0%, rgb(153 150 150 / 11%) 50%, #58585861 100%);
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, 
    rgba(255, 107, 107, 0.2) 0%,
    rgba(184, 0, 0, 0.1) 30%,
    transparent 70%);
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.float-item {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.float-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 60px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #b80000, #b80000);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(184, 0, 0, 0.3);
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: slide 3s infinite;
}

@keyframes slide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Hero Title */
.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    rgba(255, 255, 255, 0.9) 50%, 
    rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.title-line {
  display: block;
}

.title-accent {
  background: linear-gradient(135deg, #b80000, #b80000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b80000, #b80000);
  border-radius: 2px;
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #b80000, #b80000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Buttons */
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.hero-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #b80000, #b80000);
  color: white;
  box-shadow: 0 10px 40px rgba(184, 0, 0, 0.3);
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(184, 0, 0, 0.4);
}

.hero-btn:hover svg {
  transform: translateX(5px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
  animation: fadeInUp 2s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
  0% {
    opacity: 0.5;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-10px);
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-modern {
    padding: 0px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    padding: 0 20px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .float-item {
    display: none;
  }
}

.btn {
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin: 10px 10px;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.primary {
  background: #fff;
  color: #b80000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
/* MODERN EVENT DETAILS SECTION */
.details-section {
  padding-top: 100px;
  padding-bottom: 10px;
  background: linear-gradient(135deg, 
    rgba(248, 249, 255, 0.5) 0%,
    rgba(255, 245, 245, 0.3) 50%,
    rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
}

.details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.03) 0%,
    rgba(184, 0, 0, 0.02) 50%,
    transparent 100%);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #b80000, #b80000);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #222, #444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.section-divider span {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b80000, transparent);
}

.section-divider i {
  color: #b80000;
  font-size: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.section-description {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 15px;
}

/* Details Grid */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Detail Cards */
.detail-card {
  background: white;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 107, 107, 0.1);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 50px rgba(184, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 107, 107, 0.3);
}

.detail-card.featured {
  border: 2px solid rgba(255, 107, 107, 0.3);
  box-shadow: 
    0 15px 40px rgba(184, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 107, 107, 0.1);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #b80000, #b80000);
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: bounce 3s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Card Icon */
.card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.icon-wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(184, 0, 0, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.detail-card:hover .icon-wrapper {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(184, 0, 0, 0.1));
  transform: scale(1.1);
}

.icon-wrapper svg {
  width: 36px;
  height: 36px;
  stroke: #b80000;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.icon-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 107, 107, 0.2);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Card Content */
.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.card-value {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}

.date-badge {
  background: rgba(255, 107, 107, 0.1);
  color: #b80000;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.time-badge {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.venue-badge {
  background: rgba(33, 150, 243, 0.1);
  color: #2196F3;
  border: 1px solid rgba(33, 150, 243, 0.2);
}

/* Hover Effect */
.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    transparent 0%,
    rgba(255, 107, 107, 0.03) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.detail-card:hover .card-hover-effect {
  opacity: 1;
}

/* Additional Info */
.additional-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 250px;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 107, 107, 0.2);
}

.info-item i {
  font-size: 32px;
  color: #b80000;
  background: rgba(255, 107, 107, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
}

.info-item p {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .details-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .additional-info {
    gap: 20px;
  }
  
  .info-item {
    min-width: 100%;
  }
}

/* Animation on scroll */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-card {
  animation: fadeUp 0.6s ease-out forwards;
}

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }


/* GLASSMORPHISM CTA DESIGN */
.glass-cta {
  padding: 120px 20px;
  background: linear-gradient(135deg, 
    #b80000 0%, 
    #ff3a3a 25%, 
    #b80000 50%, 
    #ff5252 75%, 
    #b80000 100%);
  position: relative;
  overflow: hidden;
}

.glass-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
  animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%, 100% 100%, 30% 80%, 70% 20%;
  }
  100% {
    background-position: 100% 100%, 0% 0%, 70% 30%, 30% 70%;
  }
}

.glass-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  border-radius: 32px;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.glass-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

/* Text Content */
.text-content {
  max-width: 600px;
}

.glass-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: white;
  line-height: 1.1;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.highlight {
  display: inline-block;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.8) 50%, 
    transparent 100%);
}

.glass-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Glass Button */
.glass-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 20px 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.glass-button:hover::before {
  left: 100%;
}

.button-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.glass-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.glass-button:hover .button-icon {
  transform: translateX(5px);
}

/* Glass Ornaments */
.glass-ornaments {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.ornament {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0) 70%);
  filter: blur(10px);
}

.orb-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  animation: float 20s infinite ease-in-out;
}

.orb-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  right: 10%;
  animation: float 25s infinite ease-in-out reverse;
}

.orb-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: -50px;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .glass-cta {
    padding: 80px 20px;
  }
  
  .glass-card {
    padding: 60px 30px;
    border-radius: 24px;
  }
  
  .glass-title {
    font-size: 36px;
  }
  
  .glass-subtitle {
    font-size: 18px;
  }
  
  .glass-button {
    padding: 18px 40px;
    font-size: 16px;
  }
  
  .orb-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    left: -75px;
  }
}

@media (max-width: 480px) {
  .glass-title {
    font-size: 32px;
  }
  
  .glass-subtitle {
    font-size: 16px;
  }
  
  .glass-button {
    padding: 16px 35px;
    font-size: 15px;
    gap: 12px;
  }
  
  .glass-content {
    gap: 30px;
  }
  .sponsor-grid {
   
    flex-direction: column;
}
}

/* Subtle shine effect on glass */
@keyframes shine {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: calc(100% + 100px);
  }
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.6), 
    transparent);
  animation: shine 3s infinite linear;
  z-index: 3;
}

/* SPONSORS */
.sponsors {
  /* padding: 120px 10%; */
  text-align: center;
  /* background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%); */
  position: relative;
}

.sponsors::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b80000, transparent);
}

.sponsors-header {
  margin-bottom: 80px;
}

.sponsors-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

.sponsors-header p {
  color: #666;
  font-size: 1.1rem;
}

.sponsor-tier {
  margin-bottom: 80px;
}

.tier-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b80000;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.tier-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #b80000, #b80000);
  border-radius: 2px;
}
.sponsor-grid {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #b80000 0%, #b80000 100%);
  color: #fff;
  padding: 100px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.cta .btn {
  position: relative;
  z-index: 1;
}

/* REGISTRATION FORM */
.registration {
  padding: 100px 10%;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.registration-container {
  background: #fff;
  border-radius: 24px;
  padding: 60px 50px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(184, 0, 0, 0.1);
  border: 1px solid rgba(184, 0, 0, 0.1);
}

.registration-header {
  text-align: center;
  margin-bottom: 50px;
}

.registration-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
}

.registration-header p {
  color: #666;
  font-size: 1rem;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select, .form-group textarea {
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,.form-group textarea:focus {
  outline: none;
  border-color: #b80000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 0, 0, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-submit {
  background: linear-gradient(135deg, #b80000, #b80000);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(184, 0, 0, 0.3);
}

.btn-submit:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .registration {
    padding: 50px 5%;
  }

  .registration-container {
    padding: 40px 25px;
  }

  .registration-header h2 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ACHIEVEMENTS */
.achievements {
  padding: 120px 10%;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
  position: relative;
}

.achievements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b80000, transparent);
}

.achievements-header {
  text-align: center;
  margin-bottom: 60px;
}

.achievements-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

.achievements-header p {
  color: #666;
  font-size: 1.1rem;
}

.achievements-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.scroll-btn {
  background: linear-gradient(135deg, #b80000, #b80000);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  font-size: 24px;
}

.scroll-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(184, 0, 0, 0.3);
}

.scroll-btn:active {
  transform: scale(0.95);
}

.scroll-btn svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
}

.achievements-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  flex: 1;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.achievements-scroll::-webkit-scrollbar {
  height: 6px;
}

.achievements-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.achievements-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #b80000, #b80000);
  border-radius: 10px;
}

.achievements-scroll::-webkit-scrollbar-thumb:hover {
  background: #b80000;
}

.achievement-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 17px);
  min-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #eee;
  scroll-snap-align: start;
}

.achievement-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(184, 0, 0, 0.15);
  border-color: #b80000;
}

.achievement-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #b80000, #b80000);
}

.achievement-image img,
.achievement-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.achievement-card:hover .achievement-image img,
.achievement-card:hover .achievement-image svg {
  transform: scale(1.08);
}

.achievement-content {
  padding: 30px;
}

.achievement-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}

.achievement-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.achievement-meta {
  display: inline-block;
  background: linear-gradient(135deg, #b80000, #b80000);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .achievement-card {
    flex: 0 0 calc(50% - 13px);
  }

  .achievements-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .achievements {
    padding: 80px 5%;
  }

  .achievements-header h2 {
    font-size: 1.8rem;
  }

  .scroll-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .achievement-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 280px;
  }

  .achievement-image {
    height: 180px;
  }

  .achievement-content {
    padding: 25px 20px;
  }

  .achievement-card h3 {
    font-size: 1.2rem;
  }

  .achievement-card p {
    font-size: 0.9rem;
  }

  .bni-content-box{
    margin-top: 20px;
  }
  .highlight{
    display: none;
  }
}
.developer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.4);
}

.dev-icon {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.4);
}

.developer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.developer a:hover {
  color: #b80000;
}

.developer a:hover ~ .dev-icon {
  stroke: #b80000;
}
.map-link{
  color: #b80000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.about-img{
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.cbtn{
     font-weight: 600;
    color: rgb(252 252 252) !important;
    background: rgb(184, 0, 0);
    padding: 8px 18px;
    border-radius: 20px;
    transition: background 0.18s, transform 0.18s;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.06);
    border-image: initial;
    text-decoration: none;
}
.btn-nav:hover span{
  color: #b80000;
}


.bni-achievements {
  background: #f9f9f9;
}

.achievement-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #d71920; /* BNI red */
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.achievement-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.achievement-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: #d71920;
  margin-bottom: 10px;
}

.achievement-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.achievement-card.highlight {
  background: linear-gradient(135deg, #d71920, #b31217);
  color: #fff;
}

.achievement-card.highlight h3,
.achievement-card.highlight p {
  color: #fff;
}
.achievement-slide-card img {
  width: 90px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 12px rgba(0,0,0,0.25));
  transition: transform 0.4s ease;
}
.gst-options{
  display:flex;
  gap:20px;
  margin-top:8px;
}

.radio-box{
  display:flex;
  align-items:center;
  gap:8px;
  background:#f5f7fb;
  padding:8px 14px;
  border-radius:8px;
  cursor:pointer;
  border:1px solid #e2e6ef;
}

.radio-box input{
  accent-color:#ff6600;
  cursor:pointer;
}
.fee-info{
    margin-top:15px;
}

.fee-card{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    padding:18px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.fee-card h4{
    margin-bottom:12px;
    font-size:18px;
    font-weight:600;
}

.fee-row{
    display:flex;
    justify-content:space-between;
    padding:6px 0;
    opacity:0.9;
}

.fee-total{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
    padding-top:10px;
    border-top:1px dashed rgba(255,255,255,0.4);
    font-size:18px;
    font-weight:bold;
    color:#facc15;
}

.fee-note{
    display:block;
    margin-top:8px;
    font-size:12px;
    opacity:0.8;
}
.spnr h4{
  color: #a50006;
}
.registration-note{
    background:#fff7ed;
    border:1px solid #fed7aa;
    color:#7c2d12;
    padding:10px 14px;
    border-radius:8px;
    margin:10px 0 18px 0;
    font-size:14px;
}
.registration-note b{
    color:#c2410c;
}

