/* FONT IMPORT */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

/* Local Font */


/* font-family: "Josefin Sans", sans-serif; */

:root {
    --white: #fff;
    --black: #000;
    --primary: #A37038;
    --secondary: #333333;
    /* Font Variable */
    --font-text: "Poppins", sans-serif;
    /* font-family: "Audiowide", sans-serif; */
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    /* font-family: var(--font-text); */
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

.preLoader img {
    width: 400px;
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--white);
    font-size: 1rem;
    color: var(--black);
    font-weight: 600;
    display: inline-block;
    padding: 1.125rem 2em;
    line-height: normal;
    font-family: var(--font-text);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: 0.5s ease;
}

.themeBtn:hover:before {
    width: 100%;
    opacity: 1;
}

.themeBtn:hover {
    color: var(--white);
}

.themeBtn1 {
    background: var(--black);
    color: var(--white);
    padding: 1.125rem 2.5em;
}


/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    background: var(--black);
    padding-top: 1rem;
}

.topBar {
    background: #151515;
    padding: 1.125rem 0;
}

.topBar ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.topBar ul li span {
    color: var(--white);
}

.navbar-brand img {
    width: 390px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar {
    flex-direction: column;
    /*margin: 0.75rem 0 0 0;*/
}

.navbar-nav {
    gap: 2.2rem;
    padding: 2rem 0 1.3rem 0;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    opacity: 0;
    transition: 0.5s ease;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
    opacity: 1;
}

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


/* !NAV HEADER CSS */


/* Main Sec Css Start */

.mainSec {
    background: var(--black);
}

.mainSec video {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}


/* Main Sec Css End */


/* About Sec Css Start */

.aboutSec {
    background: var(--black);
    padding: 6.25rem 0;
}

.aboutContent img {
    width: 300px;
}

.aboutContent h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 1.5rem 0 1.2rem 0;
}

.aboutContent p {
    color: var(--white);
    font-size: 1.125rem;
    font-family: "Josefin Sans", sans-serif;
    line-height: 2;
    margin-bottom: 1.5rem;
}

.aboutImg figure {
    position: relative;
    overflow: hidden;
}

.aboutImg figure::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.aboutImg figure img {
    transition: 0.5s ease;
}

.aboutImg:hover figure::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


/* About Sec Css End */


/* Carpentry Sec Css Start */

.carpentrySec {
    background: #1D1D1D;
}

.carpentrySec h2 {
    color: var(--white);
    font-size: 2.0625rem;
    margin-bottom: 1.5rem;
}

.secHeading {
    color: var(--white);
    font-size: 2.8125rem;
}

.carpentryContent p {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 1rem 0 1.5rem 0;
}

.carpentryTwo {
    background: var(--black);
}


/* Carpentry Sec Css End */


/* Cabinate Sec Css Start */

.cabinateSec {
    background: url(../images/cabinateBg.webp)center/cover;
    background-attachment: fixed;
}

.cabinateSec::before {
    content: "";
    position: absolute;
    background: var(--white);
    inset: 0;
    opacity: 0.94;
}

.cabinateContent {
    text-align: center;
}

.cabinateContent span {
    font-size: 1.3125rem;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-text);
    margin-bottom: 0.5rem;
    display: block;
}

.mainHeading {
    font-size: 3.4375rem;
    color: var(--black);
}

.cabinateContent p {
    color: var(--black);
    font-size: 1.125rem;
    font-family: 'Josefin Sans';
    line-height: 2;
    margin: 1rem 0 1.2rem 0;
}

.cabinateSec .aboutImg {
    margin-bottom: 2rem;
}

.customCabinate:before {
    background: var(--black);
}

.customCabinate .cabinateContent h2,
.customCabinate .cabinateContent p {
    color: var(--white);
}

.customCabinate .themeBtn1 {
    background: var(--primary);
}

.customCabinate .themeBtn1:before {
    background: var(--white);
}

.customCabinate .themeBtn1:hover {
    color: var(--black);
}


/* Cabinate Sec Css End */


/* Review Sec Css Start */

.reviewContent {
    background: url(../../upload/images/reviewBg.webp) center / cover;
    padding: 3.6rem 2.5rem 3.6rem 2.5rem;
}

.reviewContent h3 {
    font-size: 1.4375rem;
    color: var(--black);
    line-height: 2;
    margin-bottom: 1.3rem;
}

.reviewContent span {
    color: var(--black);
    font-size: 1.375rem;
    font-weight: 500;
}


/* Review Sec Css End */


/* Footer Css Start */

footer {
    background: url(../images/footBg.webp)center/cover;
    padding-top: 5.3125rem;
    position: relative;
}

footer:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    opacity: 0.95;
}

.footerLogo img {
    width: 345px;
}

.footerLogo p {
    color: var(--white);
    text-align: center;
    line-height: 1.8;
    margin: 1.5rem auto;
    width: 85%;
}

.footerLogo ul {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
}

.footerLogo ul li a {
    background: var(--white);
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    font-size: 1.125rem;
    color: var(--black);
}

.footerLogo ul li a:hover {
    background: var(--primary);
    color: var(--white);
}

footer h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Montserrat';
    margin-bottom: 1.5rem;
}

.links li a span {
    color: #C5BA7F;
    font-size: 1.0625rem;
    transition: 0.5s ease;
}

.links li a:hover span {
    color: var(--white);
    transform: translateX(10px);
}

