@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bricolage Grotesque", sans-serif;
}
::placeholder {
    font-family: "Bricolage Grotesque", sans-serif;
}
html {
    scroll-behavior: smooth;
}
:root {
    --gold-color: #B5A381;
}
img {
    width: 100%;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
.flex {
    display: flex;
}
.p-container {
    width: 90%;
    margin: 0 auto;
}


/* header  */
.main-header {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(214, 206, 206, 0.7);
    position: relative
}
.header-topline {
    position: absolute;
    width: 10%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 3px;
    background-color: #000;
}
.logo {
    width: 15%;
}
.logo img {
    width: 50%;
}

.menu {
    width: 85%;
    display: flex;
    padding-left: 2rem;
} 
.menu-close {
    display: none;
}
.menu-main {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.menu ul {
    width: 100%;
    justify-content: space-around;
    align-items: center;
}
.menu ul li a {
    font-size: 1rem;
    color: #000;
    padding: 0.4rem 1.2rem;
    transition: all 0.5s ease;

}
.menu ul li a:hover {
    /* border: 1px solid grey; */
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
    background-color: #000;
    border-radius: 50px;
    color: var(--gold-color);
}
.menu ul li a i {
    margin-right: 0.5rem;
}


/* footer start  */
.main-footer {
    background-color: #000;
    margin-top: 4rem;
    padding: 2rem 0;
}
.footer-cta {
    align-items: center;
    padding: 2rem 0;
}
.footer-cta-left {
    width: 70%;
    text-align: center;
}
.footer-cta-left h1 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 500;
}
.footer-cta-left h1 span {
    color: var(--gold-color)
}
.footer-cta-btn {
     width: 30%;
     text-align: center;
}
.footer-cta-btn a {
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 2px solid var(--gold-color)
}
.footer-cta-btn a i {
    margin-left: 0.6rem;
}
.footer-cta-btn a:hover {
    background-color: var(--gold-color);
    color: #000;
}
.footer-menu {
    background-color: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem auto;
}
.footer-menu h5 {
    font-size: 1.3rem;
    font-weight: 500;
    margin: 1.5rem 0;
}
.footer-menubox {
    width: 32%;
}
.footer-menubox:nth-child(1) {
    width: 25%;
}
.footer-menubox:nth-child(2) {
    width: 40%;
}
.footer-menubox:nth-child(3) {
    width: 35%;
}
.footer-menu ul {

}
.footer-menu ul li {
 margin-bottom: 0.8rem;
}
.footer-menu ul li a {
    font-size: 1rem;
    color: #4A4545;
    line-height: 1.6;
    transition: all 0.4s ease;
    position: relative;
}
.footer-menu ul li a:after {
    content: "";
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: -5px;
    transition: all 0.2s ease-in-out;
}
.footer-menu ul li a:hover:after {
    width: 100%;
}
.footer-menu ul li a:hover {
    opacity: 1;
}
.collection-menu ul {
    flex-wrap: wrap;
    gap: 0 4rem;
}
.collection-menu ul li {
    width: 40%;
}



.copyrights,  .copyrights a {
    color: #D9D9D9;
    font-size: 1.1rem;
    text-align: center;
}
.copyrights a {
    border-bottom: 1px solid var(--gold-color);
    padding: 0.2rem;
    
}

/* home page css  */
.hero-main {
    background-color: #000;
}
.hero-right {
    display: flex;
    align-items: center;
}
.hero-right h1 {
    letter-spacing: 1.5px;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    text-transform: uppercase;
    margin: 0.7rem 0;
    font-weight: 550;
}
.hero-right h1:nth-child(1) {
  
}
.hero-right h1:nth-child(2) {
    margin-left: 2rem;
}
.hero-right h1:nth-child(3) {
    margin-left: 7rem;
}
.hero-right h1 span {
    background-color: #fff;
    color: #000;
    padding: 0 1rem;
    margin-left: 0.7rem;
}
.hero-left {
    width: 50%;
}
.hero-right {
    width: 50%;
}
.hero-right p {
    font-size: 1.1rem;
    color: #fff;
    margin: 3rem 0;
    margin-left: 22%;
    width: 70%;
    font-weight: 300;
    line-height: 2;
}
.hero-right a {
    font-size: 1.1rem;
    background-color: var(--gold-color);
    color: #fff;
    margin-left: 22%;
    transition: all 0.4s ease-out;
    padding: 0.5rem 1.5rem;
}
.hero-right a:hover {
    background-color: #fff;
    color: #000;
}
.hero-right-content {
    margin-left: -20%;
} 
.highlights {
    background-color: #000;
    padding: 3rem 0;
}
.highlights b {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
    margin-right: 1rem;
}
.highlights span {
    font-size: 1.6rem;
    color: var(--gold-color);
    font-weight: 500;
}
.highlights-box {
    display: flex;
    align-items: center;
    width: 33%;
    justify-content: center;
}
.about-main {
    padding: 3rem 0;

}
.about-main h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 550;
    margin: 1.5rem 0;
}
.about-main h2 span {
    color: var(--gold-color)
}
.about-main p {
    font-size: 1.1rem;
    line-height: 2;
    margin: 1rem 0;
}
.about-main-wrapper {

}
.about-left {
  width: 38%;
  display: flex;
  align-items: center;

}
.about-left img {
  width: 90%;
}

