{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

.header-brand {
  position: relative;
  top: -20px;
  left: -200px;
}

.header-brand h1 {
  color: #000;
  font-size: 2rem;
  text-shadow:
    -1px -1px #000,
     1px -1px #000,
    -1px  1px #FF00C8,
     1px  1px #FF00C8;
  margin: 0;
  line-height: 1.2;
}

.header-brand span {
  font-size: 0.85rem;
  color: #fff;
}
h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  text-shadow:
    -1px -1px #000000,
     1px -1px #000000,
    -1px  1px #FF00C8,
     1px  1px #FF00C8;
  color: #00faff;
  margin-top: 60px;
}

p {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  text-align: center;
  color: #bffcff;
  text-shadow: 0 0 5px #00eaff;
}
body {
    background-color: #000000;
    color: white;
}

/* Navigation */
header {
    background: linear-gradient(to bottom, #00eaff,#00eaff, transparent); /* Set the path to your image */
    background-size: cover; /* Makes the background image cover the entire header */
    background-position: center; /* Centers the image within the header */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    margin-left: -25px; /* You can keep or adjust this based on your layout */
 display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100px; /* Ensures full screen height */
}

nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-image {
    height: 500px;
    width: auto;
    max-width: 100%;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 80px;
	align-content: center;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 30px;
    line-height: 1;
    padding-top: 5px;
    position: relative;
    top: -30px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #FFFFFF; 
     text-shadow:
        -1px -1px #00eaff, /* top left */
         1px -1px #00ea00, /* top right */
        -1px  1px #FF00C8, /* bottom left */
         1px  1px #FF00C8; /* bottom right */
	transform: scale(1.2);
}
nav ul li a {
    font-family: 'Orbitron', sans-serif;
    /* keep your existing styles */
	  text-shadow:
        -1px -1px #000000, /* top left */
         1px -1px #000000, /* top right */
        -1px  1px #FF00C8, /* bottom left */
         1px  1px #FF00C8; /* bottom right */
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 45px;
	 line-height: 1; /* Tightens vertical spacing */
    padding-top: 5px; /* Raises the text slightly */
    position: relative;
    top: -30px; /* Nudges it upward */
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center; /* keep vertical centering */
    justify-content: flex-start; /* <-- move content to the left */
    text-align: left; /* optional: aligns text inside to the left */
    padding-left: 80px; /* optional: adds space from left edge */
}

.background-video {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
		
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-shadow: 2px 2px 10px black;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
    margin: 10px 0;
}

.explore-btn {
    background: #00eaff;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
	border-radius: 20px;
}

.explore-btn:hover {
    background: #FF3CAC;
}

/* Image Grid Section */
.content-grid {
    display: flex;
    gap: 40px;
    padding: 50px;
    justify-content: center;
}

.card {
    background: #00eaff;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.card img {
    width: 250px;
    border-radius: 10px;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover .card {
  transform: scale(1.03);
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 0 40px rgba(255, 0, 200, 0.4); 
}
.card-link:hover h3 {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.card h3 {
  transition: transform 0.3s ease;
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: black;
    margin-top: 50px;
}
.hero-content {
    position: left;
    z-index: 10;

    color: white;
    text-shadow: 2px 2px 10px black;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
    justify-content: center;
    height: 100%; /* Fill the hero section */
    padding-left: -100px; /* Adjust for how far left you want it */
    max-width: 600px; /* Optional: limit width */
}
.tagline {
    opacity: 0;
    transition: opacity 0.3s ease;
}
/* Position dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #00eaff;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    border: 1px solid #00eaff;
    border-radius: 10px;
}

.dropdown-menu li {
    display: block;
    padding: 30px 20px;
}

.dropdown-menu li a {
    color: Black;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    color: #FFF;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}
body {
    transition: background-color 0.8s ease-in-out;
}

.glitch {
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  animation: glitch 1.5s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  background: transparent;
  z-index: -1;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 magenta;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
  animation: glitchTop 1.5s infinite;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 cyan;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: glitchBottom 1.5s infinite;
}

@keyframes glitch {
  0% { transform: none; }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(-2px, 2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(-2px, -2px); }
  100% { transform: none; }
}

@keyframes glitchTop {
  0%, 100% { transform: translate(0); }
  50% { transform: translate(-3px, -3px); }
}

@keyframes glitchBottom {
  0%, 100% { transform: translate(0); }
  50% { transform: translate(3px, 3px); }
}
.glitch-button {
  position: relative;
  color: black;
  background: #00eaff;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 20px;
  font-weight: bold;
  overflow: hidden;
  transition: 0.3s;
  z-index: 1;
}

.glitch-button::before,
.glitch-button::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 24px;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #00eaff;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.glitch-button:hover::before {
  animation: glitchBtnTop 0.3s steps(2, end) infinite;
  opacity: 0.8;
  color: cyan;
  left: 2px;
}

.glitch-button:hover::after {
  animation: glitchBtnBottom 0.3s steps(2, end) infinite;
  opacity: 0.8;
  color: magenta;
  left: -2px;
}

@keyframes glitchBtnTop {
  0% { clip-path: inset(0 0 80% 0); }
  20% { clip-path: inset(0 0 60% 0); }
  40% { clip-path: inset(0 0 40% 0); }
  60% { clip-path: inset(0 0 20% 0); }
  80% { clip-path: inset(0 0 10% 0); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes glitchBtnBottom {
  0% { clip-path: inset(80% 0 0 0); }
  20% { clip-path: inset(60% 0 0 0); }
  40% { clip-path: inset(40% 0 0 0); }
  60% { clip-path: inset(20% 0 0 0); }
  80% { clip-path: inset(10% 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.glitch-button {
  color: black; /* Text is black by default */
  /* keep the rest of your existing styles */
}

.glitch-button:hover {
  color: white; /* Text becomes white on hover */
}
.scroll-down {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  font-family: Arial, sans-serif;
  animation: bounce 2s infinite;
  z-index: 1000;
  transition: opacity 0.4s ease;
  opacity: 1;
  pointer-events: none; /* prevents accidental hover/click */
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.scroll-down.hidden {
  opacity: 0;
}
.contact-section {
  padding: 150px 20px 80px;
  max-width: 600px;
  margin: auto;
  text-align: center;
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-family: 'Orbitron', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00eaff;
  background-color: #111;
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
}
/* Social Links Common Style */
.social-links {
  position: fixed;
  top: 20%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.social-links.left {
  left: 300px;
}

.social-links.right {
  right: 300px;
}

.social-links a {
  color: #00eaff;
  font-size: 100px;
  transition: transform 0.3s ease, color 0.3s ease;
  text-shadow: 0 0 5px #FF00C8, 0 0 10px #00eaff;
}

.social-links a:hover {
  color: #ffffff;
  transform: scale(1.3);
  text-shadow: 0 0 10px #FF00C8, 0 0 15px #00eaff;
}
.image-section {
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
    text-align: center;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.image-section img:hover {
    transform: scale(1.05);
}
.video-description {
  text-align: center;
  margin-bottom: 20px;
  color: #00faff;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #00faff;
}

.video-description h2 {
  margin: 0;
  font-size: 2rem;
}

.video-description p {
  margin: 10px 0 0;
  font-size: 1.1rem;
  color: #bffcff;
}
.video-section video {
  width: 80%;
  max-width: 800px;
  margin: 60px auto;
  display: block;
  border: 5px solid #00eaff;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 234, 255, 0.5);
  transform: rotateY(0deg);
  transition: transform 1s ease;
}
.video-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.video-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 120px;
  gap: 20px;
}

.video-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  position: relative;
  gap: 20px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.video-main {
  width: 600px;
  height: auto;
  border: 5px solid #00eaff;
  border-radius: 15px;
  box-shadow: 0 0 20px #00eaff;
  z-index: 2;
  transform: scale(1.05);
}

.video-preview {
  width: 200px;
  height: auto;
  opacity: 0.7;
  border-radius: 10px;
  transform: scale(0.9);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.prev-video {
  transform: translateX(-40px) rotateY(30deg);
}

.next-video {
  transform: translateX(40px) rotateY(-30deg);
}

.nav-button {
  position: absolute;
  z-index: -10; /* Make sure it's above the video */
  cursor: pointer;
}

.prev-video,
.next-video {
  position: relative;
  z-index: -1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prev-video:hover,
.next-video:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}
.video-description p {
  color: #0ff;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.video-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.thumbnail {
  width: 120px;
  height: 70px;
  border: 2px solid #aaa;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease;
}

.thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail:hover {
  transform: scale(1.05);
  border-color: #fff;
}

.thumbnail.active {
  border-color: #0ff;
}
.video-description {
  text-align: center;
  color: #fff;
  margin-top: 1rem;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}
.video-description {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.video-description.fade-out {
  opacity: 0;
}
body.about-page {
  background-color: #000;
  color: #eee;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.about-container {
  max-width: 700px;
  padding: 2rem;
}

.about-image img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0ff;
  box-shadow: 0 0 20px #FF00C8;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}

.about-subtitle {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.about-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
}
