	 :root {
     --color-dark: #100e0b;
     --color-dark-2: #1c1915;
     --color-gold: #bd304d;
     --color-gold-soft: #ddc9a8;
     --color-cream: #f7f5f1;
     --color-cream-2: #ecdfd0;
     --color-white: #ffffff;
     --color-text: #221d18;
     --color-text-muted: #7a7266;
     --color-text-inverse: #f2ede3;
     --color-text-inverse-muted: #b3ada2;
     --color-border: #e6dfd1;
     --color-border-dark: #302a22;
     --font-base: 'Jost', sans-serif;
     --radius-sm: 4px;
     --radius-md: 10px;
     --shadow-card: 0 20px 45px -20px rgba(20, 16, 13, .35);
     --ease: cubic-bezier(.4, 0, .2, 1);
 }

 * {
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-base);
     color: var(--color-text);
     background: var(--color-white);
     -webkit-font-smoothing: antialiased;
     overflow-x: hidden;
 }

 img {
     max-width: 100%;
     display: block;
	 object-fit:contain;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

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

 .container-xl {
     max-width: 1320px;
 }

 /* reduced motion */
 @media (prefers-reduced-motion: reduce) {
     * {
         animation: none !important;
         transition: none !important;
         scroll-behavior: auto !important;
     }
 }

 /* ---------- typography helpers ---------- */
 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: var(--font-base);
     font-weight: 600;
     letter-spacing: .2px;
     margin: 0;
 }

 p {
     font-size: 17px;
 }

 .eyebrow {
     font-size: .72rem;
     letter-spacing: .18em;
     /* text-transform: uppercase; */
     color: var(--bs-white);
     font-weight: 500;
 }

 .section-title {
     font-size: clamp(1.6rem, 2.6vw, 3.15rem);
     font-weight: 500;
     /* text-transform: uppercase; */
     letter-spacing: .5px;
     line-height: 1.25;
	 text-align:left;
 }

 .text-muted-custom {
     color: var(--color-text-muted);
 }

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

 /* ---------- buttons ---------- */
 .btn-gold {
     background: var(--color-gold);
     color: var(--bs-white);
     border: 1px solid var(--color-gold);
     font-size: .78rem;
     letter-spacing: .12em;
     text-transform: uppercase;
     font-weight: 600;
     padding: .85rem 1.6rem;
     border-radius: var(--radius-sm);
     display: inline-flex;
     align-items: center;
     gap: .6rem;
     transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
 }

 .btn-gold:hover {
     background: transparent;
     color: var(--color-gold);
     transform: translateY(-2px);
 }

 .btn-gold.on-dark:hover {
     color: var(--color-gold-soft);
 }

 .hero .btn-gold:hover {
     color: var(--bs-white);
     border-color: var(--bs-white);
 }
