* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-grey: #e5e7eb;
  --primary-orange: #f2612c;
  --primary-red: #dc2626;
  --secondary-amber: #fbbf24;
  --dark-bg: #1a0000;
  --darker-bg: #0a0000;
  --card-bg: rgba(220, 38, 38, 0.1);
  --border-color: rgba(255, 107, 53, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #fca5a5;
  --primary-cyan: #ff6b35;
  --primary-pink: #dc2626;
}

body {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  background: var(--darker-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Enhanced Cyberpunk Background */
.cyber-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: -5;
}

.cyber-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 107, 53, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(220, 38, 38, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(251, 191, 36, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 60% 20%,
      rgba(249, 115, 22, 0.15) 0%,
      transparent 50%
    );
  animation: gradientRotate 30s linear infinite;
  filter: blur(40px);
}

@keyframes gradientRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Matrix rain effect */
.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.15;
}

.matrix-column {
  position: absolute;
  top: -100vh;
  font-family: "Courier New", monospace;
  font-size: 14px;
  color: var(--primary-cyan);
  text-shadow: 0 0 5px var(--primary-cyan);
  animation: matrixFall linear infinite;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

@keyframes matrixFall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200vh);
  }
}

/* Floating particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -3;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-cyan);
  animation: float 20s infinite;
  opacity: 0;
}

.particle:nth-child(odd) {
  background: var(--primary-pink);
  box-shadow: 0 0 10px var(--primary-pink);
  animation-duration: 25s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

/* Glowing orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -4;
}

.orb1 {
  width: 300px;
  height: 300px;
  background: var(--primary-cyan);
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: var(--primary-pink);
  bottom: 10%;
  right: -200px;
  animation-delay: 5s;
}

.orb3 {
  width: 250px;
  height: 250px;
  background: var(--primary-orange);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 100px) scale(0.9);
  }
}

/* Header styling */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.9em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  z-index: 10000;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height:12%;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Arial", sans-serif;
}

.main-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.menu-item {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-size: 1rem;
  border: none;
  font-family: "Arial", sans-serif;
}

.menu-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.menu-item:hover::after,
.menu-item.active::after {
  width: 100%;
}

.menu-item:hover,
.menu-item.active {
  color: #ff6b35;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
}

/* Sidebar */
.sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transition: right 0.4s ease;
  padding: 60px 20px 20px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.sidebar.open {
  right: 0;
}

.close-icon {
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 2rem;
  display: block;
  text-align: right;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

.sidebar ul li a:hover {
  color: #ff6b35;
}

/* Section styling */
.section {
  min-height: 100vh;
  padding: 100px 2rem 50px;
  position: relative;
}

/* Hero section styling */
.hero-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 3rem;
  position: relative;
  background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
}

.hero-content {
  max-width: 600px;
  z-index: 100;
}

.hero-title {
  margin-top: 10px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #ffffff;
  font-family: "Arial", sans-serif;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #ff6b35, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-family: "Arial", sans-serif;
}

