* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
  .nav-actions {
    display: none !important;
  }
  .nav-menu {
    display: flex !important;
  }
  .mobile-nav-extras {
    display: none;
  }
  .menu-toggle:checked ~ .nav-menu {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle:checked ~ .nav-menu .mobile-nav-extras {
    display: block;
  }
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 50%, #2d1b4e 100%);
  background-attachment: fixed;
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(155, 138, 251, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo a {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  background: linear-gradient(135deg, #9b8afb 0%, #c9b3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(155, 138, 251, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(155, 138, 251, 0.8));
  }
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #9b8afb;
  border-radius: 3px;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding: 5px 0;
}

.mobile-nav-extras {
  display: none;
  width: 100%;
  padding-top: 8px;
  border-top: 1px solid rgba(155, 138, 251, 0.06);
}

.mobile-nav-extras .search-container {
  width: 100%;
}

.mobile-nav-extras .cta-buttons {
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.mobile-nav-extras .cta-buttons .btn {
  flex: 1;
  width: auto;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #9b8afb;
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: #9b8afb;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  background: rgba(155, 138, 251, 0.1);
  border: 1px solid rgba(155, 138, 251, 0.3);
  border-radius: 20px;
  padding: 8px 40px 8px 15px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s;
  width: 200px;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
  border-color: #9b8afb;
  box-shadow: 0 0 15px rgba(155, 138, 251, 0.3);
  width: 250px;
}

.search-btn {
  position: absolute;
  right: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
}

.search-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s;
}

.search-btn:hover img {
  opacity: 1;
  transform: scale(1.1) rotate(90deg);
}

.cta-buttons {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-actions {
    display: none !important;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 18px 16px;
    border-top: 1px solid rgba(155, 138, 251, 0.2);
    transform: translateY(-10px) scaleY(0);
    transform-origin: top center;
    transition: transform 0.28s ease, opacity 0.28s ease;
    opacity: 0;
    pointer-events: none;
    gap: 12px;
  }
  .menu-toggle:checked ~ .nav-menu {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle:checked ~ .nav-menu .mobile-nav-extras {
    display: block;
  }
}
.btn {
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(155, 138, 251, 0.5);
  color: #ffffff;
}

.btn-secondary:hover {
  border-color: #9b8afb;
  background: rgba(155, 138, 251, 0.1);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #9b8afb 0%, #7a68d6 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(155, 138, 251, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(155, 138, 251, 0.5);
}

/* About Hero */
.about-hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(155, 138, 251, 0.2) 0%,
    transparent 70%
  );
  animation: pulseHero 6s ease-in-out infinite;
}

@keyframes pulseHero {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(155, 138, 251, 0.05) 0%,
    rgba(201, 179, 255, 0.05) 25%,
    rgba(155, 138, 251, 0.05) 50%,
    rgba(122, 104, 214, 0.05) 75%,
    rgba(155, 138, 251, 0.05) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #9b8afb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-content p {
  font-size: 1.3rem;
  color: #b8b8b8;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #9b8afb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: #b8b8b8;
  font-size: 1.1rem;
}

/* Our Story Section */
.about-story {
  padding: 100px 0;
  position: relative;
}

.about-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(155, 138, 251, 0.5),
    transparent
  );
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  border: 2px solid rgba(155, 138, 251, 0.3);
  box-shadow: 0 30px 80px rgba(155, 138, 251, 0.3);
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.about-content {
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #9b8afb;
}

