

.nav-right-group {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}

.nav-logo-brand {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-swami {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-swami img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.35);
}

@media (max-width: 991px) {
    .nav-right-group {
        right: 80px;
        gap: 10px;
    }
    
    .nav-logo-brand {
        height: 36px;
    }
    
    .nav-swami {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 400px) {
    .nav-right-group {
        right: 70px;
        gap: 6px;
    }
    
    .nav-logo-brand {
        height: 28px;
    }
    
    .nav-swami {
        width: 38px;
        height: 38px;
    }
}






*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fffaf5;
overflow-x:hidden;
}

/* Navbar */

.custom-navbar{
position:fixed;
top:0;
width:100%;
z-index:999;
padding:15px 0;
background:rgba(255,255,255,.9);
backdrop-filter:blur(12px);
box-shadow:0 2px 20px rgba(0,0,0,.05);
 height:80px;
    padding:0;
}



.nav-link{
font-weight:500;
margin-left:0;
}



.site-logo{
    height:102px;
    width:auto;
    display:block;
    margin-left:40px;

}

@media (min-width: 1400px) {
    .site-logo {
        margin-left: 80px;
    }
}



.custom-navbar .container{
    position: relative;
    height: 100%;
}

@media (min-width: 992px) {
    .custom-navbar .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .custom-navbar .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .custom-navbar .container {
        max-width: 1320px;
    }
}

/* .navbar-collapse{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
}

.navbar-nav{
    margin: 0 auto;
} */

@media (min-width:992px){

    .custom-navbar .container{
        position:relative;
    }

    .navbar-collapse{
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        width:auto;
    }

    .navbar-nav{
        margin:0 auto;
    }

}

@media (max-width:1400px){

    .slide1,
    .slide2,
    .slide3{
        background-size:85%;
    }

}
@media(max-width:991px){

    .navbar-collapse{

        background:rgba(20,12,6,.96);
      

        border-radius:15px;

        padding:15px;
        margin-top:20px;
        
        position:static;
        transform:none;
        width:100%;

    }

    .navbar-collapse .nav-link{

        color:#fff !important;

    }

}



@media(max-width:991px){

    .site-logo{
        height:45px;
        width:auto;

        transform:scale(1.7);
        transform-origin:left center;
        margin-left: 15px;
    }

}


.hero-section{
    transition:all .8s ease;
}

.slide1{
    background:url("../images/h1.png");
    background-size:cover;
    background-position:center;
}

.slide2{
    background:url("../images/h2.png");
    background-size:cover;
    background-position:center;
}

.slide3{
    background:url("../images/h3.png");
    background-size:cover;
    background-position:center;
}




.hero-indicators{
    position:absolute;

    right:40px;
    top:50%;

    transform:translateY(-50%);

    display:flex;
    flex-direction:column;

    gap:15px;

    z-index:10;
}

.indicator{
    width:12px;
    height:12px;

    border-radius:50%;

    border:2px solid #fff;

    cursor:pointer;

    transition:.3s;
}

.indicator.active{
    background:#f59e0b;
    border-color:#f59e0b;

    transform:scale(1.3);
}
.hero-section{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;

    
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding-top: 100px;
    padding-bottom: 50px;
}
.hero-section .container{
    max-width: 1320px;
}
.hero-content{
    margin-left:0;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.85) 35%,
        rgba(0,0,0,.25) 70%,
        rgba(0,0,0,.05) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:650px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#2c1a08;
    color:#f5b52a;

    padding:12px 24px;
    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:30px;
}

.hero-content h1{
    font-size:clamp(36px,4vw,48px);
    /* font-size:48px; */
    /* line-height:0.95; */
    font-weight:800;
    color:#fff;
}

.hero-content h1 span{
    color:#f59e0b;
}

.hero-content p{
    color:#d8d8d8;
    font-size:22px;
    line-height:1.8;
    max-width:550px;

    margin:35px 0;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:70px;
}

.btn-main{
    background:linear-gradient(
    135deg,
    #ff6200,
    #ff8f00
    );

    color:#fff;
    text-decoration:none;

    padding:18px 35px;
    border-radius:60px;

    font-weight:600;
}

