:root {
    --primary-color: #FE6809;
    --secondary-color: #1F1F1F;
    --white-color: #FFFFFF;
    --border-color: #3E3E3E;
    --text-color: black;
    --title-color: #18191D;
    --light-gray: #F5F5F5;
    --main-font: 'Manrope', sans-serif;
    --title-font: 'Teko', sans-serif;
    --bs-btn-bg: red;
    --dark-color: #1f1f1f;
    --toolbar-color: #313235;
}
body {
    color: var(--text-color);
    line-height: 28px;
    font-family: var(--main-font);
}

h2 {
    color: var(--title-color);
}

ul, li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
a {
    text-decoration: none;
    color: inherit;
}
p {
    position: relative;
    font-family: var(--main-font);
    color: var(--text-color);
    font-weight: 400;
    margin: 0px;
}
.org-text-primary {
    color: var(--primary-color);
}
.white-text {
    color: var(--white-color);
}
.org-py-60 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.org-py-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.org-my-90 {
    margin-top: 90px;
    margin-bottom: 90px;
}
.org-bg-primary {
    background-color: var(--primary-color);
}
.org-bg-dark {
    background-color: var(--dark-color);
}
.side-bar-contact {
    background-color: var(--dark-color);
    padding: 50px 30px;
    border-radius: 10px;
    color: var(--white-color);
}
    .side-bar-contact p {
        color: var(--white-color);
    }
    .call-icon {
        font-size: 40px;
        color: var(--primary-color);
        padding: 40px 0px;
        display: block;
    }
/* Theme Button Styles */
.theme-btn {
    background: #fe6809;
    border: 0px none var(--white-color);
    position: relative;
    font-size: 16px;
    line-height: 1em;
    font-weight: 500;
    font-family: var(--title-font);
    letter-spacing: 1.6px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--white-color);
    background: var(--theme-color);
    text-align: center;
    vertical-align: middle;
    padding: 16px 30px 14px 30px;
    z-index: 1;
    overflow: hidden;
}
.btn-box a.theme-btn {
    color: var(--white-color);
}
.theme-btn {
    background: var(--primary-color);
    padding: 16px 30px 14px 30px;
    color: var(--white-color);
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
    .theme-btn:before, .theme-btn:after {
        content: "";
        position: absolute;
        color: yellow;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--text-color);
        border-radius: 50%;
        transform: scale(0) rotate(0);
        transform-origin: center;
        color: navy;
        z-index: -1;
        display: block;
        box-sizing: border-box;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55)
    }

.theme-btn:hover:before {
    border-radius: 0;
    transform: scale(1) rotate(-180deg);
}

.theme-btn:hover:after {
    border-radius: 0;
    transform: scale(1) rotate(180deg);
}


#nav.navbar .btn-primary, .banner-section .btn.btn-primary {
    background-color: #fe6809;
}

.nav-item a {
    position: relative;
}
    .nav-item a::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 0;
        height: 2px;
        background-color: orange;
        visibility: hidden;
        transition: width .5s ease-in, visibility .3s ease-in;
    }

.nav-item:hover a::after {
    width: 100%;
    visibility: visible;
}

/* Loader Styles */
.loader-container {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: black;
    display: grid;
    place-content: center;
    transition: opacity 0.4s ease-in, visibility 0.4s ease-in-out;
}

    .loader-container.hidden {
        visibility: hidden;
        opacity: 0;
    }

.loader {
    width: 4rem;
    height: 4rem;
    border: 0.4rem solid orange;
    border-left-color: transparent;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner 0.8s ease infinite alternate;
}

#page-content {
    opacity: 0;
    transform: translate3d(0, -4rem, 0);
    transition: opacity 2s ease-in, transform 2s ease-in-out;
}

    #page-content.visible {
        opacity: 1;
        transform: translate3d(0, -1rem, 0);
    }

@keyframes spinner {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1.2) rotate(360deg);
    }
}

