* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background: #fff;
    text-align: center;
    overflow-x: hidden;
}


.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

.logo img {
    width: 160px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links li {
    list-style: none;
    position: relative;
    font-size: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 8px 12px;
    position: relative;
}

/* Underline Animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background-color: #3f3f3f;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover::after,
.nav-links .active::after {
    transform: scaleX(1);
}

/* Employee Login Button (No Underline) */
.login-btn {
    background-color: #c3c0c0;
    color: rgb(248, 247, 247);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    position: relative;
}

.login-btn::after {
    display: none; /* Removes underline animation */
}

.login-btn:hover {
    background-color: #d4d5d5;
}

.privacy-policy {
    width: 100%;
    max-width: 1500px;
    margin: 20px auto;
    padding: 30px;
    background: url('images/bg.jpg') no-repeat center center; 
    background-size: cover;
    color: #2e2c2c;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
    text-align: left;
}

.privacy-policy h1 {
    font-size: 35px;
    color: #373737;
    text-align: center;
}

.privacy-policy h2 {
    font-size: 25px;
    color: #2e2d2d;
    margin-top: 20px;
}

.privacy-policy p {
    font-size: 18px;
    color: #2b2a2a;
    line-height: 1.6;
}

.privacy-policy ul {
    list-style: none;
    padding: 0;
}

.privacy-policy ul li {
    font-size: 18px;
    margin: 5px 0;
    color: #333;
}

.privacy-policy a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

.privacy-policy a:hover {
    text-decoration: underline;
}



footer {
    background: linear-gradient(135deg, #3c3c3c, #505151);
    color: white;
    padding: 50px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
    position: relative;
    top: -50px;
}

.footer-about p {
    font-size: 17px;
    color: #ddd;
    line-height: 1.6;
    max-width: 300px;
    margin-top: -100px;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-about h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-links h3, .footer-contact h3 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-size: 17px;
}

.footer-links ul li a:hover {
    color: #6ad0ff;
    transform: translateX(5px);
}

.footer-contact form {
    display: flex;
    gap: 10px;
}

.footer-contact input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #222;
    color: white;
}

.footer-contact button {
    background: #b6d5e4;
    color: rgb(56, 55, 55);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 14px;
}