.about-right {
    width: 62%;
}
.found-main {
    margin: 4rem 0;
    padding: 4rem 0;
    
}
.founder-left {
    width: 30%;
    position: relative;
}
.founder-left:after {
    width: 80%;
    background-color: #000;
    height: 120%;
    position: absolute;
    z-index: -1;
    left: -30%;
    border-radius: 20px;
    top: -10%;
    content: ""
}
.founder-content {
    width: 80%;
    margin: auto;
    background-color: #fff;
    position: relative;
    z-index: 100;
    margin-top: -3rem;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.04);
}
.founder-content h4 {
    font-size: 1.4rem;
    font-weight: 550;
    padding-left: 1rem;
}
.founder-content h4 span {
    color: var(--gold-color)
}
.founder-content p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    margin: 0.5rem 0;
    margin-left: 2rem;
    color: #5E5858;

}
.founder-left img {
    width: 100%;
}
.founder-right {
    width: 70%;
    padding: 3rem;
    padding-left: 4rem;
}
.founder-right h3 {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    padding-left: 1.5rem;
    border-left: 6px solid var(--gold-color);
    font-weight: 550;
    margin: 2rem 0;

}
.founder-right h3 span {
    color: var(--gold-color)
}
.founder-right p {
    font-size: 1.1rem;
    line-height: 2.5;
    margin-bottom: 2rem;
}
.founder-right b {
    font-size: clamp(1.3rem, 1.5vw, 1.6rem);
    font-weight: 550;
    margin-right: 1.4rem;
}
.founder-right a {
    font-size: 1.1rem;
    color: #000;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}
.founder-right a:after {
    content: "";
    left: 0;
    height: 1.5px;
    background-color: #000;
    bottom: -10px;
    position: absolute;
    width: 0;
    transition: all 0.4s ease;

}
.founder-right a:hover:after {
    width: 100%;
}
.founder-right a i {
    margin-right: 0.5rem;
}

.home-collections {
    margin: 1rem 0;
    text-align: center;
    padding-bottom: 3rem;
}
.home-collections h3 {
    font-size: clamp(8rem, 15vw, 10rem);
    color: rgba(217, 217, 217, 0.12);
}
.home-collections h3 {

}
.home-collections p {
    font-size: 1.1rem;
    width: 60%;
    margin: auto;
    color: rgba(0, 0, 0, 0.47);
    line-height: 2;
}
.home-collection-heading {
    margin-top: -7rem;
}
.home-collection-heading h4 {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    margin: 1.5rem 0;
    font-weight: 550;
}
.home-collection-heading h4 span {
    color: var(--gold-color)
}
.home-collections-wrapper {
    gap: 2.5rem;
    overflow-x: scroll;
    padding: 4rem 0;

}
.home-collections-wrapper::-webkit-scrollbar {
    width: 0;
}
.home-collection-box {
    min-width: 25%;
    display: flex;
    flex-direction: column;
}
.home-collection-box:nth-child(odd) {
    flex-direction: column-reverse;
}
.home-collection-box h5 {
    font-size: 1.5rem;
    margin: 1.5rem 0;
}

.home-collection-box h5 a {
    color: #000;
}
.modal {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    top: 0;
    position: fixed;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease-in-out;
}
.modal.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
}
.modal-content {
    width: 60%;
    margin: auto;
    background-color: #fff;
    padding: 3rem;
    position: relative;
}
.modal-content button {
    background-color: transparent;
    position: absolute;
    right: 5%;
    border: 0;
    top: 10%;
    cursor: pointer;
}
.modal-content button i {
    color: #000;
    font-size: 1.3rem;
}
.modal-content h2 {
    font-size: 1.6rem;
    margin: 0.5rem 0;
    
}
.modal-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    font-weight: 400;
    
}
.modal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    
}
.reviews-main {
  margin-top: -5rem;
}
.reviews-left {
    display: flex;
    align-items: center;
}
.reviews-left h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    color: var(--gold-color);
    margin-bottom: -4rem;
}
.reviews-left p {
    font-size: 1.1rem;
    padding: 1.5rem 0;
    padding-left: 3rem;
    width: 80%;
    color: rgba(0, 0, 0, 0.47);
}
.reviews-main h4 {
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    font-weight: 550;
    line-height: 1.2;
    padding-left: 3rem;
}
.reviews-main h4 span {
    color: var(--gold-color)
}
.review-right {
    padding: 2rem 0;
} 
.reviews-left-wrapper {
    
}
.review-right-wrapper {
    height: 500px;
    overflow: scroll;
    padding: 2rem 4rem;
}
.review-right-wrapper::-webkit-scrollbar {
    width: 0;
}
.review-box {
    padding: 1rem 0;
    margin: 1.3rem;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.03);
}
.review-box:nth-child(even) {
    margin-left: -1rem;
}
.review-box h5 {
    font-size: 1.2rem;
    padding: 0.4rem 1.4rem;
    border-left: 3px solid var(--gold-color);
    font-weight: 550;
}
.review-box p {
    font-size: 0.94rem;
    color: rgba(0, 0, 0, 0.47);
    padding: 0.4rem 1.4rem;
    font-weight: 400;
    line-height: 1.5;
}
.review-box p span {
    cursor: pointer;
    color: var(--gold-color);
}
.review-box b {
    position: absolute;
    top: 10%;
    font-weight: 550;
    font-size: clamp(1.3rem, 1.5vw, 1.5rem);
    right: 10%;
    color: var(--gold-color);
    z-index: 100;
}

