@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    margin: 0;
    font-family: "arial", sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
}

.fixed-logos {
    position: fixed;
    bottom: 60px;
    /* Adjust distance from bottom */
    right: 5px;
    /* Adjust distance from right */
    display: flex;
    flex-direction: column;
    /* Stack logos vertically */
}

.fixed-logo {
    width: 50px;
    /* Adjust logo width */
    height: auto;
    /* Maintain aspect ratio */
    cursor: pointer;
    margin-bottom: -10px;
    /* Pointer cursor on hover */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #145da0;
    border: 1px solid black;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 5px 20px;
    position: relative;
}

.logo1 img {
    height: 40px;
    border-radius: 10px;
    margin-top: 5px;
}

.text-border {
    color: white;
    font-size: 24px;
/*   background-image: linear-gradient(to left, #145da0, #3f0101); */
    font-weight: 600;
    font-family: "Poppins", sans-serif;
   /* text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
    /* Shadow to create border effect */
}

.btnlogout {
    background-color: #dc3545;
    /* Red background for logout */
    width: 70px;
    height: 30px;
    border: none;
    border-radius: 8px;
    /* Rounded corners */
    padding: 10px 20px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    text-decoration: none;
    /* Ensures no underline */
    display: inline-block;
}

.btnlogout:hover {
    background-color: #c82333;
    /* Darker red on hover */
    transform: scale(1.05);
    /* Slight scaling on hover */
}

.navbar .logo {
    color: white;
    font-size: 20px;
    padding: 5px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
}

.navbar .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 20px;
    background-image: linear-gradient(to bottom, #145da0, #145da0);
    border-radius: 5px;
    animation: slideDown 0.3s ease;
}

.navbar .menu.active {
    display: flex;
}

.navbar .menu a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

/* Ensure the menu is positioned correctly */

.menu {
    position: relative;
    z-index: 10;
    background-color: white;
    padding: 10px;
}

.app-card {
    margin-top: 20px;
}

.menu {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .menu a:last-child {
    border-bottom: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .navbar .menu {
        display: flex;
        position: static;
        flex-direction: row;
        animation: none;
    }
    .hamburger {
        display: none;
    }
}

.button-container {
    display: flex;
    justify-content: center;
    /* Center the buttons */
    /* Add some spacing */
}

.card:nth-child(2) {
    /* Middle card */
    transform: translateY(-20px);
    /* Move the middle card up */
}

.banner {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
}

.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 5px;
}

