*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#f5f5f5;
    font-family:'Inter',sans-serif;

}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25d366;
    color:#fff;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 14px 30px rgba(0,0,0,.22);
    z-index:1000;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float:hover{
    background:#1ebe57;
    color:#fff;
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 18px 36px rgba(0,0,0,.26);
}

.whatsapp-float:focus-visible{
    outline:3px solid rgba(37,211,102,.35);
    outline-offset:4px;
}

@media (max-width: 576px){
    .whatsapp-float{
        right:16px;
        bottom:16px;
        width:54px;
        height:54px;
        font-size:28px;
    }
}

/* Navbar */

.custom-navbar{

    background:#fff;
    margin:10px auto;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    padding:10px 0;
    z-index: 999;

}

/* Logo */

.navbar-brand{

    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;

}

.logo-circle{

    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;

}

.logo-text h1{

    font-size:20px;
    color:#1d1d1d;
    margin:0;
    font-weight:700;

}

.logo-text span{

    display:block;
    color:#777;
    font-size:12px;

}

/* Navigation */

.navbar-nav{

    gap:6px;

}

.nav-link{

    color:#222 !important;
    font-size:15px;
    font-weight:500;
    padding:10px 18px !important;
    border-radius:10px;
    transition:.3s;

}

.nav-link:hover{

    background:#f3f3f3;

}

.dropdown-menu{
    border:0;
    border-radius:14px;
    padding:10px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.dropdown-item{
    border-radius:10px;
    padding:10px 14px;
    font-size:14px;
    font-weight:500;
    transition:.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus{
    background:#f3f3f3;
    color:#222;
}

.nav-link.active{

    background:#efefef;

}

/* Buttons */

.btn-quote{

    background:#d17b2d;
    color:#fff;
    border-radius:10px;
    padding:11px 22px;
    font-weight:600;

}

.btn-quote:hover{

    background:#bb6920;
    color:#fff;

}

.btn-call{

    border:1px solid #ddd;
    background:#fff;
    border-radius:10px;
    padding:11px 22px;
    font-weight:600;
    color:#222;

}

.btn-call:hover{

    background:#f6f6f6;

}

/* Mobile */

@media(max-width:991px){

.custom-navbar{

    margin:15px;
    border-radius:15px;

}

.navbar-nav{

    margin-top:20px;

}

.nav-buttons{

    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:12px;

}

.btn-quote,
.btn-call{

    width:100%;

}

}
.logo-circle img{
    width: 50px;
    height: auto;
}/* ============================
   HERO SECTION
============================ */

.hero{
    position: relative;
    height: 82vh;
    overflow: hidden;
    perspective: 2500px;
}

/* ============================
   PLYWOOD PANELS
============================ */

.overlay-panels{
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 5;
    perspective: 2500px;
    pointer-events: none;
}

.panel{
    position: relative;
    flex: 1;
    overflow: hidden;

    transform-style: preserve-3d;
    transform-origin: left center;
    backface-visibility: hidden;

    transform: rotateY(-90deg);
    opacity: 0;

    transition:
        transform 1s cubic-bezier(.23,1,.32,1),
        opacity .4s ease;
}

.panel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* Animation */

.hero.loaded .panel{
    transform: rotateY(0deg);
    opacity: 1;
}

/* Delay */

.panel:nth-child(1){
    transition-delay: 0s;
}

.panel:nth-child(2){
    transition-delay: .15s;
}

.panel:nth-child(3){
    transition-delay: .30s;
}

.panel:nth-child(4){
    transition-delay: .45s;
}

.panel:nth-child(5){
    transition-delay: .60s;
}

/* ============================
   HERO CONTENT
============================ */

.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px,90%);
    text-align: center;

    z-index: 100;

    color: #fff;

    opacity: 0;
    transition: all .8s ease;
    transition-delay: 1s;
}

.hero.loaded .hero-content{
    opacity: 1;
}