.btn-outline{
    border:1px solid #ff9a00;
    color:#ffb347;

    padding:18px 35px;
    border-radius:60px;

    text-decoration:none;
}

.hero-features{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.feature-item i{
    font-size:26px;
    color:#f59e0b;
    margin-top:3px;
}

.feature-item h6{
    margin:0;
    color:#fff;
    font-size:18px;
    font-weight:600;
    line-height:1.2;
}

.feature-item span{
    color:#bdbdbd;
    font-size:15px;
}
/* .hero-features{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.hero-features div{
    color:white;
}

.hero-features i{
    color:#f59e0b;
    font-size:24px;
    margin-bottom:10px;
}

.hero-features h6{
    font-size:18px;
    margin:0;
}

.hero-features span{
    color:#bcbcbc;
    font-size:14px;
} */



.hero-section::after{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:20%;
    right:20%;

    background:
    radial-gradient(
      circle,
      rgba(255,115,0,.35),
      transparent 70%
    );

    filter:blur(80px);

    animation:glowMove 6s ease-in-out infinite;
}

@keyframes glowMove{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-30px);
}

}

@media (max-width: 991px){

    .hero-section{
        min-height:auto;
        padding-top:140px;
        padding-bottom:80px;
    }

    .hero-content{
        margin-left:0;
        max-width:100%;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.1;
    }

    .hero-content p{
        font-size:18px;
        line-height:1.7;
        margin:25px 0;
    }

  
    .feature-item h6{
        font-size:16px;
    }

    .feature-item span{
        font-size:14px;
    }

    .hero-section::after{
        width:350px;
        height:350px;
    }

}
@media (max-width: 767px){

    .hero-section{
        padding-top:120px;
        padding-bottom:60px;

        background-position:75% center;
    }

    .hero-badge{
        padding:10px 18px;
        font-size:12px;
        margin-bottom:20px;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.15;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
        margin:20px 0 30px;
    }

  

    .btn-main,
    .btn-outline{
        width:100%;
        text-align:center;
        padding:15px 25px;
    }

    .hero-features{
        gap:25px;
    }

    .feature-item{
        width:100%;
    }

    .feature-item i{
        font-size:22px;
    }

    .feature-item h6{
        font-size:16px;
    }

    .feature-item span{
        font-size:13px;
    }

    .hero-section::after{
        width:250px;
        height:250px;
        right:5%;
    }

}
@media (max-width: 480px){

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-badge{
        font-size:11px;
    }

    .feature-item h6{
        font-size:15px;
    }

    .feature-item span{
        font-size:12px;
    }

}
@media (max-width: 767px){

    .btn-main,
    .btn-outline{
        padding:10px 18px;
        font-size:13px;
        border-radius:35px;
    }

}


.about-section{
    position:relative;
    padding:60px 30px;
  background:
    linear-gradient(
        180deg,
        #fff8ef,
        #fff3e3);

    overflow:hidden;
}

.about-section::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    left:-150px;
    top:50%;

    transform:translateY(-50%);

    background:
    radial-gradient(
        rgba(255,115,0,.15),
        transparent 70%
    );

    filter:blur(100px);
}



