:root {
    /* --theme-color: red;
    --theme-hover-color: red; */

    --dark-color: #1c1c1c;
    --pera-color: #727272;

    --black-color: #000000;
    --white-color: #FFFFFF;

    --border-color: #dfdede;
    --border-focus-color: #b8b8b8;
}

/* Scrollbar track (background) */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
  background: #cecece;
  border-radius: 10px;
}

/* Thumb hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

/* * {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
} */

body {
    min-height: 100vh;
    color: var(--black-color);
    background-color: var(--white-color);
    font-family: "Open Sans", sans-serif;
}
body:has(>.mainContent) {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
}
.mainContent {
    flex: 1 1 auto;
    height: 100%;
}

.section-padding {
    padding: 80px 0;
}
a {
    text-decoration: none;
}

/* Button CSS Start */
.btnStyle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px 0;
    border: 1px solid transparent;
    transition: ease-in-out .3s;
}
.btnStyleIcon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 0;
    border: 1px solid transparent;
    transition: ease-in-out .3s;
}
.btnStyle:hover, .btnStyleIcon:hover {
    border-radius: 12px;
}
.btnFillWhite {
    color: var(--dark-color);
    background-color: var(--white-color);
    border-color: var(--white-color);
}
.btnFillWhite:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}
.btnFillDark {
    color: var(--white-color);
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}
.btnFillDark:hover {
    color: var(--white-color);
    background-color: var(--black-color);
    border-color: var(--black-color);
}
.btnOutlineWhite {
    color: var(--white-color);
    background-color: transparent;
    border-color: var(--white-color);
}
.btnOutlineWhite:hover {
    color: var(--black-color);
    background-color: var(--white-color);
    border-color: var(--white-color);
}
.btnOutlineDark {
    color: var(--dark-color);
    background-color: transparent;
    border-color: var(--dark-color);
}
.btnOutlineDark:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}
/* Button CSS End */

/* Header CSS Start */
.mainHeader {
    position: sticky;
    top: 0;
    z-index: 999;
}
.mainHomePage .mainHeader {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 999;
}
.mainHeader, .mainHeader .navbar, .navbar-brand {
    transition: ease-in-out .3s;
}
.mainHeader .navbar {
    background: var(--white-color);
    max-width: 100%;
    border-radius: 0;
    backdrop-filter: unset;
    padding: 8px 0;
}
.mainHomePage .mainHeader .navbar {
    background: #00000038;
    max-width: 1140px;
    margin: auto;
    border-radius: 50px;
    backdrop-filter: blur(20px);
}
.mainHomePage .mainHeader .navbar {
    padding: 15px 0;
}
.mainHomePage .mainHeader .navbar-brand {
    width: 100px;
    height: 100px;
    aspect-ratio: 1/1;
    border-radius: 50px;
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.mainHeader .navbar-brand {
    padding: 0;
    height: 80px;
}
.mainHomePage .mainHeader .navbar-brand img {
    height: 70px;
}
.mainHeader .navbar .navbar-nav {
    gap: 12px;
}
.mainHeader .navbar .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
    padding: 4px 10px;
    transition: ease-in-out .3s;
    position: relative;
}
.mainHeader .navbar .nav-link:not(.active):hover, .mainHeader .navbar .nav-link.active {
    color: var(--black-color);
}
.mainHomePage .mainHeader:not(.scrolled) .navbar .nav-link {
    color: #dbdbdb;
}
.mainHomePage .mainHeader:not(.scrolled) .navbar .nav-link:not(.active):hover, .mainHomePage .mainHeader:not(.scrolled) .navbar .nav-link.active {
    color: var(--white-color);
}
.mainHeader .navbar .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    border-radius: 50px;
    background-color: var(--black-color);
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    border: none;
}
.mainHeader .navbar .nav-link.active::after {
    width: 100%;
}
.mainHomePage .mainHeader:not(.scrolled) .navbar .nav-link::after {
    background-color: var(--white-color);
}
.mainHeader .navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.mainHeader .navbar .nav-item .dropdown-menu-center {
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.mainHeader .navbar .nav-item .dropdown-menu {
    border-radius: 12px;
    border: 0;
    padding: 0;
    max-height: 260px;
    overflow: auto;
    box-shadow: 0 3px 6px #0000001c;
}
.mainHeader .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 400;
    color: var(--dark-color);
    transition: ease-in-out .3s;
}
.mainHeader .navbar .nav-item .dropdown-menu .dropdown-item:hover, .mainHeader .navbar .nav-item .dropdown-menu .dropdown-item:focus {
    color: var(--white-color);
    background-color: var(--dark-color);
}
.mainHomePage .mainHeader:not(.scrolled) .navbar .navbar-toggler {
    color: var(--white-color) !important;
}
.mainHomePage .mainHeader.scrolled {
    position: fixed;
}
.mainHeader.scrolled {
    position: sticky;
    top: 0;
    z-index: 999;
}
.mainHeader.scrolled .navbar{
    max-width: 100% !important;
    background: #ffffff;
    box-shadow: 0 0 15px #00000012;
    padding: 8px 0 !important;
    border-radius: 0 !important;
}
.mainHeader.scrolled .navbar-brand {
    padding: 0;
    width: auto;
    height: 50px;
    position: unset;
}
.mainHeader.scrolled .navbar-brand img, .navbar-brand img {
    height: 100%;
}
.navbar-toggler{
    padding: 0;
    border: none;
    box-shadow: none !important;
}
.mobileMenuoffcanvas .nav-link.active {
    color: var(--black-color);
    font-weight: 500;
}
.mobileMenuoffcanvas .offcanvas-header {
    border-bottom: 1px solid var(--border-color);
}
.mobileMenuLogo {
    height: 50px;
}
.mobileMenuLogo img {
    height: 100%;
}
.btn-close {
    font-size: 14px;
    border: 0;
    box-shadow: none !important;
}
.collapseArrowBtn {
    padding: 0;
    border: 0;
    background-color: transparent;
    box-shadow: none;
}
/* Header CSS End */

