/* ===== ROOT COLOR VARIABLES ===== */
:root {
    --primary:   #4E2F1F;
    --secondary: #6B4A33;
    --accent:    #B46E3D;
    --gold:      #C89A5A;
    --bg:        #F8F3ED;
    --white:     #FFFDF9;
    --text:      #2D2D2D;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    color: var(--text);
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}



.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container-fluid{
    padding: 0px 45px 0px !important;
}
.logo a img {
    height: 80px;
}
.navbar-part{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0px;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.nav-links a::after{
position: absolute;
content: '';
left: 0;
height: 3px;
bottom: -5px;
width: 0;
background: var(--primary);
transition:width 0.4s ease;
}

.nav-links a:hover::after {
width: 100%;
}
.nav-links a:hover{
  color: var(--text);
}
.btn-enquiry {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: .3s;
    font-size: 15px;
    font-weight: 500;
}

.btn-enquiry:hover {
    background: var(--text);
}

.hero-section{
    width:100%;
    overflow:hidden;
}.hero-item{
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    animation: zoomSlow 8s ease-in-out infinite alternate;
}

@keyframes zoomSlow{
    from{ transform: scale(1.05); }
    to{ transform: scale(1.15); }
}

.hero-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(78,47,31,.78) 0%,
        rgba(0,0,0,.38) 55%,
        rgba(0,0,0,.12) 100%
    );
    z-index: 1;
}

.hero-item::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,.28), transparent);
    z-index: 2;
}

.hero-content{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 750px;
    z-index: 6;
}

.hero-subtitle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp .8s ease forwards .3s;
}

.hero-subtitle::before{
    content: "";
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-content h1{
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-weight: 700;
    opacity: 0;
    animation: fadeUp .8s ease forwards .5s;
}

.hero-content p{
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 32px;
    color: rgba(255,255,255,.88);
    max-width: 650px;
    opacity: 0;
    animation: fadeUp .8s ease forwards .7s;
}

.hero-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--gold);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid var(--gold);
    transition: .4s ease;
    opacity: 0;
    animation: fadeUp .8s ease forwards .9s;
}

.hero-btn:hover{
    background: transparent;
    color: #fff;
    border-color: #fff;
    letter-spacing: 2.5px;
}

@keyframes fadeUp{
    from{ opacity: 0; transform: translateY(25px); }
    to{ opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 768px){
    .hero-content{ left: 6%; max-width: 90%; }
    .hero-content h1{ font-size: 32px; }
    .hero-content p{ font-size: 14px; }
}
.hero-slider .owl-nav{
    position:absolute;
    top:50%;
    width:100%;
    transform:translateY(-50%);
    display:flex;
    justify-content:space-between;
    padding:0 30px;
    z-index:5;
}

.hero-slider .owl-nav button{
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary) !important;
    color:#fff !important;
    font-size:22px !important;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    backdrop-filter:blur(4px);
}

.hero-slider .owl-nav button:hover{
    background:var(--gold);
    color:var(--white) !important;
}

.collection-slider .owl-nav{
    position:absolute;
    top:50%;
    width:100%;
    transform:translateY(-50%);
    display:flex !important;
    justify-content:space-between;
    padding:0 30px;
    z-index:5;
}

.collection-slider .owl-nav button{
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary) !important;
    color:#fff !important;
    font-size:22px !important;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    backdrop-filter:blur(4px);
}

.collection-slider .owl-nav button:hover{
    background:var(--gold);
    color:var(--white) !important;
}

.about-section{
    background:var(--bg);
    padding:50px 0;
}
.about-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:3px;
    color:var(--accent);
    margin-bottom:6px;
    font-weight:600;
}

.about-subtitle::before{
    content:"";
    width:35px;
    height:1px;
    background:var(--accent);
}

.about-content h2{
    font-family:Georgia,'Times New Roman',serif;
    font-size:32px;
    line-height:1.25;
    color:var(--primary);
    margin-bottom:8px;
    font-weight:700;
}

