:root {
   --navbar-text-color: black; /* Default for light mode */
  --navbar-text-hover-color: gray; /* Hover color for light mode */
  --navbar-active-color: blue; /* Active color for light mode */
  --navbar-brand-color : white;
  --navbar-toggler-color: black;
  --navbar-color: black;
}

html, body {
    overflow-x: hidden;
}

body.bg-white {
  --navbar-toggler-color: black; /* Default for light mode */
}

.formColor{
  color: black;
}



/*footer*/
.footer-section {
  text-align: center;
  padding: 50px -1px;
  position: relative;
  background-color: black;
}

.footer-section .signature {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  color: gold;
}

.footer-section .made-in-india {
  font-size: 1.2rem;
  margin-top: 10px;
}

.footer-section .made-in-india span {
  color: red;
}

.footer-section .social-icons a {
  font-size: 2rem;
  margin: 0 15px;
  color: inherit;
  transition: color 0.3s ease-in-out;
}

.footer-section .social-icons a:hover {
  color: #007bff;
}

.footer-section .background-illustration {
  width: 100%;
}

/*footer ends*/


.card-content {
    background-color: rgba(255, 255, 255, 0.1) !important; /* Ensure transparency */
    padding: 15px;
    color: black; /* Ensures text is readable */
    text-align: center;
    backdrop-filter: blur(-1px);
    border: solid;
    border-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* So it doesn't block interactions */
  z-index: -1; /* Behind everything */
}

/* Individual Star Styling */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: moveStars 10s linear infinite;
}

/* Animation for Moving Stars */
@keyframes moveStars {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}





.contact-section {
  color: white;
  padding: 50px 20px;
  text-align: center;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
   background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0px); /* Adds blur effect */
}

.contact-container h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #ffd700;
}

.contact-container p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #d3d3d3;
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #555;
  border-radius: 5px;
  background: #2b2b2b;
  color: #fff;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #ffd700;
}

button {
  background: #ffd700;
  color: #121212;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #fff;
  color: #121212;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}








.section-experience{
  justify-content: center;
}

.cardtext{
color: white;
}

/*projects container css starts*/
.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
    background-color: transparent;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: solid;
}


.card-content h2 {
    margin: 10px 0;
    font-size: 1.5rem;
/*    color: #333;*/
}

.card-content p {
    font-size: 0.9rem;
/*    color: #666;*/
}

.stack {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.stack span {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #333;
}

.card-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.code-btn, .preview-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.code-btn:hover {
    background-color: #333;
}

.preview-btn {
    background-color: white;
    color: black;
    border: 1px solid black;
}

.preview-btn:hover {
    background-color: #333;
    color: white;
}
/*projects container css starts*/



@media screen and (max-width: 750px){
.fas.fa-bars{
/*  background-color: black;*/
  }
}



.timeline-container {
    display: flex;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
}

.timeline {
    flex: 1;
    position: relative;
}

.timeline h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
    color: #a0a0a0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-dot {
    width: 15px;
    height: 15px;
    background-color: #007bff;
    border-radius: 50%;
}

.timeline-content {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    background-color: gold;
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.timeline-content p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #666;
}

.job-description {
    flex: 1;
    background-color: #e0ecff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(0px); /* Adds blur effect */
    border:solid;
}

.job-description h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
/*    color: #333;*/
}

.job-description h4 {
    margin: 20px 0 5px;
    font-size: 1.2rem;
/*    color: #333;*/
}

.job-description p, .job-description ul {
    margin: 5px 0;
    font-size: 0.9rem;
/*    color: #666;*/
}

.job-description ul li {
    margin-bottom: 5px;
}




.navbar {
    position: fixed !important;
    backdrop-filter: blur(10px); /* Adds blur effect */
    top: 0;
    left: 0;
    width: 100%;
     height: 80px; /* Fixed height for consistent spacing */
    color: white;
    padding: 15px 30px;
    z-index: 1000;
    padding: 15px 30px;
    display: flex; /* Ensure alignment of navbar content */
    align-items: center; /* Vertically center content */
    animation: reduce-header linear both;
     justify-content: space-between;
}

@media screen and (max-width: 750px){
.blur-bg-menu {
    position: absolute;
    top: 60px; /* Below the navbar */
    left: 0;
    width: 100%;
    /*  background-color: rgba(0, 0, 0, 0.6);*/
    background-color: black ;
    backdrop-filter: blur(300px); /* Adds blur effect */
    padding: 20px 0;
    transition: height 0.3s ease, opacity 0.3s ease; /* Smooth transition */
    overflow: hidden;
    animation: reduce-header linear both;
    transition: height 0.3s ease, opacity 0.3s ease; /* Smooth transition */
    margin-top: 10px;
     
}
}

