:root {
  --primary: #00ffae;
  --bg: #101820;
  --surface: #1e2a38;
  --text: #f4f4f4;
  --accent: #2e8fff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --font-heading: "Orbitron", sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.logo svg {
  vertical-align: middle;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1.1rem;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary);
  outline: none;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 70vh;
  padding: 3rem 2rem 2rem 2rem;
  background: linear-gradient(120deg, var(--surface) 60%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1 1 350px;
  z-index: 1;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  color: var(--text);
  letter-spacing: 1px;
}

.hero-content .highlight {
  color: var(--primary);
  font-size: 1.2em;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #d0f7ee;
}

.cta-btn {
  background: var(--primary);
  color: var(--surface);
  border: none;
  padding: 0.9em 2em;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  outline: none;
}

.cta-btn:hover,
.cta-btn:focus {
  background: var(--accent);
  color: var(--text);
  transform: translateY(-2px) scale(1.04);
}

.hero-animation {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  z-index: 0;
}

.about-section,
.services-section,
.contact-section {
  padding: 4rem 2rem 3rem 2rem;
  background: var(--bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-section h2,
.services-section h2,
.contact-section h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.about-section p {
  max-width: 700px;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  margin: 2rem auto 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  outline: none;
}

.service-card:focus,
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 255, 174, 0.18);
  border: 1.5px solid var(--primary);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  border: 2px solid var(--primary);
}

.service-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0.5rem 0 0.7rem 0;
  font-size: 1.3rem;
}

.service-card p {
  color: #b2e7d6;
  font-size: 1rem;
}

/* Redesigned Services Section */
.services-grid-alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