/* Header Styles */
.header-top {
    background: #313235;
    border-bottom: 1px solid #3E3E3E;
    padding: 10px 20px;
}

    .header-top .info-list li {
        font-size: 12px;
        line-height: 1.5em;
        font-weight: 400;
        padding-right: 4px;
    }

    .header-top li {
        text-align: right;
    }

    @media only screen and (min-width: 768px) {
        .header-top ul.info-list li:before {
        content: "/";
        position: relative;
        margin: 0 5px;
    }
}

.header-top .info-list li a, .header-top .info-list li span {
    color: #fff;
}

.header-top .info-list li:first-child:before {
    display: none;
}

#nav-main {
    position: sticky;
    top: 16px;
    z-index: 100;
    outline: 1px solid var(--dark-color);
}

.navbar {
    background: var(--dark-color);
}
    .navbar .container-fluid {
        padding-left: 0px;
        padding-right: 0px;
    }
.navbar-brand {
    position: relative;
    left: -6px;
}
.navbar-brand h2 {
    font-family: Arial: var(--white-color);
    letter-spacing: 3px;
}
.navbar-toggler {
    background-color: gray;
}
.nav-item {
    padding: 10px 0px;
}
@media only screen and (min-width: 780px) {
    .nav-item {
        padding: 10px 10px;
    }
}


#nav-main .nav-item .nav-link {
    color: white;
    font-weight: 600;
}
    #nav-main .nav-item .nav-link.active {
        color: var(--white-color);
    }


/* Banner Styles */
.banner-section {
    position: relative;
    overflow: hidden;
}
    .banner-section .slide-item {
        opacity: 1;
        background: black;
        padding: 68px 10px;
    }

@media only screen and (min-width: 780px) {
    .banner-section .slide-item {
        padding: 220px 50px;
    }
}

.image-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../images/banner-home.jpg);
    transform: scale(1.2, 1.2);
    transition: transform 5s ease-in-out;
}

.banner-section:hover .image-layer {
    transform: scale(1, 1);
}

.content-box {
    position: relative;
    z-index: 5;
    transform: translateX(0);
    transition: transform 2s ease-in-out;
}

.banner-sub-title {
    font-size: 20px;
    font-family: var(--title-font);
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0.56em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    opacity: 1;
}

    .banner-section h2 {
        font-size: 40px;
        line-height: 1.1em;
        font-weight: 600;
        color: rgb(255, 255, 255);
        margin-bottom: 17px;
        opacity: 1;
        letter-spacing: inherit;
        transition: letter-spacing 2s ease-in-out;
        transition-delay: .5s;
    }

.banner-section:hover h2 {
    letter-spacing: 5px;
}


    .banner-title span {
        background-repeat: no-repeat;
        background-position: 100% 80%;
    }

main {
    overflow-x: hidden;
}
/* Home - Service Section Styles */
.service-section {
    background-color: rgba(24,25,29,.99);
    padding-bottom: 160px;
}

.sec-title {
    position: relative;
    display: block;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.3em;
    margin: 0px;
}