@media screen and (max-width: 750px) {
.logo-text, .navbar-toggler{
/*      margin-top: 20px !important;*/
  }
}

@media screen and (max-width: 750px) {
.navbar {
     height: 70px !important; /* Fixed height for consistent spacing */
  }
}

.navbar-toggler collapsed

.container-fluid block-one{
  margin-top: 80px; /* Adjust this to match the height of your navbar */
}

@media screen and (min-width: 750px) {
  .circle-image-container  {
    min-height: 100vh;
  }
}


@media (max-width: 768px) {
  .empty-space-mobileview {
    display: flex !important;;
    margin-top: 30px; /* Adds 30px of vertical space above the element */
    margin-bottom: 92px; /* Adds 40px of vertical space below the element */
  }
}

@media (max-width: 768px) {
.project-container{
  
  height: 50%;
  width: 50%;
  justify-content: center !important;
    display: flex;

}
}


/*TECH STACK LANGUAGES CSS : ENDS*/
.tech-logo{
  width: 80px; /* Set same width for all images */
    height: 80px; /* Set same height for all images */
    object-fit: contain; /* Maintain aspect ratio of images */
    margin: 0 10px; /* Consistent margin between images */
}
.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
     backdrop-filter: blur(10px); /* Apply the blur effect */
}

.scroll-wrapper img {
    width: 100px;
    //height: auto;
    margin: 0 10px;
}

.scroll-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px); /* Apply the blur effect */
  z-index: -1; /* Place it behind the content */
  border-radius: 15px; /* Optional: for rounded corners */
}



.timeline-container{
  margin-left:84px ;
}

@media (max-width: 768px) {
.timeline-container{
  margin-left:7px !important;
}
}

/* Smooth infinite scrolling animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.scroll-container:hover .scroll-wrapper {
  animation-play-state: paused;
}

/*TECH STACK LANGUAGES CSS : ENDS*/


.tooling-section{
/*  background-color: gainsboro;*/
}

.text-decoration-none{

}

.project-container{

}

@media (max-width: 768px) {
  .skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
  gap: 20px;
  padding: 20px;
  width: 100%;
  }
}

.skill-name.text-center{
  text-align: center !important;
}

@media (max-width: 768px) {
  .skill-name.text-center{
  text-align: center !important;
  margin-left: -3px;
}
}

.skill-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.skill-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.skill-name {
  flex-grow: 1;
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 15px;
  color: #ffffff;
}

.skill-percentage {
  font-size: 1rem;
  background-color: #22ff22;
  color: black;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: bold;
}

.progress-bar {
  background-color: #444;
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #22ff22;
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
}
.resume-section{
  padding: 20px;
  color: white;
  font-weight: bold;
  margin-right: 10px !important;
  display: flex; /* Flexbox for horizontal alignment */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

.jumbotron{
  margin: 20px;
  background-color: gold;
  width: 580px;
  border: solid;
  height: 315px;
  border-color: burlywood;
  border-radius: 62px;
}

.display-5, .lead{
  color: white;
  font-family: sans-serif

}

.display-5{
  font-weight: bold;
  font-family: sans-serif
}

.display-4{
  text-align: center;
  font-family : 'Sacramento',cursive !important;
  color: white;
  font-size: 75px;

}

.dynamic-container{
  text-align: center;
  font-size: 30px;

}
.dynamic-text{
  text-size-adjust: 100px;
  color: gold;
}

.truck-inner{
    PADDING-LEFT: 11PX !important;
    PADDING-TOP: 6PX !important;
    FONT-SIZE: 25PX !important;
}


/*green truck and background : starts*/
.background-wrapper { 
/*   background: gold;*/
/*  background: #009688;*/
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}
.loop-wrapper {
  margin: 0 auto;
  position: relative;
  display: block;
  width: 90%;
  height: 250px;
  overflow: hidden;
  border-bottom: 3px solid #fff;
  color: #fff;
}
.mountain {
  position: absolute;
  right: -900px;
  bottom: -20px;
  width: 2px;
  height: 2px;
  box-shadow: 
    0 0 0 50px #4DB6AC,
    60px 50px 0 70px #4DB6AC,
    90px 90px 0 50px #4DB6AC,
    250px 250px 0 50px #4DB6AC,
    290px 320px 0 50px #4DB6AC,
    320px 400px 0 50px #4DB6AC
    ;
  transform: rotate(130deg);
  animation: mtn 20s linear infinite;
}
.hill {
  position: absolute;
  right: -900px;
  bottom: -50px;
  width: 400px;
  border-radius: 50%;
  height: 20px;
  box-shadow: 
    0 0 0 50px #4DB6AC,
    -20px 0 0 20px #4DB6AC,
    -90px 0 0 50px #4DB6AC,
    250px 0 0 50px #4DB6AC,
    290px 0 0 50px #4DB6AC,
    620px 0 0 50px #4DB6AC;
  animation: hill 4s 2s linear infinite;
}
.tree, .tree:nth-child(2), .tree:nth-child(3) {
  position: absolute;
  height: 100px; 
  width: 35px;
  bottom: 0;
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/tree.svg) no-repeat;
}
.rock {
  margin-top: -17%;
  height: 2%; 
  width: 2%;
  bottom: -2px;
  border-radius: 20px;
  position: absolute;
  background: #ddd;
}
.truck, .wheels {
  transition: all ease;
  width: 85px;
  margin-right: -60px;
  bottom: 0px;
  right: 50%;
  position: absolute;
  background: #eee;
}
.truck {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/truck.svg) no-repeat;
  background-size: contain;
  height: 60px;
}
.truck:before {
  content: " ";
  position: absolute;
  width: 25px;
  box-shadow:
    -30px 28px 0 1.5px #fff,
     -35px 18px 0 1.5px #fff;
}
.wheels {
  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/wheels.svg) no-repeat;
  height: 15px;
  margin-bottom: 0;
}

