@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --black: #23262D;
    --light-bg: #F4F4F4;
    --para-color: #616670;
    --transperancy: rgba(255, 255, 255, 0.8);
    --dark-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    --light-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --main-font: "Roboto", sans-serif;
    --para-font: ;
}

html,
body {
    overflow-x: hidden !important;
    background: url(../img/body-bg.png);
    background-size: contain;
    background-repeat: repeat;
}

.section {
    padding: 60px 20px;
}

.pb {
    padding-bottom: 60px;
}

h1 {
    font-family: var(--main-font);
}

h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
    font-family: var(--main-font);
}

p {
    margin-bottom: 0;
    font-family: var(--main-font);
    color: var(--para-color);
    font-size: 15px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    object-fit: cover;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--black);
}

.image-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    outline: none;
    border: none;
}

textarea {
    resize: none;
}

.black-btn {
    background: transparent;
    text-align: center;
    color: var(--black);
    border-radius: 4px;
    padding: 10px 20px;
    text-transform: capitalize;
    font-family: var(--main-font);
    font-size: 18px;
    font-weight: 400;
    border: 2px solid var(--black);
    transition: all 0.5s linear;
}

.black-btn:hover {
    background: var(--black);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-side {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    justify-content: end;
}

.blackcenter-heading h2 {
    text-align: center;
    color: var(--black);
    margin-bottom: 20px;
}

.whitecenter-heading h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}


.banner-image {
    position: relative;
}

.banner-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.2); */
}

.banner-slider {
    position: relative;
}

.banner_slider .slick-next,
.banner_slider .slick-prev {
    display: none !important;
}

.form-design {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100px;
    z-index: 99;
    background: var(--white);
    width: 400px;
    padding: 20px;
    border-radius: 20px 0 20px 20px;
}

.form-heading h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-head h2 {
    text-align: right;
    margin-bottom: 20px;
}

.about-para p {
    text-align: right;
}

.about-box {
    position: relative;
}

.about-image2 {
    position: absolute;
    right: 40px;
    top: -80px;
}

.about-image1 img {
    border: 2px dashed rgba(0, 0, 0, 0.2);
    padding: 5px;
}

.about-image1 img,
.about-image2 img {
    border-radius: 20px;
    box-shadow: var(--light-shadow);
}

.founder-content {
    position: absolute;
    bottom: 50px;
    left: 93px;
    color: var(--white);
    background: var(--white);
    border-radius: 0 60px 60px 0;
    padding: 10px 20px;
}

.founder-content h5 {
    text-align: center;
    color: var(--black);
}

.founder-content p {
    text-align: center;
    color: var(--para-color);
    font-size: 14px;
}

.strength-head h2 {
    margin-bottom: 20px;
}

.about-strength h5 {
    text-align: center;
    background: var(--black);
    border-radius: 60px;
    padding: 7px 20px;
    color: var(--white);
    width: fit-content;
    display: block;
    margin: 0 auto;
    margin-top: -40px;
}

.strength-box {
    position: relative;
}

.strength-box .about-strength {
    position: absolute;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

.strength-image img {
    border-radius: 20px;
    box-shadow: var(--dark-shadow);
}

.why-choose-image {
    position: relative;
    width: 90%;
}

.why-choose-image img {
    border-radius: 0 40px 40px 40px;
    box-shadow: var(--light-shadow);
}

.why-choose-image::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    background: var(--black);
    border-radius: 0 0 0 10px;
    height: 90%;
    width: 50%;
    z-index: -1;
}

.why-choose-head h2 {
    font-size: 60px;
    text-align: left;
    margin-bottom: 20px;
}

.why-choose-imagediv {
    display: flex;
    width: 100%;
}

.vertical-head {
    width: 10%;
}

.vertical-head h2 {
    transform: rotate(90deg);
    letter-spacing: 15px;
    font-size: 60px;
}

.why-choose-item {
    display: flex;
    align-items: start;
    gap: 30px;
    margin: 20px 0;
}

.why-choose-icon i {
    font-size: 40px;
}

.accordion-box {
    margin: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
}

.accordion-box:last-child {
    border-bottom: none;
}

.faq-section {
    background: var(--light-bg)
}

.accordionhead {
    position: relative;
    padding: 10px 0px;
}

.accordionhead h4 {
    color: var(--black);
}

.accordionhead::before {
    content: '\f078';
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--black);
}

.accordion-box.active .accordionhead::before {
    content: '\f077';
}

.accordionpara {
    display: none;
    overflow: hidden;
    transition: all 0.5 linear;
    padding: 10px 0px;
}