.section-tag{
    display:inline-block;

    padding:10px 22px;

    background:#2c1a08;

    color:#f5b52a;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}
/* .about-section .section-tag{
    display:block;
    width:fit-content;
    margin:0 auto 20px;
} */

.about-section h2{
     color:#1a1a1a;

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;
}

.about-text{
    color:#666;
    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;
}

.about-image-wrapper{
    position:relative;
    display:inline-block;
}

.about-image-wrapper img{
    width:100%;
    max-width:500px;

    border-radius:30px;

    animation:float 5s ease-in-out infinite;
}
.about-features{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;
}

.about-feature{
    display:flex;
    align-items:center;

    gap:12px;

     color:#222;
}

.about-feature i{
    color:#f59e0b;
    font-size:20px;
}

.about-feature span{
    font-size:16px;
}
/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .about-section{
        padding:50px 0;
    }

    .about-section h2{
        font-size:34px;
        margin-top:25px;
        margin-bottom:15px;
    }

    .about-text{
        font-size:15px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .about-image-wrapper{
        text-align:center;
        margin-bottom:30px;
    }

    .about-image-wrapper img{
        max-width:400px;
        margin-top: 20px;
    }

    .about-features{
        gap:15px;
    }

    .about-feature span{
        font-size:14px;
    }

    .about-feature i{
        font-size:18px;
    }
    
    .about-section .row{
        display:flex;
        flex-direction:column-reverse;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px){

    .about-section{
        padding:40px 0;
    }

    .section-tag{
        padding:8px 16px;
        font-size:20px;
        margin-bottom:15px;
    }

    .about-section h2{
        font-size:28px;
        line-height:1.3;
        margin-bottom:15px;
    }

    .about-text{
        font-size:14px;
        line-height:1.8;
        margin-bottom:20px;
    }

    .about-image-wrapper{
        text-align:center;
        margin-bottom:25px;
    }

    .about-image-wrapper img{
        max-width:100%;
        border-radius:20px;
    }

    .about-features{
        grid-template-columns:1fr;
        gap:12px;
    }

    .about-feature{
        gap:10px;
    }

    .about-feature i{
        font-size:16px;
    }

    .about-feature span{
        font-size:13px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

    .about-section{
        padding:35px 0;
    }

    .about-section h2{
        font-size:24px;
    }

    .about-text{
        font-size:13px;
    }

    .section-tag{
        font-size:20px;
        padding:7px 14px;
    }

    .about-feature span{
        font-size:12px;
    }

    .about-feature i{
        font-size:15px;
    }

}

@media (max-width:767px){

    .about-features{
        grid-template-columns:repeat(2,1fr);
        gap:12px 15px;
    }

    .about-feature{
        gap:8px;
    }

    .about-feature i{
        font-size:14px;
    }

    .about-feature span{
        font-size:12px;
        line-height:1.4;
    }

}


/* 
.experience-badge{
    position:absolute;

    bottom:20px;
    right:-20px;

    width:140px;
    height:140px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #ff6200,
    #ff9f00
    );

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;
}

.experience-badge span{
    font-size:34px;
    font-weight:800;
}

.experience-badge p{
    margin:0;
    font-size:13px;
} */

/* 
.stats-row{
    margin-top:80px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.stat-card{
   background:#ffffff;

    border:none;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    backdrop-filter:
    blur(10px);

    padding:35px;

    border-radius:20px;

    text-align:center;

    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h3{
    color:#ff8f00;

    font-size:42px;

    font-weight:800;

    margin-bottom:10px;
}

.stat-card p{
    color:#d1d1d1;
    margin:0;
} */



.products-section{
    padding:30px 50px;
    background:#fff8ef;
    
}

.products-heading{
    margin-bottom:60px;
}

.products-heading h2{
    font-size:52px;
    font-weight:800;
    color:#1a1a1a;
    margin-bottom:15px;
}

.products-heading p{
    color:#666;
    font-size:18px;
}

.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;

    height:100%;
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);
}

.product-image{
    position:relative;
    overflow:hidden;
}

/* .product-image img{

    width:100%;
    height:260px;

    object-fit:cover;

    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
} */

.product-image{
    height:260px;
    background:#211409;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image img{

    width:auto;
    max-width:100%;
    height:240px;

    object-fit:contain;

    transition:.5s;
}
.product-card:hover .product-image img{
    transform:scale(1.08);
}
.product-badge{

    position:absolute;

    top:15px;
    left:15px;

    background:#8b4513;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;
    font-weight:600;

    z-index:2;
}

.product-content{
    padding:25px;
}

.product-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;

    color:#222;
}

.product-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:15px;
}

.product-price{

    color:#d35400;

    font-size:24px;

    font-weight:800;

    margin-bottom:15px;
}

.product-info{

    background:#fff4e8;

    padding:12px;

    border-radius:12px;

    text-align:center;

    font-size:14px;

    color:#8b4513;

    margin-bottom:20px;
}

.product-buttons{

    display:flex;

    gap:12px;
}

.whatsapp-btn{

    width:55px;
    height:55px;

    border-radius:12px;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:24px;
}

.details-btn{

    flex:1;

    background:#8b4513;

    color:#fff;

    text-align:center;

    text-decoration:none;

    padding:15px;

    border-radius:12px;

    font-weight:600;
}

