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

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

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


/*  =========== Variables =========== */
:root {
    --primary: #d3af4c;
    --light: #F8F8F8;
    --dark: #20224d;
    --light-dark: #20234C;
}

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

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: 0;
}

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

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-light-dark {
    background-color: var(--light-dark) !important;
}

/*  =========== General =========== */
body {
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    /* color: var(--light); */
    color: #000;
    /* background-color: var(--dark); */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Times New Roman", Times, serif;
    /* color: var(--light); */
    color: #000;
}

h1 {
    font-weight: 800 !important;
}

p {
    font-family: "DM Sans", sans-serif;
    /* color: var(--light); */
    color: #000;
}

.header {
    background-color: var(--dark);
}

.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: #FFFFFF;
}

.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: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--light);
    font-weight: 550;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.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: var(--light) !important;
    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: 20px;
        padding-bottom: 20px; */
    }
}

.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: var(--primary) !important;
    color: var(--light) !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, 0.053);
}
/* .owl-carousel-inner-cust {
    background: rgba(0, 0, 0, 0) !important;
} */

.video-desk {
    display: block;
}

.video-mobile {
    display: none;
}
/*
.header-carousel .owl-carousel-item video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

@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 video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-desk {
        display: none;
    }

    .video-mobile {
        display: block;
    }

    .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: 10px;
    height: 10px; */
    border-radius: 50%;
    margin: 5px 0;
    background: #ffffff;
    transition: .5s;
}
.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px 0;
    background: #ffffff;
    transition: .5s;
}
.header-carousel .owl-dots {
    position: absolute;
    /* width: 60px; */
    /* height: 100%; */
    bottom: 30px;
    right: 50vw;
    gap: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.header-carousel .owl-dots .owl-dot.active {
    width: 15px;
    height: 15px;
}

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

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

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    padding: 100px 0px;
}

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


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 900;
    /* letter-spacing: 2.5px; */
    text-transform: uppercase;
    /* font-size: 1.2rem; */
    font-size: 16px;
}


/*** 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 var(--primary);
    z-index: -1;
}


/*** 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: var(--light);
    transition: .5s;
    border-radius: 0;
    color: var(--dark);
    padding: 38px !important;
}

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

.project .nav .nav-link.active {
    background: var(--primary);
}

.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: #ffffff;
    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;
}



@media (min-width: 1200px) {
    .display-1 {
        font-size: 3.5rem !important;
    }
}

.floating-icons {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    /* default for whatsapp */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.float-icon.call {
    background: #0D6EFD;
    /* blue for call */
}

.float-icon:hover {
    transform: scale(1.1);
}

.logo-size {
    /* width:140px; */
    width: 190px;
}

.icon-size {
    width: 54px;
    /* height: 64px; */
}

.border-img {
    border-start-end-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* Force GLightbox description text black */
.glightbox-container .gdesc,
.glightbox-container .gdesc-inner,
.glightbox-container .gdesc-text,
.glightbox-container .gdesc-inner p,
.glightbox-container .gslide-desc,
.glightbox-container .gslide-desc p {
    color: #000 !important;
    font-family: "Times New Roman", serif !important;
}

/* Force GLightbox title black */
.glightbox-container .gdesc-title {
    color: #000 !important;
    font-family: "Times New Roman", serif !important;
}



/* social media start */
.mf-social-side-list {
    position: fixed;
    top: 40vh;
    right: 20px;
    z-index: 100;
}

.mf-social-side-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0
}

.mf-social-side-list ul li a {
    color: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 17px;
    line-height: 41px;
    margin-top: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    /* background-color: #000; */
}

.mf-social-side-list ul li a:hover {
    opacity: .9;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

/* .mf-social-side-list ul li a[href*='whatsapp'] {
    background: #43e51a;
}
.mf-social-side-list ul li a[href*='phone'] {
    background: #257bde;
}
.mf-social-side-list ul li a[href*='facebook'] {
    background: #3b5998;
}
.mf-social-side-list ul li a[href*='instagram'] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);;
}
.mf-social-side-list ul li a[href*='youtube'] {
    background: #c4302b;
}
.mf-social-side-list ul li a[href*='linkedin'] {
    background: #0077B5;
}
.mf-social-side-list ul li a[href*='twitter'] {
    background: #000;
} */

.whatsapp-icon {
    background: #43e51a;
    font-size: 21px !important;
    line-height: 44px !important;
}

.phone-icon {
    background: #257bde;
}


/* social media end */

.footer p {
    color: #fff;
}

.highlight {
    color: var(--primary);
}

.bg-alert {
    background: linear-gradient(45deg, #dbb86b12, #a4742175);
}
/* Input & textarea typed text */
.form-control {
    color: #000 !important;        /* Black text */
}

/* Placeholder text color */
/* .form-control::placeholder {
    color: #000 !important;
    opacity: 1;
} */

/* Floating label color when typing */
/* .form-floating label {
    color: #000 !important;
} */
