/*  =======================================================================

Template:       Arcodo - Architecture & Interior Design HTML5 Template
Version:        1.0
Last change:    24/10/25 
Author:         https://themeforest.net/user/designsninja/portfolio

========================================================================= */

/*=========================================================================
[Table of contents]

1.0  - General
2.0  - Typography
3.0  - Global Style
4.0  - Navigation
5.0  - Page Title Section
6.0  - Slider Section
7.0  - Creative Section
8.0  - About Section
9.0  - Service Section
10.0 - Why Choose Us Section
11.0 - Projects Section
12.0 - Team Section
13.0 - Appointment Section
14.0 - Testimonial Section
15.0 - Blog Section
16.0 - Newsletter Section
17.0 - Footer Section

=========================================================================*/
@font-face {
    font-family: 'FONTFABRIC-UNINEUEREGULAR';
    src: url('../fonts/FONTFABRIC-UNINEUEREGULAR.woff') format('woff')
}

@font-face {
    font-family: 'FONTFABRIC-UNINEUEBOOK';
    src: url('../fonts/FONTFABRIC-UNINEUEBOOK.woff') format('woff')
}


/*  =========== Variables =========== */
:root {
    --primary: #fff;
    --light: #F8F8F8;
    --dark: #001c54;
    --light-dark: #161616;
}

.text-primary {
    color: var(--primary) !important;
}

.text-primary:hover {
    color: #f26b24 !important;
}

.btn-primary {
    background-color: #fff;
    border-color: #fff;
    border-radius: 0;
}

.border-primary {
    border-color: var(--dark) !important;
}

.bg-dark {
    background-color: #737373 !important;
}

.bg-light-dark {
    background-color: #001c54 !important;
}

/*  =========== General =========== */
body {
    font-family: "FONTFABRIC-UNINEUEBOOK", sans-serif;
    font-weight: normal;
    color: var(--light);
    background-color: #001c54;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "FONTFABRIC-UNINEUEREGULAR", sans-serif;
    color: var(--light);
}

h1 {
    font-weight: 800 !important;
}

p {
    font-family: "FONTFABRIC-UNINEUEBOOK", sans-serif;
    color: var(--light);
}

.header {
    background-color: #fff;
}

.logo h1 {
    text-transform: uppercase;
    font-size: 25px;
}

