:root {
  --navbar-height: 80px;
}


.hero-video {
  padding-top: var(--navbar-height);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Arial', sans-serif;
  background-color: #1e1e1e;
  color: #fff;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.page-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
}
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Navigation */
.navbar {
  position: fixed;
  display: flex;
  flex-direction: row;
  height: var(--navbar-height);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: rgba(0, 0, 0, 0.6);
  justify-content: space-evenly;
  align-items: center;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.nav-links li a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    font: bold 1.1rem Arial, sans-serif; /* Slightly larger and bolder font */
  }

/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  align-items: flex-end;
}

/* Logo Icon */
.logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Logo Text */
.logo-text {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  transition: all 10s ease-in-out;
  overflow: hidden;
  white-space: nowrap;
}

.green-letter {
  color: #00ff00;
}

/* Optional smooth fade for letters */
.logo-text span {
  transition: opacity 3s ease, transform 4s ease;
}


/* Hero Video */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding-top: var(--navbar-height);
}

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

/* Blur video when modal is open */
.hero-video.blurred video {
  filter: blur(8px);
  transition: filter 0.5s ease;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1rem;
}

.overlay-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn {
  bottom: 20px;
  left: 45%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 1px solid white;
  overflow: hidden;
  display: inline-block;
  transition: background 0.3s ease;
  z-index: 1;
}
.btn:hover {
  background: rgba(251, 251, 251, 0.998);
  color: #040404;
  box-shadow: 0 4px 20px rgba(255, 255, 0, 0.973);
}

/* Shine effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  animation: shine 7.5s infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  33.33% {
    left: 125%;
  }
  100% {
    left: 125%; /* hold position for remaining time */
  }
}

.btn-secondary {
  bottom: 20px;
  left: 45%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 1px solid white;
  overflow: hidden;
  display: inline-block;
  transition: background 0.3s ease;
  z-index: 1;
}
.btn-secondary:hover {
  background: rgba(251, 251, 251, 0.998);
  color: #040404;
  box-shadow: 0 4px 20px rgba(255, 255, 0, 0.973);
}

/* Modal Overlay */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: rgb(255 255 255 / 40%);
  color: #f9f7f7;
  padding: 2rem;
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

/* Project Cards inside Modal */


/* Footer */
.site-footer {
  flex:auto;
  background-color: #111;
  color: #ccc;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
}

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


.social-links {
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .overlay-text h2 {
    font-size: 1.5rem;
  }
   .hero-video {
    height: auto;
  }

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

  .overlay-text {
    top: 60%;
    transform: translate(-50%, -60%);
    padding: 0.5rem;
  }

  .overlay-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .nav-links {
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    display: none;
  }

  .nav-links li {
    margin: 1rem 0;
  }


  .modal-content {
    padding: 1rem;
  }

}
/* Blinking border animation */
@keyframes blinkBorder {
  0%   { border-color: black; }
  50%  { border-color: #ffffff; }
  100% { border-color: rgb(255, 255, 255); }
}

/* Apply blinking on hover */
.project-card:hover {
  animation: blinkBorder 1s infinite;
  border: 2px solid black; /* Ensures border exists */
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.617);
}
.exit-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgb(0, 0, 0);
  font-size: 2rem;
  cursor: pointer;
  z-index: 100;
  transition: color 0.3s ease, transform 0.3s ease;
}

.exit-btn:hover {
  color: #ff0000;
  transform: scale(1.2);
}

.unmute-wrapper {
  position: absolute;
  top: 120px; /* Adjust depending on header height */
  left: 10%;
  transform: translateX(-50%);
  z-index: 20;
}

.unmute-btn {
  background: rgb(255 255 255 / 7%);
  color: black;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.unmute-btn:hover {
  background: #2fff00aa;
}
.scene-container {
  padding-top: 100px; /* Adjust to match navbar height */
  display: flex;
  height: calc(100vh - 100px); /* Adjust height so it fits under navbar */
  flex-direction: row;
}

    .scene-left, .scene-right {
      flex: 1;
      padding: 2rem;
      box-sizing: border-box;
      overflow-y: auto;
    }

    .scene-left {
      background-color: rgb(30 30 30);
    }

    .scene-left h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .scene-left p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .experience-btn {
      padding: 0.75rem 2rem;
      font-size: 1rem;
      background-color: #b8b8b866;
      color: #fff;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      align-self: flex-start;
      transition: background 0.3s ease;
    }

    .experience-btn:hover {
      background-color: #5ab108;
    }

    .scene-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 2rem;
  background-color: rgb(255, 255, 255);
}