.details-btn:hover{
    color:#fff;
}
.products-slider{
    display:flex;
    gap:25px;

  

    padding:0 80px;
}

.product-nav{
    position:relative;
}

.product-prev{
    position:absolute;
    left:14px;
    top:240px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#8b4513;
    color:#fff;

    z-index:10;
}

.product-next{
    position:absolute;
    right:20px;
    top:240px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#8b4513;
    color:#fff;

    z-index:10;
}




.products-slider{

    display:flex;

    gap:25px;

    overflow-x:auto;
    overflow-y:hidden;

    padding:17px 80px;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;
}

.products-slider::-webkit-scrollbar{
    display:none;
}

.products-slider > div{

    flex:0 0 320px;

    scroll-snap-align:start;
}

.products-slider::-webkit-scrollbar{
    display:none;
}

.products-slider{
    scrollbar-width:none;
}



/* =========================
   PRODUCTS RESPONSIVE
========================= */

@media (max-width:1200px){

    .products-slider{
        padding:30px 60px;
    }

    .products-slider > div{
        flex:0 0 40%;
    }

}


@media (max-width:992px){

    .products-section{
        padding:80px 0;
    }

    .products-heading h2{
        font-size:42px;
    }

    .products-heading p{
        font-size:16px;
    }

    .products-slider{
        padding:0 50px;
    }

    .products-slider > div{
        flex:0 0 48%;
    }

    .product-content h4{
        font-size:24px;
    }

    .product-price{
        font-size:22px;
    }

    .product-prev,
    .product-next{
        width:45px;
        height:45px;
        top:220px;
    }

}

@media (max-width:768px){

    .products-section{
        padding:70px 0;
    }

    .products-heading{
        margin-bottom:40px;
    }

    .products-heading h2{
        font-size:32px;
        line-height:1.2;
    }

    .products-heading p{
        font-size:15px;
        padding:0 15px;
    }

    .products-slider{
        padding:0 40px;
        gap:20px;
    }

  

    .product-image img{
        height:220px;
    }

    .product-content{
        padding:20px;
    }

    .product-content h4{
        font-size:22px;
    }

    .product-content p{
        font-size:14px;
    }

    .product-price{
        font-size:20px;
    }

    .product-info{
        font-size:13px;
    }

    .whatsapp-btn{
        width:50px;
        height:50px;
        font-size:20px;
    }

    .details-btn{
        padding:13px;
        font-size:14px;
    }

    .product-prev,
    .product-next{
        width:40px;
        height:40px;
        top:554px;
    }

    .product-prev{
        left:35%;
    }

    .product-next{
        right:35%;
    }

}

@media (max-width:576px){

    .products-heading h2{
        font-size:20px;
    }

    .products-slider{
        padding:0 30px;
    }

    .products-slider > div{
        flex:0 0 90%;
    }

    .product-image img{
        height:200px;
    }

    .product-content h4{
        font-size:20px;
    }

}
@media(max-width:768px){

    .products-slider{
        padding:20px 15px;
    }

   
    

}

.products-slider{
    scroll-behavior:smooth;
}



.why-section{

    position:relative;

    padding:30px 60px;

    background:
    linear-gradient(
        135deg,
        #1b1208,
        #2a170a
    );

    overflow:hidden;
}

.why-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-200px;
    right:-150px;

    background:
    radial-gradient(
        rgba(245,158,11,.18),
        transparent 70%
    );

    filter:blur(80px);
}

.why-heading{

    margin-bottom:70px;
}

.why-heading h2{

    color:#fff;

    font-size:52px;

    font-weight:800;

    line-height:1.2;
}

.why-card{

        background:rgba(255,255,255,.03);

     border:1px solid rgba(245,158,11,.18);

    box-shadow:
    0 0 0 1px rgba(255,255,255,.03) inset;


    border-radius:24px;

   
    padding:10px 20px;

    text-align:center;

    height:100%;

    backdrop-filter:blur(10px);

    transition:.4s;
}


.why-card:hover{

    transform:translateY(-8px);

    border-color:#f59e0b;

    background:rgba(255,255,255,.06);
}



