/********** Template CSS **********/
:root {
    --primary: #0B375E;
    --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: 30px;
    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;
}

@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;
    }
}


/*** Video Hero ***/
.video-hero {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.video-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.video-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .video-hero {
        height: 600px;
    }
}


/*** 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.active {
    width: 60px;
    height: 60px;
}

.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(../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;
}


/*** 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: .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: 200px;
}


/*** 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);
}

.solution-card{
    background:#fff;
    border:2px solid #b08d57;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.35s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

.solution-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#1f4e79;
    transform:scaleX(0);
    transition:.4s;
}

.solution-card:hover::before{
    transform:scaleX(1);
}

.solution-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    border-color:#1f4e79;
}

.solution-card i{
    width:90px;
    height:90px;
    line-height:90px;
    font-size:42px;
    color:#1f4e79;
    border:2px solid #b08d57;
    border-radius:50%;
    background:#fff;
    margin-bottom:20px;
    transition:.4s;
}

.solution-card:hover i{
    background:#1f4e79;
    color:#fff;
    border-color:#1f4e79;
    transform:rotate(8deg) scale(1.08);
}

.solution-card h4{
    font-size:18px;
    font-weight:600;
    color:#222;
    line-height:1.5;
    transition:.3s;
}

.solution-card:hover h4{
    color:#1f4e79;
}
.solutions-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
    gap:30px;
}

.solutions-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
}



@media(max-width:992px){

.section-heading h2{
font-size:34px;
}

.solutions-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.solutions-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.solution-card{
padding:25px 15px;
}

.solution-card i{
font-size:42px;
}

.solution-card h4{
font-size:16px;
}

.section-heading h2{
font-size:28px;
}

}

@media(max-width:480px){

.solutions-grid{
grid-template-columns:1fr 1fr;
}

.section-heading p{
font-size:15px;
}

}

.testimonial-slider{
position:relative;
display:flex;
align-items:center;
}

.testimonial-wrapper{
overflow:hidden;
width:100%;
}

.testimonial-track{
display:flex;
transition:.5s;
}

.testimonial-card{
min-width:33.333%;
padding:18px;
}

.testimonial-card>div,
.testimonial-card p{
background:#fff;
}

.testimonial-card{
padding:15px;
}

.testimonial-card{
display:flex;
flex-direction:column;
}

.testimonial-card{
background:#fff;
border-radius:18px;
padding:30px;
box-shadow:0 8px 30px rgba(0,0,0,.08);
margin:10px;
}

.stars{
color:#ffb400;
font-size:22px;
margin-bottom:15px;
letter-spacing:2px;
}

.testimonial-card p{
color:#555;
line-height:1.8;
font-size:15px;
margin-bottom:25px;
min-height:130px;
}

.client{
display:flex;
align-items:center;
}

.avatar{
width:55px;
height:55px;
border-radius:50%;
background:#0d6efd;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:22px;
margin-right:15px;
}

.client h4{
font-size:18px;
color:#222;
margin-bottom:4px;
}

.client span{
font-size:14px;
color:#777;
}

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:46px;
height:46px;
border:none;
border-radius:50%;
background:#fff;
cursor:pointer;
font-size:24px;
box-shadow:0 8px 20px rgba(0,0,0,.15);
z-index:100;
transition:.3s;
}

.arrow:hover{
background:#0d6efd;
color:#fff;
}

.prev{
left:-22px;
}

.next{
right:-22px;
}

.dots{
display:flex;
justify-content:center;
margin-top:30px;
gap:10px;
}

.dot{
width:12px;
height:12px;
border-radius:50%;
background:#ccc;
cursor:pointer;
transition:.3s;
}

.dot.active{
background:#0d6efd;
transform:scale(1.3);
}

@media(max-width:991px){

.testimonial-card{
min-width:50%;
}

.section-title h2{
font-size:30px;
}

}

@media(max-width:768px){

.testimonial-card{
min-width:100%;
}

.arrow{
display:none;
}

.section-title h2{
font-size:28px;
}

.testimonial-section{
padding:60px 15px;
}

}


/*** 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);
}


/*** Topbar & Footer - white text/icons ***/
.topbar a.text-body,
.footer.text-body {
    color: #FFFFFF !important;
}

.topbar i.text-primary,
.footer i.text-primary {
    color: #FFFFFF !important;
}

.topbar .btn-outline-body,
.footer .btn-outline-body {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, .5);
}

.topbar .btn-outline-body:hover,
.footer .btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Stat Boxes (Hero) ***/
.stat-box {
    background: rgba(255, 255, 255, .95);
    transition: .5s;
}

.stat-box:hover {
    background: var(--primary);
}

.stat-box:hover h2,
.stat-box:hover p {
    color: #FFFFFF !important;
}

/* Why Choose Us */

.choose-card{
    background: var(--light);
    padding:40px 30px;
    border-radius:15px;
    transition:.4s;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    border:1px solid rgba(0,0,0,.05);
}

.choose-card:hover{
    background:var(--primary);
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.choose-card h4{
    margin-bottom:15px;
    transition:.4s;
}

.choose-card p{
    margin-bottom:0;
    color:#666;
    transition:.4s;
}

.choose-card:hover h4,
.choose-card:hover p{
    color:#fff;
}

.choose-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:var(--primary);
    transition:.4s;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.choose-card:hover .choose-icon{
    background:var(--dark);
    color:#fff;
    transform:rotateY(180deg);
}

@media (max-width:991px){
    .choose-card{
        padding:35px 25px;
    }
}

@media (max-width:767px){

    .choose-card{
        padding:30px 20px;
    }

    .choose-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

}

/*** Design Process Timeline ***/
.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #DEDEDE;
}

@media (max-width: 991.98px) {
    .process-timeline::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-step .process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary);
    transition: .5s;
}