.tree  { animation: tree 3s 0.000s linear infinite; }
.tree:nth-child(2)  { animation: tree2 2s 0.150s linear infinite; }
.tree:nth-child(3)  { animation: tree3 8s 0.050s linear infinite; }
.rock  { animation: rock 4s   -0.530s linear infinite; }
.truck  { animation: truck 4s   0.080s ease infinite; }
.wheels  { animation: truck 4s   0.001s ease infinite; }
.truck:before { animation: wind 1.5s   0.000s ease infinite; }


@keyframes tree {
  0%   { transform: translate(1350px); }
  50% {}
  100% { transform: translate(-50px); }
}
@keyframes tree2 {
  0%   { transform: translate(650px); }
  50% {}
  100% { transform: translate(-50px); }
}
@keyframes tree3 {
  0%   { transform: translate(2750px); }
  50% {}
  100% { transform: translate(-50px); }
}

@keyframes rock {
  0%   { right: -200px; }
  100% { right: 2000px; }
}
@keyframes truck {
  0%   { }
  6%   { transform: translateY(0px); }
  7%   { transform: translateY(-6px); }
  9%   { transform: translateY(0px); }
  10%   { transform: translateY(-1px); }
  11%   { transform: translateY(0px); }
  100%   { }
}
@keyframes wind {
  0%   {  }
  50%   { transform: translateY(3px) }
  100%   { }
}
@keyframes mtn {
  100% {
    transform: translateX(-2000px) rotate(130deg);
  }
}
@keyframes hill {
  100% {
    transform: translateX(-2000px);
  }
}


.preloader-section{
   display: flex; /* Use flexbox for centering */
        justify-content: center; /* Horizontally center */
        align-items: center; /* Vertically center */
        height: 100%; /* Take the full height of the viewport */
        padding-top: 300px;
}

.span-shrujal{
  font-family: arial;
  font-weight: bold ;
}

.content {
display: none;
}

.dynamic-text{
  font-weight: bold;
}


.empty-space{
  margin-top: 120px; /* Adds 20px of vertical space above the element */
  margin-bottom: 20px; /* Adds 20px of vertical space below the element */
}

.empty-space2{
  margin-top: 20px; /* Adds 20px of vertical space above the element */
  margin-bottom: 20px; /* Adds 20px of vertical space below the element */
}

.empty-space3{
  margin-top: 40px; /* Adds 20px of vertical space above the element */
  margin-bottom: 50px; /* Adds 20px of vertical space below the element */
}



.toggle-section{
  align-items: center !important;
justify-content: center !important;
            display: flex;
}