.hero-content h1{
    font-size: clamp(42px,6vw,80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p{
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 35px;
}

.subtitle{
    display: inline-block;
    margin-bottom: 20px;
    font-size: small;
    max-width: 320px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-main,
.btn-outline{
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.btn-main{
    background: #D17B2D;
    color: #fff;
}

.btn-main:hover{
    background: #b48645;
    color: #fff;
}

.btn-outline{
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover{
    background: #fff;
    color: #111;
}

/* ============================
   MOBILE
============================ */

@media(max-width:991px){

    .hero-content{
        width:90%;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

}
/* ============================
   HERO CONTENT
============================ */

.hero-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    width: 720px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: rgba(36, 33, 33, 0.45);
    z-index: 100;
    text-align: left;
    color: #fff;
    opacity: 0;
    transition: all .8s ease;
    transition-delay: 1s;
    border-radius: 25px;
    padding: 20px;
}
.hero.loaded .hero-content{
    opacity:1;
}

/* Small Text */


/* Main Text */

.hero-content h1{
    font-size:3rem;
    font-weight:400;
    line-height:1.25;

    letter-spacing:-1px;

    margin:0 0 25px;
}

.hero-content p{
    max-width:760px;

    font-size:1.5rem;
    line-height:1.6;

    color:rgba(255,255,255,.95);

    margin-bottom:70px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:18px;
}

.hero-buttons a{
    width:240px;
    height:58px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    border:1px solid rgba(255,255,255,.5);

    color:#fff;

    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;

    transition:.35s;
}

.hero-buttons a:hover{
    background:#fff;
    color:#111;
}

/* Mobile */

@media (max-width:991px){

    .hero-content{
        left:25px;
        right:25px;
        width:auto;
    }

    .subtitle{
        font-size:22px;
        margin-bottom:40px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:18px;
        margin-bottom:40px;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
    }

}
/*=============================
      Products Section
=============================*/

.products-section{
    background:#f7f7f7;
    padding:100px 0;
}

.section-heading span{
    color:#D17B2D;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    margin:15px 0;
}

.section-heading p{
    color:#666;
    max-width:650px;
    margin:auto;
}

/* Card */

.product-card{

    position:relative;

    height:620px;

    border-radius:35px;

    overflow:hidden;

    cursor:pointer;

    transition:.45s;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.product-card img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:1s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.55) 35%,
        rgba(0,0,0,.08) 70%,
        transparent 100%
    );

}

.product-overlay {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    color: #fff;
    /*border-radius: 25px;
    background: rgba(0, 0, 0, 30%);
    padding: 12px;*/
}
.product-overlay h3{

    font-size:32px;
    font-weight:700;
    margin-bottom:15px;

}

.product-overlay p{

    color:#f2f2f2;
    line-height:1.7;
    margin-bottom:25px;

}

.product-tags{

    display:flex;
    gap:12px;
    flex-wrap:wrap;

    margin-bottom:30px;

}

.product-tags span{

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    font-size:14px;

}

.product-btn{

    width:100%;

    height:58px;

    background:#fff;

    color:#222;

    border-radius:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.product-btn:hover{

    background:#d17b2d;

    color:#fff;

}

@media(max-width:991px){

.product-card{

    height:520px;

}

.section-heading h2{

    font-size:36px;

}

}
/* =========================================
   3D SCROLL PRODUCT SECTION
========================================= */

.product-3d-section{
    position:relative;
    height:500vh;
    background:#f3f0eb;
}


/* =========================================
   STICKY CONTAINER
========================================= */

.product-3d-sticky{

    position:sticky;
    top:0;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

}


/* =========================================
   CANVAS
========================================= */

.product-3d-canvas-wrap{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

}

#product3DCanvas{

    width:100%;
    height:100%;

    display:block;

}


/* =========================================
   TEXT CONTENT
========================================= */

.product-3d-content {
    position: absolute;
    left: 7%;
    background: rgba(255, 255, 255, 70%);
    top: 50%;
    border-radius: 25px;
    transform: translateY(-50%);
    width: 420px;
    padding: 20px;
    z-index: 5;
    pointer-events: none;
}

.product-3d-eyebrow{

    display:block;

    margin-bottom:20px;

    font-size:12px;

    font-weight:600;

    letter-spacing:3px;

    color:#b17b2d;

}

.product-3d-content h2{

    margin:0 0 25px;

    font-size:clamp(40px,5vw,40px);

    line-height:1.05;

    font-weight:500;

    letter-spacing:-2px;

    color:#171717;

}

.product-3d-content p{

    max-width:400px;

    margin:0;

    font-size:16px;

    line-height:1.7;

    color:#555;

}


/* =========================================
   SCROLL PROGRESS
========================================= */

.product-3d-progress{

    position:absolute;

    right:35px;

    top:50%;

    transform:translateY(-50%);

    width:2px;

    height:140px;

    background:rgba(0,0,0,.12);

    z-index:10;

}

.product-3d-progress span{

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:0%;

    background:#b17b2d;

    transition:height .05s linear;

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .product-3d-section{

        height:400vh;

    }

    .product-3d-content{

        left:25px;
        right:25px;

        top:12%;

        transform:none;

        width:auto;

        text-align:left;

    }

    .product-3d-content h2{

        font-size:42px;

    }

    .product-3d-content p{

        font-size:15px;

    }

    .product-3d-canvas-wrap{

        align-items:center;

    }

    .product-3d-progress{

        right:18px;

        height:100px;

    }

}/* =========================================
   OUR BRANDS
========================================= */

.brands-section{

    position:relative;

    /*
     * More height = slower reveal.
     */
    height:300vh;

    background:#f4f1ec;

    scroll-snap-align:start;
    scroll-snap-stop:always;

}


/* =========================================
   STICKY VIEW
========================================= */

.brands-sticky{

    position:sticky;

    top:0;

    width:100%;
    height:100vh;

    overflow:hidden;

}


/* =========================================
   SECTION HEADER
========================================= */

.brands-header{

    position:absolute;

    top:7%;
    left:7%;

    width:560px;

    z-index:20;

}

.brands-header > span{

    display:block;

    margin-bottom:18px;

    font-size:12px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#D17B2D;

}

.brands-header h2{

    margin:0 0 20px;

    font-size:clamp(40px,5vw,42px);

    line-height:1;

    font-weight:500;

    letter-spacing:-2px;

    color:#171717;

}

.brands-header p{

    margin:0;

    font-size:16px;

    line-height:1.7;

    color:#5c5c5c;

}


/* =========================================
   HORIZONTAL BRANDS TRACK
========================================= */

.brands-track{

    position:absolute;

    left:7%;
    right:7%;

    bottom:6%;

    height:58vh;

    display:flex;

    align-items:stretch;

    gap:18px;

}


/* =========================================
   BRAND ITEM
========================================= */

.brand-item{

    position:relative;

    flex:1;

    min-width:0;

    height:100%;

    overflow:hidden;

    background:#181818;

    border-radius:4px;

}


/* =========================================
   BRAND IMAGE
========================================= */

.brand-item .brand-image{

    position:absolute;

    left:0;
    top:0;
    bottom:0;

    /*
     * Starts at ZERO
     */
    width:0%;

    overflow:hidden;

    z-index:2;

    transition:none;

}


/*
 * The actual image must be wider than
 * the clipping container so it doesn't
 * stretch while revealing.
 */

.brand-item .brand-image img{

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}


/* =========================================
   BRAND CONTENT
========================================= */

.brand-content{

    position:absolute;

    inset:0;

    padding:45px;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    z-index:3;

    color:#fff;

    /*
     * Keep content hidden until image
     * has enough width.
     */

    opacity:0;

    transform:translateY(30px);

    transition:
        opacity .5s ease,
        transform .6s cubic-bezier(.19,1,.22,1);

}


/*
 * Dark gradient behind text
 */

.brand-content::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.9) 0%,
        rgba(0,0,0,.55) 40%,
        transparent 75%
    );

    z-index:-1;

}


