/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

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


/*** 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: 50px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    /* 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-nav .current_page_item .nav-link span{
    color: var(--primary);
}

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

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@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;
    }

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


/*** 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);
}

:root {
    --header-height: 145px;
}

.banner-sec {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
}

.banner-sec .container-fluid {
    height: 100%;
    padding-bottom: 0 !important;
}

.header-carousel,
.header-carousel .carousel-inner,
.header-carousel .carousel-item {
    position: relative;
    height: 100%;
}

.header-carousel .carousel-inner {
    overflow: hidden;
}

.header-carousel .carousel-item {
    overflow: hidden;
    background: #101010;
}

.header-carousel.carousel-fade .carousel-item {
    transition: opacity 2.2s ease-in-out;
}

.header-carousel.carousel-fade .carousel-item,
.header-carousel.carousel-fade .carousel-item.active,
.header-carousel.carousel-fade .carousel-item-next.carousel-item-start,
.header-carousel.carousel-fade .carousel-item-prev.carousel-item-end {
    transform: none;
}

.header-carousel .carousel-item>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 7s ease;
}

.header-carousel .carousel-item.active>img {
    transform: scale(1.04);
}

.banner-copy>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.header-carousel .carousel-item.active .banner-copy>* {
    opacity: 1;
    transform: translateY(0);
}

.header-carousel .carousel-item.active .banner-copy>*:nth-child(1) {
    transition-delay: 0.25s;
}

.header-carousel .carousel-item.active .banner-copy>*:nth-child(2) {
    transition-delay: 0.45s;
}

.header-carousel .carousel-item.active .banner-copy>*:nth-child(3) {
    transition-delay: 0.65s;
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 90px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 110px;
    }

    .header-carousel .carousel-item {
        min-height: calc(100vh - var(--header-height));
    }

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

.header-carousel .carousel-indicators {
    position: absolute;
    width: auto;
    height: auto;
    top: auto;
    right: auto;
    bottom: 28px;
    left: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 0.75rem;
    transform: translateX(-50%);
    z-index: 3;
}

.header-carousel .carousel-indicators [data-bs-target] {
    position: relative;
    width: 12px;
    height: 12px;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    padding: 0;
    background: transparent;
    opacity: 1;
    text-indent: -9999px;
    overflow: hidden;
    transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}

.header-carousel .carousel-indicators .active {
    background: #ffffff;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.18);
    transform: scale(1.15);
}

@media (max-width: 991.98px) {
    .header-carousel .carousel-indicators {
        width: auto;
        bottom: 24px;
        left: 50%;
        padding: 0;
        transform: translateX(-50%);
    }
}

.header-carousel .carousel-control-prev,
.header-carousel .carousel-control-next {
    width: auto;
    opacity: 1;
    z-index: 3;
}

.header-carousel-nav {
    position: absolute;
    top: 50%;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(183, 141, 101, 0.88));
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.header-carousel-nav:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(183, 141, 101, 1));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%) scale(1.05);
}

.header-carousel-nav:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

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

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

.header-carousel-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 1.35rem;
}

@media (max-width: 991.98px) {
    .header-carousel-nav {
        width: 50px;
        height: 50px;
    }

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

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

@media (max-width: 768px) {
    .header-carousel-nav {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .header-carousel-nav:hover {
        transform: scale(1.05);
    }

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

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

    .header-carousel .carousel-indicators {
        bottom: 22px;
    }
}

.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: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.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: .5;
}

.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;
}

/*** About Gallery ***/
.about-gallery-wrap {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 2vw + 1rem, 2.75rem);
    background:
        radial-gradient(circle at top right, rgba(183, 141, 101, 0.2), transparent 28%),
        linear-gradient(135deg, #fffaf3 0%, #ffffff 48%, #f3ece4 100%);
    border: 1px solid rgba(183, 141, 101, 0.16);
    border-radius: 34px;
    box-shadow: 0 26px 60px rgba(37, 37, 37, 0.08);
}