/* contact page  */
.contact-main {
    padding: 3rem 0;
    margin :2rem 0;
}
.contact-left {
    width: 40%;
    position: relative;
}
.contact-left img {
    width: 50%;
    position: absolute;
    left: 50%;
    top: 14%;
}
.contact-left h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}
.contact-left h4 {
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    color: #625D5D;
    margin-bottom: 2rem;
}
.contact-details {
    padding: 0.8rem 0;
}
.contact-details h5 {
    font-size: clamp(1.2rem, 1.4vw, 1.3rem);
    color: rgba(98, 93, 93, 0.81);
    margin: 0.5rem 0;
}
.contact-details a {
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    color: #000;
    font-weight: 550;
    line-height: 1.4;
}
.contact-right {
    width: 60%;
}
.contact-right {
    padding: 4rem;
}
.contact-right p {
    font-size: 1.1rem;
    padding: 2rem 0;
    line-height: 1.7;
    width: 90%;
}
.view-map a {
  border-bottom: 2px solid #000;
  padding: 0.5rem 0;
}
.contact-right .contact-form {
    background-color: #000;
    padding: 2rem;
    padding-bottom: 5rem;
}
.contact-right .contact-form input, .contact-main input {
    background-color: transparent;
    padding: 0.6rem;
    width: 43%;
    margin: 1.5rem 1rem;
    font-size: 1rem;
    border: 0;
    color: #fff;
    outline: 0;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}
