* {
  
    font-size: 18px;
    font-weight: bold;
}

.download-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.download-container a {
  width: 200px;
  height: 60px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensures cropping */
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.download-container a img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the box even if cropping is needed */
  display: block;
}


/* On mobile: switch container layout to column flex */
@media (max-width: 600px) {
  .download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .download-container a {
    width: 80%; /* optional: smaller width on mobile */
  }
}



#clock {
  font-size: 20px;
  font-weight: bold;
  color:white;
            
  }


.logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(10, 9, 1); /* Converted from #7B7C18 */
    padding: 4px 13px;
    position: relative;
    margin-bottom: 15px;
    z-index: 999;
    border-radius: 8px;
    /* Glowing effect */
    box-shadow: 0 0 10px #00D8FF, 0 0 20px #00D8FF, 0 0 30px #00D8FF;
}



.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
}


   .close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 38px;
    color: red;
    cursor: pointer;
    margin: 10px;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 1000;
}




/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
            /* Glowing effect */


      font-family: 'Roboto', sans-serif;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-style: oblique;
    transition: background 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #00d8ff20;
    color: #00d8ff;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
    border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 10px #B5FF07, 0 0 20px #B5FF07, 0 0 30px #B5FF07;

    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .close-btn {
        display: block;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 1.1rem;
    }
}


/*menu end*/


body {
  background:black;
  color: rgb(50, 25, 0); /* Dark brown text */
padding: 10px 5px;
border-radius:10px;
text-align: center;
}



header {
  background: linear-gradient(to bottom, rgb(255, 102, 0), rgb(255, 165, 0), rgb(255, 204, 153));
  color: rgb(50, 25, 0); /* Dark brown text */
  padding: 5px 10px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px; /* Add margin below the header */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Optional for better depth */
             box-shadow: 0 0 10px #B5FF07, 0 0 20px #B5FF07, 0 0 30px #B5FF07;
}


main {
  padding: 5px;
  margin-bottom: 5px;
  background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
 text-align: center;
 border-radius: 5px;
  border-top: 3px solid rgb(255, 0, 0); /* Top border: Red */
    border-left: 3px solid rgb(0, 255, 0); /* Left border: Green */
    border-right: 3px solid rgb(0, 0, 255); /* Right border: Blue */
    border-bottom: 3px solid rgb(255, 255, 0); /* Bottom border: Yellow */
  animation: main 9s infinite alternate;
              box-shadow: 0 0 10px #B5FF07, 0 0 20px #B5FF07, 0 0 30px #B5FF07;
}


@keyframes main {
 0% {
   border-color: red;
 }
 25%{
   border-color: green;
 }
 50% {
   border-color: blue;
 }
 100% {
   border-color: Yellow;
 }
}

  
h1, h2 {
color: red;
}
 p{
color: yellow;
font-family:bold;
 }
  /* Default link style */
a {
  font-style: italic;
    color: White;
    text-decoration: none; /* Removes underline */
    font-weight: bold;
    
}

/* Hover effect */
a:hover {
  font-style: italic;
    color: red;
    text-decoration: none;
    font-weight: bold;
}

/* Visited link */
a:visited {
  font-style: italic;
    color: White;
}

/* Active (clicked) link */
a:active {
  font-style: italic;
    color: green;
}   
     
    
   footer {
            background-color: rgb(34, 87, 122);
            border-radius: 10px;
            color: rgb(255, 255, 255);
            text-align: center;
            padding: 10px 0;
            margin-top: 20px;
                      box-shadow: 0 0 10px #B5FF07, 0 0 20px #B5FF07, 0 0 30px #B5FF07;
 }

#mypatro_nepali_date{

  margin-top:2px;
  display: inline-block;
  padding: 2px 4px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}


/**download**/
.app{
  
  margin-top:2px; 
  display: inline-block;
  padding: 2px 4px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.app img {
 width:100px;
 height: 100px;

}
       /* App List Start */
.app-list-view {
  font-family: 'Roboto', sans-serif;
  padding: 5px;
  margin: 0;
  margin-bottom: 5px;
  text-align: center;
  border-radius: 5px;

  /* Colorful unique RGB borders */
  border-top: 3px solid rgb(255, 0, 128);      /* Pinkish red */
  border-left: 3px solid rgb(0, 255, 200);     /* Aqua green */
  border-right: 3px solid rgb(128, 0, 255);    /* Purple */
  border-bottom: 3px solid rgb(255, 255, 0);   /* Yellow */

  /* Unique RGB background gradient */
  background: linear-gradient(135deg,
    rgb(255, 0, 128) 0%,
    rgb(0, 255, 200) 25%,
    rgb(255, 128, 0) 50%,
    rgb(0, 128, 255) 75%,
    rgb(128, 0, 255) 100%);
  background-size: 400% 400%;
  background-attachment: fixed;

  /* Text and animation */
  color: #fff;
  animation: main 9s infinite alternate;
  box-shadow: 0 0 10px rgb(0, 255, 234), 0 0 20px rgb(0, 255, 234), 0 0 30px rgb(0, 255, 234);
}
@keyframes main {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}



@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.app-list {
        animation: slideInUp 0.6s ease-out forwards;
  opacity: 0; /* Start hidden */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

.app-item {
    background: rgba(255, 255, 66, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    padding: 20px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(8px);
}

.app-item:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(10, 10, 0, 0.4);
}

.app-item img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 2px solid rgba(0, 216, 255, 0.25);
    transition: transform 0.3s ease;
}

.app-item:hover img {
    transform: scale(1.05);
}

.app-item a {
    text-decoration: none;
    color:white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
   text-shadow:
    0 0 5px rgb(10, 10, 1),
    0 0 10px rgb(10, 10, 1),
    0 0 15px rgb(0, 84, 107),
    0 0 20px rgb(0, 128, 255);
    transition: color 0.3s ease;
}

.app-item a span {
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
}

.app-item a:hover {
  color:yellow; /* Vibrant aqua color */
  text-shadow:
    0 0 5px rgb(0, 255, 200),
    0 0 10px rgb(0, 255, 200),
    0 0 15px rgb(0, 200, 255),
    0 0 20px rgb(0, 128, 255);
}


  @media (max-width: 600px) {
    .app-list {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* App List End */

 .gallery-container5 {
        width: 100%;
        overflow-x: auto;
        margin: 20px 0;
    }

    .gallery-wrapper5 {
        display: flex;
        gap: 15px;
        padding: 10px;
    }

    .gallery-img5 {
        width: 200px;
        height: auto;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .gallery-img5:hover {
        transform: scale(1.05);
    }

    /* Popup Modal Styles */
    .popup-modal5 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    .popup-content5 {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }

    .popup-close5 {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }

    .popup-prev5, .popup-next5 {
        position: absolute;
        top: 50%;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        padding: 20px;
        user-select: none;
    }

    .popup-prev5 {
        left: 20px;
    }

    .popup-next5 {
        right: 20px;
    }

    @media (max-width: 768px) {
        .gallery-img5 {
            width: 150px;
        }

        .popup-prev5, .popup-next5 {
            font-size: 30px;
            padding: 10px;
        }
    }


    .hidden {
        display: none;
    }




    /* App Description */
.app-description {

 color: yellow;
 border: 2px solid;
 border-radius: 2px;
 border-color: red;
max-width: 600px;
 background: blue;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
   margin: auto;
}
    .app-description button {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        margin-top: 10px;
    }
    .app-description button:hover {
        background-color: #45a049;
    }