.gallery {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.gallery img {
  flex: 0 0 auto;
  width: 96%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  scroll-snap-align: start;
}


    @media (max-width: 768px) {
      .scene-container {
        flex-direction: column-reverse;
      }

      .scene-left, .scene-right {
        padding: 1.5rem;
      }

      .scene-left h1 {
        font-size: 2rem;
      }

      .experience-btn {
        width: 100%;
        text-align: center;
      }
    }
    .about-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 100px 20px 40px; /* Add top padding to clear navbar */
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
    }

    .about-section {
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    .green-letter {
    color: #00ff00; /* bright green — adjust as needed */
}
.team-section {
      margin-top: 60px;
      text-align: center;
    }

    .team-section h2 {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .team-grid {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .team-member {
      text-align: center;
      max-width: 290px;
    }

    .team-photo {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background-color: #ddd;
      background-size: cover;
      background-position: center;
      margin: 0 auto 15px;
    }

    .team-name {
      font-weight: bold;
      font-size: 18px;
    }

    .team-role {
      font-style: italic;
      color: #777;
      margin-bottom: 5px;
    }

.tools-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.tools-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.tool-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.tool-image {
  text-align: center;
}

.tool-image img {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

.tool-description {
  flex: 1;
}

.tool-description h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.tool-description p {
  font-size: 1rem;
  color: #c9c7c7;
}
@media (max-width: 600px) {
  .tool-item {
    flex-direction: column;
    text-align: center;
  }

  .tool-description {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 40;
  }

  .nav-links {
    position: absolute;
    top: var(--navbar-height);
    right: 0;
    background: rgb(22 21 21 / 97%);
    width: 50%;
    flex-direction: column;
    align-items: center;
    display: none;
  }
  .nav-links li a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    font: bold 1.1rem Arial, sans-serif; /* Slightly larger and bolder font */
  }

  .nav-links.active {
    display: flex;
  }

}
.nav-links li {
  text-align: center;
  padding: 1rem 0;
}

.contact-container {
  max-width: 1600px;
  margin: 100px 20px 40px;
  padding: 20px;
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #444;
  background-color: #222;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00ff00;
  outline: none;
}

.contact-form .btn {
  align-self: flex-start;
  border: none;
  background-color: #00ff00;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.contact-form .btn:hover {
  background-color: #5ab108;
}


.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
}

.auth-box {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.auth-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.auth-tabs button {
  flex: 1;
  padding: 0.75rem;
  background: transparent;
  border: none;
  color: #ccc;
  font-weight: bold;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.auth-tabs button.active {
  border-bottom: 2px solid #00ff00;
  color: #fff;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form input {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
}

.auth-form .btn {
  background: #00ff00;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.auth-form .btn:hover {
  background: #5ab108;
}

.divider {
  text-align: center;
  margin: 1.5rem 0;
  color: #aaa;
}

.sso-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sso-btn {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.sso-btn.google {
  background: #fff;
  color: #000;
}

.sso-btn.apple {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  .auth-box {
    padding: 1.5rem;
  }
}
.error-label {
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
  display: block;
}

.hidden {
  display: none;
}
.dashboard-container {
      display: flex;
      gap: 2rem;
      padding-top: var(--navbar-height);
    }

    .sidebar {
      background-color: #1e1e2f;
      padding: 2rem 1rem;
      border-radius: 1rem;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
    }

    .sidebar img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
    }

    .sidebar h2 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .sidebar a {
      display: block;
      margin-top: 1rem;
      color: #ffffff;
      text-decoration: none;
    }

    .content {
      flex: 1;
    }

    .scene-section {
      margin-bottom: 2rem;
    }

    .scene-section h3 {
      margin-bottom: 1rem;
    }

    .scene-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    a.tool-link {
      color: inherit;
      text-decoration: none;
    }


    .scene-item {
      width: 180px;
      background-color: (255, 208, 9, 0.66);
      padding: 1rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
    }

    .scene-item img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      margin-bottom: 0.5rem;
      border-radius: 4px;
    }
   
.close-button {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}
.btn.danger {
  background-color: #e63946;
  color: white;
}
.settings-container {
      max-width: 600px;
      margin: 2rem auto;
      padding: 2rem;
      background: #2a2a2a;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .settings-container h2 {
      margin-bottom: 1rem;
    }

    .settings-container label {
      display: block;
      margin-top: 1rem;
    }

    .settings-container input {
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.25rem;
    }

    .actions {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .actions button {
      padding: 0.75rem;
    }

    .delete-button {
      background-color: #e53935;
      color: white;
    }
    .update-button {
      background-color: #0a8408;
      color: white;
    }
    .back-button {
      position: relative;
      top: 5px;
      left: px;
      text-decoration: none;
      background-color: #efefee;
      color: black;
      padding: 8px 12px;
      border-radius: 5px;
      font-size: 0.9rem;
    }

    .back-button:hover {
      background-color: #01f933ca;
      color: black;
    }
    .upload-label {
      display: inline-block;
      margin-top: 1rem;
      padding: 10px 16px;
      background-color: #0d6efd;
      color: white;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.95rem;
      transition: background-color 0.3s ease;
  }

.upload-label:hover {
  background-color: #0b5ed7;
}

.hidden-file-input {
  display: none;
}
.contact-button-container {
  text-align: center;
  margin: 2rem 0;
}

.contact-btn {
  padding: 12px 28px;
  background-color: #007bff;
  color: white;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .dashboard-container {
    padding-top: var(--navbar-height);
    flex-direction: column;
    gap: 1rem;
  }

  .sidebar {
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
  }

  .sidebar img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .sidebar h2 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .sidebar a {
    margin-top: 0.75rem;
    font-size: 0.95rem;
  }
}
.heart-button {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  transition: transform 0.2s ease, color 0.3s ease;
}

.heart-button.active {
  color: red;
  transform: scale(1.2);
}

.heart-button:hover {
  transform: scale(1.1);
  color: red;
}
.cart-container{
  padding-top: var(--navbar-height);
}