
    .wrapper {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 94vh;
    width: 100%;
    z-index: 2;
    background: linear-gradient(-135deg, #F79F79, #F79F79);
    clip-path: circle(0px at calc(100% - 45px) 45px);
    transition: all 0.4s ease-in-out;
}

#active:checked ~ .wrapper {
    clip-path: circle(5%);
}

#active:checked ~ .menu-btn {
    color: #ff000a;
}

#active:checked ~ .menu-btn i:before {
    content: "\f00d";
}

/* Navigation Bar CSS */



.nav-overlay {
    position: fixed;
    top: 0;
    right: -70vh; /* Initially hidden off-screen */
    height: 100vh; /* Fixed height */
    width: 50vh; /* Adjust width as needed */
    background-color: #2f3a51;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;  
    transition: right 0.2s ease-in-out;
    z-index: 1;
    padding: 20px 0; /* Add padding for better spacing */
    overflow-y: auto; /* Enable scrolling for overflowing content */
}
/* Toggle class to bring the nav bar into view */
.nav-overlay.active {
    top: 0; /* Position it at the top */
}
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Add consistent spacing between links */
    text-align: center;
    margin-top: 80px; 
    margin-left: 20px;
    padding: 0; 
    list-style: none;
}

.nav-links li {
    margin: 0; /* Ensure no extra margins */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem; /* Responsive font size */
    padding: 10px 20px; /* Add padding for clickable area */
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

    .nav-links a {
        font-size: 1rem; /* Adjust font size for small screens */
        padding: 8px 16px;
    }


.nav-links a:hover {
    color: yellow;
    background-color: #616161;
   
}

#menu-toggle {
    display: none;
    
}

.menu-icon {
    display: block;
    cursor: pointer;
    position: fixed;
    top: 32px;
    right: 45px;
    z-index: 2;
}

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
    display: block;
    background-color: white;
    height: 3px;
    width: 30px;
    position: absolute;
    transition: all 0.3s ease;
   
}

.menu-icon span::before {
    content: '';
    top: -8px;
    background-color: orangered;
}

.menu-icon span::after {
    content: '';
    top: 8px;
    background-color: green;
}


    .menu-icon {
        display: block;
           }

    #menu-toggle:checked ~ .nav-overlay {
        right: 0;
    }

    #menu-toggle:checked + .menu-icon span {
        background: transparent;
    }

    #menu-toggle:checked + .menu-icon span::before {
        top: 0;
        transform: rotate(45deg);
        background-color: orangered;
    }

    #menu-toggle:checked + .menu-icon span::after {
        top: 0;
        transform: rotate(-45deg);
        background-color: orangered;
    }
    
 @import url('https://fonts.googleapis.com/css?family=Lato:400,700');


#btnInstall {
  padding: 10px 20px;
  font-size: 16px;
  color: #e2e2e2;
  background-color: #0056b3;
  border: none;
  border-radius: 50px;
  cursor: pointer;  
  width: 120px; 
}

       
#install{    
    justify-content: center;
}

#btninstall {
  position: absolute;
  padding: 10px 3px;
  font-size: 10px; /* Increase text size */
  color: #e2e2e2;
  background-color: #0056b3;
  border: none;
  border-radius: 10px;
  cursor: pointer;  
  width: 60px; 
  height: 30px;
  left: 0px;
  top: 15px;
  white-space: nowrap; 
  overflow: hidden;
    }


#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);  /* Dim background */
    z-index: 9999; 
    display: none;  /* Initially hidden */
    pointer-events: auto;  /* Enable blocking */
}
/*  Message Box Styles */
#container {
    position: fixed;
    margin: auto;
    width: 930px;
    height: 350px;
    left: 10px;
    top: 20%;
    transform: translate(1%, -20%);    
    display: none; /* Initially hidden */
    z-index: 1000;
}



#error-box {
    position: absolute;
    width: 35%;
    height: 100%;
    left: 1%;
    background: rgba(0, 0, 0, 0.5); /* Glassmorphism effect */
      backdrop-filter: blur(25px); /* Frosted glass */
      border-radius: 15px;
      border: 2px solid rgba(218, 117, 13, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      color: #E74C3C;
}

/* Face Animation */
.face2 {
    position: absolute;
    width: 20%;
    height: 18%;
    background: white;
    border-radius: 50%;
    border: 1px solid #777;
    top: 21%;
    left: 37.5%;
    
}
.face2 {
    animation: move 3s ease-in-out infinite;
}
/* Eyes & Mouth */
.eye {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #777;
    border-radius: 50%;
    top: 40%;
    left: 20%;
}

.right {
    left: 68%;
}

.mouth {
    position: absolute;
    top: 43%;
    left: 41%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

/* Happy & Sad Face */
.happy {
    border: 2px solid;
    border-color: transparent #777 #777 transparent;
    transform: rotate(45deg);
}

.sad {
    top: 49%;
    border: 2px solid;
    border-color: #777 transparent transparent #777;
    transform: rotate(45deg);
}

.message {
    position: absolute;
    width: 100%;
    text-align: center;
    height: 40%;
    top: 40%;
}

@keyframes bounce {
    50% {
        transform: translateY(-30px);
    }
}

@keyframes move {
  0% {
    left: 25%;
  }
  50% {
    left: 60%;
  }
  100% {
    left: 25%;
  }
}

 .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    font-weight: bold;
    z-index: 100000;
}
.close-btn:hover {
    color: #ccc;
}

body.no-scroll {
    overflow: hidden; /* Prevent scrolling */
}

#statusDot {
            position: fixed;
            width: 3px;
            height: 3px;
            border-radius: 50%;           
            bottom: 20px;
            left: 20px;
    }