.hero-subtitle .highlight {
  background: linear-gradient(135deg, #ff6b35, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glitch text style */
.glitch-text {
  position: relative;
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ff6b35;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  margin: 60px 0;
  letter-spacing: 3px;
}

.glitch-text::before,
.glitch-text::after {
  content: "INFYRA 2025";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  color: #fbbf24;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.glitch-text::before {
  animation: glitchTop 2s infinite linear alternate-reverse;
}

.glitch-text::after {
  animation: glitchBottom 2s infinite linear alternate-reverse;
}

@keyframes glitchTop {
  0% {
    clip: rect(0, 9999px, 10%, 0);
    transform: translate(-2px, -2px);
  }
  25% {
    clip: rect(10%, 9999px, 25%, 0);
    transform: translate(2px, 2px);
  }
  50% {
    clip: rect(25%, 9999px, 40%, 0);
    transform: translate(-2px, 0);
  }
  75% {
    clip: rect(40%, 9999px, 55%, 0);
    transform: translate(2px, -1px);
  }
  100% {
    clip: rect(55%, 9999px, 70%, 0);
    transform: translate(0, 0);
  }
}

@keyframes glitchBottom {
  0% {
    clip: rect(60%, 9999px, 75%, 0);
    transform: translate(2px, 2px);
  }
  25% {
    clip: rect(75%, 9999px, 85%, 0);
    transform: translate(-2px, -2px);
  }
  50% {
    clip: rect(85%, 9999px, 95%, 0);
    transform: translate(2px, 0);
  }
  75% {
    clip: rect(70%, 9999px, 85%, 0);
    transform: translate(-2px, 1px);
  }
  100% {
    clip: rect(60%, 9999px, 75%, 0);
    transform: translate(0, 0);
  }
}

/* Coverflow section */
.coverflow-section {
  position: relative;
  margin: 4rem auto;
  width: 90%;
  height: 40vh;
  z-index: 200;
  margin-bottom: 100px;
}

.coverflow-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  position: relative;
}

.coverflow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  position: relative;
  width: 100%;
  height: 300px;
}

.coverflow-item {
  position: absolute;
  width: 300px;
  height: 300px;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  user-select: none;
}

.coverflow-item .cover {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  background: #333;
  border: 3px solid rgba(255, 107, 53, 0.3);
}

.coverflow-item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.coverflow-item.active .cover {
  box-shadow: 0 35px 70px rgba(255, 107, 53, 0.5);
  border-color: var(--primary-orange);
}

/* Dots indicator */
.dots-container {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 200;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-cyan);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--primary-cyan);
}
/* Prev/Next buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 107, 53, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 500;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: var(--primary-orange);
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

/* Countdown Section */
.countdown-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.countdown-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.countdown-container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.countdown-tagline {
  font-size: 1.6rem;
  color: #ff6b35;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.countdown-timer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.countdown-item {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circular-progress {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}

.circular-progress svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.bg-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 8;
}

.progress-circle {
  fill: none;
  stroke: #ff6b35;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.5s ease;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
}

.countdown-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
  font-family: "Orbitron", monospace;
}