/* Hero Section CSS Start */
.heroSection {
    height: 100vh;
    min-height: 550px;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}
.heroSection video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
}
.heroSectContent {
    position: absolute;
    inset: 0;
    margin: 111px auto auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.heroSectContentInner {
    margin: 0 12px;
    max-width:600px;
    width: 100%;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px 0;
}
.heroSectContent h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white-color);
    margin-bottom: 24px;
    /* text-shadow:
	   -1px -1px 0 var(--white-color),  
		1px -1px 0 var(--white-color),
		-1px 1px 0 var(--white-color),
		 1px 1px 0 var(--white-color); */
}
/* @supports((text-stroke: 2px var(--white-color)) or (-webkit-text-stroke: 2px var(--white-color))) {
    .heroSectContent h1 {
        color: transparent;
        -webkit-text-stroke: 2px var(--white-color);
		text-stroke: 2px var(--white-color);
        text-shadow: none;
    }
} */

.btnGroup{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Hero Section CSS End */


/* Footer CSS Start */
.mainFooter {
    background-color: #f7f7f7;
    padding-top: 80px;
}
.footerLogo {
    display: inline-block;
    height: 100px;
    margin-bottom: 20px;
}
.footerLogo img {
    height: 100%;
}
.qrCodeOuter {
    width: 100%;
    margin: auto;
    padding: 4px;
    aspect-ratio: 1/1;
    background-color: var(--white-color);
}
.qrCodeOuter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footerLinkTitle {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--black-color);
}
.footerLinkOuter {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footerLinkItem:not(:last-child) {
    margin-bottom: 8px;
}
.footerLink {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-color);
    transition: ease-in-out .3s;
}
.footerLink:hover {
    color: var(--black-color);
    text-decoration: underline;
}
.address {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black-color);
}
.copyright {
    margin-top: 50px;
    padding: 12px 0;
    background-color: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    font-size: 14px;
}
/* Footer CSS End */

.leftContainer, .rightContainer {
    max-width: 100%;
}