.about-content p{
    font-size:16px;
    line-height:1.8;
    color:var(--secondary);
    margin-bottom:10px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
    padding:8px 20px;
    background:var(--primary);
    color:var(--white);
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:600;
    border:1px solid var(--primary);
    transition:.4s ease;
}

.about-btn:hover{
    background:transparent;
    color:var(--primary);
}

.about-images{
    flex:1;
    display:flex;
    gap:20px;
}

.about-img-box{
    flex:1;
    height:420px;
    border-radius:7px;
    overflow:hidden;
}
.about-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}
.about-img-box:hover img{
    transform:scale(1.08);
}
.about-img-box:nth-child(1){
    margin-top:25px;
    height:395px;
}



.category-section{
    background:var(--white);
    padding:40px 0;
}

.section-heading{
    margin-bottom:20px;
}

.cat-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:3px;
    color:var(--accent);
    margin-bottom:8px;
    font-weight:600;
}

.cat-subtitle::before{
    content:"";
    width:35px;
    height:1px;
    background:var(--accent);
}

.section-heading h2{
    font-size:38px;
    color:var(--primary);
    font-weight:700;
}
.category-card{
    position:relative;
    height:380px;
    border-radius:6px;
    overflow:hidden;
    margin-bottom:24px;
    cursor:pointer;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.category-card:hover img{
    transform:scale(1.1);
}

/* overlay gradient */
.category-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.15) 55%,
        rgba(0,0,0,0) 100%
    );
    z-index:1;
}

.category-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:24px;
    z-index:2;
    color:#fff;
}

.category-overlay h3{
    font-family:Georgia,'Times New Roman',serif;
    font-size:22px;
    margin-bottom:10px;
    font-weight:700;
}

.cat-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    letter-spacing:.5px;
    color:var(--gold);
    text-decoration:none;
    font-weight:600;
    opacity:0;
    transform:translateY(8px);
    transition:.35s ease;
}

.category-card:hover .cat-link{
    opacity:1;
    color: var(--accent);
    font-size: 16px;
    transform:translateY(0);
}

.cat-link i{
    font-size:15px;
    transition:.3s;
}

.cat-link:hover i{
    transform:translateX(4px);
}
.why-section{
    background:var(--bg);
    padding:40px 0;
}

.why-row{
    padding:0 20px;
}

.why-card{
    padding:20px 15px 15px;
    border-radius:14px;
    display: flex;
    align-items: start;
    gap: 12px;
    background:var(--white);
    border:1px solid var(--primary);
    height:100%;
    transition:.4s ease;
    margin-bottom:14px;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
    box-shadow:0 20px 40px rgba(78,47,31,.1);
}

.why-icon{
    min-width:75px;
    height:75px;
    border-radius:50%;
    background:var(--bg);
    border:1px solid rgba(180,110,61,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s ease;
}

.why-icon i{
    font-size:32px;
    color:var(--accent);
    transition:.4s ease;
}

.why-card:hover .why-icon{
    background:var(--accent);
    border-color:var(--accent);
}

.why-card:hover .why-icon i{
    color:var(--white);
    transform:rotate(8deg) scale(1.1);
}

.why-card h3{
    font-family:Georgia,'Times New Roman',serif;
    font-size:20px;
    color:var(--primary);
    margin-bottom:14px;
    font-weight:700;
}
.why-card p{
    font-size:14.5px;
    line-height:1.7;
    color:var(--secondary);
    margin:0;
}
.cta-section{
    position:relative;
    padding:50px 0;
    overflow:hidden;
}
.cta-bg{
    position:absolute;
    inset:0;
    z-index:0;
}
.cta-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.cta-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6)
}
.cta-content{
    position:relative;
    z-index:1;
    max-width:680px;
    margin:0 auto;
    color:#fff;
}
.cta-subtitle{
    justify-content:center;
    color:var(--gold) !important;
}
.cta-subtitle::before{
    background:var(--gold);
}
.cta-content h2{
    font-family:Georgia,'Times New Roman',serif;
    font-size:42px;
    line-height:1.25;
    margin-bottom:22px;
    font-weight:700;
}
.cta-content p{
    font-size:16.5px;
    line-height:1.8;
    color:#eee;
    margin-bottom:36px;
}