/* =========================================
   NUMBER
========================================= */

.brand-number{

    display:block;

    margin-bottom:18px;

    font-size:12px;

    letter-spacing:3px;

    color:#ffffff;

}


/* =========================================
   BRAND NAME
========================================= */

.brand-content h3{

    margin:0 0 18px;

    font-size:clamp(32px,3vw,55px);

    font-weight:400;

    line-height:1;

    letter-spacing:-1.5px;

}


/* =========================================
   DESCRIPTION
========================================= */

.brand-content p{

    max-width:390px;

    margin:0 0 28px;

    font-size:15px;

    line-height:1.65;

    color:#e0e0e0;

}


/* =========================================
   LINK
========================================= */

.brand-link{

    display:inline-flex;

    align-items:center;

    gap:14px;

    width:max-content;

    padding-bottom:8px;

    border-bottom:1px solid
        rgba(255,255,255,.45);

    color:#fff;

    text-decoration:none;

    font-size:12px;

    font-weight:600;

    letter-spacing:1.5px;

    text-transform:uppercase;

    transition:.3s;

}

.brand-link span{

    transition:.3s;

}

.brand-link:hover{

    color:#d17b2d;

}

.brand-link:hover span{

    transform:
        translate(4px,-4px);

}


/* =========================================
   ACTIVE BRAND
========================================= */

.brand-item.active
.brand-content{

    opacity:1;

    transform:translateY(0);

}


/* =========================================
   PROGRESS
========================================= */

.brands-progress{

    position:absolute;

    right:30px;

    top:50%;

    transform:translateY(-50%);

    width:2px;

    height:120px;

    background:rgba(0,0,0,.15);

    z-index:30;

}

.brands-progress span{

    position:absolute;

    left:0;
    top:0;

    width:100%;

    height:33.33%;

    background:#D17B2D;

    transform:translateY(0);

    transition:
        transform .6s
        cubic-bezier(.19,1,.22,1);

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .brands-section{

        height:300vh;

    }

    .brands-header{

        top:5%;

        left:25px;
        right:25px;

        width:auto;

    }

    .brands-header h2{

        font-size:40px;

    }

    .brands-header p{

        font-size:14px;

    }

    .brands-track{

        left:20px;
        right:20px;

        bottom:4%;

        height:58vh;

        gap:10px;

    }

    .brand-content{

        padding:25px;

    }

    .brand-content h3{

        font-size:32px;

    }

    .brand-content p{

        font-size:13px;

    }

    .brands-progress{

        right:12px;

        height:80px;

    }

}
/* =========================================================
   PROOF SECTION
========================================================= */