.countdown-label {
  font-size: 0.9rem;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* About Section */
.about-section {
  padding: 100px 2rem;
  background: transparent;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.main-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.left-content {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-weight: 300;
  max-width: 600px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.logo-circle {
  width: 2rem;
  height: 2rem;
  position: relative;
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.logo-circle:hover {
  opacity: 1;
}

.logo-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: bold;
}
.logo-text img{
  height: 250px;
  margin-left: -70px;
  margin-top: 10px;
}

.register-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 260px;
  margin-top: 4rem;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  font-size: 0.875rem;
}

.register-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.right-content {
  width: 100%;
  height: 60vh;
  flex-grow: 1;
}

.frame-layout {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.switch-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.grid-container {
  display: grid;
  grid-template-rows: 4fr 4fr 4fr;
  grid-template-columns: 4fr 4fr 4fr;
  gap: 4px;
  width: 100%;
  height: 100%;
  transition: grid-template-rows 0.4s ease, grid-template-columns 0.4s ease;
}

.frame-item {
  position: relative;
  transition: transform 0.4s ease;
}

.frame-component {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.video-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

.frame-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-borders {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
}

.frame-borders.show {
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .main-menu {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .glitch-text {
    font-size: 2.5rem;
  }

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

  .countdown-item {
    min-width: 100px;
    max-width: 120px;
  }

  .circular-progress {
    width: 90px;
    height: 90px;
  }

  .circular-progress svg {
    width: 90px;
    height: 90px;
  }

  .countdown-number {
    font-size: 1.2rem;
  }

  .coverflow-item {
    width: 200px;
    height: 200px;
  }

  .main-content {
    flex-direction: column;
    gap: 2rem;
  }

  .left-content {
    width: 100%;
  }

  .right-content {
    height: 50vh;
  }

  .title {
    font-size: 2rem;
  }

  .countdown-tagline {
    font-size: 1.2rem;
  }

  .sidebar {
    width: 80%;
  }
}

@media (min-width: 768px) {
  .main-content {
    flex-direction: row;
    gap: 2rem;
  }

  .left-content {
    width: 260px;
  }

  .right-content {
    height: 80vh;
  }

  .title {
    font-size: 3.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .glitch-text {
    font-size: 2rem;
  }

  .countdown-tagline {
    font-size: 1rem;
  }

  .circular-progress {
    width: 70px;
    height: 70px;
  }

  .circular-progress svg {
    width: 70px;
    height: 70px;
  }

  .countdown-number {
    font-size: 1rem;
  }

  .coverflow-item {
    width: 150px;
    height: 150px;
  }
}
.contact-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 3rem 50px;
  position: relative;

  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  z-index: 100;
}

.contact-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #ffffff;
  font-family: "Arial", sans-serif;
}

.contact-title .highlight {
  background: linear-gradient(135deg, #ff6b35, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: #fca5a5;
  margin-bottom: 2rem;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

/* Contact sections styling */
.contact-content {
  max-width: 1200px;
  margin: -140px auto;
  padding: 50px 2rem;
  position: relative;
  z-index: 100;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.contact-info-section h2 {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
  color: #ff6b35;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-details p {
  color: #fca5a5;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-form-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.contact-form-section h2 {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Arial", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #fca5a5;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #ff6b35, #ffa500);
  color: #ffffff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.map-section {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 1rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  margin-bottom: 4rem;
}

.map-section h2 {
  font-size: 2rem;
  color: #ff6b35;

  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
  text-align: center;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 53, 0.3);
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fca5a5;
  font-size: 1.1rem;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  padding: 2rem 3rem;
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  text-align: center;
  margin-top: 2rem;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fca5a5;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #ff6b35;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.copyright {
  color: #fca5a5;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Mobile responsive updates for contact page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-info-section,
  .contact-form-section,
  .map-section {
    padding: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Timeline Styles */
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #ff6b35, #dc2626);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-left: 0;
  margin-right: calc(50% + 2rem);
  transform: translateX(-50px);
}

.timeline-item:nth-child(odd).animate .timeline-card {
  transform: translateX(0);
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: calc(50% + 2rem);
  margin-right: 0;
  transform: translateX(50px);
}

.timeline-item:nth-child(even).animate .timeline-card {
  transform: translateX(0);
}

.timeline-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.8s ease;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-card::before {
  right: -41px;
}

.timeline-item:nth-child(even) .timeline-card::before {
  left: -41px;
}

.timeline-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.event-time {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #dc2626);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.event-speaker {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-location {
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.event-description {
  color: #e5e7eb;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .schedule-section {
    padding: 80px 1rem 40px;
  }
  .event-title {
    font-size: 1rem;
  }
  .timeline-card {
    width: 49%;
    margin: 0 auto;
    padding: 1rem;
    right: 5%;
  }
  .event-description {
    font-size: 0.85rem;
  }
}
/* Added schedule page specific styles */
.schedule-section {
  min-height: 100vh;
  padding: 120px 2rem 50px;
  position: relative;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
  z-index: 100;
  position: relative;
}

.page-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}

.page-title .highlight {
  background: linear-gradient(135deg, #ff6b35, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.5rem;
  color: #fca5a5;
  font-weight: 400;
  letter-spacing: 1px;
}
/* Sponsors Section */
.sponsors-section {
  top: 150px;
  padding: 100px 2rem;
  background: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  background: transparent;
}

.sponsors-scroller {
  margin: 2rem 0;
  overflow: hidden;
  position: relative;
}

.sponsors-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.sponsors-track.reverse {
  animation-direction: reverse;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sponsor-logo {
  height: 80px;
  width: 200px;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* Ensures wrapped text is centered */
  padding: 0 5px; /* Adds a little padding */
}

.sponsor-logo:hover {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}
/* .video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: -1;
} */
.banner {
  width: 100%;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner .slider {
  position: relative;
  bottom: 100px;
  background: transparent;
  width: 200px;
  height: 320px;
  transform-style: preserve-3d;
  animation: autoRun 15s linear infinite;
  z-index: 2;
}
@keyframes autoRun {
  from {
    transform: perspective(1200px) rotateX(-15deg) rotateY(0deg);
  }
  to {
    transform: perspective(1200px) rotateX(-15deg) rotateY(360deg);
  }
}

.banner .slider .item {
  position: absolute;
  inset: 0;
  transform: rotateY(
      calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
    )
    translateZ(300px); /* base depth for desktop */
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.banner .slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .circular-progress {
    width: 120px;
    height: 120px;
  }

  .circular-progress svg {
    width: 120px;
    height: 120px;
  }

  .countdown-number {
    font-size: 1.4rem;
  }

  .countdown-label {
    font-size: 0.9rem;
  }
}

/* Coverflow section */
.coverflow-section {
  position: relative;
  margin: 4rem auto 100px;
  width: 90%;
  max-width: 1200px;
  height: auto;
}

.coverflow-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  position: relative;
}

.coverflow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 250px;
}

.coverflow-item {
  position: absolute;
  width: 20vw; /* reduced width */
  max-width: 250px; /* smaller max width */
  height: auto;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  user-select: none;
}

.coverflow-item .cover {
  width: 100%;
 
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  background: #333;
  border: 3px solid rgba(255, 107, 53, 0.3);
}

.coverflow-item .cover img {
  width: 104%;
  height: 180%;
  object-fit: contain; /* fit entire image */
  border-radius: 15px;
}

.coverflow-item.active .cover {
  box-shadow: 0 35px 70px rgba(255, 107, 53, 0.5);
  border-color: var(--primary-orange);
}

/* Dots indicator */
.dots-container {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 200;
  opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .coverflow-item {
    width: 18vw;
  }
}

@media (max-width: 768px) {
  .coverflow-item {
    width: 28vw;
  }
}

@media (max-width: 480px) {
  .coverflow-item {
    width: 45vw;
  }
}

@media (min-width: 769px) {
  .menu-icon {
    display: none !important;
  }

  .main-menu {
    display: flex;
  }

  .sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .main-menu {
    display: none;
  }
}

/* Schedule Page Specific Styles */
.schedule-section {
  min-height: 100vh;
  padding: 120px 2rem 50px;
  position: relative;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
  z-index: 100;
  position: relative;
}

.page-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
}

.page-title .highlight {
  background: linear-gradient(135deg, #ff6b35, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.5rem;
  color: #fca5a5;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Timeline Styles */
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #ff6b35, #dc2626);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  transition: left 0.4s ease;
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-left: 0;
  margin-right: calc(50% + 2rem);
  transform: translateX(-50px);
}

.timeline-item:nth-child(odd).animate .timeline-card {
  transform: translateX(0);
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: calc(50% + 2rem);
  margin-right: 0;
  transform: translateX(50px);
}

.timeline-item:nth-child(even).animate .timeline-card {
  transform: translateX(0);
}

.timeline-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.8s ease;
  width: 45%;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #ff6b35;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) .timeline-card::before {
  right: -41px;
}

.timeline-item:nth-child(even) .timeline-card::before {
  left: -41px;
}

.timeline-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

.event-time {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #dc2626);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.event-speaker {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-description {
  color: #e5e7eb;
  line-height: 1.6;
}

/* Responsive Styles for Schedule Section */
@media (max-width: 768px) {
  .page-title {
    font-size: 3rem;
  }

  .page-subtitle {
    font-size: 1.2rem;
  }

  .timeline-line {
    left: 30px;
    transform: translateX(0);
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    width: calc(100% - 70px);
    margin-left: 70px;
    margin-right: 0;
    transform: translateX(0) !important;
    opacity: 1;
  }

  .timeline-item:nth-child(odd) .timeline-card::before,
  .timeline-item:nth-child(even) .timeline-card::before {
    left: -41px;
    right: auto;
  }
}

@media (max-width: 480px) {
  .schedule-section {
    padding: 80px 1rem 40px;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .event-title {
    font-size: 1.2rem;
  }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    width: calc(100% - 50px);
    margin-left: 50px;
    padding: 1.5rem 1rem;
  }
  .timeline-line {
    left: 20px;
  }
  .timeline-item:nth-child(odd) .timeline-card::before,
  .timeline-item:nth-child(even) .timeline-card::before {
    left: -31px;
  }
  .event-description {
    font-size: 0.85rem;
  }

  /* ** NEW CODE BLOCK FOR SPONSORS ON MOBILE ** */
  .sponsor-logo {
    width: 180px; /* Make the box a bit narrower on small screens */
    height: 75px; /* Adjust height accordingly */
    font-size: 0.875rem; /* Reduce font size to help text fit better */
    font-weight: 600;
    padding: 5px; /* Ensure text doesn't touch the edges */
  }
}

/* Contact section fixes for very small screens */
@media (max-width: 416px) {
  .contact-hero {
    padding: 100px 1rem 50px;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .contact-content {
    margin-top: -80px;
    padding: 20px 1rem;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 1.5rem 1rem;
  }

  .contact-info-section h2,
  .contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-item {
    padding: 0.8rem 0.5rem;
    align-items: flex-start; /* Aligns icon to the top of the text block */
  }

  .contact-icon {
    margin-right: 0.8rem; /* Reduced space next to icon */
    margin-top: 4px; /* Better vertical alignment with text */
  }

  .contact-details h3 {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.85rem; /* Slightly smaller font to prevent bad wrapping */
    line-height: 1.4;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .map-container {
    height: 300px;
  }
}

/* --- ADDED STYLES FOR CONSISTENT HEADER AND SIDEBAR --- */
:root {
  --primary-orange: #ff6b35;
  --primary-red: #dc2626;
  --text-primary: #ffffff;
  --text-secondary: #fca5a5;
  --primary-cyan: #ff6b35;
  --primary-pink: #dc2626;
}

body {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  background: #0a0000;
  color: var(--text-primary);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  z-index: 10000;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Arial", sans-serif;
}

.main-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.menu-item {
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  font-family: "Arial", sans-serif;
}

.menu-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.menu-item:hover::after,
.menu-item.active::after {
  width: 100%;
}

.menu-item:hover,
.menu-item.active {
  color: #ff6b35;
}

/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 3000;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #ff6b35;
}

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

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

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

/* SIDEBAR */
.sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  transition: right 0.4s ease;
  z-index: 2500;
  padding: 2rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  border-left: 2px solid rgba(255, 107, 53, 0.4);
  padding-top:6rem;
}

.sidebar.open {
  right: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 1.5rem 0;
}

.sidebar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: "Arial", sans-serif;
}

.sidebar ul li a:hover {
  color: #ff6b35;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 1rem 2rem;
  }

  .main-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .glitch-text img {
    width: 80%;   /* scale by width */
    height: auto;
    margin: 0 auto 30px;
    display: block;
  }
}


.glitch-text img {
  max-height: 200px;
  margin: 30px auto 60px;
  display: block;
  align-items: center;
  margin-bottom: 150px;

  /* Outline effect */
  filter: drop-shadow(0 0 3px #743912)   /* orange glow */
          drop-shadow(0 0 6px #020100)   /* black stroke */
          drop-shadow(0 0 10px #2b1405); /* stronger outer glow */
}

@media (max-width: 480px) {
  .glitch-text img {
    max-height: 200px;
    margin: 20px auto 40px;
    display: block;
    align-items: center;

    /* Outline effect (mobile only) */
    filter: drop-shadow(0 0 3px #743912)   /* orange glow */
            drop-shadow(0 0 6px #020100)   /* black stroke */
            drop-shadow(0 0 10px #2b1405); /* stronger outer glow */
  }
}


