/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
html {
    scroll-behavior: smooth;
  }

body {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
/* Hero Section Styling */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Header Container for Logo and Navigation */
  .header-container {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 10;
  }
  
  /* Logo Styling */
  #logo {
    width: 50px;
    height: auto;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px aqua);
  }
  
  /* Navigation Menu Styling */
  #nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    
  }
  
  #nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s, text-shadow 0.3s;
  }
  
  #nav-menu ul li a:hover {
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
  }
  
  /* Background Video Styling */
  #background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(1.2);
  }
  
  /* VFX Overlay */
  .vfx-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
  
  /* Content Styling */
  .content {
    position: relative;
    z-index: 1;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }
  
  .glitch {
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
  }
  
  /* Explore Button Styling */
  #explore-btn {
    margin-top: 20px;
    padding: 10px 30px;
    background: #0f0;
    color: #111;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  #explore-btn:hover {
    background: #0c0;
  }
  

.vfx-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    animation: flicker 2s infinite;
}

.glitch {
    animation: glitch 1.5s infinite;
}

button {
    padding: 10px 20px;
    border: 2px solid #0f0;
    background: transparent;
    color: #0f0;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0f0;
    color: #000;
}

/* Section Styles */
.section {
    padding: 80px 20px;
    text-align: center;
}

/* VFX and Animations */
@keyframes glitch {
    0% { color: #fff; }
    20% { color: #f00; transform: translateX(-5px); }
    40% { color: #0f0; transform: translateX(5px); }
    60% { color: #00f; }
    80% { color: #fff; }
}

@keyframes flicker {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

/*Services section*/
/* Services Section Styling */
#services {
    padding: 60px 20px;
    background: #111;
    color: #fff;
    text-align: center;
  }
  
  #services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
  }
  
  /* Card Container Styling */
  .card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* Card Styling */
  .card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #0f0;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
  }
  
  /* Card Hover Effects */
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 255, 0, 0.6);
  }
  
  /* Icon Styling */
  .card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    animation: glow 1.5s infinite alternate;
  }
  
  /* Card Text Styling */
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 5px #0f0;
  }
  
  .card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Animation for Icon Glow */
  @keyframes glow {
    from {
      text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
    }
    to {
      text-shadow: 0 0 20px #0f0, 0 0 30px #0f0, 0 0 40px #0f0;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .card-container {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      max-width: 90%;
    }
  }
  
  /* About Section */
  /* About Us Section Styling */
#about {
    padding: 60px 20px;
    background: #111;
    color: #fff;
    text-align: center;
  }
  
  #about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
  }
  
  /* About Container */
  .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* About Text Styling */
  .about-text {
    max-width: 600px;
    text-align: left;
    line-height: 1.6;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
  }
  
  .about-text p {
    margin-bottom: 20px;
    color: #aaa;
  }
  
  .about-text ul {
    list-style: none;
    padding: 0;
  }
  
  .about-text ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #0f0;
    display: flex;
    align-items: center;
  }
  
  .about-text ul li::before {
    content: "✨";
    margin-right: 10px;
    color: #0c0;
  }
  
  /* About Image Styling */
  .about-image {
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #0f0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      align-items: center;
    }
  
    .about-text {
      text-align: center;
    }
  }


/*CSS for VFX*/
canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none; /* Ensures canvas does not block interactions */
}

/* Gallery Section Styling */
#gallery {
    padding: 50px 20px;
    text-align: center;
    background: #111;
    color: #fff;
}

#gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
}

/* Gallery Container */
.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

/* Gallery Image Styling */
.gallery-image {
    width: 45%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s, filter 0.3s;
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.4);
}

/* Hover Effect for Images */
.gallery-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-image {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        width: 100%;
    }
}

/* Contact Us Section Styling */
#contact {
    padding: 60px 20px;
    background: #111;
    color: #fff;
    text-align: center;
  }
  
  #contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
  }
  
  /* Contact Container */
  .contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  /* Contact Form Styling */
  #contact-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #0f0;
    background: transparent;
    color: #fff;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
  }
  
  #contact-form input:focus,
  #contact-form textarea:focus {
    border-color: #0c0;
    box-shadow: 0 0 10px #0f0;
  }
  
  /* Send Button Styling */
  .send-btn {
    padding: 15px;
    background: #0f0;
    color: #111;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .send-btn:hover {
    background: #0c0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
  }
  
  /* Contact Info Styling */
  .contact-info {
    max-width: 400px;
    text-align: left;
    color: #fff;
  }
  
  .contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
  }
  
  .contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #aaa;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }
  }
  
/* Footer Styling */
/* Footer Styling */
#footer {
  background: #111;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

#footer h3 {
  color: #0f0;
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #0f0;
}

#footer p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #0f0;
}

/* Social Icons Styling */
.social-icons {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
}

.social-icons li {
  display: inline-block;
}

.social-icons a {
  color: #0f0;
  font-size: 2rem;
  transition: transform 0.3s, text-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.social-icons a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
}

/* Icon Animation */
@keyframes glowEffect {
  0% {
    box-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
  }
  100% {
    box-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0;
  }
}

.social-icons a:hover {
  animation: glowEffect 0.8s infinite alternate;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .social-icons {
    gap: 15px;
  }

  .social-icons a {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
  }
}






/* Hamburger Menu Styling */
#hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 20;
}

#hamburger-menu span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}

/* Mobile View Styling */
@media (max-width: 768px) {
  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 200px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s;
  }

  #nav-menu ul {
    flex-direction: column;
    gap: 30px;
  }

  #hamburger-menu {
    display: flex;
  }

  /* Toggle Animation */
  #hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  #hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  #nav-menu.active {
    right: 0;
  }
}
