@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Karla:ital,wght@0,200..800;1,200..800&display=swap");
:root {
  --brown-color: #725843;
  --light-brown-color: #9f7f65;
  --dark-gray-color: #60564d;
  --white-brown-color: #ccb4a0;
  --dark-brown-color: #3a2a1d;

  --kendal-charcoal-color: #686662;
  --white-dove-color: #f0ede4;
  --wrought-iron-color: #323333;
  --light-dark-color: #78726a;
  --dark-black-color: #1a1a17;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--kendal-charcoal-color);
  background: var(--white-dove-color);
  font-family: "Karla", sans-serif;
  width: 100%;
}

/* Styles for the preloader container */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--wrought-iron-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.preloader.fade-out {
  opacity: 0;
  transition: 1s ease-out;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fade-up 1s ease-out;
}

.distorted-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.5),
    rgba(255, 255, 255, 0.5)
  );
  animation: distort 2s forwards;
}

@keyframes distort {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* .text {
  color: white;
  font-size: 24px;
} */

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
}

/* .loader {
  margin-bottom: 16px;
  border: 8px solid var(--kendal-charcoal-color);
  border-top: 8px solid var(--white-dove-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

.text {
  font-size: 36px;
  color: var(--white-dove-color);
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.content {
  display: none;
}

/* HEADER */

nav {
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s;
  z-index: 999;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
}
.logo {
  padding: 1rem;
  font-size: 14px;
  color: var(--light-dark-color);
}
nav ul {
  list-style: none;
  gap: 2.5px;
}



nav ul li a {
  text-decoration: none;
  color: var(--light-dark-color);
  font-size: 21px;
  font-weight: 500;
}

.nav-links {
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.nav-links li {
  padding: 0.6rem;
}
.nav-links a {
  text-decoration: none;
  font-size: 80px;
  color: var(--white-dove-color);
  font-weight: 600;
}
.social-links {
  justify-content: flex-start;
  display: flex;
  height: 100%;
}
.social-links a {
  text-decoration: none;
  color: var(--white-dove-color);
  font-size: 16px;
  padding: 0 0.6rem;
}
.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  z-index: 2000;
  transition: right 1s ease;
  right: 1.5rem;
  cursor: pointer;
  border: 0.5px solid var(--kendal-charcoal-color);
  background-color: var(--white-dove-color);
}

.burger:before,
.burger:after {
  content: "";
  position: absolute;
  background-color: var(--kendal-charcoal-color);
  width: 60%;
  height: 4px;
  border-radius: 2px;
  transition: transform 0.5s ease;
}

.burger:before {
  transform: translateY(-5px);
}

.burger:after {
  transform: translateY(5px);
}
.burger.open {
  background-color: transparent;
}

.burger.open:before,
.burger.open:after {
  position: absolute;
  background-color: var(--white-dove-color);
}

.burger.open:before {
  transform: rotate(45deg);
}

.burger.open:after {
  transform: rotate(-45deg);
}
.burgermenu {
  position: fixed;
  inset: 0 0 0 50%;
  z-index: 1000;
  padding: min(30vh, 7.5rem) 1.5rem;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;
  background: var(--kendal-charcoal-color);
  margin-top: -60px;
  gap: 2.5rem;
  backdrop-filter: blur(1rem);
  transform: translateX(100%);
  transition: transform 350ms ease-out;
}
.burgermenu.active {
  transform: translateX(0);
}
.navbar {
  position: fixed;
  inset: 0 0 0 50%;
  z-index: 1000;
  padding: min(30vh, 10rem) 1.5rem;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  flex-wrap: nowrap;

  background: rgba(0, 0, 0, 0.5);
  margin-top: -60px;
  gap: 2.5rem;
  backdrop-filter: blur(1rem);
  transform: translateX(100%);
  transition: transform 350ms ease-out;
}

.navbar li a {
  font-size: clamp(1.5rem, 10vw, 4rem);
  line-height: 80px;
  font-weight: 600;
}