.proof-section{

    position:relative;

    background: linear-gradient(45deg, #000, #d17b2d);

    color:#fff;

    padding:130px 0 45px;

    overflow:hidden;

}


/* =========================================================
   CONTAINER
========================================================= */

.proof-container{

    width:88%;

    max-width:1500px;

    margin:0 auto;

}


/* =========================================================
   TOP
========================================================= */

.proof-top{

    display:grid;

    grid-template-columns:1fr 1.5fr;

    gap:100px;

    padding-bottom:90px;

    border-bottom:1px solid
        rgba(255,255,255,.15);

}


/* =========================================================
   LABEL
========================================================= */

.proof-label{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:11px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#d17b2d;

}

.proof-line{

    width:35px;

    height:1px;

    background:#d17b2d;

}


/* =========================================================
   INTRO
========================================================= */

.proof-intro{

    max-width:850px;

}

.proof-intro h2{

    margin:0 0 25px;

    font-size:
        clamp(42px,3vw,76px);

    font-weight:400;

    line-height:1.02;

    letter-spacing:-3px;

}

.proof-intro p{

    max-width:500px;

    margin:0;

    font-size:14px;

    line-height:1.7;

    color:#888;

}


/* =========================================================
   STATISTICS
========================================================= */

.proof-stats{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    border-bottom:1px solid
        rgba(255,255,255,.15);

}


.proof-stat{

    position:relative;

    min-height:190px;

    padding:45px 35px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    border-right:1px solid
        rgba(255,255,255,.15);

}

.proof-stat:first-child{

    padding-left:0;

}

.proof-stat:last-child{

    border-right:none;

}


.stat-number{

    font-size:
        clamp(50px,4vw,90px);

    font-weight:300;

    line-height:.9;

    letter-spacing:-4px;

    color:#fff;

}


.stat-label{

    font-size:11px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#8c8c8c;

}


/* =========================================================
   HISTORY
========================================================= */

.proof-history{

    display:grid;

    grid-template-columns:
        100px 1.2fr 1fr;

    gap:70px;

    padding:120px 0;

}


/* =========================================================
   HISTORY NUMBER
========================================================= */

.history-number{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:20px;

    font-size:11px;

    letter-spacing:2px;

    color:#777;

}


.history-number div{

    width:1px;

    height:100px;

    background:
        linear-gradient(
            to bottom,
            #d17b2d,
            rgba(196,154,104,0)
        );

}


/* =========================================================
   HISTORY CONTENT
========================================================= */

.history-eyebrow{

    display:block;

    margin-bottom:25px;

    font-size:11px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#D17B2D;

}


.history-content h2{

    margin:0;

    font-size:
        clamp(44px,4vw,76px);

    font-weight:300;

    line-height:1.02;

    letter-spacing:-3px;

}


.history-content h2 em{

    font-style:normal;

    color:#D17B2D;

}


/* =========================================================
   HISTORY DESCRIPTION
========================================================= */

.history-description{

    align-self:end;

    max-width:500px;

}

.history-description p{

    margin:0 0 45px;

    font-size:17px;

    line-height:1.8;

    color:#b3b3b3;

}


/* =========================================================
   STORY LINK
========================================================= */

.history-link{

    display:inline-flex;

    align-items:center;

    gap:20px;

    padding-bottom:10px;

    border-bottom:1px solid
        rgba(255,255,255,.4);

    color:#fff;

    text-decoration:none;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s;

}

.history-link i{

    font-style:normal;

    font-size:18px;

    transition:.35s;

}

.history-link:hover{

    color:#d17b2d;

}

.history-link:hover i{

    transform:
        translate(5px,-5px);

}


/* =========================================================
   BOTTOM
========================================================= */

.proof-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:25px;

    border-top:1px solid
        rgba(255,255,255,.15);

    font-size:9px;

    font-weight:600;

    letter-spacing:3px;

    color:#666;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .proof-section{

        padding:90px 0 30px;

    }


    .proof-container{

        width:90%;

    }


    .proof-top{

        grid-template-columns:1fr;

        gap:35px;

        padding-bottom:60px;

    }


    .proof-intro h2{

        letter-spacing:-2px;

    }


    .proof-stats{

        grid-template-columns:
            repeat(2,1fr);

    }


    .proof-stat{

        min-height:150px;

        padding:30px 20px;

        border-bottom:
            1px solid
            rgba(255,255,255,.15);

    }


    .proof-stat:nth-child(2){

        border-right:none;

    }


    .proof-stat:nth-child(3){

        padding-left:0;

    }


    .proof-history{

        grid-template-columns:1fr;

        gap:45px;

        padding:80px 0;

    }


    .history-number{

        flex-direction:row;

        justify-content:flex-start;

    }


    .history-number div{

        width:80px;

        height:1px;

        background:
            linear-gradient(
                to right,
                #d17b2d,
                rgba(196,154,104,0)
            );

    }


    .history-description{

        max-width:none;

    }


    .proof-bottom{

        gap:15px;

        flex-wrap:wrap;

    }

}
/* =========================================================
   JAI MATA — 12 STAGE 3D STORY
   COMPLETELY INDEPENDENT
========================================================= */