.accordion-box.active .accordionpara {
    display: block;
}

.client-image img {
    filter: none;
    transition: all 0.5s linear;
}

.client-image img:hover {
    filter: grayscale(0);
}

.service-slider .slick-next,
.service-slider .slick-prev {
    display: none !important;
}

.service-card {
    position: relative;
}

.service-name {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 100%;
}

.service-name h3 {
    color: var(--white);
}

.service-name h3 i {
    transform: rotate(-45deg);
}

.testimonial {
    background: var(--black);
}

.testimonial-card {
    background: var(--white);
    box-shadow: var(--dark-shadow);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 10px;
    height: 250px;
}

.testimonial-star {
    display: flex;
    align-items: center;
    justify-content: end;
}

.testimonial-star i {
    color: goldenrod;
}

.testimonial-para p {
    margin: 10px 0;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--black);
    background: var(--white);
    box-shadow: var(--light-shadow);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    z-index: 9;
    border: 1px solid var(--black);
}

.testimonial-slider .slick-prev {
    left: -10px;
}

.testimonial-slider .slick-next {
    right: -10px;
}

footer {
    background: var(--black);
    padding: 40px 0;
}

.footer-about-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-about-para p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-social-media {
    margin-top: 20px;
}

.footer-social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    display: inline-block;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.footer-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 40px 0 40px 40px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.footer-item {
    display: flex;
    align-items: start;
    gap: 30px;
    margin: 10px 0;
}

.footer-quicks .footer-head h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-ul ul li a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.5s linear;
    display: block;
    padding: 4px 0;
}

.footer-ul ul li a:hover {
    color: var(--white);
}

.footer-item .footer-icon i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    display: inline-block;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.footer-quicks {
    padding-top: 20px;
}

.footer-head h5 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-head p {
    color: rgba(255, 255, 255, 0.5);
    word-break: break-all;
}

.bottom-footer {
    background: #35373c;
    padding: 7px 20px;
    text-align: center;
    color: var(--white);
    font-family: var(--main-font);
}

.design-solutions {
    padding: 60px 0;
}

.designsolution_slider .slick-next,
.designsolution_slider .slick-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.designsolution_slider .slick-next {
    right: 0;
}

.designsolution_slider .slick-prev {
    left: 0;
}

.solutions-card-design {
    position: relative;
    overflow: hidden;
}

.solutions-card-design::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.solutions-icon img {
    max-width: 70px;
    margin-bottom: 15px;
}

.solutions-design-head {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    z-index: 5;
}

.solutions-design-icon img {}

.solutions-design-head h6 {
    margin-bottom: 7px;
}

.our-service {
    background: var(--light-bg);
}

.best-interior-design {
    background: url('../img/best-interior-design-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

.best-design-card {
    background: var(--white);
    padding: 20px;
    box-shadow: var(--dark-shadow);
    border-radius: 20px;
    height: calc(100% - 20px);
    margin: 0 0 20px 0;
}

.best-design-icon img {
    max-width: 60px;
    margin-bottom: 0px;
}

.best-design-para p {
    margin-top: 10px;
}

.best-design-name h5 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.best-design-image img {
    box-shadow: var(--dark-shadow);
    border-radius: 20px;
}

.best-design-ul li p {
    position: relative;
    padding-left: 30px;
    padding-bottom: 7px;
}

.best-design-ul li p::after {
    content: '\f560';
    position: absolute;
    top: 3px;
    left: 0;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: var(--black);
    font-size: 14px;
}

.service-grid-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-template-rows: minmax(100px, auto);
    max-width: 100%;
    grid-gap: 10px;
    position: relative;
    grid-auto-flow: dense;
    margin: 10px;
}

.service-grid-item {
    overflow: hidden;
    position: relative;
}

.service-grid-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.service-grid-para {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 7px 20px;
    border-radius: 60px 0 0 60px;
}

.service-grid-item img {
    width: 100%;
    height: 100%;
    box-shadow: var(--light-shadow);
    border-radius: 8px;
    transform: scale(1);
    transition: 0.7s ease-in;
    filter: grayscale(1);
}

/* .service1 {
    grid-column: span 2;
    grid-row: span 1;
}
.service2{
    grid-column: span 2;
    grid-row: span 2;
} */
.service3 {
    grid-column: span 2;
    grid-row: span 2;
}

/* .service5{
    grid-column: span 2;
    grid-row: span 1;
} */

.breadcrumb-design {
    background-image: url('../img/banner3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding: 150px 0;
}

.breadcrumb-head h1 {
    color: var(--white);
    text-align: center;
    font-size: 50px;
}

.breadcrumb-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

.breadcrumb-ul li a,
.breadcrumb-ul li p {
    color: var(--white);
    font-weight: 500;
}



.nav-link {
    border-bottom: 2px solid var(--light-bg) !important;
    border-radius: 0 !important;
    color: var(--black);
    text-align: center;
    text-transform: capitalize;
    width: 100%;
    font-weight: 500;
}

.nav-pills .nav-link {
    border-radius: 0 !important;
}

.nav-link.active {
    background: transparent !important;
    color: var(--black) !important;
    border-bottom: 2px solid var(--black) !important;
    border-radius: 0 !important;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--black);
}

.project-all-button {
    overflow: hidden;
    overflow-x: scroll;
}

.project-all-button::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #aaa;
    display: none;
}