.navbar li a::after {
  content: "·";
  font-size: 4rem;
  position: absolute;
  right: 0;
  transform: translateX(1.5rem);
  transition: transform 250ms ease-out;
}
.burgermenu.active .nav-links li,
.burgermenu.active .social-links a,
.navbar[data-visible="true"] .nav-links li,
.navbar[data-visible="true"] .social-links a {
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.burgermenu.active .nav-links li:nth-child(1),
.burgermenu.active .social-links a:nth-child(1),
.navbar[data-visible="true"] .nav-links li:nth-child(1),
.navbar[data-visible="true"] .social-links a:nth-child(1) {
  animation: appear 1s forwards;
}

.burgermenu.active .nav-links li:nth-child(2),
.burgermenu.active .social-links a:nth-child(2),
.navbar[data-visible="true"] .nav-links li:nth-child(2),
.navbar[data-visible="true"] .social-links a:nth-child(2) {
  animation: appear 1s forwards 0.1s;
}

.burgermenu.active .nav-links li:nth-child(3),
.burgermenu.active .social-links a:nth-child(3),
.navbar[data-visible="true"] .nav-links li:nth-child(3),
.navbar[data-visible="true"] .social-links a:nth-child(3) {
  animation: appear 1s forwards 0.2s;
}

.burgermenu.active .nav-links li:nth-child(4),
.navbar[data-visible="true"] .nav-links li:nth-child(4) {
  animation: appear 1s forwards 0.3s;
}

/* END OF HEADER */

/* HOMEPAGE */
main {
  align-items: center;
  justify-content: center;
  text-align: center;
  display: flex;
}

.main-text-container {
  width: 100%;
  height: 100%;
}
.main-text {
  padding: 1rem;
  height: 100%;
  color: var(--dark-black-color);
}
.main-text h1 {
  font-size: 15rem;
  font-weight: bold;
  flex-wrap: wrap;
}
.main-text-title {
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.main-text-title span {
  font-size: 7rem;
}
.main-text span {
  justify-content: left;
  align-items: left;
}

/* MAIN CONTENT */
.main-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 100%;
  width: 100%;

  margin-bottom: 10%;
}
/* LEFT SIDE HOMEPAGE */
.left-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 33.3%;
}

.arrow img {
  width: 40px;
  height: 40px;
}

.left-side-text {
  width: 80%;
  text-align: left;
  letter-spacing: 1.4px;
  line-height: 1.4;
}

.left-side-text h3 {
  color: var(--dark-black-color);
}
/* CENTER SIDE HOMEPAGE */

.center-side {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 33.3%;
}

/* RIGHT SIDE HOMEPAGE */

.right-side {
  justify-content: center;
  display: flex;
  align-items: center;
  height: 100%;
  width: 33.3%;
}

.home-button {
  background-color: var(--dark-black-color);
  text-align: center;
  color: var(--white-dove-color);
  text-decoration: none;
  padding: 1rem;
  border-radius: 45px;
}
.button-container a {
  font-size: 2rem;
}

.circle-gradient-main {
  background-image: linear-gradient(
    to bottom,
    var(--kendal-charcoal-color),
    var(--white-dove-color)
  );
  background-position: center;

  opacity: 25%;
  border-radius: 100%;

  z-index: -1;

  position: absolute;
  background-attachment: fixed;
  top: 0;
}

.main-circle-lg {
  width: 33rem;
  height: 33rem;
}

.main-circle-xl {
  width: 40rem;
  height: 40rem;
}

.main-circle-2xl {
  width: 45rem;
  height: 45rem;
}

/* SERVICES OFF */
.services {
  height: 100%;
  background: var(--dark-black-color);
}
.services-container {
  flex-wrap: wrap;

  justify-content: center;

  align-items: center;
}
.services-title {
  text-align: center;
  font-size: 2rem;
  padding: 2rem;
}

.services-title h1 {
  color: var(--white-dove-color);
  font-size: 7rem;
}
.services-quotes {
  color: var(--white-dove-color);
  padding: 2rem;
  justify-content: end;
  align-items: end;
  display: flex;
  width: 100%;
}
.services-quotes span {
  text-align: right;
  font-size: 1.5rem;
  width: 30%;
}

.box {
  border-top: 1px solid var(--white-dove-color);
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
  background-color: var(--dark-black-color);
}

.services-content {
  margin-top: 1rem;
  padding: 2rem;
}

.top-services-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services-number {
  width: 45%;
  padding-left: 2rem;
}
.services-number h1 {
  color: var(--white-dove-color);
  font-size: 4rem;
}
.services-text {
  width: 55%;
  justify-content: start;
  align-items: start;
  display: flex;
}
.services-text h1 {
  font-size: 4rem;
  flex-wrap: wrap;
  color: var(--white-dove-color);
  letter-spacing: -5px;
  line-height: 1.4;
}
.mid-services-content {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  width: 100%;
  padding-top: 1rem;
}
.services-desc {
  width: 55%;
  padding: 1rem 1rem 1rem 0;
}
.services-desc p {
  width: 80%;
  font-size: 1.7rem;
  color: var(--white-dove-color);
  line-height: 1.4;
}
.bottom-services-content {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  width: 100%;
}
.services-list {
  padding-top: 1rem;
  width: 55%;
  justify-content: start;
  align-items: start;
}

.services-list ol {
  padding: 1rem;
  margin-left: 4px;
}
.services-list li {
  line-height: 1.4;
  font-size: 1.5rem;
  color: var(--white-dove-color);
}