.jmp-story3d{

    position:relative;

    width:100%;

    /*
     * 600vh controls how much scrolling
     * is available for the animation.
     */
    height:600vh;

    background:#111;

    color:#fff;

    overflow:clip;

}


/* =========================================================
   STICKY VIEWPORT
========================================================= */

.jmp-story3d__sticky{

    position:sticky;

    top:0;

    width:100%;

    height:100vh;

    overflow:hidden;

    background:#111;

}


/* =========================================================
   CANVAS
========================================================= */

.jmp-story3d__canvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    display:block;

}


/* =========================================================
   TOP LEFT META
========================================================= */

.jmp-story3d__meta{

    position:absolute;

    top:8%;

    left:6%;

    z-index:10;

}


.jmp-story3d__eyebrow{

    display:block;

    margin-bottom:22px;

    font-size:10px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#d17b2d;

}


.jmp-story3d__counter{

    display:flex;

    align-items:baseline;

    gap:8px;

    color:#666;

    font-size:13px;

    letter-spacing:2px;

}


.jmp-story3d__current{

    font-size:58px;

    font-weight:300;

    line-height:1;

    letter-spacing:-4px;

    color:#fff;

}


.jmp-story3d__slash{

    color:#444;

}


/* =========================================================
   BOTTOM LEFT CONTENT
========================================================= */

.jmp-story3d__content{

    position:absolute;

    left:6%;

    bottom:9%;

    z-index:10;

    width:420px;

}


.jmp-story3d__stage{

    display:block;

    margin-bottom:18px;

    font-size:10px;

    font-weight:600;

    letter-spacing:3px;

    color:#d17b2d;

}


.jmp-story3d__title{

    margin:0 0 18px;

    font-size:clamp(42px,5vw,72px);

    font-weight:300;

    line-height:.98;

    letter-spacing:-3px;

}


.jmp-story3d__description{

    max-width:370px;

    margin:0;

    font-size:15px;

    line-height:1.7;

    color:#999;

}


/* =========================================================
   FINAL TAGLINE
========================================================= */

.jmp-story3d__final{

    position:absolute;

    inset:0;

    z-index:20;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    pointer-events:none;

    opacity:0;

    transform:translateY(40px);

}


.jmp-story3d__final span{

    margin-bottom:25px;

    font-size:10px;

    font-weight:600;

    letter-spacing:5px;

    color:#d17b2d;

}


.jmp-story3d__final h2{

    margin:0;

    font-size:clamp(50px,8vw,120px);

    font-weight:300;

    line-height:.9;

    letter-spacing:-6px;

}


/* =========================================================
   RIGHT PROGRESS
========================================================= */

.jmp-story3d__progress{

    position:absolute;

    right:6%;

    top:50%;

    transform:translateY(-50%);

    z-index:15;

}


.jmp-story3d__progress-track{

    position:relative;

    width:1px;

    height:180px;

    background:rgba(255,255,255,.18);

}


.jmp-story3d__progress-track span{

    position:absolute;

    top:0;

    left:0;

    width:1px;

    height:0;

    background:#d17b2d;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .jmp-story3d{

        height:500vh;

    }


    .jmp-story3d__meta{

        top:7%;

        left:25px;

    }


    .jmp-story3d__current{

        font-size:45px;

    }


    .jmp-story3d__content{

        left:25px;

        right:25px;

        bottom:8%;

        width:auto;

    }


    .jmp-story3d__title{

        font-size:42px;

    }


    .jmp-story3d__description{

        font-size:14px;

    }


    .jmp-story3d__progress{

        right:20px;

    }


    .jmp-story3d__final h2{

        font-size:55px;

        letter-spacing:-3px;

    }

}
/* =========================================================
   JAI MATA — TECHNOLOGY 3D SECTION
   COMPLETELY INDEPENDENT
========================================================= */

.jmp-tech3d{

    position:relative;

    width:100%;

    /*
     * Controls the amount of scroll available
     * for the 351 frame animation.
     */

    height:600vh;

    background:#e9e6df;

    color:#171717;

    overflow:clip;

    scroll-snap-align:start;

}


/* =========================================================
   STICKY VIEW
========================================================= */

.jmp-tech3d__sticky{

    position:sticky;

    top:0;

    width:100%;

    height:100vh;

    overflow:hidden;

    background:#e9e6df;

}


/* =========================================================
   CANVAS
========================================================= */

.jmp-tech3d__canvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    display:block;

}


/* =========================================================
   TOP LEFT
========================================================= */

.jmp-tech3d__header{

    position:absolute;

    top:8%;

    left:6%;

    z-index:10;

}


.jmp-tech3d__eyebrow{

    display:block;

    margin-bottom:20px;

    font-size:10px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#936a3e;

}


.jmp-tech3d__counter{

    display:flex;

    align-items:baseline;

    gap:8px;

    font-size:13px;

    letter-spacing:2px;

    color:#888;

}