.why-icon{

    width:79px;
    height:79px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#FFF6EB;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:36px;

    box-shadow:
    0 10px 25px rgba(245,158,11,.3);
}

.why-card h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.why-card p{

    color:#d3c7b7;

    line-height:1.8;

    font-size:15px;
}

@media(max-width:768px){

    .why-section{
        padding:60px 0;
    }

    .why-heading{
        margin-bottom:40px;
    }

    .why-heading h2{

        font-size:30px;

        line-height:1.1;
    }

    .why-card{

        padding:25px 15px;

        border-radius:18px;
    }

    .why-icon{

        width:60px;
        height:60px;

        font-size:24px;

        margin-bottom:18px;
    }

    .why-card h4{

        font-size:16px;

        white-space:nowrap; /* heading in one line */

        margin-bottom:10px;
    }

    .why-card p{

        font-size:13px;

        line-height:1.6;
        text-align: center;
    }

    .why-section .col-md-6{
        width:50%;
    }

}
@media(max-width:480px){

    .why-heading h2{
        font-size:15px;
    }

    .why-card{

        padding:20px 12px;
    }

    .why-icon{

        width:50px;
        height:50px;

        font-size:20px;
    }

    .why-card h4{

        font-size:14px;
    }

    .why-card p{

        font-size:12px;
        text-align: center;
    }

}



:root {
    --logo-brown: #3D2314;
    --logo-tan: #A67C52;
}