.card {
    background-image: linear-gradient(to bottom, #145da0, #FFFFFF);
    border: 1px solid #ccc;
    border-radius: 8px;
    padding-top: 15px;
    padding-right: 5px;
    padding-left: 5px;
    margin: 5px;
    margin-top: 50px;
    flex: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card {
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

ul {
    margin-bottom: 25px;
    /* Remove margin */
    padding: 0;
    /* Remove padding */
    align-items: center;
    /* Center align items vertically */
}

ul li {
    list-style: none;
    margin-bottom: 2px;
    margin-left: 5px;
    /* Adjust margin as needed */
}

.card-logo {
    width: 70px;
    height: auto;
    border: 1px solid black;
    border-radius: 20px;
    background-color: rgb(1, 43, 1);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
}

.card-title {
    margin: 5px;
    font-size: 16px;
}

.p {
    font-size: 10px;
    margin: 0;
}

.star {
    margin: 0;
}

@keyframes star-shine {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.star {
    animation: star-shine 1.5s infinite;
    /* Apply the shine effect */
}

.download-button {
    background-image: linear-gradient(to right, #145da0, #350101);
    border: none;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0px 10px;
    margin-bottom: 10px;
}

.download-button i {
    animation: translateIcon 1s ease-in-out infinite;
    /* Apply animation */
}

@keyframes translateIcon {
    50% {
        transform: translateY(2px);
        /* Start at original position */
    }
    0% {
        transform: translateY(0px);
        /* Move to the right */
    }
}

.badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    font-weight: bold;
}

.badge-icon {
    width: 35px;
    height: 35px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px;
    filter: drop-shadow( 0 0px 5px rgb(0, 0, 0));
    overflow: hidden;
}

@keyframes golden-shine {
    0% {
        background: rgb(255, 221, 0);
        transform: translateX(-100%) rotate(-30deg);
    }
    50% {
        background: rgba(0, 0, 0, 0);
        transform: translateX(100%) rotate(-30deg);
    }
}

.badge-icon::before {
    content: '';
    position: absolute;
    top: 0;
    /* Start from the top */
    left: -100%;
    /* Start off-screen */
    width: 200%;
    /* Cover the icon */
    height: 100%;
    /* Cover the icon */
    opacity: 0.8;
    /* Adjust opacity for shine */
    animation: golden-shine 2s infinite;
    /* Apply the animation */
    pointer-events: none;
    /* Prevent interaction with the shine effect */
}

.middle-card {
    margin-bottom: 40px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .card {
        flex: 1;
    }
    .download-button {
        font-size: 10px;
        /* Adjust font size for tablets */
    }
}

@media (max-width: 480px) {
    .card {
        flex: 1;
    }
    .download-button {
        font-size: 10px;
        /* Smaller font size for small devices */
    }
}

@media (max-width: 400px) {
    .card {
        flex: 1;
    }
    .download-button {
        font-size: 7px;
        /* Even smaller font size for very small devices */
    }
}

@media (max-width: 381px) {
    .card {
        flex: 1;
    }
    .download-button {
        font-size: 6px;
        padding: 3px 12px;
        /* Smallest font size for the smallest screens */
    }
}

.search-container {
    display: flex;
    /* Flexbox ka use karein */
    justify-content: center;
    /* Center alignment */
    align-items: center;
    /* Vertical alignment */
    margin: 20px;
    /* Container ke liye margin */
}

.search-input {
    padding: 10px;
    /* Input ke liye padding */
    border: 1px solid #145da0;
    /* Input border */
    border-radius: 5px;
    /* Rounded corners */
    margin-right: 10px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
    /* Button aur input ke beech mein space */
}

.search-button {
    padding: 10px 15px;
    /* Button ke liye padding */
    background-color: #145da0;
    /* Button ka background color */
    color: white;
    /* Button text color */
    border: none;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    /* Cursor ko pointer banayein */
}

.search-button:hover {
    background-color: #555;
    /* Hover effect */
}

.popular-apps-section {
    margin-top: 20px;
}

.popular-apps-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.apps-card-container {
    display: flex;
    flex-direction: column;
    /* Align cards vertically */
    align-items: center;
    /* Center align cards */
}

.app-card {
    display: flex;
    /* Flexbox for card layout */
    justify-content: space-between;
    /* Space between logo/text and button */
    align-items: center;
    /* Center items vertically */
    width: 100%;
    /* Full width for responsiveness 
    max-width: 400px; */
    /* Maximum width for each card */
    padding-left: 20px;
    padding-right: 20px;
    margin-top: -10px;
    margin-bottom: 10px;
    border: 2px solid #145da0;
    border-radius: 10px;
}

.app-card-left {
    display: flex;
    align-items: center;
}

.app-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    margin-right: 7px;
    border: 1px solid black;
    border-radius: 20px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
}

.app-download-button {
    background-image: linear-gradient(to right, #145da0, #350101);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    font-size: 15px;
    border: none;
    border-radius:8px;
    cursor: pointer;
}

.app-download-button i {
    animation: translateIcon 1s ease-in-out infinite;
    /* Apply animation */
}

@keyframes translateIcon {
    50% {
        transform: translateY(2px);
        /* Start at original position */
    }
    0% {
        transform: translateY(0px);
        /* Move to the right */
    }
}

/* Responsive adjustments */

@media (max-width: 768px) {
    .app-card {
        width: 90%;
        /* Card width for smaller screens */
    }
    .app-download-button {
        font-size:12px;
}
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.toggle-button {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
    color: black;
    background-color: #fddaec;
    border: 1px solid #145da0;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
}

.toggle-button.active {
    background-color: #145da0;
    color: white;
}

.section-container {
    display: flex;
    justify-content: center;
}

marquee {
    border: 3px solid #145da0;
    padding: 10px;
    background-color: #fddaec;
    color: #145da0;
    font-size: 18px;
    font-weight: 700;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #145da0;
}

.nav-buttons,
.social-media-links {
    margin: 10px 0;
}

.footer-nav-button,
.social-icon {
    border: 1px solid black;
    padding: 5px 15px;
    border-radius: 2px;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.8);
}

.footer-nav-button,
.social-icon {
    margin: 0 10px;
    text-decoration: none;
    color: white;
}

.thanks {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.reserved-text {
    font-size: 14px;
    color: white;
}

#versionDisplay {
    text-align: center;
}

.about1 {
    display: flex;
    justify-content: center;
}

.about1 h2 {
    border: 1px solid black;
    padding: 10px 20px;
    display: inline-block;
    color: white;
    border-radius: 5px;
    background-color: #145da0;
    cursor: pointer;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
}

.about {
    display: flex;
    flex-direction: column;
    /* Aligns children vertically */
    align-items: center;
    /* Centers children horizontally */
    text-align: center;
    /* Centers text */
    font-size: 17px;
    margin: 5px;
}

.about p {
    margin-bottom: 5px;
    margin-left: 5px;
    font-weight: 800;
}

.about h3 {
    margin-bottom: 5px;
}

.about ul {
    list-style-type: none;
    /* Removes bullet points */
    padding: 0;
    /* Removes default padding */
}

.about ul li {
    margin: 5px;
}

.contact1 {
    display: flex;
    justify-content: center;
}

.contact1 h2 {
    border: 1px solid black;
    padding: 10px 20px;
    display: inline-block;
    color: white;
    border-radius: 5px;
    background-color: #145da0;
    cursor: pointer;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
}

.contact-card {
    max-width: 600px;
    /* Maximum width of the card */
    margin: 10px auto;
    /* Center the card horizontally */
    padding: 20px;
    /* Padding around the card */
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
     background-image: linear-gradient(to bottom, #145da0, #FFFFFF);
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact p {
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
    /* Space below paragraphs */
}

.contact form {
    width: 80%;
    /* Full width */
    margin-bottom: 20px;
    /* Space below the form */
}

.contact label {
    margin-bottom: 5px;
    /* Space below labels */
}

.contact input,
.contact textarea {
    width: 90%;
    /* Full width for inputs and textarea */
    padding: 10px;
    /* Padding inside inputs */
    margin-bottom: 15px;
    /* Space below inputs */
    border: 1px solid #ccc;
    /* Border for inputs */
    border-radius: 4px;
    /* Rounded corners for inputs */
}

.contact button {
    padding: 10px 15px;
    background-image: linear-gradient(to right, #145da0, #350101);
    border: none;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
    color: white;
    /* No border */
    /* Rounded corners for button */
    cursor: pointer;
    display: block;
    /* Make button a block element */
    margin: 0 auto;
    /* Center the button */
}

.contact button:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

/* Responsive Styles */

@media (max-width: 768px) {
    .contact-card {
        padding: 15px;
        /* Less padding on smaller screens */
    }
    .contact h2 {
        font-size: 1.5em;
        /* Adjust heading size */
    }
    .contact input,
    .contact textarea {
        font-size: 1em;
        /* Adjust input size */
    }
    .contact button {
        font-size: 1em;
        /* Adjust button size */
    }
}

.contact-info {
    text-align: center;
    margin: 0 auto;
    width: 60%;
    /* adjust the width as needed */
}

.con {
    padding: 10px 15px;
    background-image: linear-gradient(to right, #145da0, #350101);
    border: none;
    margin-bottom: 20px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.5);
}

.con a {
    text-decoration: none;
    color: white;
}

/* Red Disclaimer Box */

.red-disclaimer-box {
    background-color: #f8d7da;
    /* Light red background */
    border: 1px solid #145da0;
    /* Slightly darker border */
    border-radius: 8px;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    margin: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Centering text and icon inside the box */

.centerio {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #d9534f;
    margin: 10px 0;
}

.centerio i {
    color: #721c24;
    /* Icon color */
    font-size: 22px;
}

/* Text inside the box */

.red-disclaimer-box p {
    color: #721c24;
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
}

/* Strong text */

.red-disclaimer-box b {
    font-weight: bold;
    color: #721c24;
}

/* Centered alert text */

.centerio1 {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #d9534f;
    margin: 10px 0;
}

/* Link styling */

.red-disclaimer-box a {
    color: #d9534f;
    text-decoration: none;
}

.red-disclaimer-box a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */

@media (max-width: 768px) {
    .red-disclaimer-box {
        padding: 10px;
        margin: 15px;
    }
    .centerio {
        font-size: 16px;
    }
    .red-disclaimer-box p {
        font-size: 14px;
    }
    .centerio1 {
        font-size: 18px;
    }
}