.cta-btn{
    background:var(--gold);
    border-color:var(--gold);
    color:var(--primary);
}

.cta-btn:hover{
    background:transparent;
    color:#fff;
    border-color:#fff;
}
.blog-section{
    padding:40px 0;
    background:var(--bg);
}
.section-title{
    text-align:center;
    margin-bottom:50px;
}
.cat-subtitle{
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}
.section-title h2{
    font-size:42px;
    margin-top:10px;
}
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.4s;
    border: 1px solid #ccc;
    box-shadow:0 8px 25px rgba(0,0,0,.1);
}
.blog-card:hover{
    transform:translateY(-10px);
}
.blog-img{
    overflow:hidden;
    height: 230px;
}
.blog-img img{
    width:100%;
    display:block;
    transition:.5s;
}
.blog-card:hover .blog-img img{
    transform:scale(1.08);
}
.blog-content{
    padding:15px;
}
.blog-content span{
    color:#999;
    font-size:14px;
}
.blog-content h3{
    font-size:20px;
    line-height:1.4;
}
.blog-content p{
    color:#666;
    line-height:1.4;
    margin-bottom:6px;
}
.read-btn{
    text-decoration:none;
    color:var(--primary);
    font-weight:600;
}
.read-btn i{
    margin-left:8px;
    transition:.3s;
}
.read-btn:hover i{
    transform:translateX(6px);
}
.testimonial-section{
    padding:40px 0;
    background:var(--white);
}
.testimonial-card{
    position:relative;
    background:var(--white);
    padding:20px 15px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.03);
    transition:.4s;
    border: 1px solid #ccc;
    margin: 10px;
}
.testimonial-card:hover{
    transform:translateY(-8px);
}
.quote-icon{
    width:65px;
    height:65px;
    background:var(--primary);
    color:var(--white);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    margin-bottom:15px;
}
.testimonial-card p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:15px;
    font-size:16px;
}
.rating{
    color:var(--gold);
    margin-bottom:15px;
}
.rating i{
    margin-right:3px;
}
.client-info{
    display:flex;
    align-items:center;
    gap:15px;
    overflow: hidden;
    position: sticky;
    top: 90px;
}
.client-info .img-wrap{
     width:70px;
    height:70px;
    overflow: hidden;
    border-radius:50%;
}
.client-info img{ 
    object-fit:cover;
    border:3px solid var(--gold);
}
.client-info h4{
    color:var(--primary);
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}
.client-info span{
    color:var(--secondary);
    font-size:14px;
}
.ir-footer{
    background:#1f120d;
    color:#e7dcd2;
    padding-top:50px;
    font-family: 'Poppins', sans-serif;
}
.ir-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1.4fr;
    gap:40px;
}

.ir-box h3{
    font-size:28px;
    color:var(--gold);
    margin-bottom:15px;
}
.ir-box .logo-part a img{
height: 90px;
backdrop-filter:brightness(1) invert(1);
margin-bottom: 10px;
padding: 10px;
}
.ir-box h4 {
    position: relative;
    margin-bottom: 25px;
}
.ir-box h4::after{
    content:"";
    width:75px;
    height:2px;
    background:var(--gold);
    position:absolute;
    left:0;
    bottom:-8px;
}
.ir-box p{
    font-size:14px;
    line-height:1.8;
    color:var(--white);
    letter-spacing: 0.5px;
}
.ir-box ul{
    list-style:none;
    padding:0;
}
.ir-box ul li{
    margin-bottom:10px;
}
.ir-box ul li a{
    text-decoration:none;
    color:var(--white);
    transition:.3s;
}
.ir-box ul li a:hover{
    color:var(--gold);
    padding-left:6px;
}
.ir-social{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.ir-social a{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    text-decoration: none;
    font-size: 22px;
    transition:.3s;
}

.ir-social a:hover{
    background:var(--gold);
    color:#1f120d;
    transform:translateY(-3px);
}
.ir-newsletter{
    display:flex;
    margin-top:10px;
    border-radius:6px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.15);
}
.ir-newsletter input{
    flex:1;
    padding:12px;
    border:none;
    outline:none;

    color:#fff !important;
}
.ir-newsletter button{
    background:var(--gold);
    border:none;
    padding:0 18px;
    cursor:pointer;
}
.ir-footer-bottom{
    margin-top:30px;
    padding:15px 50px; 
    border-top:1px solid rgba(255,255,255,0.08);
    font-size:14px;
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 1px;
}
.ir-footer-bottom p{
    margin: 0px;
}
.footer-links{
    display: flex;
    gap: 15px;
    align-items: center;
}
.footer-links li{
    list-style: none;
}
.footer-links li a{
    text-decoration: none;
    font-size: 14px;
    color: var(--white);
}
.page-banner{
    background:var(--primary);
    height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}