.contact-form {
    background: var(--white);
    box-shadow: var(--dark-shadow);
    padding: 20px;
    border-radius: 8px;
}

.contact-form-head h2,
.google-head h2 {
    margin-bottom: 10px;
}

.google-location iframe {
    box-shadow: var(--dark-shadow);
    border-radius: 8px;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--black);
    display: inline-block;
    text-align: center;
    line-height: 40px;
    margin-right: 15px;
    background: var(--white);
    box-shadow: var(--dark-shadow);
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

.contact-detail-box {
    box-shadow: var(--dark-shadow);
    border-radius: 8px;
    background-color: var(--white);
    padding: 20px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-icon {
    margin-top: -50px;
}

.contact-icon i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--dark-shadow);
    text-align: center;
    line-height: 70px;
    color: var(--black);
    font-size: 30px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
}

.contact-head {
    margin-top: 20px;
}

.contact-head h6 {
    text-align: center;
    color: var(--black);
    margin-bottom: 10px;
}

.contact-head a {
    text-align: center;
}

.modular-kitchen-head h2 {
    margin-bottom: 20px;
}

.modular-kitchen-content {
    padding: 20px;
}

.right-para .modular-kitchen-head h2 {
    text-align: right;
}

.right-para .modular-kitchen-para p {
    text-align: right;
}

.right-image img {
    border-radius: 40px 0 0px 40px;
}

.left-image img {
    border-radius: 0 40px 40px 0px;
}

.firstpadding {
    padding: 60px 0;
}

.budget-para p {
    text-align: center;
}

.corporate-office-design {
    background: var(--white);
    box-shadow: var(--dark-shadow);
    padding: 10px;
    border-radius: 8px;
}

.corporate-office-image img {
    border-radius: 4px;
    box-shadow: var(--light-shadow);
}

.corporate-office-para-box,
.corporate-office-head {
    padding: 0px 30px;
}

.corporate-office-para-box .corporate-office-para {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.corporate-office-head p {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding: 15px 0;
}

.corporate-office-para-box .corporate-office-para:last-child {
    border-bottom: none;
}

.corporate-office-para h5 {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.service-box {
    background: var(--white);
    box-shadow: var(--dark-shadow);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-head h3 {
    font-weight: 700;
    color: var(--black);
    padding: 15px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.service-ul ul li {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--dark-shadow);
    margin: 10px 0;
    padding: 10px 20px;
    border-radius: 60px;
    transition: all .35s ease-in-out;
}

.service-ul ul li:hover {
    background: var(--black);
    color: var(--white);
}

.service-ul ul li:hover a {
    color: var(--white);
}

.service-ul ul li a {
    color: var(--black);
    font-weight: 500;
}

.get-in-box {
    display: flex;
    align-items: start;
    gap: 30px;
    margin: 10px 0;
}

.get-in-icon i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 30px;
}

.get-in-para p {
    word-break: break-all;
}

.team-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-image img {
    max-width: 200px;
}

.team-content h5,
.team-content p {
    text-align: center;
}

.team-icon img {
    max-width: 50px;
}

.whats-app a {
    position: fixed;
    bottom: 80px;
    right: 10px;
    max-width: 50px;
    z-index: 999;
}

.allura-slider .slick-next,
.allura-slider .slick-prev {
    display: none !important;
}

.project-image {
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.project-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: -1;
}

.project-image img {
    border-radius: 8px;
    box-shadow: var(--dark-shadow);
}

.project-name {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    background: rgba(0, 0, 0, 0.8);
    padding: 7px 10px;
    width: 90%;
    text-align: center;
    border-radius: 8px;
}

.exterior-image img {
    border-radius: 8px;
    box-shadow: var(--dark-shadow);
}