/*Arabic font*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@600&display=swap');

/*English font*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');

#Arabic {
    font-family: "Noto Nastaliq Urdu";
}

body {
    background-color: #5f5f00;
    color: #aaaa68;
    font-family: "Roboto Mono", sans-serif;
}

h1,
h2,
h3 {
    color: #ffffac;
    font-weight: 600;
}

h4,
h5,
h6 {
    color: #ffffac;
}

a {
    text-decoration: none;
    color: #aaaa68;
    transition: all 0.4s ease;
}

a:hover {
    color: #ffffca;
}

img {
    width: 100%;
}

.full-height {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.text-brand {
    color: #ffff84;
}

.bg-base {
    background-color: #666600;
}

.shadow-effect {
    transition: all 0.5s;
}

.shadow-effect:hover {
    box-shadow: -6px 6px 0 0 #ffff84;
}

.iconbox {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background-color: #ffff84;
    color: #666600;
}

.navbar {
    background-color: #666600;
}

.navbar .nav-link {
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffca;
}

.navbar .nav-link:hover {
    color: white;
}

@media (min-width: 992px) {
    .navbar {
        min-height: 100vh;
        width: 240px;
        background: linear-gradient(rgba(102, 102, 0, 0.4), rgba(102, 102, 0, 0.8)), url(../img/bi.png);
        background-position: center;
    }

    .navbar-brand img {
        border: 6px solid rgba(255, 255, 202, 0.4);

    }

    #content-wrapper {
        padding-left: 240px;
    }

}

.btn {
    padding: 12px 28px;
    font-weight: 700;
}

.btn-brand {
    background-color: #ffffca;
    border-color: #ffffca;
    color: #666600;
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: #ffff84;
    color: #666600;
    border-color: #ffff84;
}

.press {
    position: relative;
}

.press::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: #ffffca;
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;
}

.press:hover::after {
    width: 100%;
}

#contact .form-control {
    background-color: #666600;
    border-color: #666600;
    color: #aaaa68;

}

#contact .form-control:focus {
    border-color: #ffffca;
    box-shadow: none;
}

#contact .form-control::placeholder {
    color: #aaaa68;
}

#contact input.form-control {
    height: 44px;
}

.socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background-color: #666600;
    border-radius: 100px;
}