* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  font-family: "Fauna One", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #0e0e0e;
  margin: 0%;
  padding: 0%;
  min-height: 100vh;
  
}
.section{
  background-color: #11111101 , transparent;
  backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    user-select: none;
}
.main-navbar {
  background: rgba(0, 1, 20, 0.8);
  position: fixed;
  align-items: center;
  top: -10px;
  padding-bottom: 10px;
  width: 100%;
  z-index:1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 30px rgba(0, 183, 202, 0.3);
}

.main-nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  margin-top: 1%;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}

.main-logo {
  letter-spacing: 2px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-logo:hover {
  /* color: #00d4ff; */
  color: #fff;
  text-shadow: 2px 2px 15px rgba(0, 165, 191, 0.9),
    0 0 8px rgba(0, 165, 191, 0.9),
    0 0 5px rgba(0, 165, 191, 0.7),
    0 0 1px rgba(0, 165, 191, 0.2);
}

.primary-nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.primary-nav-item {
  position: relative;
}

.primary-nav-link {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.primary-nav-link:hover {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
}

.main-dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.primary-nav-item.menu-active .main-dropdown-arrow {
  transform: rotate(180deg);
}

.main-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.main-dropdown-menu.menu-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-dropdown-item {
  position: relative;
}

.main-dropdown-link {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #333;
}

.main-dropdown-link:hover {
  background: #222;
  color: #00d4ff;
  padding-left: 25px;
}

.main-dropdown-item:last-child .main-dropdown-link {
  border-bottom: none;
}

.main-sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  background: #111;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.main-sub-dropdown.menu-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.primary-contact-btn {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.primary-contact-btn:hover {
  color: #ccf8ff;
  background: none;
  border: 2px solid #0099cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.mobile-contact-item {
  display: none;
}

.mobile-contact-link {
  color: #00d4ff !important;
  font-weight: 600;
}

.mobile-contact-link:hover {
  color: #fff !important;
  background: linear-gradient(45deg, #00d4ff, #0099cc) !important;
  border-radius: 5px;
}

.main-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.main-hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.main-hamburger.menu-active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.main-hamburger.menu-active span:nth-child(2) {
  opacity: 0;
}

.main-hamburger.menu-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .main-hamburger {
    display: flex;
  }

  .desktop-contact-btn {
    display: none;
  }

  .mobile-contact-item {
    display: block;
  }

  .primary-nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;
    flex-direction: column;
    /* justify-content: flex-start; */
    align-items: flex-start;
    padding-top: 20px;
    gap: 0;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .primary-nav-menu.menu-active {
    left: 0;
  }

  .primary-nav-item {
    width: 100%;
    border-bottom: 1px solid #333;
  }

  .primary-nav-link {
    width: 100%;
    padding: 18px 20px;
    justify-content: space-between;
    text-align: left;
    display: flex;
    align-items: center;
  }

  .main-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #111;
    border-radius: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease-out;
  }

  .main-dropdown-menu.menu-active {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
  }

  .main-dropdown-item {
    border-bottom: 1px solid #444;
  }

  .main-dropdown-item:last-child {
    border-bottom: none;
  }

  .main-dropdown-link {
    padding: 15px 30px;
    border-bottom: none;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-dropdown-link:hover {
    background: #222;
    padding-left: 35px;
  }

  .main-sub-dropdown {
    position: static;
    width: 100%;
    background: #222;
    box-shadow: none;
    border-radius: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease-out;
  }

  .main-sub-dropdown.menu-active {
    max-height: 300px;
    transition: max-height 0.3s ease-in;
  }

  .main-sub-dropdown .main-dropdown-link {
    padding: 12px 50px;
    background: #222;
    border-bottom: 1px solid #333;
  }

  .main-sub-dropdown .main-dropdown-link:hover {
    background: #333;
    padding-left: 55px;
  }

  .main-sub-dropdown .main-dropdown-item:last-child .main-dropdown-link {
    border-bottom: none;
  }

  .main-logo {
    font-size: 1.5rem;
  }

  /* Mobile dropdown indicators */
  .main-dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: auto;
  }

  .main-dropdown-parent.menu-active .main-dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Add mobile indicators for sub-dropdowns */
  .main-sub-dropdown-toggle::after {
    content: "▼";
    font-size: 0.8rem;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .main-sub-dropdown-parent.menu-active .main-sub-dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Demo content */
.demo-content {
  margin-top: 100px;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.demo-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #00d4ff;
}

.demo-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