#box1 {
  z-index: 1;
}

#box2 {
  transform: translateY(100%);
  z-index: 2;
  top: 17.5%;
}

#box3 {
  transform: translateY(200%);
  z-index: 3;
  top: 17.5%;
}

/* PROJECTS */

/* General Section Styling */
.projects {
  height: 100%;
  padding: 2rem 10%;
  background: var(--dark-black-color);
  color: var(--white-dove-color);
}

/* Title */
.projects-title {
  text-align: center;
  padding: 2rem;
}

.projects-title h1 {
  font-size: 5rem;
}

.projects-quotes {
  color: var(--white-dove-color);
  padding: 2rem;
  justify-content: end;
  align-items: end;
  display: flex;
  width: 100%;
}
.projects-quotes span {
  text-align: right;
  font-size: 1.5rem;
  width: 30%;
}

/* Project Container */
.projects-container {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 10rem; /* Space between projects */
}

/* Individual Project Sections */
.projects-content-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  height: 100vh; /* Full height to allow sticky effect */
}

/* Sticky Project Number */
.projects-number {
  position: sticky;
  top: 20%;
  width: 45%;
  z-index: 10;
  font-size: 5rem;
  color: var(--white-dove-color);
}

/* Scrolling Project Content */
.projects-img-desc {
  width: 55%;
  overflow-y: auto;
  max-height: 90vh; /* Controls the height of the scrollable area */
  scrollbar-width: thin;
  scrollbar-color: var(--kendal-charcoal-color) var(--dark-black-color);
}

/* Styling for Images */
.projects-img {
  width: 100%;
  height: 60vh;
  margin-bottom: 2rem;
  overflow: hidden;
}

.projects-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
.projects-img:hover img {
  transform: scale(1.05);
}

/* Text and Shenanigans */
.projects-texts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.projects-number h1 {
  width: 100%;
  font-size: 12rem;
}
.projects-desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.projects-texts h3,
.projects-texts h2 {
  margin: 0;
}

.projects-title-shenanigans {
  display: flex;
  gap: 1rem;
}

.projects-title-shenanigans span {
  padding: 0.5rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--white-dove-color);
  font-size: 1rem;
  color: var(--white-dove-color);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

/* PROJECTS GALLERY */
.projects-gallery {
  height: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-black-color);
}
.projects-gallery-title {
  text-align: center;
}
.projects-gallery-title h1 {
  font-size: 5rem;
  color: var(--white-dove-color);
}
.projects-gallery-images {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;

  padding: 1.5rem 0;

  gap: 20px;
  width: 35%;
  left: -20%;
  height: 100%;
  object-fit: contain;
  position: relative;
}
.projects-gallery-images img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
  object-fit: cover;
}

.slideLeft {
  animation: slideLeft 0.5s ease forwards;
}

.slideRight {
  animation: slideRight 0.5s ease forwards;
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100px); /* Adjust the distance to slide */
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-100px); /* Adjust the distance to slide */
  }
  to {
    transform: translateX(0);
  }
}