.about-gallery-wrap::before,
.about-gallery-wrap::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.about-gallery-wrap::before {
    width: 220px;
    height: 220px;
    top: -90px;
    right: -70px;
    background: rgba(183, 141, 101, 0.12);
}

.about-gallery-wrap::after {
    width: 180px;
    height: 180px;
    bottom: -85px;
    left: -65px;
    background: rgba(37, 37, 37, 0.05);
}

.about-gallery-header,
.about-gallery-grid {
    position: relative;
    z-index: 1;
}

.about-gallery-header {
    margin-bottom: 1.75rem;
}

.about-gallery-header__copy {
    max-width: 42rem;
}

.about-gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    padding: .55rem 1rem;
    color: var(--primary);
    font-family: "Teko", sans-serif;
    font-size: 1.15rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: rgba(183, 141, 101, 0.1);
    border-radius: 999px;
}

.about-gallery-kicker span {
    width: 42px;
    height: 1px;
    background: currentColor;
}

.about-gallery-header p {
    max-width: 36rem;
    color: #6c665f;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.about-gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    color: #FFFFFF;
    text-align: left;
    background: var(--dark);
    border: 0;
    border-radius: 26px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 18px 38px rgba(37, 37, 37, 0.14);
}

.about-gallery-card:focus-visible {
    outline: 3px solid rgba(183, 141, 101, 0.55);
    outline-offset: 4px;
}

.about-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-gallery-card:hover .about-gallery-img,
.about-gallery-card:focus-visible .about-gallery-img {
    transform: scale(1.08);
}

.about-gallery-caption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 1rem 1.1rem;
    background: linear-gradient(180deg, rgba(37, 37, 37, 0.06) 0%, rgba(37, 37, 37, 0.8) 100%);
    border-radius: 18px;
}

.about-gallery-caption h5 {
    margin-bottom: 0;
    color: #FFFFFF;
}

.about-gallery-tag {
    display: inline-block;
    margin-bottom: .45rem;
    padding: .35rem .75rem;
    color: #FFFFFF;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(183, 141, 101, 0.88);
    border-radius: 999px;
}