.jmp-tech3d__current{

    font-size:60px;

    font-weight:300;

    line-height:1;

    letter-spacing:-4px;

    color:#171717;

}


.jmp-tech3d__slash{

    color:#aaa;

}


/* =========================================================
   CONTENT
========================================================= */

.jmp-tech3d__content{

    position:absolute;

    left:6%;

    bottom:10%;

    width:500px;

    z-index:10;

}


.jmp-tech3d__stage{

    display:block;

    margin-bottom:20px;

    font-size:10px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#936a3e;

}


.jmp-tech3d__title{

    margin:0 0 20px;

    font-size:clamp(42px,5vw,72px);

    font-weight:400;

    line-height:.98;

    letter-spacing:-3px;

    color:#171717;

}


.jmp-tech3d__description{

    max-width:470px;

    margin:0;

    font-size:15px;

    line-height:1.75;

    color:#626262;

}


/* =========================================================
   RIGHT PROGRESS
========================================================= */

.jmp-tech3d__progress{

    position:absolute;

    right:6%;

    top:50%;

    transform:translateY(-50%);

    z-index:15;

}


.jmp-tech3d__progress-track{

    position:relative;

    width:1px;

    height:190px;

    background:rgba(0,0,0,.15);

}


.jmp-tech3d__progress-track span{

    position:absolute;

    top:0;

    left:0;

    width:1px;

    height:0;

    background:#936a3e;

}


/* =========================================================
   BOTTOM
========================================================= */

.jmp-tech3d__bottom{

    position:absolute;

    left:6%;

    right:6%;

    bottom:3%;

    z-index:10;

    display:flex;

    justify-content:space-between;

    padding-top:15px;

    border-top:1px solid rgba(0,0,0,.12);

    font-size:9px;

    font-weight:700;

    letter-spacing:3px;

    color:#999;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .jmp-tech3d{

        height:500vh;

    }


    .jmp-tech3d__header{

        top:7%;

        left:25px;

    }


    .jmp-tech3d__current{

        font-size:45px;

    }


    .jmp-tech3d__content{

        left:25px;

        right:25px;

        bottom:9%;

        width:auto;

    }


    .jmp-tech3d__title{

        font-size:40px;

        letter-spacing:-2px;

    }


    .jmp-tech3d__description{

        font-size:14px;

        max-width:420px;

    }


    .jmp-tech3d__progress{

        right:20px;

    }


    .jmp-tech3d__bottom{

        left:25px;

        right:25px;

    }

}
/* =========================================================
   JAI MATA PLYWOOD — MODERN FOOTER
========================================================= */

.jmp-footer{

    position:relative;

    background:
        linear-gradient(
            rgba(20,13,9,.92),
            rgba(20,13,9,.96)
        ),
        url("../img/wood-texture.jpg");

    background-size:cover;

    color:#fff;

    overflow:hidden;

}


/* =========================================================
   TOP CTA
========================================================= */

.jmp-footer-cta{

    padding:90px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.12);

}


.jmp-footer-cta-inner{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:40px;

}


.jmp-footer-eyebrow{

    display:block;

    margin-bottom:20px;

    font-size:10px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#d49419;

}


.jmp-footer-cta h2{

    margin:0;

    font-size:
        clamp(42px,6vw,82px);

    font-weight:300;

    line-height:.95;

    letter-spacing:-4px;

}


/* =========================================================
   CTA BUTTON
========================================================= */

.jmp-footer-cta-btn{

    display:inline-flex;

    align-items:center;

    gap:25px;

    min-width:190px;

    justify-content:space-between;

    padding:18px 20px;

    border:
        1px solid
        rgba(255,255,255,.3);

    color:#fff;

    text-decoration:none;

    font-size:12px;

    font-weight:600;

    letter-spacing:1.5px;

    text-transform:uppercase;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease;

}


.jmp-footer-cta-btn i{

    font-size:20px;

    font-style:normal;

    transition:
        transform .35s ease;

}


.jmp-footer-cta-btn:hover{

    background:#d49419;

    border-color:#d49419;

    color:#111;

}


.jmp-footer-cta-btn:hover i{

    transform:
        translate(5px,-5px);

}


/* =========================================================
   MAIN FOOTER
========================================================= */

.jmp-footer-main{

    padding:85px 0 75px;

}


/* =========================================================
   LOGO
========================================================= */

.jmp-footer-logo{

    display:inline-block;

    margin-bottom:25px;

}


.jmp-footer-logo img{

    width:155px;

    height:auto;

    display:block;

}


.jmp-footer-brand > p{

    max-width:390px;

    margin:0;

    font-size:14px;

    line-height:1.8;

    color:#aaa;

}


/* =========================================================
   SOCIAL
========================================================= */

.jmp-footer-social{

    margin-top:38px;

}


.jmp-footer-social > span{

    display:block;

    margin-bottom:14px;

    font-size:10px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#d49419;

}