/* .sectionContent {
    padding: 60px 0;
} */
.sectionContent h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 18px;
}
.sectionContent p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--pera-color);
    margin-bottom: 0;
}
.sectionContent p:has(+*) {
    margin-bottom: 12px;
}
.sectionImgOuter {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    max-height: calc(100vh - 90px);
    min-height: 500px;
    position: sticky;
    top: 80px;
    /* background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; */
}
.sectionImgOuter img {
    overflow: hidden;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.headingSection {
    width: 100%;
    background-image: url(../img/sofaImg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
.headingSection h1 {
    color: var(--white-color);
    font-size: 50px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
}
.headingSection h5 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}
.headingSection::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.instaPortfolioCard {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border: 5px solid #ededed;
    background-color: var(--white-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.instaPortfolioCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in-out .3s;
}
.instaPortfolioCard:hover img {
    transform: scale(1.1);
}
.instaPostContent {
    width: calc(100% - 16px);
    padding: 12px 16px;
    background-color: #00000085;
    border-radius: 16px;
    position: absolute;
    bottom: -50%;
    left: 0;
    right: 0;
    margin: 0 auto 8px;
    z-index: 1;
    transition: ease-in-out .3s;
}
.instaPortfolioCard:hover .instaPostContent {
    bottom: 0;
}

.instaPostContent p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--white-color);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.readMoreLink {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    float: right;
    color: var(--border-color);
}
.readMoreLink:hover {
    color: var(--white-color);
}
.loadMoreBtnOuter {
    text-align: center;
    margin-top: 30px;
}

.videoSection .rightContainer, .videoSection .leftContainer {
    background-color: #f7f7f7;
}
.videoSection .rightContainer {
    border-radius: 0 24px 24px 0;
    overflow: hidden;
}
.videoSection .leftContainer {
    border-radius: 24px 0 0 24px;
    overflow: hidden;
}
.videoOuter {
    width: 600px;
    aspect-ratio: 3 / 2;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}
.videoOuter iframe {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}
.videoSection h4 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-color);
    margin-bottom: 16px;
}
.videoSection p {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--dark-color);
    margin: 0;
}
.videoItem:has(+.videoItem) {
    margin-bottom: 100px;
}

.whoWeAreSection {
    width: 100%;
    height: 100%;
    background: url(../img/whoWeAreBgImg.jpg) top center;
    background-size: cover;
    background-attachment: fixed;
}
.whoWeAreSection p {
    color: var(--white-color);
}
.sectionSubTitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--dark-color);
}
.headingSection .sectionSubTitle {
    color: var(--white-color);
}
.counterOuter {
    padding: 24px;
    border: 1px solid #ffffff59;
    background-color: #00000014;
    backdrop-filter: blur(5px);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
}
.counterItem {
    padding: 24px;
    width: calc(100% / 2);
    text-align: center;
    border-bottom: 1px solid #ffffff59;
    border-right: 1px solid #ffffff59;
}
.counterItem:nth-child(2), .counterItem:nth-child(4) {
    border-right: 0;
}
.counterItem:nth-child(3), .counterItem:nth-child(4) {
    border-bottom: 0;
}
.counterItem .counterVal {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 12px;
}
.counterItem .counterVal.plus:after {
    content: "+";
    display: inline-block;
}
.counterItem .counterTitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white-color);
}
.ceoDetail {
    margin-top: 24px;
}
.ceoDetail .ceoName {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: 8px;
}
.ceoDetail .designation {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--white-color);
}
.orderList {
    padding-left: 24px;
}
.orderList li:has(+li) {
    margin-bottom: 12px;
}
.orderList li p span {
    font-weight: 600;
    color: var(--dark-color);
}
.customTitle {
    font-weight: 600;
    color: var(--dark-color);
    margin: 24px 0 12px;
}
.bgLight {
    background-color: #f7f7f7;
}
.collectionSection{
    background-image: url(../img/collectionBgImg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 140%;
    overflow: hidden;
}
.galleryItemOuter{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.galleryItem {
    display: block;
    width: calc(100% / 4 - 9px);
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    border: 5px solid #ededed;
    transition: ease-in-out .3s;
    position: relative;
}
.galleryItem .viewIcon {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000ad;
    overflow: hidden;
    opacity: 0;
    transition: ease-in-out .3s;
}
.galleryItem:hover .viewIcon {
    opacity: 1;
}
.galleryItem .viewIcon img {
    width: 32px;
    height: 32px;
    filter: invert(1);
    position: relative;
    z-index: 1;
    transform: none;
}
.galleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in-out .3s;
}
.galleryItem:hover img {
    transform: scale(1.1);
}
.galleryItem:hover {
    border-color: #cdcdcd;
}
.form-group:not(:last-child) {
    margin-bottom: 20px;
}
.contactForm {
    border-radius: 24px;
    padding: 24px;
    border: 1px solid var(--border-color);
}
.form-label{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--black-color);
    margin-bottom: 6px;
}
.form-control {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 16px;
    color: var(--dark-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: none !important;
}
.form-control:focus {
    border: 1px solid var(--border-focus-color);
    box-shadow: none !important;
}
.form-control::placeholder {
    font-size: 14px;
    color: var(--pera-color);
}
.contactImgOuter {
    width: 100%;
    height: 100%;
    max-height: 495px;
    border-radius: 24px;
    overflow: hidden;
}
.contactImgOuter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section {
    overflow-x: hidden;
}