:root {
    --cream: #FAF9F6;
    --ink: #1a1a1a;
    --charcoal: #16140f;
    --rust: #b5603a;
    --gold: #c9a15a;
    --whatsapp-green: #25D366;
  }
  * { box-sizing: border-box; }
  body {
    font-family: 'Inter', sans-serif;
    background: #F4F2EE;
    color: #1A1A1A;
  }
  h1, h2, h3, .font-serif {
    font-family: 'Andron';
  }
  @font-face {
    font-family: 'Andron';
    src: url('./font/Andron\ Freefont\ LAT\ Reg.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
a{
    color:#000;
    text-decoration:none;
}
  .sml-hdn {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
    font-family: "Inter", sans-serif;
  }
  .sml-hdn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: #000;
  }
  .sml-hdn.light { color: #d49b47; }
  .sml-hdn.light::after { background: #c9a15a; }

  .section-title {
    font-weight: 400;
    font-size: 27px;
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .btn-outline-brand {
    border: 1px solid #d49b47;
    border-radius: 999px;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 500;
    background: #d49b47;
    color: #fff;
    transition: all .2s ease;
  }
  .btn-outline-light {
    border: 1px solid #d49b47;
    border-radius: 999px;
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 500;
    background: #d49b47;
    color: #ffff;
  }
.btn:hover {
    color: #fff;
    background-color: #a15d2b;
    border-color: #a15d2b;
}
button.btn.btn-outline-brand a{
    color:#fff;
}
button.btn.btn-outline-light a{
    color:#fff;
}
  .link-underline-brand {
    color: #d49b47;
    text-decoration: underline;
    font-style: italic;
  }
  section.featured-categories {
    padding: 57px 0 57px 0;
  }
  section.story {
    padding-top: 85px;
  }
  section.stats {
    padding-bottom: 70px;
    padding-top: 120px;
  }
  section.collec {
    padding-bottom: 85px;
    padding-top: 65px;
  }
  .bg-dark-brand { background: var(--charcoal); color: #f4f2ec; }
  .bg-dark-brand .section-title { color: #f4f2ec; }

  /* ---------- Header ---------- */
  .site-header {
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: rgb(250 249 246 / 87%); 
    backdrop-filter: blur(3px);
    border-bottom: 1px solid rgba(0,0,0,.08);
    z-index: 1100;
    transition: all .35s ease;
  }
  .logo { font-size: 22px; font-weight: 600; letter-spacing: .5px; }

  .btn-menu {
     width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.25);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }
  .btn-menu span { 
   display: block;
    width: 14px;
    border-top: 1.5px solid var(--ink);
    position: relative;
    transition: border-color .3s ease;
  }
  .btn-menu span::before, .btn-menu span::after 
  { 
    content: "";
    position: absolute;
    left: 0;
    width: 14px;
    border-top: 1.5px solid var(--ink);

    transition:
        top .3s ease,
        transform .3s ease;
  }
  .btn-menu span::before { top:-5px; }
  .btn-menu span::after { top:5px; }
/* =========================
   OPEN STATE → X
========================= */

/* Hide middle line */

.btn-menu.active span {
    border-color: transparent;
}

/* Top line → diagonal */

.btn-menu.active span::before {
    top: 0;
    transform: rotate(45deg);
}

/* Bottom line → diagonal */

.btn-menu.active span::after {
    top: 0;
    transform: rotate(-45deg);
}
  /* ---------- Hero ---------- */
  .hero-banner {
    position: relative;
    min-height: 430px;
    height: 100vh;
    background-image: url(./image/woody-banner1.webp);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 21%);
  }
  .hero-text { position:absolute; left:48px; bottom:108px; max-width:640px; }
  .hero-text h1 {
    font-weight: 500;
    font-size: clamp(24px, 3.6vw, 40px);
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  }

  /* ---------- WhatsApp floating button (fixed, site-wide) ---------- */
  .whatsapp-fixed {
    position: fixed;
    right: 28px; bottom: 28px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items:center; justify-content:center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 999;
    text-decoration: none;
  }
  .whatsapp-fixed svg { width: 24px; height: 24px; }

  /* ---------- Featured Categories ---------- */
  .cat-card {
    text-align: center;
    padding-top: 10px;
}
.cat-img-frame {
    width: 100%;
    height: 300px; 
    overflow: hidden;
    border-radius: 20px;
}
.cat-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.cat-img-frame:hover img {
    transform: scale(1.08);
}
.cat-card h3 {
    padding-top: 25px;
    font-size: 24px;
}
.cat-card p{
    padding-top: 7px;
    font-size: 14px;
}
  .story-img { width: 100%; border-radius: 4px; object-fit: cover; }
  .story-content{
padding: 0px 53px 0 0;
}
.stats .row {
    align-items: center;
}
.stats .col-md-4:nth-child(2) {
    transform: translateY(-60px);
}
  .stat-circle {
   width: 232px;
    height: 273px;
    border: 1px solid #d49b47;
    border-radius: 47%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .stat-circle.filled {
    background: var(--cream); color: var(--ink); border: none;
    width: 245px; height: 300px;
  }
  .stat-circle .num {     
    font-family: "Inter", sans-serif;
    font-size: 44px;
    color: #c9a15a;
    font-weight: 300;
    font-style: italic;
  }
  .stat-circle.filled .num { color: var(--ink); }
  .stat-circle .label { font-size: 15px; margin-top: 6px; }
  /* ---------- Curated Collections ---------- */
  .collection-row img { width: 100%; border-radius: 15px; object-fit: cover; }
  .collection-row h3 { font-weight: 500; font-size: 26px; }
  .collection-row p { color: #6b6b6b; font-size: 14px; margin: 16px 0 22px; }

  /* ---------- Why Gaurang ---------- */
  .whyy .feature-item:nth-child(2),
.whyy .feature-item:nth-child(5) {
    transform: translateY(-80px);
}
.feature-circle img{
    width: 60px;
}
  section.whyy {
    padding-top: 50px;
    padding-bottom: 50px;
}
 section.gall {
    padding-top: 60px;
    padding-bottom: 70px;
}
  .feature-circle {
    width: 190px; height: 190px; border-radius: 50%;
    background: var(--cream); color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .feature-circle i { font-size: 34px; }
  .feature-item h3 { font-size: 21px; font-weight: 500; text-align:center; }
  .feature-item p { font-size: 13px; text-align:center; opacity: .85; }

  /* ---------- Gallery ---------- */
   
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 211px 154px 300px;
    gap: 16px;
}

/* Center tall image */
.gallery-2 {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* Left column */
.gallery-1 {
    grid-column: 1;
    grid-row: 1;
}

.gallery-4 {
    grid-column: 1;
    grid-row: 2;
}

/* Right column */
.gallery-3 {
    grid-column: 3;
    grid-row: 1;
}

.gallery-6 {
    grid-column: 3;
    grid-row: 2;
}

/* Bottom row */
.gallery-7 {
    grid-column: 1;
    grid-row: 3;
}

.gallery-8 {
    grid-column: 2;
    grid-row: 3;
}

/* Image */
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
  /* =================================
   PROCESS SECTION
================================= */

.proocess {
    padding: 100px 0;
    background: #191919;
    overflow: hidden;
}
.process-heading {
    margin-bottom: 50px;
}
.process-container {
    position: relative;
}
.process-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgb(255 255 255);
    transform: translateX(-50%);
    z-index: 2;
}
.process-row {
    position: relative;
    min-height: 350px;
    padding: 25px 0;
}
.process-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 55px;
}
/* LEFT COLUMN */
.process-row .process-content:first-child {
    justify-content: flex-end;
    text-align: right;
}

/* RIGHT COLUMN */
.process-row .process-content:last-child {
    justify-content: flex-start;
    text-align: left;
}
.process-inner {
    width: 100%;
    max-width: 500px;
}
.process-num {
    font-style: italic;
    font-size: 47px;
    line-height: 1;
    color: #d49b47;
    margin-bottom: 18px;
    font-weight: 400;
}
.process-content h3 {
    font-size: 25px;
    font-weight: 400;
    margin: 0 0 15px;
    color: #fff;
}
.process-content p {
    font-size: 14px;
    color: #fff;
}
.process-image {
    padding: 0 16px;
    display: flex;
    align-items: center;
}
.process-image img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    transition: transform .6s ease;
}
.process-image {
    overflow: hidden;
}
.process-image:hover img {
    transform: scale(1.03);
}
  /* ---------- CTA ---------- */
  .cta-banner {
    position: relative;
    min-height: 500px;
    display: flex; align-items:center; justify-content:center; text-align:center;
    background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55)), url('./image/cta1.webp');
    background-size: cover; background-position: center;
    color: #fff;
  }
  .cta-banner h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 500; }
  .cta-banner p { opacity: .9; margin: 18px 0 26px; }

  /* ---------- Footer ---------- */
  .site-footer { background: #F4F2EE; padding: 50px 0 0; }
  .footer-logo img{
    width:135px;
  }
  .footer-tagline { font-size: 13px; color: #6b6b6b; max-width: 320px; margin: 10px auto 0; }
  .footer-links h4 { font-size: 16px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-links a {
    display: block;
    color: #4c4c4c;
    text-decoration: none; 
    font-size: 16px;
    margin-bottom: 9px;
    line-height: 21px;
  }
  .footer-links a:hover { color: var(--rust); }
  .footer-social a {
        width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d49b47;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 4px;
    text-decoration: none;
    background: #d49b47;
  }
  .footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 40px; padding: 20px 0;
    font-size: 13px; color: #383838;
  }
  .footer-bottom a { color: #6b6b6b; text-decoration: none; margin-left: 20px; }

  @media (max-width: 640px) {
    .site-header { padding: 7px 20px; }
    .hero-text { left: 20px; bottom: 7px; }
  }
  /*menu*/
  /* =========================
   Overlay
========================= */
.menu-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    z-index: 999;
}
.menu-overlay.active{
    opacity: 1;
    visibility: visible;
}
/* =========================
   Side Menu
========================= */
.side-menu{
    position: fixed;
    top: 67px;
    right: 20px;
    width: 380px;
    height: calc(100vh - 40px);
    background: #F7F5F2;
    border-radius: 20px;
    padding: 40px 40px 40px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    /* Hidden */
    transform: translateX(110%);
    transition: transform .45s cubic-bezier(.25,.8,.25,1);
    z-index: 1000;
}
.side-menu.active{
    transform: translateX(0);
}
/* =========================
   Close Button
========================= */
.close-menu{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #222;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-list{
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-list li{
    margin-bottom: 11px;
    font-weight: 300;
}
.menu-list li a{
    display: inline-block;
    color: #222;
    font-size: 17px;
    text-decoration: none;
    transition: .3s;
}
.menu-list li a:hover{
    transform: translateX(8px);
}
.menu-heading{
    background: #222;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin: 35px -40px;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}
.menu-social{
  margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid rgba(0,0,0,.1);
    display: flex;
    justify-content: center;
    gap: 14px;
}
.menu-social a{
    width: 46px;
    height: 46px;
    border: 1px solid #d49b47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all .3s ease;
    background: #d49b47;
}
.menu-social a:hover{
    background: #222;
    color: #fff;
    transform: translateY(-4px);
}
.testimonial {
  margin: 40px 20px 50px 20px;
}
.testimonial .testimonial-content {
  padding: 35px 25px 35px 50px;
  margin-bottom: 35px;
  background: #fff;
  position: relative; 
  height: 178px;
  max-height: 178px;
}
.testimonial-content .testimonial-icon {
  width: 50px;
  height: 45px;
  background: #d49b47;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  position: absolute;
  top: 37px;
  left: -19px;
}
.testimonial-content .testimonial-icon:before {
  content: "";
  border-bottom: 16px solid #d49b47;
  border-left: 18px solid transparent;
  position: absolute;
  top: -16px;
  left: 1px;
}
.testimonial .description {
  font-size: 15px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  margin: 0;
}
.testimonial .title {
  display: block;
  font-size: 21px;
  font-weight: 500;
  color: #1f1f1f;
  margin: 0 0 5px 0;
}
.owl-theme .owl-controls {
  margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span {
  background: #ccc;
  opacity: 1;
  transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #d49b47;
}
section.proocess{
  padding: 60px 0 70px 0;
}
/*whats app start*/
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 6px 14px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-align: center;
    transition: transform 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}
@media (max-width: 767px) {
    .whatsapp-float {
        display: none;
    }
}
/*whats app end*/
/* =========================
   Responsive
========================= */

@media (max-width: 767px){

    .side-menu{
        top: 30px;
        right: 0;
        width: 100%;
        height: 100vh;
        border-radius: 0;
        padding: 70px 30px 30px;
    }
    .menu-heading{
        margin: 20px -40px;
    }
 .proocess {
        padding: 70px 0;
    }

    .process-heading {
        margin-bottom: 35px;
    }

    /* Remove centre divider on mobile */
    .process-container::before {
        display: none;
    }

    .process-row {
        min-height: auto;
        margin-bottom: 3px;
        padding: 0px 0;
    }

    .process-content {
        min-height: 225px;
        padding: 15px 25px;

        text-align: center;
    }

    .process-image {
        padding: 0 15px;
    }

    .process-image img {
        height: 260px;
        border-radius: 18px;
    }

    .process-num {
        font-size: 30px;
    }

    .process-content h3 {
        font-size: 23px;
    }

    .process-content p {
        font-size: 12px;
    }
}