a {
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* For modern browsers */
::placeholder {
    color: var(--light) !important;
    font-size: 14px;
    opacity: 1;
}

/* For Firefox */
input:-moz-placeholder {
    color: var(--light) !important;
    font-size: 14px;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: var(--light) !important;
    font-size: 14px;
    opacity: 1;
}

/* For Internet Explorer (optional/legacy support) */
input:-ms-input-placeholder {
    color: var(--light) !important;
    font-size: 14px;
    opacity: 1;
}

.form-control {
    color: var(--light);
    border-radius: 0;
}

.form-floating>label {
    color: var(--dark);
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: var(--primary) !important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #000;
}

.btn.btn-primary:hover {
    color: #000;
    background: #f26b24;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 0px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 0px 0;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #f26b24;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar-toggler {
    color: var(--light) !important;
    padding: 0;
    border: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none !important;
    color: #001c54;
    font-size: 30px;
    width: auto;
    height: auto;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar.sticky-top {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary) !important;
}

.dropdown-item {
    transition: .5s;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #001c54 !important;
    color: #fff !important;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        width: 240px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (min-width:430px) and (max-width:930px) {
    .navbar-nav {
        height: 250px;
        overflow-y: scroll;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

/* .header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}



.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
} */



.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: #f26b24;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


.section-about {
    color: #001c54;
}

.section-subtitle {
    color: #5b5b5b;
    font-size: 15px;
    line-height: 20px;
}

.exp {
    color: #5b5b5b;
    font-size: 16px;
}

.exp1 {
    color: #001c54;
    font-size: 16px;
}


.section-subtitle1 {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
}


/*** Facts ***/
.fact-item h3 {
    color: var(--dark);
    font-weight: 600;
    font-size: 24px;
}

.fact-item p {
    color: var(--dark);
}

.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: all 0.5s ease;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;


}

/* 
.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
} */

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid #f26b23;
    z-index: -1;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid #f26b23;
    z-index: 0;
}


.section-about {
    background: #fff;
}

.section-about h1,
.title {
    font-size: 29px;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: all 0.5s ease;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item h3 {
    font-size: 25px;
}

.service-item h3,
.service-item p {
    color: var(--dark);
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: #001c54;
    transition: .5s;
    border-radius: 0;
    color: #fff;
    padding: 10px !important;
}

.project .nav .nav-link:hover {
    background: #f26b24;
}

.project .nav .nav-link span {
    color: var(--dark);
    font-size: 20px;
}

.project .nav .nav-link.active {
    background: #001c54;
}

.project .nav .nav-link.active:hover {
    background: #f26b24;
}

.project .nav .nav-link.active span {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item h3 {
    color: var(--dark);
    font-size: 20px;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
    text-decoration: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .form-control:focus {
    color: var(--light) !important;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    color: var(--light);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.no-border {
    border: none;
}

.map-style {
    height: 450px;
}

/*  =========== Margins =========== */

.mt-0 {
    margin-top: 0px !important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-135 {
    margin-top: 135px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-150 {
    margin-top: 150px !important;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-80 {
    margin-left: 80px;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mr-0 {
    margin-right: 0px !important;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-100 {
    margin-right: 100px;
}

.mr-110 {
    margin-right: 110px;
}

.mr-120 {
    margin-right: 120px;
}

/* ************************************************************************************************************************************************************************
*********************************************************************************************************************************************************************************
*************************************************************************************************************************************************************************** */
.enquiry {
    margin-top: 50px;
}

.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 32px;
    background-color: #25D366;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.footer-disclaimer {
    padding-top: 15px;
    padding-bottom: 15px;
}

.ongoing-bg {
    color: #001c54;
    font-weight: bold;
}

.slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease;
}

.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease;
}

.slide-show {
    opacity: 1;
    transform: translateX(0);
}

.project-box {
    padding: 20px;
}

.project-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.project-logo {
    max-width: 120px;
    height: auto;
    flex-shrink: 0;
}

.exp {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    letter-spacing: 0.6px;
}

.exp1 {
    line-height: 30px;
}

/* Mobile */
@media(max-width:767px) {

    .project-content {
        flex-direction: column;
    }

    .project-logo {
        margin-bottom: 15px;
    }

    .exp {
        margin-left: 0 !important;
    }

    .exp1 {
        margin-left: 0 !important;
    }

    .project-img {
        height: auto;
    }

    .about-img img,
    .feature-img img {

        width: 100%;
        height: 97%;
    }

    .about-img img:last-child {
        margin: none !important;
    }
}

.project-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-content.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 25px !important;
}

.project-img {
    width: 77%;
    height: 276px;
    object-fit: cover;
    border-radius: 12px;
    margin-left: 90px;
}

.know-btn {
    border: none;
    padding: 10px 28px;
    background: #e1e1e1;
    color: #001c54;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.know-btn:hover {
    background: #c59d5f;
}

.project-logo {
    max-width: 120px;
    flex-shrink: 0;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.achievement-item img {
    width: 43px;
    height: 55px;
    object-fit: contain;
}

.achievement-item span {
    font-size: 15px;
    font-weight: bold;
    color: #001c54;
}

@media (max-width: 767px) {

    .project-box {
        padding: 15px;
    }

    .project-img {
        width: 100%;
        height: auto;
        display: block;
        margin-left: 0px;
    }

    .project-content {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .project-logo {
        width: 120px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .project-content p {
        margin-left: 0 !important;
        font-size: 14px;
        line-height: 1.7;
    }

    .know-btn {
        width: 100%;
        max-width: 220px;
    }

    .col-md-6 {
        margin-bottom: 20px;
    }
    .header-carousel .owl-carousel-item {
    height: 600px;
}

    
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8) !important;
    color: #000 !important;
    border-radius: 50%;
    font-size: 24px !important;
    line-height: 50px !important;
    text-align: center;
}

.header-carousel .owl-nav .owl-prev {
    left: 20px;
}

.header-carousel .owl-nav .owl-next {
    right: 20px;
}