.contact-right .contact-form h6, .contact-main h6{
    font-size: clamp(1.6rem, 1.8vw, 2.2rem);
    color: #fff;
    margin: 1rem 0;
}
.contact-right .contact-form textarea, .contact-main textarea {
    background-color: transparent;
    padding: 0.6rem;
    width: 100%;
    font-size: 1rem;
    margin: 1.5rem 0.5rem;
    border: 0;
    color: #fff;
    height: 110px;
    outline: 0;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}
.contact-right .contact-form button, .contact-main button {
    background-color: var(--gold-color);
    padding: 0.6rem 0;
    border: 0;
    outline: 0;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    display: block;
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.contact-right .contact-form button:hover, .contact-main button:hover {
    background-color: #fff;
    color: #000;
}


/* collections starts here  */
.collections-hero {
    position: relative;
}
.collections-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.39)
}
.collections-hero-content {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    top: 0;
    z-index: 100;
}
.collection-hero-content-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.collections-hero-content span {
    color: var(--gold-color);
    font-size: clamp(1.6rem, 2vw, 2rem);
    margin-left: 2rem;

}
.collections-hero-content h1 {
    letter-spacing: 1.5px;
    font-size: clamp(2rem, 3.9vw, 3.2rem);
    color: #fff;
    text-transform: uppercase;
    margin: 0.7rem 0;
    padding-left: 2rem;
    border-left: 8px solid var(--gold-color);
    font-weight: 550;
    margin: 2rem 0;
}
.collections-hero-content p {
    padding-left: 2rem;
    font-size: 1.1rem;
    color: #D9D9D9;
    margin-bottom: 3rem;
    line-height: 1.7;
}
.collections-hero-content a {
    margin-left: 2rem;
    background-color: var(--gold-color);
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    color: #fff;
    transition: all 0.4s ease-in-out
}
.collections-hero-content a:hover {
    background-color: #fff;
    color: #000;
} 
.collection-hero-desk {
    display: block;
}
.collection-hero-mobile {
    display: none;
}
.collections-hero-content a i {
    margin-left: 0.7rem;
}
.collections-hero-content-wrapper {
    position: relative;
    width: 80%;
    z-index: 1000;
    padding-left: 1rem;
}
.collection-list-main {
    position: relative;
    height: 100%;
}
.collections-nav {
    margin: 1rem 0;
    text-align: center;
    position: sticky;
    background-color: #fff;
    top: 0;
    z-index: 1000;
}
.collection-list-main h2 {
    font-size: clamp(2rem, 2.5vw, 3rem);
    margin: 3rem 0;
    text-align: center;
}
.collection-list-main h2 span {
    background-color: var(--gold-color);
    padding: 0.2rem 0.5rem;
}
.collections-nav-container {
    padding: 0rem 0;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
}
.collections-nav-container ul {
    /*width: 100%;*/
    /*justify-content: center;*/
    overflow-x: scroll;
    padding: 1.5rem 0;
    gap: 0 3rem;
    align-items: center;
}
.collections-nav-container ul::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.collections-nav-container ul li a {
    font-size: 1.1rem;
    padding: 0.4rem 2rem;
    text-wrap: nowrap;
    font-weight: 500;
    color: #000;
    border-radius: 60px;
    transition: all 0.4s ease-in-out;
}
.collections-nav-container ul li a:hover {
    background-color: #000;
    color: var(--gold-color)
}
.collections-nav-container ul li a.active {
    color: var(--gold-color);
    background-color: #000;
}
.collection-listbox h4 {
    font-size: 2rem;
    text-align: center;
    margin: 1.5rem 0;
}