/* ABOUT */
.about {
  background: var(--dark-black-color);
  height: 100%;
  color: var(--white-dove-color);
  height: 100vh;
}
.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image-container {
  width: 50%;
  height: 100%;
}
.about-image {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.about-image img {
  width: 400px;
  height: 600px;
  object-fit: contain;
}
.about-text-container {
  width: 50%;
}
.about-text-title {
  padding: 2rem;
}
.about-text-title h1 {
  font-size: 6rem;
}
.about-desc {
  color: var(--white-dove-color);
  padding: 2rem;
  justify-content: end;
  align-items: end;
  display: flex;
  width: 100%;
}
.about-desc p {
  width: 25%;
}
.about-desc span {
  text-align: right;
  font-size: 1.5rem;
  width: 100%;
}
/* TESTIMONIALS */
.testimonials {
  background-color: var(--white-dove-color);
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.testimonials-words {
  color: var(--dark-black-color);
  border-bottom: 1px solid var(--dark-black-color);
  margin: 30px;
}
.testimonials-header {
  padding: 20px 0;
  font-size: 56px;
}
.testimonials-header h1 {
  padding-bottom: 20px;
}
.testimonials-desc {
  color: var(--dark-black-color);
  padding: 2rem;
  justify-content: start;
  align-items: start;
  display: flex;
  width: 100%;
}
.testimonials-desc span {
  text-align: left;
  font-size: 1.5rem;
  width: 50%;
}
.testimonials-desc p {
  padding: 0.5rem 0 0 0;
}
.testimonials-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  justify-content: start;
  align-items: start;
  height: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.testimonials-content.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonials-message-container {
  height: 100%;
  padding: 2rem;
}
.testimonials-message {
  color: var(--dark-black-color);
  font-size: 24px;
  line-height: 1.5;
  text-align: justify;
  height: 33.3%;

  overflow: hidden;
}
.testimonials-name-details {
  width: 100%;
  height: 33.3%;
}
.testimonials-name {
  color: var(--dark-black-color);
  font-size: 18px;
  margin-top: 5rem;
  text-align: right;
  padding: 2rem 2rem 0 2rem;
}
.testimonials-name p {
  padding-left: 10px;
}
.testimonials-obj {
  padding: 0.5rem 2rem 2rem 2rem;
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 20px;
}
.testimonials-obj p {
  border: 1px solid var(--dark-black-color);
  color: var(--dark-black-color);
  padding: 10px;
  border-radius: 50px;
  font-size: 14px;
}

.next-container {
  height: 33.3%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.page-counter {
  padding: 2rem;
  color: var(--dark-black-color);
}
.page-counter span {
  font-size: 1.2rem;
}
.next-prev-button {
  padding: 2rem;
}
.next-prev-button a {
  background-color: var(--dark-black-color);
  text-align: center;
  color: var(--white-dove-color);
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 20px;
  margin: 0 10px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.next-prev-btn:hover {
  background: var(--white-dove-color);
  color: var(--dark-black-color);
  cursor: pointer;
  border: 1px solid var(--dark-black-color);
}

.testimonials-img {
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 5rem 5rem 5rem;
}
.testimonials-img img {
  width: 100%;
  transition: transform 0.4s ease;
  height: 500px;
  object-fit: contain;
}
.testimonials-img img:hover {
  transform: scale(1.1);
}
/* .projects-gallery {
  width: 120vw;;
  left: -10vw;
  will-change: transform;
  display: flex;
  position: relative;
  flex-wrap: wrap;
}

.projects-gallery-container {
  margin: 0 auto;
  max-width: 100em;
}
.projects-gallery-title {
  text-align: center;
}
.projects-gallery-title h1 {
  font-size: 5rem;
}
.projects-gallery-images {
    width: 25%;
    padding: 1.25vw;
}
.elements-images {
  background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('images/wvsu-web.png');
} */
/* CSS PREDEFINED CLASS START */

.max-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
}

.padding-container {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
}
.circle-gradient {
  background-image: linear-gradient(to bottom, #b43939, #faf6f9);
  background-position: center;

  opacity: 10%;
  border-radius: 100%;

  z-index: -1;

  position: absolute;
  top: 10%;
}

.circle-lg {
  width: 33rem;
  height: 33rem;
}

.circle-xl {
  width: 40rem;
  height: 40rem;
}

.circle-2xl {
  width: 45rem;
  height: 45rem;
}

/* CSS PREDEFINED CLASS END */

footer {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 3rem;

  position: relative;

  overflow: hidden;
}

.footer-head-text {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding-top: 4rem;
}

.footer-head-text p {
  color: #545454;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-head-text a {
  width: 100%;

  color: #0e0506;
  text-shadow: 8px 6px 0 rgba(0, 0, 0, 0.3);

  font-size: 10rem;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;

  position: relative;
}

.footer-head-text a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 7px;
  background-color: #0e0506;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
}

.footer-head-text a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-links {
  width: 100%;

  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 2rem;
}

.footer-links .f-links {
  font-size: 1rem;

  display: flex;
  align-items: start;
  flex-direction: column;
  flex: 1 1 0%;

  gap: 8px;
}

.f-links h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
}

.f-links a {
  text-decoration: underline;
  color: #2e2e2e;
  white-space: pre-line;
}

.f-links hr {
  width: 100%;
}

.footer-bottom-links {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: end;
  flex: 1;

  gap: 10px;
  padding-bottom: 2rem;
}

.f-bottom-hr {
  width: 100%;
}

.f-bottom-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 0.9rem;
}

.f-bottom-links div {
  display: flex;
  gap: 2rem;
}

.f-bottom-links div a {
  text-decoration: none;
  color: #2e2e2e;
}

.f-bottom-links div p {
  color: #2e2e2e;
}

/* HOVER */

.view-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 75px;
  width: 75px;
  font-size: 20px;
  padding: 10px;
  background-color: var(--kendal-charcoal-color);
  color: var(--white-dove-color);
  border-radius: 100%;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
}

.project-content:hover .view-more,
.project-content:hover {
  opacity: 1;
  cursor: pointer;
}

.magnet-effect {
  position: absolute;
  width: 10px; /* Adjust size of magnet */
  height: 10px; /* Adjust size of magnet */
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.burger:hover .magnet-effect {
  opacity: 1;
}
.burger:hover .burger-line {
  transform: translateX(3px);
}
.burger-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--kendal-charcoal-color);
  transition: transform 0.3s;
}
