* {
    margin: 0;
    padding: 0;
    font-family: Inter-Regular;
}

header {
    background-color: black;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header-logo {
    width: 170px;
}

.header-nav-text {
    display: flex;
    gap: 80px;
}

.header-nav-text a {
    text-decoration: none;
    color: white;
    font-size: 23px;
}

.header-nav-text-glow {
    display: flex;
    gap: 50px;
    margin-left: 3%;
    margin-right: -5%;
}

.header-nav-text-glow a {
    text-decoration: none;
    font-size: 23px;
}

.text-purple {
    color: #DB25BA !important
}

.text-yellow {
    color: #DCEA15 !important
}

.glow-purple {
    text-shadow: #DB25BA 0px 0px 50px;
}

.glow-yellow {
    text-shadow: #DCEA15 0px 0px 50px;
}

.header-buttons {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 15px;
}

.header-buttons a {
    font-size: 16px;
    font-family: Inter-Bold;
}

.header-nav-button-login {
    background-color: #ff0000;
    border: none;
    padding: 8px 30px;
    border-radius: 5px;
}

.header-nav-button-login a {
    color: white;
    text-decoration: none;
    font-family: Inter-Bold;
    font-size: 15px;
}

.header-nav-button-language {
    margin-right: 10px;   
    background-color: #333;
    border: none;
    padding: 7px 30px;
    border-radius: 5px;
}

.header-nav-button-language a {
    color: white;
    text-decoration: none;
    display: flex;
}

.account-img {
    cursor: pointer;
    width: 50px;
}

.header-nav-line {
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    margin-top: 0px;
    padding: 0;
    filter: blur(5px);
}

nav.sticky {
    position: fixed;
    top: 0;
    width: 1865px;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
}

footer {
    background-color: #000;
    padding: 40px 50px;
    color: #fff;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #333;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 3;
    padding-right: 60px;
}

.footer-logo {
    margin-top: 10px;
    margin-bottom: 25px;
}

.logo-image-footer {
    width: 200px;
    height: auto;
}

.company-details {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -5px;
}

.company-details p {
    font-size: 15px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.certification {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.certification img {
    height: 35px;
    width: auto;
}

.footer-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-top-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 30px;
}

.footer-section a {
    font-size: 14px;
    transition: color 0.3s;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    display: block;
    margin-bottom: 6px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom-contact {
    margin-bottom: 40px;
    margin-top: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
