/* -------- GLOBAL CSS--------  */

body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.global-btn-bg {
    background-color: #1b00d4;
    padding: 10px 30px;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 13px;
}

@media screen and (max-width: 291px) {
    .navigation-bar .nav-btns {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .global-btn-bg {
        background-color: #1b00d4;
        padding: 10px 25px;
        border: none;
        border-radius: 10px;
        color: white;
        font-size: 13px;
    }
}

.global-btn {
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    color: black;
    border: 1px solid #1b00d4;
    box-shadow: 0 5px 10px -5px #1b00d4;
    background-color: transparent;
    width: fit-content;
}


@media screen and (min-width: 768px) {
    .widh-75 {
        width: 75%;
    }
}

.text-theme {
    color: #1b00d4;
}

.text-theme-dark {
    color: #070038;
}

.line-height {
    line-height: 20px;
}

/* -----HERO BANNER CSS-------- */

.hero-banner {
    background-image: url("../Images/Home/HeroBanner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero-banner h1 {
        font-weight: bold;
    }

    .hero-banner p {
        font-weight: 500;
    }

/* --------ACCOUNTING MAIN ---- */
.accounting-main p {
    font-weight: normal;
    color: #000000;
}

/* -----TESTIMONIAL_MAIN-------- */

.testimonial-main h1 {
    font-weight: bold;
}

.testimonial-main .inner {
    background-color: #2d3436;
    border-radius: 20px;
}

    .testimonial-main .inner h3 {
        font-weight: bold;
    }

/* --FOOTER---- */
@media screen and (max-width: 540px) {
    .footer-main .addres-box {
        display: flex;
        flex-direction: column;
        justify-content: center !important;
        align-items: start !important;
    }

    .footer-main span {
        font-size: 15px;
    }
}

.footer-main span {
    font-weight: 500;
}


/*Aamir CSS */

:root {
    --height-NavMenu: auto;
}




.topnav {
    height: var(--height-NavMenu);
}



.div-login {
    padding: 3px;
}

/*
// <uniquifier > : Use a unique and descriptive class name
// <weight > : Use a value from 100 to 900*/

.exo-font {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.line-height {
    line-height: 1.6;
}

.text-theme-dark {
    color: #1a1a1a;
}


/* Show picture on all page */
.HomeDiv {
    position: relative; /* Ensure positioning for the pseudo-element */
    width: 100%;
    overflow: hidden; /* Prevent the pseudo-element from overflowing */
}

    .HomeDiv::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("/Images/Accounts3.jpg");
        background-size: cover;
        background-position: center;
        opacity: 0.05; /* Apply opacity to the background */
        z-index: -1; /* Place it behind the content */
    }