.sec-sub-title {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.service-icon-main {
    margin-top: -150px;
}

.service-icon-box {
    padding: 20px 20px;
    z-index: 1;
    position: relative;
    border-bottom: 3px solid var(--secondary-color);
    background: var(--white-color);
    box-shadow: 0px 4px 60px 0px rgba(139, 139, 139, 0.15);
    transition: all 500ms ease;
}
.about .service-icon-box {
    min-height: 235px;
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
    .service-icon-box {
        min-height: 270px;
    }
    .about .service-icon-box {
        min-height: 355px;
    }
}

    .service-icon-box .icon-box {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .service-icon-box .icon-box-inner {
        color: var(--primary-color);
        font-size: 40px;
        padding: 10px;
        display: inline-block;
        border-radius: 5px;
        background: #F5F5F5;
        margin-right: 10px;
        position: relative;
        transition: all 500ms ease;
        z-index: 1;
        border: 2px solid #f5f5f5;
        
    }

.icon-box-inner img {
    width: 32px;
    height: 32px;
}

.service-icon-box h5 > a {
    color: var(--title-color);
    line-height: 1.5em;
}

    .service-icon-box:hover h5 > a {
        color: var(--primary-color);
    }

    .service-icon-box:hover {
        border-bottom-color: var(--primary-color);
    }

        .service-icon-box:hover .icon-box-inner {
            border-color: var(--primary-color);
        }


/* Home - About Section Styles */
.about-section img {
    max-width: 100%;
    border-radius: 10px;
    display: block;
}
.title-box {
    /*margin-bottom: 200px;*/
}

.about-section .sec-title {
    margin-bottom: 20px;
    font-weight: 600;
}

ul.about-list li {
    position: relative;
    padding-left: 40px;
    font-size: 20px;
    font-family: var(--title-font);
    color: var(--secondary-color);
    margin-bottom: 15px;
    transition: color .5s ease-in-out;
}

ul.about-list li:hover {
    color: var(--primary-color);
}

    ul.about-list li::before {
        position: absolute;
        left: 0px;
        top: 0px;
        display: inline-block;
        content: "\f280";
        font-family: 'bootstrap-icons';
        width: 25px;
        height: 25px;
        border-radius: 50%;
        color: var(--white-color);
        background: var(--text-color);
        font-size: 12px;
        text-align: center;
        line-height: 25px;
        transition-property: left background-color;
        transition-duration: .5s;
        transition-timing-function: ease-in-out;
    }

ul.about-list li:hover::before {
    left: 5px;
    background-color: var(--primary-color);
}

        .about-section {
            /*padding-top: 40px;
    padding-bottom: 40px;*/
        }
@media only screen and (min-width: 800px) {
    .about-section{
        width: 50%;
    }
    .about-content {
        padding-left: 100px;
    }
}

/* Home - Why Choose Section Styles */
.section-why-choose {
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: #F7F7F7;
}
.choose-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all 500ms ease;
    max-width: 364px;
}
    .choose-image-box .content {
        position: absolute;
        background: var(--white-color);
        padding: 45px 40px 20px 40px;
        right: 20px;
        left: 20px;
        bottom: 0;
        border-radius: 5px 5px 0px 0px;
        transition: all 500ms ease;
        min-height: 145px;
    }
.sec-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
}
.choose-image-box .icon-box {
    display: inline-block;
    padding: 15px;
    background: var(--title-color);
    border-radius: 5px;
    color: var(--white-color);
    position: relative;
    z-index: 1;
    transition: all 500ms ease;
    position: absolute;
    top: -50px;
}
.choose-image-box .content h3 {
    min-height: 75px;
}
.choose-image-box .content h3 a {
    font-size: 30px;
    color: var(--title-color);
    margin-bottom: 10px;
}

.choose-image-box:hover .content {
    padding-bottom: 100px;
}

    .choose-image-box:hover .content p {
        opacity: 1;
        transform: scale(1);
    }

.choose-image-box .content p {
    margin-top: 10px;
    padding-right: 20px;
    position: absolute;
    transform: scale(1, 0);
    transform-origin: top;
    opacity: 0;
    transition: all 500ms ease;
}

.lets-talk-box {
    background-color: var(--primary-color);
    border-radius: 10px;
    
}
    .lets-talk-box:hover h2 {
        transform: scale(1, 1);
    }

    .lets-talk-box h2 {
        font-size: 50px;
        transform: scale(.8, .8);
        color: var(--white-color);
        transition: transform 2s ease-in-out;
    }


#about-why .choose-image-box .content p {
    padding-right: 20px;
    position: absolute;
    transform-origin: top;
    transition: all 500ms ease;
    opacity: 1;
    transform: scale(1);
}