.collection-listbox img {
    /*aspect-ratio: 1.5/2;*/
}

.collection-wrapper {
    gap: 2rem;
    overflow-x: scroll;
}

.collection-wrapper::-webkit-scrollbar {
    width: 0;
}
.collection-box {
    min-width: 31%;
}

.contact-footer {
    width: 100%;
    position: fixed;
    margin: 0 !important;
    top: 0;
    z-index: -1;
    left: 0;
    opacity: 0;
    background-color: transparent;
    transition: all 0.4s ease;
}
.contact-main.active {
    opacity: 1;
    z-index: 1000;
}
.contact-form-main {
    width: 60%;
    margin: auto;
    background-color: #000;
    padding: 2rem 3rem;
    position: relative;
}
.contact-close {
    position: absolute;
    right: 5%;
    top: 5%;
}
.contact-close i {
    color: var(--gold-color);
    font-size: clamp(1.2rem, 1.6vw, 1.6rem);
    cursor: pointer;
    transition: all 0.4s ease;
}

.contact-close i:hover {
    color: #fff;
}
.recent-works {
    flex-wrap: wrap;
    justify-content: center;
}
.recent-works-main .collections-nav {
    display: none;
}
.recent-works .collection-box {
    width: 31%;
}

.measurement-main {
    text-align: center;
    padding: 3rem 0;
}
.measurement-main form {
    width: 60%;
    margin: 1rem auto;
}
#measurementForm {
    padding: 2rem;
    border: 1px solid grey;
}
#measurementForm h2 {
    padding: 2rem 0;
    font-size: 2rem;
}
.userdetails, .category-selection {
    gap: 1rem;
    margin: 1rem 0;
}
.userdetails input {
    font-size: 1rem;
    width: 50%;
    border-radius: 4px;
    padding: 0.6rem 2rem;
}
.category-selection select {
    font-size: 1rem;
    width: 50%;
    border-radius: 4px;
    padding: 0.6rem 2rem;
}
#measurementContainer {
    text-align: left;
    /*padding: 2rem;*/
}
#measurementContainer {
    /*padding: 1rem 2rem;*/
}
#measurementContainer h3 {
    font-size: 1.4rem;
    padding: 1rem 0;
    text-align: center;
}
#measurementContainer label {
    font-size: 1rem;
    margin-right: 1rem;
}
.input-wrapper{
    margin: 0.5rem 0;
}
.input-wrapper input {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    border-radius: 4px;
}
.section-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
}
.section-wrapper label {
    margin-bottom: 0.4rem;
    display: block;
}
.input-wrapper {
    width: 48%;
}
.input-wrapper input {
    width: 100%;
}
.measurement-main input {
    outline: none;
    border: 1px solid grey;
}
.measurement-main button {
    padding: 0.5rem 2rem !important;
    background-color: #000 !important;
    color: var(--gold-color) !important;
    width: 100% !important;
    font-size: 1.1rem;
    cursor: pointer !important;
    margin: 1rem 0;
    border-radius: 4px;
}
.thank-you-main {
    /*height: 100vh;*/
    padding: 3rem 0;
    width: 100%;
    text-align: center;
}
.thank-you-main h1 {
    font-size: clamp(1.4rem, 3vw, 3rem);
    padding: 2rem 0;
}
.thank-you-main a {
    font-size: clamp(1rem, 1vw, 1.1rem);
    padding: 0.4rem 0;
    font-weight: 500;
    color: #000;
    border-bottom: 2px solid #000;
}