@import url('header.css');
@import url('hero.css');
@import url('footer.css');
@import url('services.css');
@import url('whychoseus.css');
@import url('ourservice.css');
@import url('bannervid.css');
@import url('partner.css');
@import url('innerbanner.css');
@import url('card.css');
@import url('company.css');
@import url('contact.css');
@import url('newsletter.css');

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

body,
main {
    margin: 0;
    padding: 0;
}

.poftext {
    text-align: justify;
    text-justify: inter-word;
}

.abouttitles {
    color: #dc3545;
}

/* back to top design */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    width: 48px;
    height: 48px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

#backToTop:hover {
    background-color: #c82333;
    transform: scale(1.1);
}

  