.page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(200,154,90,.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(200,154,90,.08) 0%, transparent 45%);
}
.page-banner-content{
    position:relative;
    z-index:1;
}
.page-banner-content h1{
    font-size:46px;
    color:#fff;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:16px;
}
.breadcrumb-nav{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:18px;
    letter-spacing:.5px;
}
.breadcrumb-nav a{
    color:#d8cfc6;
    text-decoration:none;
    transition:.3s ease;
}
.breadcrumb-nav a:hover{
    color:var(--gold);
}
.breadcrumb-nav i{
    font-size:10px;
    color:var(--gold);
}
.breadcrumb-nav span{
    color:var(--gold);
    font-weight:600;
}
.story-section{
    background:var(--white);
    padding:40px 0;
}
.story-img-box{
    height:auto;
    border-radius:12px;
    overflow:hidden;
}
.story-img-box img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition:.5s ease;
    object-position: top;
}
.story-img-box:hover img{
    transform:scale(1.03);
}
.story-content{
    flex:1;
}
.story-content p{
    font-size:15.5px;
    line-height:1.85;
    color:var(--secondary);
    margin-bottom:8px;
}
.story-content .about-btn{
    margin-top:10px;
}
.about-readmore p{
    font-size:15.5px;
    line-height:1.85;
    color:var(--secondary);
    margin-bottom:8px;
}
.readmore-extra{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .6s ease, opacity .5s ease;
}
.readmore-extra.open{
    max-height:1000px;
    opacity:1;
}
.readmore-list{
    margin-bottom:10px !important;
}
.readmore-list li{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--secondary);
    font-size:15px;
    margin-bottom:8px !important;
}
.readmore-list li::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--gold);
    flex-shrink:0;
}
.readmore-btn{
    background:transparent;
    color:var(--primary);
    cursor:pointer;
    font-weight: 700;
    text-decoration: underline;
    font-family:inherit;
}
.readmore-btn1{
    background:transparent;
    color:var(--primary);
    cursor:pointer;
    font-weight: 700;
    text-decoration: underline;
    font-family:inherit;
}
.about-part{
    padding:50px 0px;
}
.mv-section{
    background:var(--white);
    padding:40px 0;
}
.mv-content h2{
    font-family:Georgia,'Times New Roman',serif;
    font-size:34px;
    line-height:1.3;
    color:var(--primary);
    margin:14px 0 10px;
    font-weight:700;
}
.mv-content p{
    font-size:15.5px;
    line-height:1.85;
    color:var(--secondary);
}
.mv-image{
    flex:1;
    height:auto;
    border-radius:12px;
    overflow:hidden;
}
.mv-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: top;
    transition:.5s ease;
}
.mv-image:hover img{
    transform:scale(1.04);
}
.contact-section{
    background:var(--white);
    padding:40px 0;
}
.contact-info{
    background: #fff;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,.1);
    border-radius: 12px;
    border: 1px solid var(--accent);
    position: sticky;
    top: 100px;
}
.contact-info h2{
    font-family:Georgia,'Times New Roman',serif;
    font-size:36px;
    line-height:1.3;
    color:var(--primary);
    margin:14px 0 20px;
    font-weight:700;
}
.contact-info p{
    font-size:15.5px;
    line-height:1.85;
    color:var(--secondary);
    margin-bottom:40px;
}
.contact-details-list{
    list-style:none;
    padding:0;
    margin:0;
}
.contact-details-list li{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}
.contact-details-list li i{
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--bg);
    border:1px solid rgba(180,110,61,.25);
    color:var(--accent);
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-details-list h4{
    font-size:15px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:4px;
}
.contact-details-list span{
    font-size:14.5px;
    color:var(--secondary);
}
.contact-details-list span a{
    color:var(--secondary);
    text-decoration: none;
}
.contact-form-box{
    background:var(--white);
    border-radius:14px;
    padding:20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,.1);
    border: 1px solid var(--accent);
}
.contact-form-box h3{
    font-family:Georgia,'Times New Roman',serif;
    font-size:24px;
    color:var(--primary);
    margin-bottom:10px;
    text-align: center;
    font-weight:700;
}
.form-group{
    margin-bottom:10px;
    flex:1;
}
.form-row{
    display:flex;
    gap:20px;
}
.form-group label{
    display:block;
    font-size:13.5px;
    color:var(--primary);
    font-weight:600;
    margin-bottom:4px;
    letter-spacing:.3px;
}
.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    border:1px solid rgba(78,47,31,.2);
    background:var(--white);
    border-radius:4px;
    padding:8px 6px;
    font-size:14px;
    color:var(--text);
    outline:none;
    font-family:inherit;
    transition:.3s ease;
}
.multi-dropdown{
  width: 100%;
  position: relative;
    border:1px solid rgba(78,47,31,.2);
    background:var(--white);
    border-radius:4px;
    padding:8px 16px;
    font-size:14px;
    color:var(--text);
    outline:none;
    font-family:inherit;
    transition:.3s ease;
}
.dropdown-selected{
  cursor: pointer;
  background: #fff;
}
.dropdown-options{
  display: none;
  border: 1px solid #ccc;
  border-top: none;
  position: absolute;
  width: 100%;
  border-top: 1px solid #ccc;
  left: 0;
  top: 100%;
  background: #fff;
  max-height: 200px;
  overflow-y: scroll;
  z-index: 10;
}
.dropdown-options label{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  cursor: pointer;
}
.dropdown-options input{
    width: 15px;
    margin-top: 5px;
}
.dropdown-options label:hover{
  background: #f2f2f2;
}
.multi-dropdown.open .dropdown-options{
  display: block;
}
.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#a89c8e;
}
.form-group input:focus,
.form-group textarea:focus{
    border-color:var(--accent);
    box-shadow:0 0 0 3px rgba(180,110,61,.12);
}
.form-group textarea{
    resize:vertical;
}
.inquiry-form .about-btn{
    border:none;
    cursor:pointer;
    margin-top:10px;
    width:100%;
    justify-content:center;
}
.gallery-section{
    padding:40px 0;
    background:var(--bg);
}
.section-title{
    text-align:center;
    margin-bottom:20px;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    cursor:pointer;
    height: 250px;
}
.gallery-item img{
    width:100%;
    height:100%;
    object-fit: cover;
    display:block;
    transition:.6s ease;
}
.gallery-item:hover img{
    transform:scale(1.1);
}
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:20px;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .overlay{
    opacity:1;
}
.overlay h3{
    color:#fff;
    font-size:18px;
    background:rgba(78,47,31,0.8);
    padding:8px 14px;
    border-radius:20px;
}
.product-cat-section{
    background:var(--bg);
    padding:40px 0;
}
.product-cat-card{
    text-align:center;
    margin-bottom:35px;
    cursor:pointer;
}
.product-cat-img{
    height:350px;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:18px;
}
.product-cat-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}
.product-cat-card:hover .product-cat-img img{
    transform:scale(1.1);
}
.product-cat-card h3{
    font-family:Georgia,'Times New Roman',serif;
    font-size:18px;
    color:var(--primary);
    font-weight:700;
    letter-spacing:.3px;
    transition:.3s ease;
}
.product-cat-card:hover h3{
    color:var(--accent);
}
.service-icon{
    min-width:70px;
    height:70px;
    background:var(--bg);
    border:2px solid var(--gold);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    transition:.3s;
}
.service-icon i{
    font-size:30px;
    color:var(--accent);
}
.service-card:hover .service-icon{
    background:var(--accent);
    border-color:var(--accent);
}
.service-card:hover .service-icon i{
    color:var(--white);
}
.service-sec{
    padding:40px 0;
    background:var(--bg);
}
.service-heading span{
    color:var(--gold);
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}
.service-heading h2{
    color:var(--primary);
    font-size:40px;
    margin:0px 0 20px;
    font-weight:700;
}
.service-heading p{
    color:#666;
    line-height:1.8;
}
.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}
.service-card{
    background:var(--white);
    padding:20px 15px 0px;
    border-radius:12px;
    display: flex;
    gap: 15px;
    border-top:2px solid var(--gold);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}