.process-step:hover .process-icon {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Company Timeline (About) ***/
.company-timeline {
    display: flex;
    align-items: flex-start;
}

.timeline-step {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.timeline-year {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-node {
    position: relative;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.timeline-node::before {
    content: "";
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: .5;
}

.timeline-step:not(:last-child) .timeline-node::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: .25;
    z-index: 1;
}

.timeline-dot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-title {
    margin-top: 20px;
    font-size: 1.1rem;
}

@media (max-width: 767.98px) {
    .company-timeline {
        flex-direction: column;
        align-items: stretch;
    }

    .timeline-step {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 0 0 2rem 0;
    }

    .timeline-year {
        width: 70px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .timeline-node {
        flex-direction: column;
        height: auto;
        width: 30px;
        align-self: stretch;
        align-items: center;
        justify-content: center;
    }

    .timeline-node::before {
        width: 2px;
        height: auto;
        flex: 1;
    }

    .timeline-step:not(:last-child) .timeline-node::after {
        left: 50%;
        top: 50%;
        bottom: auto;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

    .timeline-dot {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 0 auto;
    }

    .timeline-title {
        margin-top: 0;
        margin-left: 15px;
    }
}


/*** Star Rating ***/
.star-rating i {
    color: #FFC107;
    margin-right: 2px;
}


/*** Gallery Masonry ***/
.gallery-filters .btn {
    margin: 0 5px 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.gallery-filters .btn.active {
    color: #FFFFFF;
    background: var(--primary);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

@media (max-width: 991.98px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 575.98px) {
    .gallery-masonry {
        column-count: 1;
    }
}

.gallery-item {
    display: block;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    break-inside: avoid;
}

.gallery-item.gallery-hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
    color: #FFFFFF;
    opacity: 0;
    transition: .5s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/*** Before & After Comparison Slider ***/
.before-after {
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
    aspect-ratio: 16 / 9;
}

.before-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-after .ba-after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-after .ba-after-wrap img {
    width: 100%;
}

.before-after .ba-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #FFFFFF;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.before-after .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: ew-resize;
}

.before-after .ba-label {
    position: absolute;
    top: 15px;
    padding: 4px 14px;
    background: rgba(0, 0, 0, .6);
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.before-after .ba-label-before {
    right: 15px;
}

.before-after .ba-label-after {
    left: 15px;
}


/*** Achievement Counter ***/
.achievement-counter {
    background: linear-gradient(rgba(11, 55, 94, .92), rgba(11, 55, 94, .92)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

/* FAQ Section */

.faq-section{
    background:#fff;
}

.faq-accordion .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.faq-accordion .accordion-button{
    font-size:18px;
    font-weight:600;
    padding:22px 25px;
    color:var(--dark);
    background:#fff;
    box-shadow:none;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

.faq-accordion .accordion-button:focus{
    box-shadow:none;
}

.faq-accordion .accordion-button::after{
    filter:brightness(0);
}

.faq-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}

.faq-accordion .accordion-body{
    padding:25px;
    font-size:16px;
    line-height:1.8;
    color:#666;
}

@media(max-width:768px){

.faq-accordion .accordion-button{
    font-size:16px;
    padding:18px;
}

.faq-accordion .accordion-body{
    padding:20px;
    font-size:15px;
}

}
/*=========================
 Custom Woodwork
=========================*/

.woodwork-section{
    padding:90px 0;
    background:#f8f8f8;
}

.woodwork-section .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* Top Section */

.top-section{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:60px;
}

/* Video */

.video-box{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.video-box video{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
}

/* Content */

.sub-title{
    color:#b88942;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.content-box h2{
    font-size:46px;
    margin:18px 0;
    color:#222;
    line-height:1.2;
}

.content-box h2 span{
    color:#b88942;
}

.content-box p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/* Products */

.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* Cards */

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-content{
    padding:22px;
}

.product-content h3{
    font-size:22px;
    color:#222;
    margin-bottom:12px;
}

.product-content p{
    color:#777;
    font-size:15px;
    line-height:1.7;
}

/* Laptop */

@media(max-width:1200px){

.products{
    grid-template-columns:repeat(2,1fr);
}

}

/* Tablet */

@media(max-width:992px){

.top-section{
    grid-template-columns:1fr;
}

.video-box video{
    height:420px;
}

.content-box h2{
    font-size:36px;
}

.products{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:768px){

.products{
    grid-template-columns:1fr;
}

.video-box video{
    height:300px;
}

.content-box h2{
    font-size:30px;
}

.woodwork-section{
    padding:60px 0;
}

}

/*** WhatsApp Floating Button ***/
.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    z-index: 99;
    transition: .3s;
}

.whatsapp-float:hover {
    color: #FFFFFF;
    transform: scale(1.1);
}
.interior-spaces{
    padding:90px 20px;
    background:#f8f9fc;
}

.container{
    max-width:1250px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#b08d57;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.section-title h2{
    font-size:42px;
    margin:12px 0;
    color:#1f2937;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.spaces-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.space-card{
    background:#fff;
    border:2px solid #d9c2a3;
    border-radius:18px;
    padding:35px;
    transition:.35s;
    position:relative;
}

.space-card:hover{
    transform:translateY(-8px);
    border-color:#1f4e79;
    box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.space-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#eef6ff;
    color:#1f4e79;
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    border:2px solid #b08d57;
}

.space-card h3{
    color:#1f2937;
    margin-bottom:15px;
    font-size:24px;
}

.space-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:28px;
}

.space-btn{
    display:inline-block;
    padding:12px 28px;
    background:#1f4e79;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.space-btn:hover{
    background:#b08d57;
}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.spaces-grid{
    grid-template-columns:1fr;
}

.space-card{
    padding:28px;
}

}