.service-card-alt {
  background: linear-gradient(120deg, var(--surface) 80%, var(--bg) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  cursor: pointer;
  outline: none;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card-alt:focus,
.service-card-alt:hover {
  transform: translateY(-10px) scale(1.04) rotate(-1deg);
  box-shadow: 0 12px 36px rgba(0, 255, 174, 0.13),
    0 2px 8px rgba(46, 143, 255, 0.08);
  border: 1.5px solid var(--primary);
  background: linear-gradient(120deg, var(--surface) 60%, var(--accent) 100%);
}

.service-icon {
  margin-bottom: 1.3rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-alt h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0.4rem 0 0.7rem 0;
  font-size: 1.22rem;
  letter-spacing: 0.5px;
}

.service-card-alt p {
  color: #b2e7d6;
  font-size: 1.01rem;
  text-align: center;
  margin: 0;
}

.contact-flex {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-info {
  flex: 1 1 320px;
  min-width: 260px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.contact-address-block h3 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.contact-address-block address {
  font-style: normal;
  color: #b2e7d6;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.contact-details p {
  margin: 0.2rem 0;
  color: #d0f7ee;
  font-size: 1.04rem;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.18s;
}

.contact-details a:hover,
.contact-details a:focus {
  color: var(--accent);
  text-decoration: underline;
}

.contact-map {
  margin-top: 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 255, 174, 0.09);
}

.contact-form-block {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 0;
  max-width: 100%;
}

.contact-form h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  margin-top: 0;
}

.contact-form label {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.05rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7em;
  border-radius: 8px;
  border: 1.5px solid #2e8fff;
  font-size: 1rem;
  background: #16202b;
  color: var(--text);
  font-family: var(--font-body);
  outline: none;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary);
}

footer {
  background: var(--surface);
  color: #b2e7d6;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 2rem;
}

.footer-unique {
  background: linear-gradient(120deg, #1e2a38 80%, #101820 100%);
  color: #eafff8;
  position: relative;
  margin-top: 0;
  padding: 0;
  font-family: var(--font-body);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.13);
}

.footer-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.2rem 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo svg {
  vertical-align: middle;
  margin-bottom: 0.2rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.footer-tagline {
  font-size: 1.1rem;
  color: #b2e7d6;
  margin-bottom: 0.7rem;
}

.footer-links {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}

.footer-links nav {
  display: flex;
  gap: 1.5rem;
}

.footer-links nav a {
  color: #eafff8;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
}

.footer-links nav a:hover,
.footer-links nav a:focus {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.footer-social a svg {
  vertical-align: middle;
  transition: transform 0.18s;
}

.footer-social a:hover svg,
.footer-social a:focus svg {
  transform: scale(1.18) rotate(-8deg);
  filter: drop-shadow(0 0 4px #00ffae88);
}

.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: #b2e7d6;
  padding: 1rem 0 0.7rem 0;
  border-top: 1px solid #2e8fff22;
  background: transparent;
  letter-spacing: 0.5px;
}

/* New Futuristic Footer Styles */
.footer-futuristic {
  position: relative;
  background: linear-gradient(120deg, #101820 80%, #1e2a38 100%);
  color: #eafff8;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  font-family: var(--font-body);
  border-top: 0;
}
.footer-bg-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 600px;
  height: 300px;
  background: radial-gradient(
    circle at 50% 0%,
    #00ffae55 0%,
    #2e8fff11 80%,
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
.footer-content-futuristic {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 1.2rem 2rem;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  gap: 0.7rem;
}
.footer-col-logo {
  flex: 1 1 220px;
  align-items: flex-start;
}
.footer-logo-cube svg {
  filter: drop-shadow(0 0 16px #00ffae44);
  margin-bottom: 0.2rem;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-title-futuristic {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
  letter-spacing: 1.5px;
}
.footer-chip {
  display: inline-block;
  background: #2e8fff22;
  color: #00ffae;
  font-size: 0.85rem;
  padding: 0.18em 0.8em;
  border-radius: 1em;
  letter-spacing: 1.2px;
  margin-top: 0.2em;
  font-family: var(--font-heading);
}
.footer-col-nav {
  flex: 1 1 220px;
  align-items: flex-end;
  gap: 1.2rem;
}
.footer-col-nav nav {
  display: flex;
  gap: 1.5rem;
}
.footer-col-nav nav a {
  color: #eafff8;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
  letter-spacing: 0.5px;
  position: relative;
}
.footer-col-nav nav a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.footer-col-nav nav a:hover,
.footer-col-nav nav a:focus {
  color: var(--primary);
}
.footer-col-nav nav a:hover:after,
.footer-col-nav nav a:focus:after {
  width: 100%;
}
.footer-social-futuristic {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.7rem;
}
.footer-social-futuristic a svg {
  vertical-align: middle;
  transition: transform 0.18s, filter 0.18s;
}
.footer-social-futuristic a:hover svg,
.footer-social-futuristic a:focus svg {
  transform: scale(1.18) rotate(-8deg);
  filter: drop-shadow(0 0 6px #00ffae88);
}
.footer-col-qr {
  flex: 1 1 120px;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-qr-label {
  font-size: 0.95rem;
  color: #b2e7d6;
  margin-bottom: 0.3em;
  letter-spacing: 1px;
}
.footer-qr img {
  border-radius: 12px;
  border: 2px solid #00ffae44;
  box-shadow: 0 0 12px #00ffae22;
  background: #16202b;
}
.footer-bottom-futuristic {
  text-align: center;
  font-size: 1rem;
  color: #b2e7d6;
  padding: 1.1rem 0 0.7rem 0;
  background: transparent;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}
.footer-glow-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #00ffae 60%, #2e8fff 100%);
  border-radius: 50%;
  margin-right: 0.5em;
  vertical-align: middle;
  box-shadow: 0 0 8px #00ffae88;
}
.footer-location {
  color: #00ffae;
  font-weight: 500;
  letter-spacing: 1px;
}
.footer-circuit {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-links {
    align-items: center;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
}

/* Why Us Section */
.why-us-section {
  background: linear-gradient(120deg, #1e2a38 60%, #101820 100%);
  padding: 4rem 2rem 3rem 2rem;
}
.why-us-section h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2.1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 300px;
  min-width: 200px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 255, 174, 0.18);
  border: 1.5px solid var(--primary);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
  color: var(--primary);
}

/* Case Studies Section */
.case-studies-section {
  background: var(--bg);
  padding: 4rem 2rem 3rem 2rem;
}
.case-studies-section h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2.1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.case-studies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.case-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  flex: 1 1 320px;
  max-width: 340px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.case-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(46, 143, 255, 0.18);
  border: 1.5px solid var(--accent);
}
.case-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 2px solid var(--primary);
}
.case-content {
  padding: 1.2rem 1rem;
}
.case-content h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.15rem;
  margin: 0 0 0.7rem 0;
}
.case-content p {
  color: #b2e7d6;
  font-size: 1rem;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(120deg, #101820 80%, #1e2a38 100%);
  padding: 4rem 2rem 3rem 2rem;
}
.faq-section h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2.1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.2rem 0.7rem 1.2rem;
  transition: box-shadow 0.18s;
}
.faq-question {
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.faq-question[aria-expanded="true"] {
  color: var(--accent);
}
.faq-answer {
  color: #b2e7d6;
  font-size: 1rem;
  display: none;
  margin-bottom: 0.2rem;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}
.faq-item:focus-within,
.faq-item:hover {
  box-shadow: 0 8px 32px rgba(0, 255, 174, 0.13);
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .why-us-grid,
  .case-studies-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .why-card,
  .case-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem;
  }
  .faq-section,
  .case-studies-section,
  .why-us-section {
    padding: 2.2rem 0.7rem 1.5rem 0.7rem;
  }
}

/* Custom Cursor */
body,
button,
a,
.service-card {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  background: radial-gradient(
    circle at 60% 40%,
    #00ffae 0%,
    #2e8fff 80%,
    transparent 100%
  );
  box-shadow: 0 0 16px 4px #00ffae55, 0 0 0 2px #2e8fff55;
  border: 2.5px solid #00ffae;
  transition: transform 0.13s cubic-bezier(0.4, 2, 0.6, 1), background 0.2s,
    box-shadow 0.2s, border-color 0.2s;
  mix-blend-mode: lighten;
  opacity: 0.93;
}

#custom-cursor.active {
  transform: scale(1.5) rotate(-8deg);
  background: radial-gradient(
    circle at 40% 60%,
    #2e8fff 0%,
    #00ffae 70%,
    transparent 100%
  );
  box-shadow: 0 0 32px 8px #2e8fff88, 0 0 0 4px #00ffae55;
  border-color: #2e8fff;
  opacity: 1;
}

/* Accessibility: Focus outlines */
a:focus,
button:focus,
.service-card:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.about-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-main {
  flex: 2 1 340px;
  min-width: 260px;
}

.about-side {
  flex: 1 1 320px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.about-mission,
.about-values,
.about-team-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.2rem 1.1rem 1.2rem;
  margin: 1.2rem 0;
  transition: box-shadow 0.18s;
}

.about-mission:hover,
.about-values:hover,
.about-team-card:hover {
  box-shadow: 0 8px 32px rgba(0, 255, 174, 0.13);
}

.about-mission h3,
.about-values h3,
.about-team-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-icon {
  font-size: 1.3em;
  vertical-align: middle;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  margin-bottom: 0.6rem;
  padding-left: 1.2em;
  position: relative;
  color: #b2e7d6;
  font-size: 1.05rem;
}

.values-list li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0;
}

.about-team-card {
  margin-top: 1.5rem;
  text-align: center;
}

.about-team-card p {
  color: #d0f7ee;
  font-size: 1rem;
}

/* Hide old services grid/cards */
.services-grid,
.service-card {
  display: none !important;
}

/* New Navbar Styles */
.navbar-glass {
  background: rgba(30, 42, 56, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid #00ffae22;
  box-shadow: 0 2px 16px #00ffae11;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.2s;
}
.navbar-glass .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.navbar-glass .logo svg {
  vertical-align: middle;
}
.navbar-glass .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
  transition: right 0.3s;
}
.navbar-glass .nav-links li {
  display: flex;
  align-items: center;
}
.navbar-glass .nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.2s;
  position: relative;
}
.navbar-glass .nav-links a:hover,
.navbar-glass .nav-links a:focus {
  color: var(--primary);
  outline: none;
}
.navbar-glass .nav-links .nav-icon {
  font-size: 1.1em;
  vertical-align: middle;
}
.navbar-glass .nav-links svg {
  vertical-align: middle;
  margin-left: 0.1em;
}
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 36px;
  height: 36px;
  margin-left: 1.2rem;
}
.nav-toggle-label span {
  display: block;
  height: 4px;
  width: 28px;
  background: var(--primary);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 900px) {
  .navbar-glass .nav-links {
    position: fixed;
    right: -100vw;
    top: 64px;
    flex-direction: column;
    background: rgba(30, 42, 56, 0.98);
    width: 220px;
    height: calc(100vh - 64px);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px #00ffae22;
    transition: right 0.3s;
    z-index: 200;
  }
  .nav-toggle:checked ~ .nav-links {
    right: 0;
  }
  .nav-toggle-label {
    display: flex;
  }
}
@media (max-width: 600px) {
  .navbar-glass {
    flex-direction: column;
    gap: 1rem;
    padding: 0.7rem 1rem;
  }
}