.form_btn .wpcf7-spinner{
	display:none;
}
 .btn-dark-outline , .form_btn .btn-dark-outline{
     background: var(--color-dark);
     color: var(--color-white);
     border: 1px solid var(--color-dark);
     font-size: .78rem;
     letter-spacing: .12em;
     text-transform: uppercase;
     font-weight: 600;
     padding: .85rem 1.6rem;
     border-radius: var(--radius-sm) !important;
     display: inline-flex;
     align-items: center;
     gap: .6rem;
     transition: opacity .25s var(--ease), transform .2s var(--ease);
 }

 .btn-dark-outline:hover {
     /* opacity: .85; */
     transform: translateY(-4px);
     color: var(--color-white);
     background: var(--color-gold);
     border-color: var(--color-gold);
 }

 .btn-gold,
 .btn-dark-outline {
     cursor: pointer;
 }

 .btn-gold svg,
 .btn-dark-outline svg {
     width: 14px;
     height: 14px;
     flex: none;
     transition: transform .25s var(--ease);
 }

 .btn-gold:hover svg,
 .btn-dark-outline:hover svg {
     transform: translateX(4px);
 }

 .icon-svg {
     width: 28px;
     height: 28px;
     stroke: var(--color-gold);
     fill: none;
     stroke-width: 1.5;
 }

 .icon-svg-lg {
     width: 34px;
     height: 34px;
 }


 /* ============================================================
     NAVBAR
     ============================================================ */
 .site-nav {
     position: sticky;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 0.8rem 0;
     background: #fff;
     transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
     -webkit-box-shadow: rgb(0 0 0 / 41%) 0px 0px 2px 0px;
    box-shadow: rgb(0 0 0 / 41%) 0px 0px 2px 0px;
 }

 .site-nav.is-scrolled {
     background: var(--bs-white);
     padding: .7rem 0;
     box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .5);
     backdrop-filter: blur(6px);
 }



 .brand-logo img {
     height: 70px;
 }

 .nav-links a {
     color: var(--color-dark);
     font-size: .82rem;
     letter-spacing: .05em;
     text-transform: uppercase;
     font-weight: 500;
     padding: .5rem 1rem;
     position: relative;
 }

 .nav-links a:hover {
     color: var(--color-gold);
 }

 .nav-links a::after {
     content: "";
     position: absolute;
     left: 1rem;
     right: 1rem;
     bottom: .2rem;
     height: 1px;
     background: var(--color-gold);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform .3s var(--ease);
 }

 .nav-links a:hover::after {
     transform: scaleX(1);
 }

 .navbar-toggler {
     border: 1px solid var(--bs-black);
     padding: .35rem .55rem;
 }

 .navbar-toggler .icon-svg {
     stroke: var(--bs-black);
     width: 20px;
     height: 20px;
 }

 /* ============================================================
     HERO
     ============================================================ */
 .hero {
     position: relative;
     /* min-height: 100vh; */
     display: flex;
     align-items: center;
     padding-top: 4rem;
     padding-bottom: 4rem;
     background:
         linear-gradient(100deg, rgba(15, 12, 9, .47) 20%, rgba(15, 12, 9, .55) 55%, rgba(15, 12, 9, .25) 100%),
         url('https://www.matterofspace.in/wp-content/uploads/2025/02/very-high-detailed.jpg') center/cover no-repeat;
	 overflow:hidden;
 }

 .hero-heading {
     font-size: clamp(1.6rem, 5vw, 3.4rem);
     color: var(--color-white);
     font-weight: 600;
     line-height: 1.15;
     /* text-transform: uppercase; */
 }

 .hero-heading span {
     color: #eb5e7b;
 }

 .hero-sub {
     color: var(--bs-white);
     font-size: 17px;
     max-width: 460px;
     margin-top: 1.1rem;
 }

 .rating_img {
     margin-top: 20px;
 }

 .rating_img img {
     height: 100px;
     border-radius: 8px;
 }

 .hero-stats {
     display: flex;
     gap: 1.5rem;
     margin-top: 2.2rem;
     /* flex-wrap: wrap; */
     align-items: start;
     justify-content: center;
 }

 .hero-stats .stat {
     display: flex;
     align-items: start;
     gap: .65rem;
 }

 .hero-stats .stat .num {
     color: var(--bs-black);
     font-size: 1.4rem;
     font-weight: 600;
     line-height: 1;
 }

 .hero-stats .stat .lbl {
     color: var(--bs-black);
     font-size: .68rem;
     letter-spacing: .06em;
     text-transform: uppercase;
     line-height: 1.2;
 }

 .hero-form-card {
     background: var(--color-white);
     border-radius: var(--radius-md);
     padding: 2rem 1.9rem;
     box-shadow: var(--shadow-card);
 }

 .hero-form-card h5 {
     font-size: 26px;
     /* text-transform: uppercase; */
     letter-spacing: .3px;
     font-weight: 500;
     margin-bottom: 1.3rem;
     color: var(--color-text);
 }

 .hero-form-card .form-control,
 .hero-form-card .form-select {
     border-radius: var(--radius-sm);
     border: 1px solid var(--color-border);
     font-size: .88rem;
     padding: .68rem .9rem;
     font-family: var(--font-base);
     background-color: var(--bs-white);
	 min-width:100%;
 }
	.wpcf7-spinner{
		display:none;
	}
 .hero-form-card .form-control:focus,
 .hero-form-card .form-select:focus {
     box-shadow: 0 0 0 3px rgba(201, 165, 112, .25);
     border-color: var(--color-gold);
     box-shadow: none !important;
 }

 .hero-form-card .btn-dark-outline {
     width: 100%;
     justify-content: center;
	 color:#fff !important;
	 border-radius:4px;
 }

 /* ============================================================
     TRUST BAR
     ============================================================ */
 .trust-bar {
     padding: 2.3rem 0;
     background: var(--color-white);
     border-bottom: 1px solid var(--color-border);
 }

 .trust-bar .eyebrow-center {
     text-align: center;
     display: block;
     margin-bottom: 1.4rem;
     color: var(--color-dark);
     font-size: 20px;
     letter-spacing: .10em;
     font-weight: 500;
 }

 .trust-logos {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 2.5rem 3.2rem;
 }


 /* ============================================================
     QUALITY / VIDEO SECTION
     ============================================================ */
 .quality-section {
     padding: 5.5rem 0;
     background: var(--color-white);
	 overflow:hidden;
 }

 .quality-text h2 {
     margin-top: .6rem;
 }

 .video-frame {
     position: relative;
     border-radius: var(--radius-md);
     overflow: hidden;
     cursor: pointer;
     box-shadow: var(--shadow-card);
 }

 .video-frame img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s var(--ease);
 }

 .video-frame:hover img {
     transform: scale(1.04);
 }

 .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 74px;
     height: 74px;
     border-radius: 50%;
     border: 1.5px solid rgba(255, 255, 255, .85);
     background: rgba(20, 16, 13, .35);
     display: flex;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(2px);
     transition: transform .3s var(--ease), background .3s var(--ease);
 }

 .video-frame:hover .play-btn {
     transform: translate(-50%, -50%) scale(1.08);
     background: var(--color-gold);
 }

 .play-btn svg {
     width: 22px;
     height: 22px;
     fill: var(--color-white);
     margin-left: 4px;
 }

 .dard_hover:hover {
     background: #dd3333;
     border-color: #dd3333;
     color: var(--bs-white);
     box-shadow: rgb(232 79 111 / 71%) 0px 4px 12px;
 }

 /* ============================================================
     DARK FEATURE STRIP
     ============================================================ */
 .feature-strip {
     background: #ffbe00;
     padding: 40px 0;
     color: var(--color-text-inverse);
 }

 .logoSwiper {
     overflow: hidden;
 }

 .logoSwiper .swiper-wrapper {
     align-items: center;
     animation: logo-marquee 28s linear infinite !important;
     display: flex;
     width: max-content;
 }

 .logoSwiper .swiper-slide {
     flex: 0 0 180px;
     margin-right: 40px;
     width: 180px !important;
 }

 @keyframes logo-marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 .logo-slide img {
     /* height: 100px; */
     width: 100%;
     object-fit: contain;
     filter: brightness(0) contrast(1);
     transition: 0.3s ease;
 }

 .logo-slide img:hover {
     transform: scale(1.05);
 }

 @media (max-width: 767.98px) {
     .logoSwiper .swiper-wrapper {
         animation-duration: 20s;
     }

     .logoSwiper .swiper-slide {
         flex-basis: 130px;
         margin-right: 24px;
         width: 130px !important;
     }
	 .qlwapp__container.qlwapp__container--bottom-right{
		 display:none;
	 }
	     .hero-form-card {
        margin-top: 1.5rem;
    }
 }

 .feature-item {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: .85rem;
 }

 .feature-item p {
     font-size: .82rem;
     letter-spacing: .03em;
     text-transform: uppercase;
     color: var(--color-text-inverse-muted);
     margin: 0;
     line-height: 1.35;
 }

 .feature-strip .divider-v {
     width: 1px;
     background: var(--color-border-dark);
     align-self: stretch;
 }

 .feature-cta p {
     color: var(--color-text-inverse-muted);
     font-size: .88rem;
     margin: .5rem 0 1.1rem;
 }

 /* ============================================================
     INTERIORS FOR EVERY NEED
     ============================================================ */
 .interiors-section {
     padding: 5.5rem 0;
     /* background: var(--color-cream); */
 }

 .interior-card {
     position: relative;
     border-radius: var(--radius-md);
     overflow: hidden;
     height: 230px;
     box-shadow: 0 12px 30px -18px rgba(20, 16, 13, .4);
 }

 .interior-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s var(--ease);
 }

 .interior-card:hover img {
     transform: scale(1.08);
 }

 .interior-card::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(20, 16, 13, 0) 40%, rgba(20, 16, 13, .85) 100%);
 }

 .interior-card .label {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 1rem 1.1rem;
     z-index: 2;
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: var(--color-white);
     font-size: 17px;
     letter-spacing: .04em;
     text-transform: uppercase;
     font-weight: 600;
 }

 .interior-card .label svg {
     width: 17px;
     height: 17px;
     stroke: var(--bs-white);
     transition: transform .25s var(--ease);
 }

 .interior-card:hover .label svg {
     transform: translateX(4px);
 }

 .white_hover:hover {
     color: var(--bs-white) !important;
     border-color: var(--bs-white) !important;
 }

 /* ============================================================
     BUILT INHOUSE
     ============================================================ */
 .inhouse-section {
     background: var(--color-dark);
     padding: 5.5rem 0;
     color: var(--color-text-inverse);
 }

 .inhouse-list {
     margin-top: 1.6rem;
     display: flex;
     gap: 1.8rem;
     flex-wrap: wrap;
 }

 .inhouse-list .item {
     display: flex;
     align-items: center;
     gap: .55rem;
     font-size: 15px;
     color: var(--color-text-inverse-muted);
 }

 .inhouse-list .item svg {
     width: 20px;
     height: 20px;
     stroke: var(--color-gold);
 }

 .collage-main {
     border-radius: var(--radius-md);
     overflow: hidden;
     height: 100%;
     min-height: 320px;
 }

 .collage-main img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .collage-small {
     border-radius: var(--radius-md);
     overflow: hidden;
     height: 154px;
 }

 .collage-small img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* ============================================================
     PROJECTS SWIPER
     ============================================================ */
 .projects-section {
     padding: 5.5rem 0;
     background: var(--color-white);
     overflow: hidden;
 }

 .projects-swiper {
     padding-bottom: .5rem;
 }

 .projects-swiper .swiper-slide {
     height: auto;
 }

 .project-card .img-wrap {
     border-radius: var(--radius-md);
     overflow: hidden;
     height: 190px;
 }

 .project-card .img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .5s var(--ease);
 }

 .project-card:hover .img-wrap img {
     transform: scale(1.07);
 }

 .project-card .p-title {
     font-size: .85rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: .03em;
     margin-top: .9rem;
 }

 .project-card .p-loc {
     font-size: .75rem;
     color: var(--color-text-muted);
 }

 .carousel-nav-btn {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     border: 1px solid var(--color-border);
     background: var(--color-white);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background .25s var(--ease), border-color .25s var(--ease);
     cursor: pointer;
     position: relative;
     z-index: 2;
 }

 .carousel-nav-btn:hover {
     background: var(--color-dark);
     border-color: var(--color-dark);
 }

 .carousel-nav-btn:hover svg {
     stroke: var(--color-white);
 }

 .carousel-nav-btn svg {
     width: 16px;
     height: 16px;
     stroke: var(--color-text);
     transition: stroke .25s var(--ease);
 }

 .carousel-nav-btn.swiper-button-disabled {
     opacity: .35;
     cursor: default;
 }

 .carousel-nav-btn.swiper-button-disabled:hover {
     background: var(--color-white);
     border-color: var(--color-border);
 }

 .carousel-nav-btn.swiper-button-disabled:hover svg {
     stroke: var(--color-text);
 }

 /* ============================================================
     TESTIMONIAL SWIPER
     ============================================================ */
 .testimonial-section {
     /* background: var(--color-dark); */
     padding: 5.5rem 0;
     overflow: hidden;
 }

 .testimonial-swiper .swiper-slide {
/*      height: auto; */
 }

 .testimonial-swiper .row {
     min-height: 340px;
 }

 .testimonial-text {
     padding: 5rem 3rem;
     color: var(--color-text-inverse);
 }

 .quote-mark {
     color: var(--bs-white);
     font-size: 3.2rem;
     font-weight: 700;
     line-height: .6;
     display: block;
     margin-bottom: 1rem;
 }

 .testimonial-text p.quote {
     font-size: 1.25rem;
     line-height: 1.6;
     font-weight: 400;
     max-width: 520px;
     min-height: 130px;
     color: var(--bs-white);
 }

 .testimonial-text .author {
     margin-top: 1.4rem;
     color: var(--bs-white);
     font-size: .8rem;
     letter-spacing: .06em;
     text-transform: uppercase;
 }

 .testimonial-img {
     height: 100%;
     /* min-height: 340px; */
 }

 .testimonial-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* custom pagination bullets, matching the original pill-dot look */
 .testimonial-swiper .swiper-pagination {
     position: static;
     margin-top: 1.8rem;
     display: flex;
     gap: .5rem;
     justify-content: flex-start;
 }

 .testimonial-swiper .swiper-pagination-bullet {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: var(--color-gold);
     opacity: 1;
     transition: background .25s var(--ease), width .25s var(--ease), border-radius .25s var(--ease);
     margin: 0 !important;
     opacity: 0.6;
 }

 .testimonial-swiper .swiper-pagination {
     justify-content: center;
 }

 .testimonial-swiper .swiper-pagination-bullet-active {
     background: var(--color-gold);
     width: 22px;
     border-radius: 5px;
     opacity: 1;
 }

 .check_list li {
     font-size: 18px;
 }

 .check_list li {
     margin-bottom: 10px;
 }


 /* ============================================================
     CTA BAND
     ============================================================ */
 .cta-band {
     background: #b59776;
     padding: 5.2rem 0;
 }

 .cta-band .circle-icon {
     width: 58px;
     height: 58px;
     border-radius: 50%;
     background: var(--color-white);
     display: flex;
     align-items: center;
     justify-content: center;
     flex: none;
 }

 .cta-band .circle-icon svg {
     width: 26px;
     height: 26px;
     stroke: var(--color-dark);
 }

 .cta-band h4 {
     font-size: 1.35rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: .2px;
 }

 /* ============================================================
     FOOTER
     ============================================================ */
 .site-footer {
     background: var(--color-dark);
     color: var(--color-text-inverse-muted);
     padding: 4rem 0 0;
 }

 .site-footer h6 {
     color: var(--color-white);
     font-size: 16px;
     letter-spacing: .1em;
     text-transform: uppercase;
     margin-bottom: 1.2rem;
     font-weight: 600;
 }

 .site-footer ul li {
     margin-bottom: .65rem;
     font-size: 15px;
 }

 .site-footer ul li a {
     font-size: 15px;
     transition: color .2s var(--ease);
     color: var(--bs-white);
 }

 .site-footer ul li {
     color: var(--bs-white);
 }

 .site-footer ul li a:hover {
     color: var(--color-gold);
 }

 .footer-contact li {
     display: flex;
     align-items: flex-start;
     gap: .6rem;
     font-size: .85rem;
 }

 .footer-contact li svg {
     width: 20px;
     height: 20px;
     stroke: var(--bs-white);
     flex: none;
     margin-top: 2px;
 }

 .social-icons {
     display: flex;
     gap: .7rem;
     margin-top: 1.2rem;
 }

 .social-icons a {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     border: 1px solid var(--color-border-dark);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background .25s var(--ease), border-color .25s var(--ease);
 }

 .social-icons a:hover {
     background: var(--color-gold);
     border-color: var(--color-gold);
 }

 .social-icons a svg {
     width: 15px;
     height: 15px;
     stroke: var(--color-text-inverse-muted);
     transition: stroke .25s var(--ease);
 }

 .social-icons a:hover svg {
     stroke: var(--color-dark);
 }

 .trust-logos {
     display: flex;
     align-items: center;
     flex-wrap: nowrap;
     /* Prevent 2nd row */
     white-space: nowrap;
 }

 .trust-logos span {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin: 0 25px;
     flex-shrink: 0;
     /* Prevent shrinking */
 }

 .trust-logos img {
     height: 100px;
     width: auto;
     max-width: 140px;
     object-fit: contain;
     display: block;
 }

 /* Mobile */
 @media (max-width:768px) {
     .trust-logos span {
         margin: 0 15px;
     }

     .trust-logos img {
         height: 60px;
         max-width: 100px;
     }
 }

 .footer-bottom {
     border-top: 1px solid var(--color-border-dark);
     margin-top: 3rem;
     padding: 1.3rem 0;
     color: var(--bs-white);
     font-size: 14px;
 }

 .footer-bottom a {
     font-size: 14px;
 }

 .footer-bottom a:hover {
     color: var(--color-gold);
 }

 .land_footer {
     list-style: none;
     display: flex;
     gap: 1.5rem;
     align-items: center;
     /* justify-content: center; */
     margin-bottom: 0;
     padding-left: 0;
 }

 .land_footer li img {
     height: 30px;
     filter: brightness(0) invert(1);
     transition: all 0.3ms;
 }

 .header_call {
     background: var(--color-gold);
     padding: 10px 15px;
     color: var(--bs-white) !important;
     border-radius: 6px;
     display: inline-flex;
     gap: 10px;
     align-items: center;
     width: 150px;
     justify-content: center;
 }

 .header_call img {
     height: 20px;
     filter: brightness(0) invert(1);
 }

 .header_book {
     background: var(--bs-black);
 }

 /* ============================================================
     RESPONSIVE
     ============================================================ */
 @media (max-width: 991.98px) {
     .hero {
         padding-top: 2.5rem;
     }

     .hero-form-card {
         margin-top: 1.5rem;
     }

     .testimonial-text {
         padding: 3.2rem 1.6rem;
     }

     .testimonial-img {
         min-height: 260px;
     }

     .collage-main {
         min-height: 220px;
     }

     .brand-logo img {
         height: 60px;
     }

     .nav-links a.btn-gold {
         color: var(--bs-white);
     }
	 .header_book{
		     color: #fff !important;
		     border-radius: 6px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    width: 150px;
		 height: 35px;
	 }
	 .nav-links a{
		 text-align:left;
	 }
 }

 .fixed_bottom {
     display: none;
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: var(--bs-white);
     padding: 10px 20px;
     z-index: 99;
 }

 .fixed_bottom ul {
     display: flex;
     justify-content: space-between;
     gap: 20px;
	 list-style:none;
	 padding-left:0;
 }

 .fixed_bottom ul li {
     min-width: 48%;
 }

 .fixed_bottom ul li img {
     height: 20px;
     filter: brightness(0) invert(1);
 }

 .fixed_bottom ul li a {
     display: flex;
     gap: 15px;
     align-items: center;
     justify-content: center;

 }
	.trust-bar .logo-slide img{
		filter: none;
		    height: 100px;
	}


 .fixed_bottom ul li:last-child a,
 .fixed_bottom ul li a {
     background: #20a04e;
     padding: 10px 15px;
     color: var(--bs-white);
     border-radius: 6px;
 }

 .fixed_bottom ul li a {
     background: var(--color-gold);
 }


 @media (max-width: 767.98px) {
     .hero-stats {
         gap: 1.3rem;
     }

     .quality-section,
     .interiors-section,
     .inhouse-section,
     .projects-section {
         padding: 3.6rem 0;
     }

     .feature-strip .divider-v {
         display: none;
     }

     .video-frame {
         margin-top: 2rem;
     }

     .footer-bottom .d-flex {
         flex-direction: column;
         gap: .6rem;
         text-align: center;
     }

     .site-footer h6,
     .site-footer ul li a,
     .site-footer p,
     .site-footer ul li {
         font-size: 14px;
     }

     .land_footer {
         gap: 12px;
     }

     .land_footer li img {
         height: 23px;
     }

     .land_footer {
         padding-top: 15px !important;
     }

     .site-footer .white_hover {
/*          display: none; */
     }

     .ready_div {
         margin-top: 30px;
         padding-top: 20px;
     }

     .testimonial-swiper .row {
         flex-direction: column-reverse;
     }

     .cta-band {
         padding: 3.2rem 0;
     }

     .text-md-end {
         width: 100%;
         text-align: center;
     }

     .quality-text {
         margin-top: 15px;
     }

     .fixed_bottom {
         display: block;
     }

     .btn-dark-outline {
         padding: .85rem 0.6rem;
     }
	 .hero-form-card{
		     padding: 1.6rem 1.2rem;
	 }
     .hero-form-card h5 {
         font-size: 20px;
     }
/* 	 .hero .row {
		 flex-direction: column-reverse;
	 } */
	 .hero-heading{
		 text-align:center;
	 }
	 #consult{
		 margin-top:0;
	 }
 }

 #inhouse.inhouse-section {
     /* background: #fff; */
     /* color: #111; */
     padding: 78px 0;
     font-family: 'Jost', sans-serif;
 }

 #inhouse .inhouse-redesign-row {
     align-items: center;
 }

 #inhouse .inhouse-eyebrow {
     color: var(--bs-white);
     font-size: 13px;
     font-weight: 700;
     letter-spacing: .08em;
     text-transform: uppercase;
     margin-bottom: 14px;
 }


 #inhouse .inhouse-copy {
     color: #555;
     font-size: 17px;
     line-height: 1.65;
     max-width: 520px;
     margin: 18px 0 28px;
 }

 #inhouse h2 {
     color: var(--bs-white);
 }

 #inhouse .inhouse-card-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 14px;
 }

 #inhouse .inhouse-card {
     min-height: 68px;
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 16px 22px;
     background: #fff;
     border: 1px solid #ededed;
     border-radius: 14px;
     box-shadow: 0 3px 10px rgba(20, 20, 20, .08);
 }

 #inhouse .inhouse-icon {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     flex: 0 0 34px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: #fff1f3;
     color: #df1226;
 }

 #inhouse .inhouse-icon svg {
     width: 17px;
     height: 17px;
     stroke: currentColor;
 }

 #inhouse .inhouse-card span:last-child {
     color: #151515;
     font-size: 15px;
     line-height: 1.35;
     font-weight: 600;
 }
	.cf7-submit-wrapper svg, .elementor-element{
		display:none !important;
	}

 @media (max-width: 991.98px) {
     #inhouse.inhouse-section {
         padding: 58px 0;
     }

     #inhouse .inhouse-content {
         margin-bottom: 34px;
     }
 }

 @media (max-width: 575.98px) {
     #inhouse.inhouse-section {
         padding: 44px 0;
     }

     #inhouse .inhouse-card-grid {
         grid-template-columns: 1fr;
         gap: 12px;
     }

     #inhouse .inhouse-card {
         min-height: 62px;
         padding: 14px 16px;
         border-radius: 12px;
     }

     #inhouse .inhouse-copy {
         font-size: 15px;
     }

 }

 #testimonial.testimonial-section {
     background: #fff;
     color: #08080c;
     padding: 72px 0;
     overflow: hidden;
 }

 #testimonial .testimonial-head {
     text-align: center;
     margin-bottom: 42px;
 }



 #testimonial .review-score {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     color: #111;
     font-size: 18px;
     line-height: 1.2;
 }

 #testimonial .review-stars,
 #testimonial .card-stars {
     color: #f5a10a;
     letter-spacing: 1px;
     white-space: nowrap;
 }

 #testimonial .review-score strong {
     font-weight: 700;
 }

 #testimonial .review-score span:last-child {
     color: #555;
 }

 #testimonial .testimonial-card-swiper {
     padding: 4px 2px 18px;
 }

 #testimonial .testimonial-card-swiper .swiper-slide {
     height: auto;
 }

 #testimonial .testimonial-card {
     height: 100%;
     min-height: 268px;
     display: flex;
     flex-direction: column;
     padding: 28px 26px;
     background: #fff;
     border: 1px solid #f0dedf;
     border-radius: 20px;
     box-shadow: 0 3px 10px rgba(22, 22, 22, .08);
 }

 #testimonial .card-stars {
     font-size: 22px;
     line-height: 1;
     margin-bottom: 18px;
 }

 #testimonial .testimonial-card p {
     color: #111;
     font-size: 17px;
     line-height: 1.48;
     margin: 0 0 24px;
 }

 #testimonial .review-author {
     display: flex;
     align-items: center;
     gap: 14px;
     margin-top: auto;
     padding-top: 16px;
     border-top: 1px solid #eee0e0;
 }

 #testimonial .author-avatar {
     width: 46px;
     height: 46px;
     border-radius: 50%;
     flex: 0 0 46px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: #fde8eb;
     color: #df1226;
     font-size: 16px;
     font-weight: 800;
 }

 #testimonial .author-name {
     display: block;
     color: #0c0c0f;
     font-size: 18px;
     font-weight: 800;
     line-height: 1.2;
 }

 #testimonial .author-meta {
     display: block;
     color: #555;
     font-size: 14px;
     margin-top: 3px;
 }

 #testimonial .testimonial-arrows {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 14px;
     margin-top: 24px;
 }

 #testimonial .testimonial-arrow {
     width: 46px;
     height: 46px;
     border-radius: 50%;
     border: 1px solid #ead6d8;
     background: #fff;
     color: #df1226;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 8px 18px rgba(22, 22, 22, .08);
     transition: background .25s ease, color .25s ease, transform .25s ease;
 }

 #testimonial .testimonial-arrow:hover {
     background: #df1226;
     color: #fff;
     transform: translateY(-2px);
 }

 #testimonial .testimonial-arrow svg {
     width: 20px;
     height: 20px;
     stroke: currentColor;
 }

 @media (max-width: 767.98px) {
     #testimonial.testimonial-section {
         padding: 48px 0;
     }

     #testimonial .testimonial-head {
         margin-bottom: 28px;
     }

     #testimonial .review-score {
         flex-wrap: wrap;
         gap: 6px 10px;
         font-size: 16px;
     }
	 .elementor-element{display:none !important}

     #testimonial .testimonial-card {
         min-height: 250px;
         padding: 22px 20px;
         border-radius: 16px;
     }

     #testimonial .testimonial-card p {
         font-size: 15px;
     }
 }