.contact-section { padding: 10px 10px; background: #fff; }

.contact-box {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}

/* Left Info Side Fix */
.contact-info-side {
    background: var(--logo-brown);
    padding: 70px 80px; /* Increased horizontal padding to fix edge touching */
    display: flex;
    align-items: center;
}

.info-text { color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.detail-item { display: flex; margin-bottom: 35px; align-items: center; }

.icon-box {
    width: 50px; height: 50px;
    background: rgba(166, 124, 82, 0.15);
    color: var(--logo-tan);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-right: 25px;
}

.text-box h5 { color: var(--logo-tan); font-weight: 700; margin-bottom: 3px; }
.text-box p { color: #fff; margin: 0; font-size: 15px; }

/* Right Form Side */
.contact-form-side { padding: 70px 80px; background: #fff; }

.custom-field { position: relative; width: 100%; }

.form-input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: var(--logo-brown);
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    transition: 0.3s;
}

.form-label {
    position: absolute;
    top: 10px; left: 0;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
}

/* Floating Label Logic */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -20px;
    font-size: 13px;
    color: var(--logo-tan);
    font-weight: 700;
}

.input-highlight {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--logo-tan);
    transition: 0.4s;
}

.form-input:focus ~ .input-highlight { width: 100%; }

/* Unique Button Style */
.btn-submit-unique {
    background: var(--logo-brown);
    color: #fff;
    padding: 16px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(61, 35, 20, 0.2);
}

.btn-submit-unique:hover {
    background: var(--logo-tan);
    transform: translateY(-3px);
}


.contact-main-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* LEFT PANEL: Forced padding from edge */
.left-info-panel {
    background: #3D2314;
    padding: 60px 50px; /* Moves content 50px from the absolute edge */
    display: flex;
    align-items: center;
}

.info-content { width: 100%; }

.small-tag { color: white; font-weight: 700; letter-spacing: 1px; font-size: 13px; }
.compact-title { color: #fff; font-size: 28px; margin: 15px 0; font-weight: 800; }
.compact-p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 30px; }

.detail-row { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.detail-row i { color: #f59e0b; font-size: 18px; margin-top: 5px; }
.detail-row h5 { color: #f59e0b; font-size: 15px; margin: 0; font-weight: 700; }
.detail-row p { color: #fff; font-size: 13px; margin: 0; }

/* RIGHT PANEL: Form Alignment */
.right-form-panel {
    padding: 60px 50px;
    background: #fff;
    display: flex;
    align-items: center;
}

.minimal-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    font-size: 14px;
    transition: 0.3s;
}

.minimal-input:focus {
    outline: none;
    border-bottom: 1px solid #3D2314;
}

/* BUTTON: Fixed alignment */
.compact-btn {
    background: #3D2314;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.4s;
}

.compact-btn:hover {
    background: #A67C52;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .left-info-panel, .right-form-panel {
        padding: 10px 25px; /* Smaller padding on mobile */
    }
    .compact-title { font-size: 22px; }
    .compact-btn {  height: 90%; font-size: 12px;}  
}
@media (max-width: 991px) {
    .contact-info-side, .contact-form-side { padding: 50px 30px; }
}

/* POPUP BACKGROUND */
.success-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;
}

/* POPUP BOX */
.popup-content{

    background:#fff;

    padding:40px;

    width:380px;

    border-radius:20px;

    text-align:center;

    animation:popupShow .4s ease;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

/* CHECKMARK */
.checkmark{

    width:80px;
    height:80px;

    background:#8B4513;

    border-radius:50%;

    display:flex;

    justify-content:center;
    align-items:center;

    margin:auto;

    color:white;

    font-size:35px;

    margin-bottom:20px;
}

.popup-content h3{

    color:#8B4513;

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;
}

.popup-content p{

    color:#666;

    font-size:15px;

    line-height:1.8;
}

.popup-content button{

    margin-top:25px;

    border:none;

    background:#8B4513;

    color:#fff;

    padding:12px 35px;

    border-radius:50px;

    font-weight:600;
}

.popup-content button:hover{

    background:#A67C52;
}

/* animation */

@keyframes popupShow{

from{

transform:scale(.6);
opacity:0;

}

to{

transform:scale(1);
opacity:1;

}

}











/* Footer */

footer{
padding:70px 0;
background:#1e293b;
color:white;
}

.socials i{
font-size:24px;
margin:15px;
cursor:pointer;
}



@media(max-width:991px){

.hero-section h1{
font-size:45px;
}

.hero-img{
margin-top:50px;
}

}

@media(max-width:576px){

.hero-section h1{
font-size:20px;
}

.btn-main,
.btn-outline-main{
display:block;
margin:10px 0;
width:50%;
}

.section-title h2{
font-size:20px;
}

}

.faq-left{

    position:sticky;

    top:120px;
        margin-left: 50px;

}


.faq-left h2{

    font-size:52px;

    font-weight:800;

    color:#2a170a;

    line-height:1.1;

    margin:20px 0;
}

.faq-left p{

    color:#7a6856;

    line-height:1.8;

    max-width:280px;
}



.faq-section{

    padding:30px 0;

    background:
    linear-gradient(
        135deg,
        #f6e8d8,
        #fff6eb
    );
}

.faq-heading{

    margin-bottom:60px;
}

.faq-heading h2{

    font-size:22px;

    font-weight:800;

    color:#2a170a;

    margin-bottom:15px;
}

.faq-heading p{

    color:#7a6856;

    font-size:18px;
}

.faq-wrapper{

    max-width:900px;

    margin:auto;
}

.faq-item{

    background:#fff;

    border:1px solid #ead7c2;

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.faq-question{

    width:100%;

    border:none;

    background:none;

    padding:24px 30px;

    text-align:left;

    font-size:20px;

    font-weight:600;

    color:#2a170a;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.faq-question span{

    font-size:30px;

    color:#b86b2d;

    transition:.3s;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s ease;
}

.faq-answer p{

    padding:0 30px 25px;

    margin:0;

    color:#6b5a48;

    line-height:1.8;
}

.faq-item.active .faq-answer{

    max-height:200px;
}

.faq-item.active .faq-question span{

    transform:rotate(45deg);
}
@media(max-width:768px){

    .faq-section{
        padding:18px 0;
    }

    .faq-heading h2{
        font-size:20px;
    }

    .faq-question{

        font-size:16px;

        padding:20px;
    }

    .faq-answer p{

        padding:0 20px 20px;

        font-size:14px;
    }

}



@media(max-width:991px){

    .faq-left{

        position:static;

        text-align:center;

        margin-bottom:40px;
                text-align: left;
        margin-left: 30px;
    }

    .faq-left h2{

        font-size:20px;
      
    }
  

    .faq-left::after{

        margin:25px auto 0;
    }

}














.footer-section{

    background:
    linear-gradient(
        135deg,
        #140b05,
        #241208
    );

    padding:30px 0 25px;

    color:#fff;
}
.footer-brand img{

    height:70px;

    width:auto;

    display:block;

    margin-bottom: 19px;
   margin-left: 80px;
   margin-top: 4px;

    transform:scale(1.4);

    transform-origin:left center;

    filter:
    drop-shadow(0 10px 20px rgba(0,0,0,.4));
}

.footer-brand p{

    color:#cdbba8;

    line-height:1.8;

    max-width:370px;
       margin-left: 60px;
}

.footer-section h5{

    color:#fff;

    font-size:20px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;
}

.footer-section h5::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:118px;
    height:3px;

    background:#f59e0b;
}

.footer-section ul{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-section ul li{

    margin-bottom:14px;

    color:#cdbba8;
}

.footer-section ul li a{

    color:#cdbba8;

    text-decoration:none;

    transition:.3s;
}

.footer-section ul li a:hover{

    color:#f59e0b;
}

.footer-contact i{

    color:#f59e0b;

    width:25px;
}

.footer-whatsapp{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:20px;

    padding:12px 22px;

    border-radius:50px;

    background:#e6a638;

    color:#241208;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.footer-whatsapp i{

    color:#25D366;

    font-size:22px;
}

/* .footer-whatsapp:hover{

    background:#dccab7;

    color:#fff;
} */

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:
    1px solid rgba(255,255,255,.08);

    text-align:center;
}

.footer-bottom p{

    color:#a8937b;

    margin:0;
}
.footer-bottom{
    position:relative;
    margin-top:50px;
    padding-top:25px;
    text-align:center;
}

.footer-bottom::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:100vw;

    height:7px;

    background:#CDBBA8;

    transform:translateX(-50%);
}

html,
body{
    width:100%;
    overflow-x:hidden;
}

.container,
.container-fluid{
    max-width:100%;
}


.product-content h4 span{
    font-size:24px;
}

@media(max-width:768px){

    .footer-section{

        
        margin-top:20px;
        
    }
    .footer-brand img{

        height:80px;
        margin-left: 80px;
       
    }
    .footer-section ul li{

        font-size:12px;
    }

    .footer-brand p{

        margin-left:0;
        font-size:14px;
    }


    .footer-section h5::after{
        display:none;

        left:20%;

        transform:translateX(-50%);
    }

    .footer-whatsapp{

        justify-content:left;

    }



}
@media(max-width:768px){

    .footer-section .col-lg-2{
        width:50%;
    }

    .footer-section .col-lg-3:nth-child(3){
        width:50%;
    }

    .footer-section .col-lg-3:last-child{
        width:100%;
    }

}

/* product popup */
.product-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.6);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;
}

