/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Styling */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #0052D4, #6B0FD7);
    padding: 15px 20px;
    color: white;
    position: relative;
}

.logo img {
    height: 50px;
    
}

/* Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    list-style: none;
    display: flex;
}

.nav-links ul li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 5px 10px;
}

.search-box {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search-box input {
    padding: 5px;
    border: none;
    border-radius: 3px;
    outline: none;
}

.search-box button {
    background: white;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.search-box i {
    color: #0052D4;
}
.close-btn {
    display:none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
  

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }

    .nav-links ul {
        flex-direction: column;
        text-align: center;
    }

    .nav-links ul li {
        margin: 10px 0;
    }

    .nav-links a {
        color: black;
        font-size: 18px;
    }

    .search-box {
        justify-content: center;
        margin-top: 10px;
    }

    .close-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        color: black;
        position: absolute;
        top: 10px;
        right: 15px;
        cursor: pointer;
    }
}
/* Reset */

.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    text-align: center;
    margin-top:50px;
}

/* Top Buttons */
.top-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn {
    flex: 1;
    min-width: 160px;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Gradient Button Colors */
.btn-green { background: linear-gradient(to right, green, black); }
.btn-blue { background: linear-gradient(to right, blue, black); }
.btn-darkblue { background: linear-gradient(to right, navy, black); }
.btn-purple { background: linear-gradient(to right, purple, black); }

/* Image Section */
.test-banner img {
    width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}

/* Menu Buttons */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.menu-btn {
    flex: 1;
    min-width: 180px;
    background: navy;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Test Info */
.test-info {
    background: #004080;
    color: white;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
}

/* 📌 Responsive Design for Mobile */
@media (max-width: 768px) {
    .top-buttons {
        flex-direction: column;
    }

    .menu {
        flex-direction: column;
    }

    .btn, .menu-btn {
        font-size: 16px;
        padding: 10px;
    }

    .test-info {
        font-size: 14px;
        padding: 10px;
    }
}
.banner {
    position: relative;
    width: 300px;
    height:200PX;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
    margin:20PX;
}
.tag a{
    text-decoration:none;
}
.banner img {
    width: 100;
    display: block;
    height: auto;
}
.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5a5a;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    animation: slideIn 1s ease-in-out;
}
.table-container {
            width: 80%;
            margin: 20px auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        h2 {
            background: blue;
            color: white;
            padding: 10px;
            border-radius: 5px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        th, td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }
        th {
            background: blue;
            color: white;
        }
        td a {
            text-decoration: none;
            font-weight: bold;
            color: red;
        }
        td a:hover {
            color: blue;
        }
        .hindi-text {
            color: blue;
        }
        @media (max-width: 600px) {
            .table-container {
                width: 95%;
            }
            th, td {
                padding: 10px;
            }
        }
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 480px) {
    .banner {
        width: 90%;
    }
}
.table-container {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h2 {
    background: blue;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
th {
    background: blue;
    color: white;
}
td a {
    text-decoration: none;
    font-weight: bold;
    color: red;
}
td a:hover {
    color: blue;
}
.hindi-text {
    color: blue;
}
@media (max-width: 600px) {
    .table-container {
        width: 95%;
    }
    th, td {
        padding: 10px;
    }
}
#width-banner{
    display:block;
    width:100%;
    
    
}
#width-banner .banner{
    display:inline-block;
    max-width:400%;

}
  /* Footer Styling */
  .footer {
    background: linear-gradient(to right, #005a9c, #9cc1e0);
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    font-family: Arial, sans-serif;
}

.footer a {
    color: blue;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}

/* Scroll-to-top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: blue;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    color:red;
}

/* Notification Button */
.notification-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: red;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}
.group-container {
    width: 60%;
    margin: 10px 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 2px solid;
    font-size: 18px;
    font-weight: bold;
    margin:auto;
    margin-bottom:10px;
}

.group-container i {
    font-size: 22px;
    margin-right: 10px;
}

/* WhatsApp Group */
span a{
    text-decoration:none;
}
.whatsapp {
    border-color: #25D366;
    background-color: #e6f8e9;
    color: #25D366;
    
}

.whatsapp .join-btn {
    background-color: #25D366;
    color: white;
}

/* Telegram Group */
.telegram {
    border-color: #0088cc;
    background-color: #e8f4fc;
    color: #0088cc;
}

.telegram .join-btn {
    background-color: #0088cc;
    color: white;
}

/* Instagram Group */
.instagram {
    border-color: #E4405F;
    background-color: #fde7ec;
    color: #E4405F;
}

.instagram .join-btn {
    background-color: #E4405F;
    color: white;
}

/* Join Now Button */
.join-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.join-btn i {
    margin-right: 8px;
}
a{
    text-decoration:none;
    color:white;
}