#about-why .choose-image-box .content {
    padding-bottom: 120px;
}

.accordion-header {
    position: relative;
    cursor: pointer;
    background-color: #F2F3F6;
}
.accordion-button {
    font-weight: 600;
}
.accordion-button, .accordion-button:not(.collapsed) {
    background-color: #F2F3F6;
}
    .accordion-button:focus {
        z-index: 3;
        box-shadow: 0 0 0 0.25rem rgba(254, 104, 9);
    }
.accordion-body p {
    padding: 1em;
}
/* Footer Section Styles */
.main-footer {
    background-color: var(--dark-color);
}
.footer-main-content {
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer-social-media {
}
.main-footer address {
    color: var(--white-color);
}
.footer-widget-title {
/*    font-size: 30px;*/
    color: var(--white-color);
    padding-bottom: 15px;
}
#menu-footer-menu li {
    padding-bottom: 15px;
}
#menu-footer-menu a {
    color: var(--white-color);
}
.footer-bottom {
    background-color: #313235;
    text-align: center;
    position: fixed;
    width: 100%;
}
.footer-bottom .copyright p {
    color: var(--light-gray);
    font-size: 0.8em;
    letter-spacing: 1.5px;
}
.footer-column {
/*    min-height: 215px;*/
}

.info-box {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    
}
    .info-box .info-icon {
        position: relative;
        font-size: 50px;
        padding: 25px;
        background: var(--secondary-color);
        color: #fff;
        border-radius: 5px;
        margin-right: 30px;
        height: 100px;
        width: 100px;
        overflow: hidden;
        opacity: 1;
        z-index: 1;
    }
    .info-box .info-text p {
        line-height: 22px;
    }
.info-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #eeeeee;
    transition-property: left top opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in;
    z-index: -2;
    opacity: 0;
}
.info-box:hover .info-icon::before {
    left: -100%;
    transform: rotate(-40deg);
    opacity: 1;
}

.hero-section {
    position: relative;
}

.page-title-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-about:before {
    background-color: #FBAB7E;
    background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
}

.hero-service:before {
    background-color: #FF9A8B;
    background-image: linear-gradient(225deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
}

.hero-contact:before {
    background-color: #FF3CAC;
    background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
}

.page-title-section {
    opacity: 1;
    padding: 68px 10px;
    color: var(--white-color);
}

.hero-about .content-box h1 {
    color: var(--dark-color);
}

.hero-service .content-box h1 {
    color: var(--dark-color);
}

.hero-contact .content-box h1 {
    color: var(--dark-color);
}

.section-divider {
    margin: 50px 0;
    height: 5px;
    background-color: var(--primary-color);
}

.sidebar-title {
    background-color: var(--primary-color);
    padding: 15px 30px;
    color: var(--white-color);
}

ul.services-categories li {
    position: relative;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: #F5F5F5;
    color: var(--secondary-color);
    border-radius: 3px;
    transition: all 200ms ease;
}

    ul.services-categories li:before {
        content: "->";
        position: absolute;
        top: 17px;
        bottom: 25px;
        right: 20px;
        transition: all 500ms ease;
    }

.section-divider-m-0 {
    height: 4px;
    background-color: var(--primary-color);
}

.section-border-bottom {
    border-bottom: 4px solid var(--primary-color);
}

.services-categories .active {
    font-weight: bold;
    color: var(--primary-color);
}

.form-inline {
    display: inline;
}
.btn-logout {
    background-color: var(--toolbar-color);
    border: 0;
    color: var(--white-color);
    text-decoration: none;
}

.form-group {
    margin-bottom: 20px;
}

.btn {
    padding: .25rem .40rem;
}
.card-header {
    font-size: 14px;
}

.editor {
    min-height: 300px;
}

label:has(+ input[data-val-required])::after {
    content: '*';
    color: red;
    margin-left: 5px;
    display: inline-block;
}

#page-content main:first-child {
    min-height: 278px;
}