body{
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* सामान्य */
  }

/* Header CSS Niche */
.header {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    width: 104px;
    height: 104px;
    border-radius: 50%; /* Round logo */
    margin-right: 10px;
}

.header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 16px;
}

.header nav a:hover {
    text-decoration: underline;
}
/* Header CSS Upar */

/* Footer CSS Niche */
.footer {
    background: #333;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    margin-top: 30px;
}

.footer .social-links a, 
.footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
}

.footer .social-links a:hover,
.footer .footer-links a:hover {
    text-decoration: underline;
}

.footer .footer-links {
    margin-top: 10px;
}
/* Footer CSS Upar */
.disclaimer{
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 20px;
}