.about-gallery-zoom-pill {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .8rem 1.1rem;
    color: #FFFFFF;
    font-size: .95rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.about-gallery-zoom-pill i {
    font-size: 1rem;
}


/*** 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;
    width: 100%;
}

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

.service-item * {
    transition: .5;
}

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

.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;
}

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

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


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

.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;
}


/*** Portfolio Section ***/
.portfolio-sec {
    background: #f8f8f8;
}

.portfolio-card {
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    overflow: visible !important;
    border-radius: 10px;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.portfolio-img-wrapper {
    height: 280px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(0.7);
}

.portfolio-overlay {
    background: linear-gradient(135deg, rgba(183, 141, 101, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
    display: none;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay>div {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-overlay h5 {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.6s ease;
}

.portfolio-overlay p {
    font-size: 0.95rem;
    opacity: 1;
    color: #e0e0e0;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-text {
    border-top: 3px solid var(--primary);
    transition: all 0.3s ease;
    border-radius: 0 0 10px 10px;
}

.portfolio-text h5 {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem !important;
}

.portfolio-text p {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

@media (min-width: 769px) {
    .portfolio-card:hover .portfolio-text {
        background: var(--primary);
    }

    .portfolio-card:hover .portfolio-text h5 {
        color: #ffffff !important;
    }

    .portfolio-card:hover .portfolio-text p {
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

@media (max-width: 768px) {
    .portfolio-img-wrapper {
        height: 240px;
    }

    .portfolio-overlay {
        display: none !important;
        opacity: 0 !important;
    }

    .portfolio-card:hover .portfolio-overlay {
        display: none !important;
        opacity: 0 !important;
    }

    .portfolio-card:hover .portfolio-img {
        transform: scale(1.05) rotate(0deg);
        filter: brightness(1);
    }

    .portfolio-text {
        border-top: 3px solid var(--primary);
    }

    .portfolio-text h5 {
        font-size: 0.95rem;
    }

    .portfolio-text p {
        font-size: 0.8rem;
    }

    .portfolio-card:active .portfolio-text {
        background: transparent;
    }

    .portfolio-card:active .portfolio-text h5 {
        color: var(--primary) !important;
    }

    .portfolio-card:active .portfolio-text p {
        color: #6c757d !important;
    }
}
}

.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;
}

.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;
}

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

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

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

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

/* nav.navbar.navbar-light .navbar-brand img {
    width: 100%;
} */

@media only screen and (min-width: 200px) and (max-width: 767px) {
    nav.navbar.navbar-light .navbar-brand img {
        width: 250px;
    }
}

/*** Blog Page Styles ***/
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    position: relative;
    min-height: 260px;
    max-height: 260px;
    overflow: hidden;
}

.blog-card-img img,
.blog-detail-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-body {
    flex: 1;
}

.blog-card-img:hover img,
.blog-detail-image-wrapper:hover img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.blog-card-body h3,
.blog-card-body h5 {
    color: var(--dark);
}

.blog-card-body p {
    line-height: 1.7;
}

.blog-card-body .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

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

.blog-details-sec .blog-detail-content h1 {
    line-height: 1.1;
}

.blog-detail-badge {
    font-size: 0.95rem;
}

.blog-detail-feature {
    background: #fbfbfb;
}

.blog-detail-feature h6 {
    font-size: 1rem;
}

.blog-detail-feature p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.blog-detail-rich-content {
    background: #fff;
}

.blog-detail-aside {
    background: var(--primary);
}

.blog-detail-aside h4,
.blog-detail-aside h5,
.blog-detail-aside p,
.blog-detail-aside li {
    color: rgba(255, 255, 255, 0.95);
}

.blog-detail-aside ul {
    padding-left: 1rem;
}

@media (max-width: 768px) {

    .blog-card-body h3,
    .blog-card-body h5 {
        font-size: 1.05rem;
    }

    .blog-detail-content h1 {
        font-size: 2rem;
    }
}



/*** Portfolio Details Section ***/
.portfolio-details-sec {
    background: #ffffff;
}

.portfolio-detail-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.portfolio-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-detail-image-wrapper:hover .portfolio-detail-img {
    transform: scale(1.08);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-overlay i {
    font-size: 3rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.portfolio-detail-image-wrapper:hover .zoom-overlay,
.portfolio-thumb-card:hover .zoom-overlay,
.portfolio-gallery-strip__card:hover .zoom-overlay,
.portfolio-gallery-strip__card:focus-visible .zoom-overlay,
.about-gallery-card:hover .zoom-overlay,
.about-gallery-card:focus-visible .zoom-overlay {
    opacity: 1;
}

.portfolio-detail-image-wrapper:hover .zoom-overlay i,
.portfolio-thumb-card:hover .zoom-overlay i,
.portfolio-gallery-strip__card:hover .zoom-overlay i,
.portfolio-gallery-strip__card:focus-visible .zoom-overlay i,
.about-gallery-card:hover .zoom-overlay i,
.about-gallery-card:focus-visible .zoom-overlay i {
    transform: scale(1.2);
}

/* Portfolio Gallery Strip */
.portfolio-gallery-strip {
    padding: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(183, 141, 101, 0.18), transparent 34%),
        linear-gradient(145deg, #fffaf4 0%, #f5eee6 100%);
    border: 1px solid rgba(183, 141, 101, 0.18);
    border-radius: 26px;
    box-shadow: 0 20px 45px rgba(37, 37, 37, 0.08);
}

.portfolio-gallery-strip__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.portfolio-gallery-strip__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

.portfolio-gallery-strip__header h5,
.portfolio-gallery-strip__header p {
    margin: 0;
}

.portfolio-gallery-strip__header p {
    max-width: 22rem;
    color: #6f6f6f;
}

.portfolio-gallery-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.portfolio-gallery-strip__card {
    position: relative;
    width: 100%;
    border: 0;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(37, 37, 37, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-gallery-strip__card--featured {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.portfolio-gallery-strip__card:hover,
.portfolio-gallery-strip__card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(37, 37, 37, 0.16);
}

.portfolio-gallery-strip__card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.portfolio-gallery-strip__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-gallery-strip__card:hover .portfolio-gallery-strip__img,
.portfolio-gallery-strip__card:focus-visible .portfolio-gallery-strip__img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .about-gallery-wrap {
        border-radius: 26px;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-gallery-strip__header {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .portfolio-gallery-strip {
        padding: 1rem;
    }

    .portfolio-gallery-strip__grid {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery-strip__card--featured {
        aspect-ratio: 4 / 3;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-thumb-card {
    cursor: pointer;
    background: #f0f0f0;
    aspect-ratio: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.portfolio-thumb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-thumb-card:hover .portfolio-thumb-img {
    transform: scale(1.1);
}

/*** Service Details Form ***/
.service-form-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(183, 141, 101, 0.18), transparent 32%),
        linear-gradient(145deg, #fffaf4 0%, #f4ede5 100%);
    border: 1px solid rgba(183, 141, 101, 0.18);
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(37, 37, 37, 0.12);
}

.service-form-card::before,
.service-form-card::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    pointer-events: none;
}

.service-form-card::before {
    width: 220px;
    height: 220px;
    top: -120px;
    right: -80px;
    background: rgba(183, 141, 101, 0.12);
}

.service-form-card::after {
    width: 160px;
    height: 160px;
    bottom: -90px;
    left: -70px;
    background: rgba(37, 37, 37, 0.05);
}

.service-form-card__inner,
.service-form-card form {
    position: relative;
    z-index: 1;
}

.service-form-card__badge {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(183, 141, 101, 0.28);
}

.service-form-card__badge i {
    font-size: 1.4rem;
}

.service-form-card__intro {
    max-width: 32rem;
    color: #5f5a54;
}

.service-form-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.service-form-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1rem;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(183, 141, 101, 0.16);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 37, 37, 0.06);
    backdrop-filter: blur(6px);
}

.service-form-card__meta i {
    color: var(--primary);
}

.service-form-card .form-floating>.form-control,
.service-form-card .form-floating>.form-select {
    height: calc(3.5rem + 14px);
    padding: 1rem 1rem;
    color: var(--dark);
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(183, 141, 101, 0.18);
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(37, 37, 37, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.service-form-card .form-floating .form-control,
.service-form-card .form-floating .form-select {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(183, 141, 101, 0.18);
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(37, 37, 37, 0.12);
}
.contact-sec .form-control,
.contact-sec .form-select {
    padding: 1rem 1rem;
    color: var(--dark);
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(183, 141, 101, 0.18);
    border-radius: 18px;
    box-shadow: 0 10px 22px rgba(37, 37, 37, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.service-form-card .form-floating p{
    margin:0;
}

.service-form-card .form-floating>textarea.form-control {
    height: 140px !important;
    min-height: 140px;
    padding-top: 1.35rem;
}

.service-form-card .form-floating>label {
    padding: 1rem 1rem;
    color: #7f776d;
}

.service-form-card .form-floating>.form-control:focus,
.service-form-card .form-floating>.form-select:focus {
    border-color: rgba(183, 141, 101, 0.7);
    box-shadow: 0 0 0 0.22rem rgba(183, 141, 101, 0.14);
    transform: translateY(-1px);
}

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

.service-form-submit {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(37, 37, 37, 0.18);
}

.service-form-submit:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(37, 37, 37, 0.24);
}

.service-form-submit:focus {
    color: #FFFFFF;
    box-shadow: 0 0 0 0.22rem rgba(183, 141, 101, 0.2);
}

@media (max-width: 991.98px) {
    .service-form-card {
        padding: 1.75rem;
        border-radius: 22px;
    }
}

@media (max-width: 575.98px) {
    .service-form-card {
        padding: 1.25rem;
    }

    .service-form-card__meta span {
        width: 100%;
        justify-content: center;
    }

    .service-form-submit {
        letter-spacing: 0.04em;
    }
}

.portfolio-details-content h2 {
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.portfolio-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-item h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.detail-item p {
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

.detail-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 141, 101, 0.4);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 141, 101, 0.2);
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Related Projects */
.related-project-card {
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.related-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.related-project-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 1;
}

.related-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-project-card:hover .related-project-img {
    transform: scale(1.12);
}

.related-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-project-card:hover .related-project-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .portfolio-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-detail-image-wrapper {
        aspect-ratio: 16/9;
    }

    .portfolio-details-content h2 {
        font-size: 1.75rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
    }

    .d-flex.gap-3 .btn {
        width: 100%;
    }

    .detail-item p {
        font-size: 0.95rem;
    }
}

/*** After / Before Section ***/
.after-before-sec {
    position: relative;
    background: #f8efe4;
    border-top: 1px solid rgba(183, 141, 101, 0.22);
    border-bottom: 1px solid rgba(183, 141, 101, 0.22);
    box-shadow:
        inset 0 18px 30px rgba(255, 255, 255, 0.45),
        inset 0 -18px 30px rgba(255, 255, 255, 0.38);
}

.compare-intro {
    max-width: 620px;
}

.before-after-card {
    padding: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(28, 22, 18, 0.08);
    border-radius: 30px;
    box-shadow: 0 24px 54px rgba(37, 27, 18, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.before-after-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 62px rgba(37, 27, 18, 0.14);
}

.before-after-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 424 / 217;
    background: #111;
    border-radius: 22px;
    cursor: ew-resize;
    touch-action: none;
    user-select: none;
    outline: none;
}

.before-after-wrapper:focus-visible {
    box-shadow: 0 0 0 3px rgba(183, 141, 101, 0.28);
}

.before-after-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.after-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.2s ease;
}

.after-overlay .after-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-label {
    position: absolute;
    top: 20px;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3;
}

.before-after-label.before {
    left: 20px;
    background: rgba(255, 247, 238, 0.78);
    color: #31261f;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.before-after-label.after {
    right: 20px;
    background: rgba(255, 235, 245, 0.72);
    color: #31261f;
    border: 1px solid rgba(255, 255, 255, 0.62);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 4;
    pointer-events: none;
    transition: left 0.2s ease;
}

.handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: #1f1b18;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    letter-spacing: -0.16em;
    box-shadow: 0 16px 30px rgba(37, 27, 18, 0.18);
}

.before-after-caption {
    padding: 1.15rem 0.45rem 0.25rem;
}

.before-after-caption h5 {
    margin-bottom: 0.45rem;
    color: #1f1b18;
}

.before-after-caption p {
    margin-bottom: 0;
    color: #6d655d;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .before-after-wrapper {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .before-after-wrapper {
        aspect-ratio: 16 / 10;
    }

    .before-after-card {
        padding: 10px;
        border-radius: 24px;
    }

    .before-after-label {
        top: 14px;
        padding: 0.55rem 0.8rem;
        font-size: 0.64rem;
    }

    .before-after-label.before {
        left: 14px;
    }

    .before-after-label.after {
        right: 14px;
    }

    .handle-icon {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .before-after-caption {
        padding: 1rem 0.15rem 0.2rem;
    }
}

.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    border-bottom: 1px solid #eee;
}

.navbar .navbar-nav .nav-item .dropdown-menu {}

/* .navbar .dropdown-menu .dropdown-item{
    width: 300px;
    white-space: normal;
    word-break: break-all;
} */

.navbar .dropdown-menu {
    width: 300px;
    min-width: 300px;
}

.navbar .dropdown-menu .dropdown-item {
    width: 100%;
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
    padding: 5px 15px 5px 35px;
    position: relative;
}

/* Icon */
.navbar .dropdown-menu .dropdown-item::before {
    content: "\f105";
    /* Font Awesome arrow icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}