.service-card:hover{
    transform:translateY(-3px);
    border-color:var(--accent);
}
.service-card h3{
    color:var(--primary);
    margin-bottom:8px;
    font-size:20px;
}
.service-card p{
    color:#666;
    line-height:1.7;
}
.who-we-serve{
    padding:40px 0;
    background:var(--primary);
}
.who-we-serve .service-heading h2{
    color:var(--white);
}
.who-we-serve .service-heading span{
    color:var(--gold);
}
.serve-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.serve-item{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:var(--white);
    padding:22px;
    text-align:center;
    border-radius:8px;
    font-size:18px;
    transition:.3s;
}
.serve-item:hover{
    background:var(--accent);
}
.privacy-policy{
    padding:50px 0;
    background:var(--bg);
}
.privacy-heading{
    text-align:center;
    margin:0 auto 30px;
}
.privacy-heading span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}
.privacy-heading h1{
    color:var(--primary);
    font-size:42px;
    margin:0px 0 15px;
}
.privacy-heading p{
    color:#777;
}
.policy-box{
    margin-bottom: 20px;
}
.policy-box h2{
    color:var(--primary);
    margin-bottom:5px;
    font-size:24px;
}
.policy-box p{
    color:#555;
    line-height:1.8;
    margin: 0;
}
.policy-box ul{
    padding-left:20px;
    margin-top:10px;
}
.policy-box ul li{
    margin-bottom:10px;
    color:#555;
}
.menu-toggle{
    border: none;
    font-size: 25px;
    background: transparent;
    display: none;
}
    .popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    backdrop-filter:blur(4px);
}