.about-content p {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* Values Section */
.about-values {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(155, 138, 251, 0.05) 50%,
    transparent 100%
  );
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.value-card {
  background: rgba(155, 138, 251, 0.05);
  border: 1px solid rgba(155, 138, 251, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s;
  animation: fadeInScale 0.6s ease-out;
  animation-fill-mode: backwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}
.value-card:nth-child(2) {
  animation-delay: 0.2s;
}
.value-card:nth-child(3) {
  animation-delay: 0.3s;
}
.value-card:nth-child(4) {
  animation-delay: 0.4s;
}
.value-card:nth-child(5) {
  animation-delay: 0.5s;
}
.value-card:nth-child(6) {
  animation-delay: 0.6s;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #9b8afb;
  box-shadow: 0 25px 70px rgba(155, 138, 251, 0.4);
  background: rgba(155, 138, 251, 0.1);
}

.value-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(155, 138, 251, 0.2),
    rgba(122, 104, 214, 0.2)
  );
  border: 2px solid rgba(155, 138, 251, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, #9b8afb 0%, #7a68d6 100%);
  border-color: #9b8afb;
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(155, 138, 251, 0.5);
}

.value-icon img {
  width: 45px;
  height: 45px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(46%) saturate(1481%)
    hue-rotate(204deg) brightness(101%) contrast(98%);
  transition: filter 0.4s;
}

.value-card:hover .value-icon img {
  filter: brightness(0) invert(1);
}

.value-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.value-card:hover h3 {
  color: #9b8afb;
}

.value-card p {
  color: #b8b8b8;
  line-height: 1.7;
}

/* Team Section */
.about-team {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  background: rgba(155, 138, 251, 0.05);
  border: 1px solid rgba(155, 138, 251, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s;
  animation: fadeInUp 0.8s ease-out;
}

.team-member:hover {
  transform: translateY(-15px);
  border-color: #9b8afb;
  box-shadow: 0 25px 70px rgba(155, 138, 251, 0.4);
  background: rgba(155, 138, 251, 0.1);
}

.member-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #9b8afb;
  box-shadow: 0 10px 30px rgba(155, 138, 251, 0.3);
  transition: all 0.4s;
  position: relative;
}

.team-member:hover .member-image {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(155, 138, 251, 0.6);
  border-width: 4px;
}

.member-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(155, 138, 251, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-member:hover .member-image::before {
  opacity: 1;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.member-role {
  color: #9b8afb;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.member-social a {
  width: 40px;
  height: 40px;
  background: rgba(155, 138, 251, 0.1);
  border: 1px solid rgba(155, 138, 251, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.member-social a img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.member-social a:hover {
  background: #9b8afb;
  border-color: #9b8afb;
  transform: translateY(-5px) rotate(360deg);
}

/* Stats Section */
.about-stats {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(155, 138, 251, 0.1),
    rgba(122, 104, 214, 0.1)
  );
  border-top: 1px solid rgba(155, 138, 251, 0.3);
  border-bottom: 1px solid rgba(155, 138, 251, 0.3);
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(155, 138, 251, 0.1) 10%,
    transparent 10%
  );
  background-size: 50px 50px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  animation: countUp 1s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat-number {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(135deg, #9b8afb 0%, #c9b3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 10px;
  animation: glow 3s ease-in-out infinite;
}

.stat-label {
  color: #b8b8b8;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Partners Section */
.about-partners {
  padding: 100px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: center;
}

.partner-logo {
  background: rgba(155, 138, 251, 0.05);
  border: 1px solid rgba(155, 138, 251, 0.2);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  animation: fadeInScale 0.6s ease-out;
  min-height: 120px;
}

.partner-logo:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #9b8afb;
  box-shadow: 0 15px 40px rgba(155, 138, 251, 0.3);
  background: rgba(155, 138, 251, 0.1);
}

.partner-logo img {
  max-width: 100%;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: all 0.3s;
}

.partner-logo:hover img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(46%) saturate(1481%)
    hue-rotate(204deg) brightness(101%) contrast(98%);
  transform: scale(1.1);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(155, 138, 251, 0.15) 0%,
    rgba(122, 104, 214, 0.15) 100%
  );
  border-top: 1px solid rgba(155, 138, 251, 0.3);
  border-bottom: 1px solid rgba(155, 138, 251, 0.3);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.cta-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #9b8afb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content > p {
  font-size: 1.3rem;
  color: #b8b8b8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid rgba(155, 138, 251, 0.2);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #9b8afb 0%, #c9b3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #9b8afb;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col p {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(155, 138, 251, 0.1);
  border: 1px solid rgba(155, 138, 251, 0.3);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.social-icons a:hover {
  background: rgba(155, 138, 251, 0.2);
  border-color: #9b8afb;
  transform: translateY(-3px) rotate(360deg);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #9b8afb;
  transform: translateX(5px);
}

.footer-col address {
  font-style: normal;
}

.footer-col address p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-col address img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(155, 138, 251, 0.05);
  border: 1px solid rgba(155, 138, 251, 0.3);
  border-radius: 8px;
  color: #ffffff;
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: #9b8afb;
  box-shadow: 0 0 15px rgba(155, 138, 251, 0.2);
}

.newsletter-form button {
  padding: 12px 25px;
  white-space: nowrap;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(155, 138, 251, 0.1);
  color: #b8b8b8;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    text-align: center;
  }

  .about-image img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(155, 138, 251, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s;
  }

  .menu-toggle:checked ~ .nav-menu {
    transform: translateX(0);
  }

  .menu-toggle:checked ~ .hamburger .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
}