.jmp-social-links{

    display:flex;

    gap:8px;

}


.jmp-social-links a{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:
        1px solid
        rgba(255,255,255,.2);

    color:#fff;

    text-decoration:none;

    font-size:14px;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;

}


.jmp-social-links a:hover{

    background:#d49419;

    border-color:#d49419;

    color:#111;

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.jmp-footer-title{

    display:block;

    margin-bottom:28px;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#d49419;

}


.jmp-footer-column ul{

    padding:0;

    margin:0;

    list-style:none;

}


.jmp-footer-column li{

    margin-bottom:17px;

}


.jmp-footer-column li a{

    position:relative;

    color:#ddd;

    text-decoration:none;

    font-size:14px;

    transition:
        color .3s ease,
        padding-left .3s ease;

}


.jmp-footer-column li a::before{

    content:"";

    position:absolute;

    left:-16px;

    top:50%;

    width:0;

    height:1px;

    background:#d49419;

    transition:
        width .3s ease;

}


.jmp-footer-column li a:hover{

    color:#d49419;

    padding-left:5px;

}


.jmp-footer-column li a:hover::before{

    width:10px;

}


/* =========================================================
   CONTACT
========================================================= */

.jmp-contact-item{

    display:flex;

    gap:18px;

    margin-bottom:28px;

}


.jmp-contact-icon{

    flex:0 0 36px;

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:
        1px solid
        rgba(212,148,25,.35);

    color:#d49419;

}


.jmp-contact-icon i{

    font-size:17px;

    font-style:normal;

}


.jmp-contact-label{

    display:block;

    margin-bottom:7px;

    font-size:12px;

    font-weight:700;

    color:#fff;

}


.jmp-contact-item p{

    max-width:320px;

    margin:0;

    font-size:13px;

    line-height:1.7;

    color:#aaa;

}


.jmp-contact-item a{

    font-size:13px;

    color:#aaa;

    text-decoration:none;

    transition:
        color .3s ease;

}


.jmp-contact-item a:hover{

    color:#d49419;

}


/* =========================================================
   BOTTOM
========================================================= */

.jmp-footer-bottom{

    padding:22px 0;

    border-top:
        1px solid
        rgba(255,255,255,.12);

}


.jmp-footer-bottom-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    font-size:10px;

    color:#777;

}


.jmp-footer-bottom-inner > div{

    display:flex;

    gap:25px;

}


.jmp-footer-bottom-inner a{

    color:#777;

    text-decoration:none;

    transition:
        color .3s ease;

}


.jmp-footer-bottom-inner a:hover{

    color:#d49419;

}


.jmp-footer-established{

    color:#d49419;

    letter-spacing:3px;

    font-weight:700;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .jmp-footer-cta{

        padding:70px 0;

    }


    .jmp-footer-cta-inner{

        align-items:flex-start;

        flex-direction:column;

    }


    .jmp-footer-cta h2{

        font-size:48px;

        letter-spacing:-2px;

    }


    .jmp-footer-main{

        padding:65px 0 50px;

    }


    .jmp-footer-brand{

        margin-bottom:20px;

    }


    .jmp-footer-bottom-inner{

        flex-direction:column;

        align-items:flex-start;

    }


    .jmp-footer-bottom-inner > div{

        flex-wrap:wrap;

        gap:15px;

    }

}


@media(max-width:575px){

    .jmp-footer-cta h2{

        font-size:40px;

    }


    .jmp-footer-logo img{

        width:135px;

    }


    .jmp-footer-main{

        padding-top:55px;

    }


    .jmp-footer-bottom-inner{

        font-size:9px;

    }

}
/* =========================================================
   JAI MATA — ABOUT HISTORY
========================================================= */

.jmp-about-history{

    position:relative;

    background:#f3f0ea;

    padding:150px 0 170px;

    overflow:hidden;

}


/* =========================================================
   HEADER
========================================================= */

.jmp-about-heading{

    max-width:850px;

    margin-bottom:150px;

}


.jmp-about-label{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#b17b2d;

}


.jmp-about-label span{

    width:40px;

    height:1px;

    background:#b17b2d;

}


.jmp-about-heading h1{

    margin:0 0 30px;

    font-size:
        clamp(60px,9vw,130px);

    font-weight:300;

    line-height:.88;

    letter-spacing:-7px;

    color:#171717;

}


.jmp-about-heading h1 em{

    display:block;

    font-style:normal;

    color:#b17b2d;

}


.jmp-about-heading p{

    max-width:600px;

    margin:0;

    font-size:17px;

    line-height:1.8;

    color:#686868;

}


/* =========================================================
   TIMELINE
========================================================= */

.jmp-history-timeline{

    position:relative;

}


/* =========================================================
   VERTICAL LINE
========================================================= */

.jmp-history-line{

    position:absolute;

    top:0;

    bottom:0;

    left:220px;

    width:1px;

    background:#d3cec4;

}