.product-modal.show{
    display:flex;
}

.product-modal-box{

    width:515px;

    background:#fff;

    border-radius:25px;

    padding:25px;

    text-align:center;

    animation:popup .35s ease;
}

@keyframes popup{

    from{
        transform:translateY(30px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

/* .product-modal-box img{
    width:100%;
    height:180px;
    object-fit:contain;
    border-radius:18px;
    margin-bottom:10px;
    background:#211409;
} */
 .modal-layout{
    display:flex;
    gap:25px;
    align-items:center;
}
.modal-image-wrap{
    flex:0 0 170px;
}

#modalImage{
    width:100%;
    height:340px;
    object-fit:contain;
    margin:0;
}
.modal-image-wrap{
    background:#2c1406;
    border-radius:18px;
    padding:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.modal-content-wrap{
    flex:1;
    text-align:left;
}

.modal-content-wrap h3{
    font-size:32px;
    margin-bottom:12px;
        margin-top: 34px;
}

.modal-content-wrap p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:25px;
}
.info-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    flex-wrap:nowrap;
    margin-bottom:25px;
}

.final-price{
    margin:0;
    font-size:30px;
}

.size-options{
    margin:0;
}

.quantity-box{
    margin:0;
    gap:10px;
}

.order-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    max-width:250px;

    padding:14px 20px;

    white-space:nowrap;
}

.order-btn i{
    font-size:24px;
}