.toggle-switch {
position: relative;
width: 120px;
height: 60px;
background: linear-gradient(90deg, #ffdd00, #ff7b54);
border-radius: 30px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: background 0.5s ease;
}

.toggle-switch .toggle-ball {
position: absolute;
width: 50px;
height: 50px;
background: #ffffff;
border-radius: 50%;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}

.toggle-switch .sun-icon {
width: 40px;
height: 40px;
background: #ffdd00;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 18px;
}

.toggle-switch .moon-icon {
width: 40px;
height: 40px;
background: #2c3e50;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 18px;
}


 .toggle-switch.light-mode {
            background: linear-gradient(90deg, #ffdd00, #ff7b54);
        }

.toggle-switch.light-mode .toggle-ball {
            transform: translateX(0);
        }

.toggle-switch.dark-mode .toggle-ball {
    transform: translateX(60px); /* Adjust this value based on your design */
}



/* Container for demonstration (optional) */
.circle-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
/*  min-height: 100vh; */
  margin: 0;
}

/* Image styles */
.circle-image {
  width: 150px; /* Adjust size to fit screen */
  height: 150px; /* Match width to keep it circular */
  border-radius: 50%; /* Perfect circle */
  object-fit: cover; /* Ensure image fits within the circle without distortion */
  box-shadow: 
    0 0 20px rgba(255, 0, 0, 0.6), /* Red glow */
    0 0 40px rgba(255, 0, 0, 0.4), 
    0 0 80px rgba(0, 0, 255, 0.6), /* Blue glow */
    0 0 120px rgba(0, 0, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

/* Hover effect */
.circle-image:hover {
  transform: scale(1.1); /* Slight zoom on hover */
  box-shadow: 
    0 0 30px rgba(255, 0, 0, 0.8), /* More intense red glow */
    0 0 60px rgba(255, 0, 0, 0.6), 
    0 0 120px rgba(0, 0, 255, 0.8), /* More intense blue glow */
    0 0 180px rgba(0, 0, 255, 0.6);
}

.navbar a:hover {
  color: var(--navbar-text-hover-color);
}


.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 40px;
  height: 46px  
  border-radius: 50%;
/*  background-color: #00ff00;*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navbar-text-color);
  font-weight: bold;
}

.timeline-content {
    background-color: white; /* Default background color */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background-color: blue; /* Default dot color */
    border-radius: 50%;
    visibility: hidden; /* Hidden by default */
    transition: visibility 0.3s ease; /* Smooth transition */
}

.timeline-item.selected .timeline-content {
    background-color: gold; /* Selected background color */
    color: black; /* Ensure text readability */
}

.timeline-item.selected .timeline-dot {
    visibility: visible; /* Show dot for the selected item */
}

.navbar-nav .nav-link {
  font-weight: 500;
   color: var(--navbar-text-color);
  margin: 0 10px;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
   color: var(--navbar-text-color);
}

.navbar .action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-buttons .contact-icon {
  width: 40px;
  height: 40px;
  border: 2px solid gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navbar-text-color);
  transition: all 0.3s ease-in-out;
}

.action-buttons .contact-icon:hover {
  background-color: gold;
  color: white;
}

.action-buttons .btn-primary {
  background-color: gold;
  border: none;
  color: black;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 25px;
/*  box-shadow: 2px 2px #ff0000 !important;*/
}
}

.action-buttons .btn-primary:hover {
  background-color: #00e600;
  color: white;
}

.navbar-dark,.navbar-toggler{
  color: black;
/*  margin-right: 20px !important;*/
}

/*common navbar code*/
.navbar a.active,
.navbar-brand {
  color: var(--navbar-active-color);
  font-weight: bold;
}
/*common navbar code*/


.dynamic-container{
  font-size: 22px;

}


/*

.navbar a:hover {
  color: var(--navbar-text-hover-color);
}

.navbar a {
  color: var(--navbar-text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand{
  font-family: Lobster;
  color: gold;
    text-decoration-style: solid;
    text-decoration-line: underline;
    text-shadow: 2px 2px gold; !important;
}

*/

.toggle{
  width :60px;
  height: 30px;
  background-color: black;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}

.icons {
  display: flex;
  gap: 15px; /* Space between icons */
  margin-right : 10px;
}

 .icons img {
      width: 50px; /* Size of the icons */
      height: 50px;
    }

.intro-text{
  font-family: sans-serif;
  font-weight: 900;
  font-size: 70px;
}

.button-line{
  display: flex;
   align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  margin-right: -29px;
}

.vertical-line {
width: 2px; /* Thickness of the line */
height: 50px; /* Height of the line */
background-color: black; /* Line color */
margin: 0 auto; /* Center the line */
margin-left: 10px;
margin-right: 10px;
}




.description-section{
  background-color: rgba(255, 255, 255, 0.10); /* Yellow with transparency */
  padding: 60px 20px;
  backdrop-filter: blur(-19px); /* Optional for frosted effect */
  
  width: 101%
}


.vibe-section{
font-style: italic;
}

.intro-span{
    color: gold;
    text-decoration-style: solid;
    text-decoration-line: underline;
    text-shadow: 2px 2px #ff0000 !important;
}

.toggle {
 width: 60px;
height: 30px;
background-color: #333; 
border-radius: 30px;
position: relative;
cursor: pointer;
transition: background-color 0.3s;

.toggle::before {
content:"";
width: 22px;
height: 22px;
background-color:
border-radius: 50%;
position: absolute;
top: 4px;
left: 4px;
white;
transition: transform 0.3s;
}

.toggle.dark {
background-color: #bbb;
}

.toggle.dark::before {
transform: translateX(30px);
}

.fas.fa-bars{
    height: 33px !important;
    width: 13px !important;
}