.jmp-history-line span{

    position:absolute;

    top:0;

    left:0;

    width:1px;

    height:0;

    background:#b17b2d;

}


/* =========================================================
   HISTORY ITEM
========================================================= */

.jmp-history-item{

    position:relative;

    display:grid;

    grid-template-columns:220px 1fr;

    gap:100px;

    min-height:430px;

    padding-bottom:100px;

}


/* =========================================================
   YEAR
========================================================= */

.jmp-history-year{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    padding-right:45px;

}


.jmp-history-year span{

    margin-top:10px;

    margin-bottom:10px;

    font-size:10px;

    letter-spacing:2px;

    color:#a99f92;

}


.jmp-history-year strong{

    font-size:42px;

    font-weight:300;

    letter-spacing:-2px;

    color:#171717;

}


/* DOT */

.jmp-history-year::after{

    content:"";

    position:absolute;

    top:28px;

    right:-5px;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#f3f0ea;

    border:2px solid #b8ad9e;

    transition:
        background .4s ease,
        border-color .4s ease,
        transform .4s ease;

}


.jmp-history-item.active
.jmp-history-year::after{

    background:#b17b2d;

    border-color:#b17b2d;

    transform:scale(1.35);

}


/* =========================================================
   CONTENT
========================================================= */

.jmp-history-content{

    max-width:720px;

    padding-top:5px;

}


.jmp-history-category{

    display:block;

    margin-bottom:20px;

    font-size:10px;

    font-weight:700;

    letter-spacing:3px;

    color:#b17b2d;

}


.jmp-history-content h2{

    margin:0 0 25px;

    font-size:
        clamp(40px,5vw,70px);

    font-weight:300;

    line-height:1;

    letter-spacing:-3px;

    color:#171717;

}


.jmp-history-content h2 em{

    font-style:normal;

    color:#b17b2d;

}


.jmp-history-content p{

    max-width:650px;

    margin:0 0 18px;

    font-size:16px;

    line-height:1.85;

    color:#65615b;

}


/* =========================================================
   MISSION
========================================================= */

.jmp-mission{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    background:#171717;

    color:#fff;

    overflow:hidden;

}


/* LARGE BACKGROUND WORD */

.jmp-mission-bg{

    position:absolute;

    left:-3%;

    bottom:0%;

    pointer-events:none;

}


.jmp-mission-bg span{

    font-size:174px;

    font-weight:700;

    line-height:.8;

    letter-spacing:-10px;

    white-space:nowrap;

    color:rgba(255,255,255,.025);

}


/* =========================================================
   MISSION GRID
========================================================= */

.jmp-mission-grid{

    display:grid;

    grid-template-columns:
        220px 1fr;

    gap:100px;

    position:relative;

    z-index:2;

}


.jmp-mission-label{

    display:flex;

    gap:15px;

    padding-top:15px;

}


.jmp-mission-label span{

    width:35px;

    height:1px;

    margin-top:7px;

    background:#b17b2d;

}


.jmp-mission-label p{

    margin:0;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#b17b2d;

}


/* =========================================================
   MISSION CONTENT
========================================================= */

.jmp-mission-content{

    max-width:900px;

}


.jmp-mission-content h2{

    margin:0 0 45px;

    font-size:
        clamp(50px,7vw,100px);

    font-weight:300;

    line-height:.95;

    letter-spacing:-5px;

}


.jmp-mission-content h2 em{

    font-style:normal;

    color:#b17b2d;

}


.jmp-mission-content p{

    max-width:760px;

    margin:0 0 20px;

    font-size:16px;

    line-height:1.85;

    color:#a7a7a7;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:991px){

    .jmp-about-history{

        padding:90px 0 100px;

    }


    .jmp-about-heading{

        margin-bottom:90px;

    }


    .jmp-about-heading h1{

        font-size:60px;

        letter-spacing:-4px;

    }


    .jmp-about-heading p{

        font-size:15px;

    }


    .jmp-history-line{

        left:20px;

    }


    .jmp-history-item{

        grid-template-columns:1fr;

        gap:30px;

        padding-left:55px;

        min-height:auto;

        padding-bottom:80px;

    }


    .jmp-history-year{

        align-items:flex-start;

        padding:0;

    }


    .jmp-history-year::after{

        left:-40px;

        right:auto;

        top:22px;

    }


    .jmp-history-year strong{

        font-size:32px;

    }


    .jmp-history-content h2{

        font-size:42px;

        letter-spacing:-2px;

    }


    .jmp-history-content p{

        font-size:15px;

    }


    .jmp-mission{

        min-height:auto;

        padding:100px 0;

    }


    .jmp-mission-grid{

        grid-template-columns:1fr;

        gap:50px;

    }


    .jmp-mission-content h2{

        font-size:50px;

        letter-spacing:-3px;

    }


    .jmp-mission-content p{

        font-size:15px;

    }


    .jmp-mission-bg{

        bottom:0;

    }

}