.links li a i {
    color: var(--white);
}

.links li a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.links li+li {
    margin-top: 1.25rem;
}

.copyRight {
    background: var(--black);
    padding: 1.2rem 0;
    margin-top: 3.125rem;
}

.copyRight p {
    color: var(--white);
    text-align: center;
    margin: 0;
    position: relative;
}


/* Footer Css End */


/* inner pages css start */

.innerBaner {
    position: relative;
    z-index: 1;
}

.innerBaner img {
    height: 355px;
    object-fit: cover;
}

.innerBaner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.68;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.innerBaner .content {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    flex-direction: column;
}

.innerBaner .content h2 {
    font-size: 3.75rem;
    color: var(--white);
    margin: 0 0 2rem;
}

.innerBaner .content ul {
    background: var(--white);
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 8px 30px 8px 30px;
    border: 1px solid #CDCDCD;
    gap: 10px;
}

.innerBaner .content ul li a {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 400;
}

.innerBaner .content ul li span {
    color: #1A1A1A;
    font-weight: 500;
}

.abt_img img {
    width: 90%;
}

.abt_img .abtpg1 {
    position: absolute;
    bottom: -60px;
    right: 0;
    width: 430px;
    height: 516px;
    object-fit: cover;
}

.abt_img {
    position: relative;
}

.about-page {
    padding: 7rem 0 11rem;
}

.sub-heading {
    font-size: 1.5625rem;
    font-weight: 700;
    color: var(--primary);
    font-family: "Josefin Sans", sans-serif;
}

.heading {
    font-size: 3.4375rem;
    color: var(--black);
    position: relative;
    font-family: "Audiowide", sans-serif;
    /*font-weight: bold;*/
    margin: 0 0 2rem;
    padding: 0.5rem 0 0;
}

.heading span {
    position: absolute;
    left: 0;
    right: 0;
    font-size: 128px;
    color: #dddddd;
    top: -30px;
    line-height: 1;
    z-index: -1;
    opacity: 0.4;
}

.aboutpg-content p {
    font-size: 1.125rem;
    line-height: 34px;
    color: var(--black);
    font-weight: 400;
    margin: 0;
}

.aboutpg-content p+p {
    margin: 2rem 0 0;
}

.cabinate-design {
    background: url(../../upload/images/inerbg1.jpg) no-repeat top center/ cover;
    position: relative;
    height: 542px;
    display: flex;
    align-items: center;
}

.cabinate-design:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: transparent;
    background-image: linear-gradient(220deg, #1D1D1D 0%, #1D1D1D 100%);
    opacity: 0.85;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.about-page.services--page {
    background: #BCBBBC;
}

.portfolio {
    padding: 6rem 0;
}

.portfolio-card {
    height: 508px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.portfolio-card::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(163, 112, 56, 0.9);
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s;
    z-index: 1;
}

.portfolio-card figure img {
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s;
}

.portfolio-card__content {
    position: absolute;
    inset: 0;
    padding: 3.125rem;
    z-index: 1;
    display: flex;
    align-items: start;
}

.portfolio-card__content .title {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: auto;
    color: var(--white);
    font-family: "Josefin Sans", sans-serif;
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s, opacity 0.2s 0.2s;
}

.portfolio-card__content .plusIcon {
    width: 120px;
    height: 65px;
    font-size: 1.5rem;
    background: var(--black);
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s, opacity 0.2s 0.2s;
}

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

.portfolio-card:hover::before {
    transform: scaleY(1);
}

.portfolio-card:hover :is(.title, .plusIcon) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.faqs {
    padding: 6rem 0;
}

.faqs .card {
    border: none;
    border-bottom: 1px solid #E1E1E1;
    border-radius: 0;
    background: transparent;
}

.faqs .card-header {
    background: transparent;
    padding: 1rem 0;
    border: none;
}

.faqs .card-header button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
}

.faqs .card-body {
    padding: 0 0 1rem;
}

.faqs .card-body p {
    margin: 0;
}

.faqs #accordion1 .card {
    border: none;
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
}

.faqs #accordion1 .card:not(:last-child) {
    margin-bottom: 0.75rem;
}

.faqs #accordion1 .card-header {
    padding: 1rem;
}

.faqs #accordion1 .card-body {
    padding: 0 1rem 1rem;
}

.contactInfo {
    padding: 6rem 0;
}

.contactInfo__links li {
    margin-bottom: 1rem;
}

.contactInfo__links li a {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--black);
}

.contactInfo__links li a span {
    display: block;
    font-weight: 700;
}

.contactInfo__links li a .icon {
    width: 75px;
    aspect-ratio: 1;
    background: #F7F7F7;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 100%;
    color: var(--primary);
    transition: all 300ms ease-in-out;
}

.contactInfo__links li a:hover {
    color: var(--primary);
}

.contactInfo__links li a:hover .icon {
    background: var(--primary);
    color: var(--white);
}

.contact {
    background-color: #F3F3F3;
    padding: 6rem 0;
}

.contact__form :is(input, textarea) {
    width: 100%;
    border: 1px solid #E6E6E6;
    padding: 0.9rem 1.25rem;
    background-color: #fff;
    margin-bottom: 0.75rem;
    resize: none;
}

.contact__form .themeBtn {
    border: none;
}

.socailIcon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.socailIcon li a {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    background-color: var(--primary);
    color: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

/* inner pages css end */
