/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


















/* Navigation Bar Container */
.nav-bar {
  display: flex;
  justify-content: space-between; /* Space between the home icon and the nav items */
  align-items: center;
  height: 60px;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  overflow: hidden; /* Prevent blur from extending outside of the nav bar */
  position: relative; /* Ensure the pseudo-element is positioned relative to the nav-bar */
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.8); /* Drop shadow applied */
}

/* Home Icon */
.home-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: pulseGlow 2s infinite alternate;
  
  /* Add stroke and glow using multiple drop-shadow layers */
  filter: drop-shadow(0 0 3px rgb(0, 0, 0)) /* Stroke effect */
          drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) /* Initial glow */
          drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); /* Additional glow */
}

/* Home Icon Hover Effect */
.home-icon:hover img {
  transform: scale(1.1); /* Slightly expand the icon on hover */
  animation: none; /* Stop pulsing and maintain glow on hover */
  
  /* Stronger stroke and glow on hover */
  filter: drop-shadow(0 0 3px rgb(0, 0, 0)) /* Stroke effect */
          drop-shadow(0 0 20px rgba(255, 255, 255, 1)) /* Stronger glow */
          drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)); /* Stronger glow */
}

/* Blurred Background Image */
.nav-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/1.jpg'); /* Your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px); /* Apply blur to the background image */
  z-index: -1; /* Ensures the background stays behind the content */
  pointer-events: none; /* Prevents interaction with the pseudo-element */
}



/* Navigation Items Container */
.nav-items-container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}






/* Navigation Links */
.nav-item {
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 18px;
  position: relative;
  padding: 20px 67px;
  z-index: 1;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out; /* Added transform for smooth scaling */
  overflow: hidden; /* Ensures the rhombus stays within the item */

    /* Glowing Pulse Effect */
    animation: pulseGlow 2s infinite alternate;
  }



/* Apply glow and hover effects to the hamburger icon */
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease; /* Same transition as the main icon */
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  animation: pulseGlow 2s infinite alternate; /* Pulse animation */
}


/* Responsive Styles - Mobile Navigation */
@media (max-width: 850px) {
  .nav-bar {
    height: auto; /* Let the nav bar height adjust dynamically for the hamburger menu */
    padding: 30px 20px;
  }

  .video-container {
    margin-top: auto; /* Removes the fixed margin for mobile */
  }
  /* Adjust the layout when the hamburger menu is active */
  .hamburger-active .video-container {
    margin-top: 50px; /* Locks the video underneath the expanded nav bar */
  }
  /* Hide the home icon on mobile */
  .home-icon {
    display: none;
  }

/* Hamburger Icon */
.hamburger {
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;  /* Vertically center it */
  transform: translateY(-50%); /* Ensure perfect centering */
  font-size: 30px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  animation: pulseGlow 2s infinite alternate;
  z-index: 11;
}

  /* Full-screen navigation menu */
  .nav-items-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: -100%; /* Start off-screen */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Full-screen background */
    justify-content: center;
    z-index: 9;
    overflow-y: auto;
    opacity: 0; /* Start transparent */
    transition: all 0.5s ease; /* Smooth transition for slide and fade */
  }

  .nav-items-container.active {
    top: 0; /* Slide down */
    opacity: 1; /* Fade in */
  }

  .nav-item {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 24px; /* Larger font size */
  }
}

body {
  padding-top: 100px; /* Ensure the content starts below the fixed nav bar */
}


/* Video Container */
.video-container {
  position: relative;
  width: 100vw;
  padding-bottom: 56.25%; /* Aspect ratio for 16:9 (height = 9/16 * width) */
  overflow: hidden;
}

/* Vignette Effect using ::after */
.video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Ensures the vignette doesn't interfere with interaction */
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 4; /* Make sure the vignette is above the video but below other elements */
}


/* Video Element */
video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio while covering the container */
  pointer-events: none;
  filter: grayscale(100%);
}

/* Logo Overlay */
.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.logo-overlay img {
  width: 75%; /* Set width as a percentage to make it responsive */
  height: auto;
}




/* Banner Container */
.banner {
  width: 100%;
  background-color: #333; /* Dark gray background */
  padding: 50px 20px; /* Padding for spacing */
  text-align: center; /* Center the text */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Drop shadow */
  margin-top: 0; /* Ensure it stays directly below the video */
}

/* Banner Text with Glow and Pulse */
.banner-text {
  color: white;
  font-size: 3em; /* Adjust size as needed */
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
  animation: pulseGlow 2s infinite alternate; /* Glowing Pulse Effect */
}

/* Keyframes for the glowing pulse effect */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8);
  }
}






/* Rhombus Shape with Drop Shadow on Hover */
.nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.4); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Apply blur to the background behind the rhombus */
  transform: translate(-50%, -50%) rotate(25deg); /* Rotates a square to make it a rhombus */
  transition: width 0.1s ease-in-out, height 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Drop shadow applied */
  z-index: -1;
}

/* Hover Effect: Expand the rhombus, change text color, and enhance shadow */
.nav-item:hover::before {
  width: 140px; /* Controls the size of the rhombus */
  height: 140px;
  box-shadow: 0 60px 12px rgba(0, 0, 0, 0.4); /* Increase shadow on hover */
}

.nav-item:hover {
  color: rgb(255, 255, 255);
  transform: scale(1.1); /* Expand the text slightly on hover */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Keyframes for the glowing pulse */
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8);
  }
}

/* Ensure content below the nav bar isn't hidden behind it */
body {
  padding-top: 0px; /* Adjust to account for the height of the fixed nav bar */
}

body {
  /* Create a gradient background that resembles waves */
  background: linear-gradient(135deg, #353535, #1c1c1c) no-repeat,
              linear-gradient(45deg, #3a3a3a, #262626) no-repeat,
              linear-gradient(225deg, #5c5c5c, #2d2d2d) no-repeat,
              linear-gradient(315deg, #484848, #000000) no-repeat;
  background-size: 400% 400%;
  animation: gradient-wave 5s ease infinite;
  height: 100vh; /* Ensures the background covers the full viewport height */
}

/* Animation to slowly move the gradient for a dynamic effect */
@keyframes gradient-wave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Services Section */
.services-section {
  background-color: #1a1a1a;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

/* Title and Description */
.services-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
}

.services-description {
  font-size: 1.2em;
  margin-bottom: 50px;
  color: #ccc;
  font-family: 'Arial', sans-serif;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Services Grid */
.services-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Service Card */
.service-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

/* Service Icon */
.service-icon {
  width: 80px;
  margin-bottom: 20px;
}

/* Service Title */
.service-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

/* Service Description */
.service-description {
  font-size: 1em;
  color: #aaa;
}

/* Subtle Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: slideIn 0.5s ease forwards;
}



/* Audio Player Styling */
.audio-player {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Audio Controls */
.audio-controls {
  display: flex;
  gap: 15px;
}

.audio-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.audio-btn:hover {
  transform: scale(1.2);
}

/* Audio Info */
.audio-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-left: 20px;
}

#audio-element {
  display: none;
}

#track-title {
  margin-bottom: 5px;
  font-size: 1.1em;
  color: #ccc;
}

/* Progress Bar */
#progress-bar {
  width: 100%;
  appearance: none;
  height: 4px;
  background: #444;
  cursor: pointer;
}

#progress-bar::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
























