* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AspektaVF';
    src: url('../fonts/AspektaVF-Regular.woff2');
}

body {
    font-family: sans-serif;
    background-color: white;
    color: black;
}




/* -- Header --*/
.header {
    display: flex;
    justify-content: space-between;
    background-color: #1f2122;
    align-items: center;
    width: 100%;
}

.logo {
    height: auto;
    width: auto;
    margin-left: 50px;
}

.logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 5px 0px;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-family: 'AspektaVF';
    font-weight: 400;
    color: white;
    position: relative;
    padding-bottom: 2px;

}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ff0000;
    transform: scaleX(0);
    transition: transform 0.4s ease-out;
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff0000;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 7px 10px;
}

.contact-btn {
    width: 120px;
    height: 44px;
    color: #fff;
    background: #ff0000;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-btn span {
    font-size: 16px;
    font-family: 'AspektaVF';
    font-weight: 500;
    transition: top 0.3s;
}

.contact-btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.contact-btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    transform: translateY(-50%);
}

.contact-btn:hover .contact-btn-text-one {
    top: -100%;
}

.contact-btn:hover .contact-btn-text-two {
    top: 50%;
}

@media only screen and (max-width: 700px) {

    .header {
        display: grid;
        position: fixed;
        z-index: 1000;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        border: none;
    }

    .logo {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        height: 30px;
        width: 30px;
        margin: 0px 0px 18px 20px;
    }

    .nav-links {
        gap: 10px;
        padding: 12px;
        grid-row: 2 / 3;
        grid-column: 1 / 3;
        justify-content: space-around;
        background-color: #E5E5E5;
    }

    .nav-links a {
        font-size: 12px;
        letter-spacing: 1px;
        color: black;
        font-weight: 600;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover::after {
        display: none;
    }

    .nav-links a.active {
        color: #ff0000;
    }

    .contact-container {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        justify-self: end;
    }

    .contact-btn {
        width: 100px;
        height: 36px;
    }

    .contact-btn span {
        font-size: 14px;
    }
}





/* -- Chatbot -- */
#chatbot-container {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

#chatbot-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: #0520f0;
    color: white;
    font-size: 15px;
    font-family: 'AspektaVF';
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
}

#chatbot-toggle-btn img {
    width: 18px;
    height: 18px;
    display: inline-block
}

#chatbot-menu {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: 320px;
    max-width: calc(100vw - 56px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 18px 16px 20px 16px;
    transform-origin: bottom right;
    transition: transform 220ms cubic-bezier(.2, .9, .2, 1), opacity 220ms ease;
    opacity: 0;
    transform: translateY(10px) scale(.98);
    pointer-events: none;
    visibility: hidden;
}

#chatbot-menu.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}

#chatbot-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

#chatbot-close-btn:hover {
    color: #d32f2f
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: cover
}

.modal-question {
    margin: 20px 0px;
    font-size: 16px;
    font-family: 'AspektaVF';
    font-weight: 500;
}

.menu-option {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: 'AspektaVF';
    font-weight: 500;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff
}

.instagram-btn {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff
}

.chatbot-social-icon {
    height: 23px;
    width: 23px;
    margin-right: 7px;
    margin-bottom: -5px;
    filter: invert(1);
}

.Message-icon {
    filter: invert(1);
}

.modal-instruction {
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 13px;
    font-family: 'AspektaVF';
    font-weight: 500;
}

@media only screen and (max-width: 700px) {

    #chatbot-container {
        right: 10px;
        bottom: 40px;
    }

    #chatbot-toggle-btn {
        gap: 7px;
        padding: 11px 20px;
        font-size: 14px;
    }
}





/*  Footer  */
.main-footer {
    background-color: #1f2122;
    padding: 60px 0px 0px 0px;
    width: 100%;
}

.footer-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
    width: 33.3%;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 33.3%;
    gap: 10px;
}

.footer-logo-box {
    grid-column: 1/2;
    grid-row: 1/3;
    height: 200px;
    width: 200px;
    margin: auto 0px;
}

.footer-logo {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-no {
    grid-column: 2/3;
    grid-row: 1/2;
    font-family: 'AspektaVF';
    font-weight: 500;
    font-size: 14px;
    padding: 65px 0px 5px 0px;
    color: #e3e3e3;
}

.email-address {
    grid-column: 2/3;
    grid-row: 2/3;
    font-family: 'AspektaVF';
    font-weight: 500;
    font-size: 14px;
    padding-top: 15px;
    color: #e3e3e3;
}

.detail-value {
    color: #cdcdcd;
    display: inline-block;
    margin-left: 5px;
    font-family: 'AspektaVF';
    font-weight: 500;
    font-size: 15px;
}

.footer-heading {
    text-align: center;
    font-size: 20px;
    font-family: 'Lora';
    font-weight: 700;
    color: #e3e3e3;
    margin-bottom: 18px;
}

.quick-links {
    height: auto;
    width: auto;
}

.quick-links ul {
    list-style: none;
    text-align: center;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    text-decoration: none;
    color: #797979;
    font-size: 14px;
    font-family: 'AspektaVF';
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.quick-links a:hover {
    color: #c6c6c6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon-link {
    display: block;
    width: 30px;
    height: 30px;
}

.social-icon {
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: invert(1);
    transition: opacity 0.3s;
}

.social-icon-link:hover .social-icon {
    opacity: 0.7;
}

/* --- Copyright Bar --- */
.footer-copyright {
    text-align: center;
    padding: 20px 5%;
    color: #797979;
    font-size: 11px;
    font-family: 'AspektaVF';
    font-weight: 500;
}

.Website-partner {
    color: #797979;
    font-size: 11PX;
    font-family: 'AspektaVF';
    font-weight: 500;
}

.footer-copyright a {
    text-decoration: none;
    font-size: 11PX;
    color: #D00000;
    font-family: 'AspektaVF';
    font-weight: 500;
}

@media only screen and (max-width: 930Px) {

    .main-footer {
        padding: 40px 0px 0px 0px;
    }

    .footer-content-wrapper {
        gap: 10px;
        justify-content: space-between;
        padding-bottom: 30px;
    }

    .footer-column {
        width: auto;
    }

    .contact-info {
        width: 290px;
    }

    .footer-logo-box {
        height: 120px;
        width: 120px;
    }

    .contact-no {
       color: #797979;
        font-size: 12px;
        padding: 20px 0px 5px 0px;
    }

    .email-address {
         color: #797979;
        font-size: 12px;
        padding-top: 0px;
    }

    .detail-value {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .quick-links {
        width: 120px;
        text-align: center;
    }

    .quick-links li {
        margin-bottom: 4px;
    }

    .quick-links a {
        font-size: 12px;
    }

    .social-links {
        text-align: center;
        margin: 0px auto;
    }

     /* --- Copyright Bar --- */
    .footer-copyright {
        font-size: 10px;
    }

    .Website-partner {
        font-size: 10PX;
    }

    .footer-copyright a {
        font-size: 10PX;
    }

}