.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.popup-box{
    background:var(--white);
    border-radius:16px;
    padding:22px 20px;
    width:100%;
    max-width:460px;
    position:relative;
    transform:translateY(20px);
    transition:.3s ease;
}

.popup-overlay.active .popup-box{
    transform:translateY(0);
}

.popup-close{
    position:absolute;
    top:16px;
    right:16px;
    width:32px;
    height:32px;
    border-radius:50%;
    border:1px solid rgba(78,47,31,.2);
    background:transparent;
    color:var(--primary);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    transition:.3s ease;
}

.popup-close:hover{
    background:var(--primary);
    color:#fff;
}

.popup-box h3{
    font-family:Georgia,'Times New Roman',serif;
    font-size:22px;
    color:var(--primary);
    font-weight:700;
    margin:10px 0 24px;
}

.popup-form-group{
    margin-bottom:14px;
}

.popup-form-group input{
    width:100%;
    border:1px solid rgba(78,47,31,.2);
    background:var(--bg);
    border-radius:8px;
    padding:12px 16px;
    font-size:14px;
    color:var(--text);
    outline:none;
    font-family:inherit;
    transition:.3s ease;
}

.popup-form-group input::placeholder{ color:#a89c8e; }

.popup-form-group input:focus{
    border-color:var(--accent);
    box-shadow:0 0 0 3px rgba(180,110,61,.1);
}
.popup-submit-btn{
    width:100%;
    padding:14px;
    background:var(--primary);
    color:#fff;
    border:none;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    cursor:pointer;
    margin-top:6px;
    transition:.3s ease;
    font-family:inherit;
}
.popup-submit-btn:hover{ background:var(--accent); }