@media(max-width:768px){

    .modal-layout{
        flex-direction:column;
        text-align:center;
    }

    .modal-image-wrap{
        flex:unset;
        width:130px;
    }

    #modalImage{
        height:200px;
    }

    .modal-content-wrap{
        text-align:center;
        margin-top: -32px;
    }

    .info-row{
        justify-content:center;
    }

    .order-btn{
        width:100%;
        justify-content:center;
    }
}
.size-qty-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin:15px 0;
}

.quantity-box{
    margin:0;
}
.size-options{

    display:flex;

    gap:10px;

    justify-content:center;

    margin:20px 0;
}

.size-btn{

    border:none;

    background:#f3f3f3;

    padding:10px 16px;

    border-radius:10px;
}

.size-btn.active{

    background:#8b4513;

    color:#fff;
}

.quantity-box{

    display:flex;

    justify-content:center;

    gap:15px;

    align-items:center;

    margin:20px 0;
}

.quantity-box button{

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:#8b4513;

    color:#fff;
}

.final-price{

    font-size:28px;

    font-weight:800;

    color:#d35400;

    margin:20px 0;
}

.order-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    background:#8b4513;

    color:#fff;

    text-decoration:none;

    padding:15px;

    border-radius:12px;

    font-weight:600;
}

.order-btn:hover{

    background:#a65a1f;

    color:#fff;
}
.order-btn i{

    font-size:32px;

}

/* .close-modal{

    float:right;

    cursor:pointer;

    font-size:28px;
} */
 .product-modal-box{
    position:relative;
}

.close-modal{
    position:absolute;

    top:18px;
    right:20px;

    font-size:32px;
    font-weight:600;

    cursor:pointer;

    z-index:999;

    line-height:1;
}


@media(max-width:768px){

    .product-modal{
        padding:20px;
    }

    .product-modal-box{

        width:100%;
        max-width:300px;

        padding:15px;

        border-radius:18px;
    }

    .product-modal-box img{

        height:130px;

        margin-bottom:12px;
    }

    #modalTitle{
        font-size:16px;
        margin-bottom:8px;
    }

    #modalDescription{
        font-size:12px;
        line-height:1.4;
        margin-bottom:10px;
    }

    .size-btn{

        padding:6px 10px;
        font-size:11px;
    }

    .quantity-box{
        margin:12px 0;
    }

    .quantity-box button{

        width:34px;
        height:34px;
    }

    .final-price{

        font-size:22px;
        margin:12px 0;
    }

.order-btn{

    width:220px;

    margin:0 auto;

    padding:8px 12px;

    font-size:12px;

    border-radius:10px;
}

    .order-btn i{
        font-size:22px;
    }

}

.footer-socials{

    display:flex;

    gap:15px;

    margin-top:20px;
}

.footer-socials a{

    width:45px;
    height:45px;

    border:1px solid rgba(255,255,255,.25);
    background:#FDF3E7;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:var(--logo-brown);

    transition:.3s;
}

.footer-socials a:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-3px);

    color:#fff;
}

.footer-socials i{

    font-size:23px;
}
@media(max-width:768px){

    .footer-section .col-lg-3.col-md-4:last-child{
        position:relative;
    }

    .footer-socials{
        position:absolute;

        top:3px;
        right:22px;

        display:flex;
        gap:6px;

        margin:0;
    }

    .footer-socials a{
        width:31px;
        height:31px;
    }

    .footer-socials i{
        font-size:15px;
    }

    .footer-section .col-lg-3.col-md-4:last-child h5{
        margin-bottom:20px;
    }

}

/* ==========================================================================
   Preloader Styles (Simple Image Centered)
   ========================================================================== */
body.preloader-active {
    overflow: hidden !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 10px;
}

.preloader-img {
    display: block;
    max-width: 300px;
    max-height: 380px;
    width: 80%;
    height: auto;
    object-fit: contain;
    animation: preloaderZoomIn 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.preloader-blessing {
    font-size: 1.35rem;
    font-weight: 500;
    color: #8b4513;
    margin: 15px 0 5px;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderFadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.preloader-logo {
    display: block;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    margin: 5px auto 0;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderFadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes preloaderZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes preloaderFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .preloader-img {
        max-width: 200px;
        max-height: 250px;
    }
    .preloader-blessing {
        font-size: 1.1rem;
        margin: 10px 0 3px;
    }
    .preloader-logo {
        max-width: 110px;
    }
}