/********** Template CSS **********/
:root {
    --primary: #f7c608;
    --secondary: #ff6922;
    --light: #effdf5;
    --dark: #4aa7cd ;
}

body {
    font-size: 1rem; /* 16px base */
    line-height: 1.6;
}

h1 {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
}

h2 {
    font-size: 2rem; /* 32px */
    font-weight: 600;
}

h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
}

h4 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
}

h5 {
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
}

h6 {
    font-size: 1rem; /* 16px */
    font-weight: 500;
}

.navbar .nav-link {
    font-size: 0.95rem; /* ~15px */
    font-weight: 500;
    letter-spacing: 0.5px; /* subtle spacing */
}


.project-image {
    width: 100%; /* Ensures the image spans the card's width */
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover; /* Ensures the image scales proportionally and crops excess */
    border-radius: 4px; /* Optional: To match the card's rounded corners */
}


.psr_back_to_top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** psr_spinner ***/
#psr_spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#psr_spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: 0.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;
    border-radius: 50px;
}

/*** Navbar ***/
.nav-bar {
    position: relative;
    padding: 0 2rem;
    transition: 0.5s;
    z-index: 9999;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/ /* Subtle shadow for depth */
}

    .nav-bar.sticky-top {
        position: sticky;
        padding: 0 2rem;
        z-index: 9999;
    }

.navbar {
    /* box-shadow: 0 0 30px rgba(0, 0, 0, .08); */
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: 0.5s;
}

.navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #000000;
    /*font-size: 15px;*/
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0 1rem;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
/*@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}*/

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #dddddd;
}

/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: #FFFFFF !important; */
    border-radius: 50px;
    /* border: 1px dashed var(--primary) !important; */
}

/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}

/*** Category ***/
.cat-item div {
    background: #ffffff;
    border: 1px dashed rgba(0, 185, 142, 0.3);
    transition: 0.5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: 0.5s;
}

.cat-item:hover div * {
    color: #ffffff !important;
}

/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #ffffff;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.property-item img {
    transition: 0.5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.team-item .btn {
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.team-item .btn:hover {
    color: #ffffff;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, 0.3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}



.service-box_inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    transition: 0.4s ease-in-out;
}

.service-box_icon {
    /* font-size: 24px; */
    line-height: 48px;
    color: #fff;
    width: 50px;
    height: 50px;
    background-size: 100% 100%;
    margin: 0 20px 0px auto;
    display: block;
    margin: 0 auto 14px;
}

.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.service-box .service-content {
    margin-left: 20px;
}

.service-box_title {
    font-weight: 700;
    /* font-size: 24px; */
    line-height: 31px;
    margin: 0 0 15px 0;
}

.service-box_title a {
    color: #fff;
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-box_text {
    font-weight: 400;
    /* font-size: 16px; */
    /* line-height: 28px; */
    /* max-width: 296px; */
    margin-bottom: 0;
    /* font-size: 14px; */
    color: #fff;
    display: block;
    margin: 0 auto;
    transition: 0.4s ease-in-out;
}

.service-content {
    width: 100%;
}

.pwg_section_title{
    width: fit-content;
}

.pwg_section_title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.pwg_section_title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.pwg_section_title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.pwg_section_title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.pwg_section_title h6::before,
.pwg_section_title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: #1000ff80;
}

.case-content.style3 {
    background: var(--white-color);
    box-shadow: 0px 2px 14px rgba(22, 37, 66, 0.1);
    padding: 20px;
    width: calc(100% - 40px);
    left: 20px;
}


/*** Project Portfolio ***/
#pwg_portfolio_flters .btn {
    position: relative;
    display: inline-block;
    margin: 10px 4px 0 4px;
    transition: 0.5s;
}

#pwg_portfolio_flters .btn::after {
    position: absolute;
    content: "";
    right: -1px;
    bottom: -1px;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 50px solid #ffffff;
}

#pwg_portfolio_flters .btn:hover,
#pwg_portfolio_flters .btn.active {
    color: var(--light);
    background: var(--primary);
}

.pwg_portfolio_overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
}

.property-item:hover .pwg_portfolio_overlay {
    opacity: 1;
}

.property-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
}

.property-item:hover .btn {
    opacity: 1;
    transition-delay: 0.15s;
}
.blog_item .btn {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid #f7c608 !important;
    border: initial;
    transition: 0.5s;
    opacity: 1;
    z-index: 2;
}

.blog_item:hover .btn {
    opacity: 1;
    transition-delay: 0.15s;
}

i.text-primary {
    color: #bf8e31 !important;
}


ul#pwg_portfolio_flters .btn-outline-primary {
    border: 0;
    padding: .375rem 1.15rem;
}


.pwg_choose_us_item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
}
.pwg_choose_us_item img {
    width: 66px;
    margin-bottom: 15px;
}
.nav-plot-availability {
    color: white !important; /* Text color */
    border-radius: 10px; /* Rounded background */
    padding: 15px 25px; /* Adjusted padding for balanced spacing */
    font-weight: bold; /* Bold text for emphasis */
    text-align: center; /* Center-align text */
    line-height: 1.5; /* Adjust line spacing */
    display: inline-block; /* Ensure the box wraps tightly around the content */
    transition: background-color 0.3s ease-in-out; /* Smooth hover transition */
}

    /* Hover effect */
    .nav-plot-availability:hover {
        background-color: #d35400; /* Darker orange on hover */
        color: white !important; /* Ensure text stays white */
        text-decoration: none; /* Remove underline */
    }

.bg-dark {
    background-color: #141e22 !important;
}


.bg-navbar-gradient {
    background: linear-gradient(180deg, #5f9930, #365919);
}
