
    :root{
      --dark:#0d0d0d;
      --brown:#8b5d33;
      --light:#f5f2ec;
      --text:#666;
    }

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

    body{
      font-family:'Montserrat',sans-serif;
      overflow-x:hidden;
      color:#222;
      background:#fff;
    }

    section{
      padding:100px 0;
      position:relative;
    }

    h1,h2,h3,h4,h5{
      font-weight:800;
      line-height:1.2;
    }

    p{
      color:var(--text);
      line-height:1.9;
    }

    .section-tag{
      color:var(--brown);
      font-size:14px;
      letter-spacing:2px;
      text-transform:uppercase;
      font-weight:700;
      /*margin-bottom:15px;*/
      display:block;
      margin-top: 25px;
    }

    .section-title{
      font-size:52px;
      margin-bottom:25px;
    }

    .btn-main{
      background:var(--brown);
      color:#fff;
      padding:15px 35px;
      border-radius:60px;
      font-weight:600;
      transition:0.4s;
      border:none;
    }

    .btn-main:hover{
      background:#6f4828;
      color:#fff;
      transform:translateY(-2px);
    }
    /* =====================================================
      CONTACT
      ===================================================== */

      .contact-page-section{
          background:#f6f3ee;
          padding:120px 0;
      }

      .contact-info-box,
      .contact-form-box{
          background:#fff;
          padding:45px;
          border-radius:35px;
      }

      .contact-item{
          display:flex;
          gap:10px;
          margin-top:35px;
      }

      .contact-item i{
          width:70px;
          height:70px;
          /*background:#111;*/
          color:#111;
          border-radius:22px;
          display:flex;
          align-items:center;
          justify-content:center;
          font-size:28px;
      }

      .contact-form-box .form-control,
      .contact-form-box .form-select{
          height:60px;
          border:none;
          background:#f5f5f5;
          border-radius:16px;
      }

      .contact-form-box textarea{
          height:auto !important;
      }

    /* NAVBAR */

    .navbar{
      padding:20px 0;
      background:#fdf6e3;
      backdrop-filter:blur(10px);
      box-shadow:0 2px 20px rgba(0,0,0,0.04);
      z-index:99999;
    }

    .navbar-brand{
      font-size:28px;
      font-weight:800;
      color:#111;
    }

    .nav-link{
      color:#111;
      margin-left:20px;
      font-weight:600;
    }

    .nav-link:hover{
      color:var(--brown);
    }

    /* HERO */

    .hero{
      min-height:100vh;
      background:
      linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.45)),
      url('https://images.unsplash.com/photo-1517841905240-472988babdf9?q=80&w=1600');
      background-size:cover;
      background-position:center;
      display:flex;
      align-items:center;
      color:#fff;
      overflow:hidden;
    }

    .hero h1{
      font-size:78px;
      max-width:850px;
      margin-bottom:30px;
    }

    .hero p{
      color:#ddd;
      font-size:20px;
      max-width:650px;
      margin-bottom:35px;
    }

    .hero-card{
      background:rgba(255,255,255,0.08);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,0.15);
      padding:25px;
      border-radius:25px;
      margin-top:40px;
    }

    /* STORY BLOCK */

    .story-block{
      background:#fff;
      border-radius:30px;
      overflow:hidden;
      box-shadow:0 10px 40px rgba(0,0,0,0.06);
    }

    .story-img img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .story-content{
      padding:60px;
    }

    /* JOURNEY */

    .journey-step{
      text-align:center;
      position:relative;
      padding:30px;
    }

    .journey-step img{
      width:100%;
      height:260px;
      object-fit:cover;
      border-radius:25px;
      margin-bottom:25px;
    }

    .journey-number{
      width:65px;
      height:65px;
      background:var(--brown);
      color:#fff;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      margin:auto;
      margin-bottom:20px;
      font-size:20px;
    }

    /* PRODUCTS */

    .product-box{
      position:relative;
      overflow:hidden;
      border-radius:25px;
      height:450px;
    }

    .product-box img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.6s;
    }

    .product-box:hover img{
      transform:scale(1.08);
    }

    .product-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      display:flex;
      align-items:flex-end;
      padding:35px;
      color:#fff;
    }

    .map-section{
        position:relative;
        overflow:hidden;
    }

    .map-section iframe{
        width:100%;
        height:550px;
        border:0;
        display:block;
        filter:grayscale(20%);
    }

    /* FORM */

    .lead-section{
      background:#111;
      border-radius:35px;
      padding:70px;
      color:#fff;
      overflow:hidden;
      position:relative;
    }

    .lead-section::before{
      content:'';
      position:absolute;
      width:500px;
      height:500px;
      background:rgba(255,255,255,0.03);
      border-radius:50%;
      top:-150px;
      right:-150px;
    }

    .form-control{
      height:58px;
      border:none;
      border-radius:14px;
      margin-bottom:20px;
    }

    textarea.form-control{
      height:140px;
    }

    /* CERTIFICATE */

    .cert-card{
      background:#fff;
      border-radius:20px;
      padding:35px;
      text-align:center;
      box-shadow:0 8px 25px rgba(0,0,0,0.05);
      transition:0.3s;
    }

    .cert-card:hover{
      transform:translateY(-5px);
    }

    .cert-card i{
      font-size:55px;
      color:var(--brown);
      margin-bottom:20px;
    }

    /* VIDEO */

    .video-wrapper{
      overflow:hidden;
      border-radius:30px;
      box-shadow:0 15px 45px rgba(0,0,0,0.12);
    }

    /* TESTIMONIAL */

    .testimonial{
      background:#fff;
      padding:40px;
      border-radius:25px;
      box-shadow:0 10px 35px rgba(0,0,0,0.05);
      height:100%;
    }

    .testimonial img{
      width:75px;
      height:75px;
      border-radius:50%;
      object-fit:cover;
      margin-bottom:20px;
    }

    /* FOOTER */

    footer{
      background:#0d0d0d;
      color:#fff;
      padding:80px 0 120px;
    }

    footer p,
    footer a{
      color:#aaa;
      text-decoration:none;
    }

    /* FLOAT */

    .floating-buttons{
      position:fixed;
      right:25px;
      bottom:30px;
      z-index:99999;
      display:flex;
      flex-direction:column;
      gap:15px;
    }

    .floating-buttons a{
      width:62px;
      height:62px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:26px;
      box-shadow:0 10px 25px rgba(0,0,0,0.2);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      transition: 0.3s;
      background:#8c4817;
    }

    .whatsapp{
      background:#8c4817;
    }

    .call{
      background:#8c4817;
    }
    .mail{
      background:#8c4817;
    }

    /* MOBILE BAR */

    .mobile-bar{
      display:none;
    }

/* PROCESS FLOW */

.process-flow-section{
  background:#f5f2ec;
  overflow:hidden;
  position:relative;
}

.timeline-wrapper{
  position:relative;
  max-width:1300px;
  margin:auto;
}

.timeline-wrapper::before{
  content:'';
  position:absolute;
  width:4px;
  background:linear-gradient(to bottom,#8b5d33,#111);
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  border-radius:50px;
}

.timeline-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:120px;
  position:relative;
}

.timeline-item.reverse{
  flex-direction:row-reverse;
}

.timeline-image,
.timeline-content{
  width:46%;
}

.timeline-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

.timeline-content{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);
  padding:45px;
  border-radius:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.06);
  position:relative;
}

.process-icon{
  width:75px;
  height:75px;
  background:linear-gradient(135deg,#8b5d33,#111);
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:32px;
  margin-bottom:25px;
}

.timeline-content h3{
  font-size:32px;
  margin-bottom:20px;
  font-weight:800;
}

.timeline-content p{
  margin-bottom:20px;
  line-height:1.9;
}

.timeline-content ul{
  padding-left:20px;
}

.timeline-content ul li{
  margin-bottom:10px;
  color:#555;
  font-weight:500;
}

.timeline-item::before{
  content:'';
  position:absolute;
  width:26px;
  height:26px;
  background:#8b5d33;
  border:5px solid #fff;
  border-radius:50%;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  z-index:10;
  box-shadow:0 0 0 8px rgba(139,93,51,0.12);
}
/* =========================
   PREMIUM HEADER
========================= */

.custom-navbar{
  background:#fdf6e3;
  /*background:rgba(255,255,255,0.88);*/
  backdrop-filter:blur(16px);
  padding:18px 0;
  transition:0.4s;
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.navbar-brand img{
  height:60px;
  width:auto;
}

.navbar-toggler i{
  font-size:34px;
  color:#111;
}

.navbar-nav .nav-link{
  font-size:15px;
  font-weight:600;
  color:#111;
  margin:0 14px;
  position:relative;
  transition:0.3s;
}

.navbar-nav .nav-link::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  background:#8b5d33;
  left:0;
  bottom:-5px;
  transition:0.4s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
  width:100%;
}

.navbar-nav .nav-link:hover{
  color:#8b5d33;
}

.call-btn{
  background:#111;
  color:#fff;
  padding:14px 24px;
  border-radius:60px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  transition:0.3s;
}

.call-btn:hover{
  background:#8b5d33;
  color:#fff;
}

/* =========================
   PREMIUM FOOTER
========================= */

.main-footer{
  background:#0b0b0b;
  color:#fff;
  padding-top:90px;
  position:relative;
  overflow:hidden;
}

.main-footer::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,255,255,0.02);
  border-radius:50%;
  top:-200px;
  right:-200px;
}

.footer-top{
  padding-bottom:60px;
  margin-bottom:60px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.footer-brand img{
  height:75px;
  margin-bottom:25px;
}

.footer-brand h2{
  font-size:42px;
  line-height:1.3;
  max-width:700px;
}

.footer-btn{
  background:#8b5d33;
  color:#fff;
  padding:18px 34px;
  border-radius:60px;
  font-weight:600;
  display:inline-block;
  transition:0.3s;
}

.footer-btn:hover{
  background:#fff;
  color:#111;
}

.footer-main{
  padding-bottom:50px;
}

.footer-main h5{
  margin-bottom:30px;
  font-size:20px;
  font-weight:700;
}

.footer-main p,
.footer-main a{
  color:#aaa;
  line-height:2;
  transition:0.3s;
  text-decoration:none;
}

.footer-main a:hover{
  color:#fff;
  padding-left:4px;
}

.footer-main ul{
  padding:0;
  list-style:none;
}

.footer-social{
  display:flex;
  gap:15px;
  margin-top:30px;
}

.footer-social a{
  width:45px;
  height:45px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#8b5d33;
  transform:translateY(-3px);
}

.footer-contact i{
  color:#8b5d33;
  margin-right:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:25px 0;
}

.footer-bottom p{
  margin:0;
  color:#888;
}

.footer-bottom a{
  color:#888;
  margin-left:20px;
  text-decoration:none;
  transition:0.3s;
}

.footer-bottom a:hover{
  color:#fff;
}


.floating-buttons a:hover{
      background:#b98b5f;
      color:#fff;
      transform:translateY(-3px);
    }

    .mobile-bar{
      display:none;
    }

  /* =====================================================
  FAQ
  ===================================================== */

  .faq-section{
      background:#f6f3ee;
      padding:120px 0;
  }

  .custom-faq .accordion-item{
      border:none;
      margin-bottom:25px;
      border-radius:25px !important;
      overflow:hidden;
  }

  .custom-faq .accordion-button{
      padding:28px;
      font-weight:700;
      font-size:20px;
      background:#fff;
  }

  .custom-faq .accordion-body{
      padding:30px;
      background:#fff;
      line-height:1.9;
  }
  /* =====================================================
    MODAL
    ===================================================== */

    .certificate-modal{
        background:#111;
        border-radius:35px;
        overflow:hidden;
        border:none;
    }

    .certificate-modal .modal-header{
        border:none;
        padding:28px 35px;
    }

    .certificate-modal .modal-title{
        color:#fff;
        font-weight:700;
    }

    .certificate-modal .modal-body{
        padding:20px 35px 40px;
    }

    .certificate-modal img{
        max-height:80vh;
        object-fit:contain;
        background:#fff;
        padding:10px;
        border-radius:20px;
    }
    /* =====================================================
        POLICIES
        ===================================================== */

        .policy-section{
            background:#fff;
            padding:120px 0;
        }

        .policy-wrapper{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:28px;
        }

        .policy-card{
            background:#f6f3ee;
            padding:45px;
            border-radius:35px;
        }

    /* =====================================================
      DOCUMENT CARD
      ===================================================== */

      .document-certification-section{
          background:#f6f3ee;
          padding:120px 0;
      }

      .document-card{
          background:#fff;
          border-radius:35px;
          overflow:hidden;
          height:100%;
          box-shadow:0 20px 50px rgba(0,0,0,0.06);
          transition:0.4s;
      }

      .document-card:hover{
          transform:translateY(-10px);
      }

      .document-image{
          height:320px;
          overflow:hidden;
      }

      .document-image img{
          width:100%;
          height:100%;
          object-fit:cover;
          transition:0.5s;
      }

      .document-card:hover img{
          transform:scale(1.06);
      }

      .document-content{
          padding:35px;
      }

      .document-content span{
          display:inline-block;
          color:#8b5d33;
          font-size:12px;
          font-weight:700;
          text-transform:uppercase;
          letter-spacing:2px;
          margin-bottom:15px;
      }

      .document-content h4{
          margin-bottom:16px;
      }

      .document-content p{
          color:#666;
          line-height:1.9;
          margin-bottom:28px;
      }

      /* BUTTON */

      .document-btn{
          border:none;
          padding:14px 24px;
          border-radius:50px;
          background:#111;
          color:#fff;
          font-weight:600;
          transition:0.3s;
      }

      .document-btn:hover{
          background:#8b5d33;
      }
      /* =====================================================
        GALLERY SECTION
        ===================================================== */

        .gallery-section{
            background:#f6f3ee;
            padding:120px 0;
        }

        /* FILTER */

        .gallery-filter{
            display:flex;
            justify-content:center;
            gap:18px;
            flex-wrap:wrap;
            margin-bottom:70px;
        }

        .filter-btn{
            border:none;
            background:#fff;
            padding:15px 28px;
            border-radius:60px;
            font-weight:600;
            transition:0.3s;
            box-shadow:0 10px 25px rgba(0,0,0,0.05);
        }

        .filter-btn.active,
        .filter-btn:hover{
            background:#111;
            color:#fff;
        }

        /* GRID */

        .gallery-grid{
            display:grid;
            grid-template-columns:repeat(4,1fr);
            grid-auto-rows:320px;
            gap:28px;
        }

        /* ITEMS */

        .gallery-item{
            position:relative;
            overflow:hidden;
            border-radius:35px;
            transition:0.4s;
        }

        .gallery-item img,
        .gallery-item iframe{
            width:100%;
            height:100%;
            object-fit:cover;
            border:none;
            transition:0.6s;
        }

        .gallery-item:hover img{
            transform:scale(1.08);
        }

        /* OVERLAY */

        .gallery-overlay{
            position:absolute;
            inset:0;
            background:linear-gradient(to top,rgba(0,0,0,0.8),transparent);
            display:flex;
            align-items:flex-end;
            padding:30px;
        }

        .gallery-overlay h4{
            color:#fff;
            margin:0;
        }

        /* GRID SIZES */

        .large-item{
            grid-column:span 2;
            grid-row:span 2;
        }

        .wide-item{
            grid-column:span 2;
        }

        /* VIDEO */

        .video-item iframe{
            background:#000;
        }
        /* =====================================================
        COMMON HERO
        ===================================================== */

        .inner-page-hero{
            background:
            linear-gradient(to right,rgba(0,0,0,0.84),rgba(0,0,0,0.55)),
            url('https://images.unsplash.com/photo-1514996937319-344454492b37?q=80&w=1800');
            background-size:cover;
            background-position:center;
        }

        .min-vh-75{
            min-height:75vh;
        }
        /* =====================================================
        COMPLIANCE
        ===================================================== */

        .compliance-showcase{
            background:#f6f3ee;
            padding:120px 0;
        }

        .compliance-box{
            background:#fff;
            border-radius:35px;
            padding:50px 35px;
            text-align:center;
            height:100%;
            transition:0.4s;
            box-shadow:0 15px 40px rgba(0,0,0,0.05);
        }

        .compliance-box:hover{
            transform:translateY(-10px);
        }

        .compliance-box img{
            width:90px;
            margin-bottom:30px;
        }

        /* =====================================================
        AWARDS
        ===================================================== */

        .awards-section{
            background:#111;
            padding:120px 0;
        }

        .award-card{
            background:rgba(255,255,255,0.04);
            border:1px solid rgba(255,255,255,0.08);
            border-radius:35px;
            padding:45px 35px;
            height:100%;
            transition:0.4s;
        }

        .award-card:hover{
            transform:translateY(-10px);
            background:#8b5d33;
        }

        .award-icon{
            width:90px;
            height:90px;
            background:rgba(255,255,255,0.08);
            border-radius:28px;
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:30px;
        }

        .award-icon i{
            color:#fff;
            font-size:36px;
        }

        .award-card h4{
            color:#fff;
            margin-bottom:20px;
        }

        .award-card p{
            color:#ddd;
            line-height:1.9;
        }

        /* =====================================================
          VISION
          ===================================================== */

          .vision-section{
              background:#fff;
              padding:120px 0;
          }

          .vision-image img{
              width:100%;
              border-radius:35px;
              box-shadow:0 25px 60px rgba(0,0,0,0.08);
          }

          .vision-points{
              margin-top:50px;
          }

          .vision-item{
              display:flex;
              gap:25px;
              margin-bottom:35px;
          }

          .vision-item i{
              width:75px;
              height:75px;
              background:#111;
              color:#fff;
              border-radius:24px;
              display:flex;
              align-items:center;
              justify-content:center;
              font-size:30px;
              flex-shrink:0;
          }

          /* =====================================================
          WHO WE ARE
          ===================================================== */

          .who-we-are-section{
              background:#f6f3ee;
              padding:120px 0;
          }

          .who-grid{
              display:grid;
              grid-template-columns:repeat(4,1fr);
              grid-auto-rows:320px;
              gap:28px;
          }

          .who-card{
              position:relative;
              overflow:hidden;
              border-radius:35px;
              background:#fff;
              box-shadow:0 20px 50px rgba(0,0,0,0.06);
          }

          .who-card img{
              width:100%;
              height:100%;
              object-fit:cover;
          }

          .large-story{
              grid-column:span 2;
              grid-row:span 2;
          }

          .story-content{
              padding:50px;
              display:flex;
              flex-direction:column;
              justify-content:center;
          }

          .story-content span,
          .director-content span{
              color:#8b5d33;
              letter-spacing:2px;
              font-size:13px;
              text-transform:uppercase;
              font-weight:700;
          }

          .story-content h3,
          .director-content h3{
              margin:20px 0;
              line-height:1.3;
          }

          .story-content p{
              line-height:1.9;
          }

          .director-message{
              grid-column:span 2;
              padding:40px;
          }

          .director-inner{
              display:flex;
              align-items:center;
              gap:40px;
              height:100%;
          }

          .director-image{
              width:220px;
              height:220px;
              border-radius:30px;
              overflow:hidden;
              flex-shrink:0;
          }

          .director-content p{
              line-height:1.9;
              margin:18px 0;
          }

/* =====================================================
QUERY FORM
===================================================== */

.smart-query-section{
    background:#111;
    padding:120px 0;
}

.smart-query-box{
    background:#fff;
    padding:50px;
    border-radius:35px;
}

.smart-query-box .form-control,
.smart-query-box .form-select{
    height:60px;
    border:none;
    background:#f5f5f5;
    border-radius:16px;
    padding:15px 20px;
}

.smart-query-box textarea.form-control{
    height:auto;
}
/* =====================================================
WHY US
===================================================== */

.why-us-section{
    background:#111;
    color:#fff;
}

.why-us-section .section-title{
    color:#fff;
}

.why-card{
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:30px;
    padding:40px 30px;
    height:100%;
    transition:0.4s;
}

.why-card:hover{
    transform:translateY(-8px);
    background:#8b5d33;
}

.why-icon{
    width:80px;
    height:80px;
    background:rgba(255,255,255,0.08);
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.why-icon i{
    font-size:34px;
    color:#fff;
}

.why-card h4{
    margin-bottom:20px;
    color:#fff;
}

.why-card p{
    color:#ddd;
}
/* =====================================================
SECTION SPACING
===================================================== */

.section-head-space{
    margin-bottom:90px;
}

/* =====================================================
NEXTGEN INFRASTRUCTURE
===================================================== */

.nextgen-infra-section{
    background:#f6f3ee;
    overflow:hidden;
    position:relative;
    padding:120px 0;
}

.infra-bento-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:320px;
    gap:28px;
}

.infra-box{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.large-box{
    grid-column:span 2;
    grid-row:span 2;
}

.wide-box{
    grid-column:span 2;
}

.infra-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

.infra-box:hover img{
    transform:scale(1.08);
}

.infra-content{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.82),transparent);
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.infra-content span{
    color:#c6a27c;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.infra-content h3,
.infra-content h4{
    color:#fff;
    line-height:1.3;
    margin-bottom:15px;
}

.infra-content p{
    color:#ddd;
    max-width:500px;
}
/* =====================================================
LUXURY PROCESS FLOW
===================================================== */

.luxury-process-section{
    background:#fff;
    overflow:hidden;
    padding:120px 0;
}

.luxury-process-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    position:relative;
}

.luxury-step{
    width:190px;
    position:relative;
    z-index:2;
}

.offset-top{
    margin-top:-100px;
}

.luxury-image{
    width:190px;
    height:190px;
    border-radius:35px;
    overflow:hidden;
    position:relative;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.luxury-image::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.18),transparent);
    z-index:1;
}

.luxury-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.luxury-info{
    padding-top:25px;
    text-align:center;
}

.luxury-info h4{
    font-size:20px;
    margin-bottom:12px;
}

.luxury-info p{
    font-size:14px;
    line-height:1.7;
}

.luxury-connector{
    width:90px;
    height:3px;
    background:linear-gradient(to right,#8b5d33,#111);
    border-radius:50px;
    position:relative;
}

.luxury-connector::after{
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    background:#8b5d33;
    border-radius:50%;
    right:-2px;
    top:50%;
    transform:translateY(-50%);
}
/* =====================================================
CONNECTED PROCESS FLOW
===================================================== */

.connected-process-section{
    background:#fff;
    overflow:hidden;
    position:relative;
    padding:130px 0;
}

.connected-process-wrapper{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    position:relative;
    overflow-x:auto;
    padding:80px 0 40px;
    scrollbar-width:none;
}

.connected-process-wrapper::-webkit-scrollbar{
    display:none;
}

.connected-step{
    min-width:420px;
    position:relative;
    z-index:2;
}

.down-step{
    margin-top:180px;
}

.step-image{
    height:340px;
    border-radius:35px;
    overflow:hidden;
    position:relative;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.step-image::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.28),transparent);
    z-index:1;
}

.step-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

.connected-step:hover img{
    transform:scale(1.08);
}

.step-content{
    padding-top:28px;
}

.step-content span{
    display:inline-block;
    color:#8b5d33;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.step-content h3{
    font-size:30px;
    margin-bottom:18px;
    font-weight:800;
}

.step-content p{
    max-width:340px;
    line-height:1.9;
    color:#555;
}

.process-line{
    width:180px;
    height:4px;
    background:linear-gradient(to right,#8b5d33,#111);
    border-radius:50px;
    position:relative;
    margin:0 20px;
    flex-shrink:0;
}

.process-line::before{
    content:'';
    position:absolute;
    width:18px;
    height:18px;
    background:#8b5d33;
    border-radius:50%;
    left:-4px;
    top:50%;
    transform:translateY(-50%);
}

.process-line::after{
    content:'';
    position:absolute;
    width:18px;
    height:18px;
    background:#111;
    border-radius:50%;
    right:-4px;
    top:50%;
    transform:translateY(-50%);
}
/* =====================================================
ABOUT HERO
===================================================== */

.about-hero{
    background:
    linear-gradient(to right,rgba(0,0,0,0.85),rgba(0,0,0,0.58)),
    url('https://images.unsplash.com/photo-1514996937319-344454492b37?q=80&w=1800');
    background-size:cover;
    background-position:center;
}

/* =====================================================
CRAFTSMEN
===================================================== */

.craftsmen-section{
    background:#f7f3ed;
}

.craftsmen-image img{
    width:100%;
    border-radius:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.craft-box{
    background:#fff;
    padding:30px;
    border-radius:25px;
    text-align:center;
    height:100%;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.craft-box:hover{
    transform:translateY(-8px);
}

.craft-box i{
    font-size:42px;
    color:#8b5d33;
    margin-bottom:20px;
}
/* =====================================================
PRODUCT SHOWCASE
===================================================== */

.product-showcase-section{
    background:#f6f3ee;
    padding:120px 0;
}

.section-flex-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.view-btn{
    color:#111;
    font-weight:700;
    text-decoration:none;
}

.product-scroll-row{
    display:flex;
    gap:28px;
    overflow-x:auto;
    padding-bottom:10px;
    scrollbar-width:none;
}

.product-scroll-row::-webkit-scrollbar{
    display:none;
}

.product-card{
    min-width:320px;
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.product-image{
    height:340px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

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

.product-content{
    padding:30px;
}

.product-content span{
    color:#8b5d33;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.product-content h4{
    margin:16px 0 24px;
}

.query-btn{
    background:#111;
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    transition:0.3s;
}

.query-btn:hover{
    background:#8b5d33;
    color:#fff;
}

/* =====================================================
SUB CATEGORY
===================================================== */

.subcategory-section{
    padding:120px 0;
    background:#fff;
}

.subcat-card{
    border-radius:30px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
    transition:0.4s;
}

.subcat-card:hover{
    transform:translateY(-10px);
}

.subcat-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.subcat-content{
    padding:30px;
}

.subcat-content a{
    color:#8b5d33;
    font-weight:700;
    text-decoration:none;
}

/* =====================================================
CATEGORY SECTION
===================================================== */

.shop-category-section{
    padding:120px 0;
    background:#f6f3ee;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    min-height:320px;
    display:block;
}

.large-card{
    grid-column:span 2;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.82),transparent);
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.category-overlay span{
    color:#c6a27c;
    letter-spacing:2px;
    font-size:13px;
    text-transform:uppercase;
}

.category-overlay h3{
    color:#fff;
    margin-top:12px;
}

/* =====================================================
WHY CHOOSE US
===================================================== */

.why-white-label{
    background:#f6f3ee;
    padding:120px 0;
}

.why-wl-card{
    background:#fff;
    border-radius:35px;
    padding:45px 35px;
    height:100%;
    transition:0.4s;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.why-wl-card:hover{
    transform:translateY(-10px);
}

.why-wl-icon{
    width:85px;
    height:85px;
    background:linear-gradient(135deg,#8b5d33,#111);
    border-radius:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.why-wl-icon i{
    color:#fff;
    font-size:34px;
}

.why-wl-card h4{
    margin-bottom:18px;
}

.why-wl-card p{
    line-height:1.9;
}

/* =====================================================
COMPLIANCE
===================================================== */

.compliance-section{
    padding:120px 0;
    background:#fff;
}

.compliance-image img{
    width:100%;
    border-radius:35px;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.compliance-list{
    margin-top:50px;
}

.compliance-item{
    display:flex;
    gap:25px;
    margin-bottom:35px;
}

.compliance-item i{
    width:70px;
    height:70px;
    background:#111;
    color:#fff;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.compliance-item h5{
    margin-bottom:10px;
}
/* =====================================================
WHITE LABEL HERO
===================================================== */

.white-label-hero{
    background:
    linear-gradient(to right,rgba(0,0,0,0.84),rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1514996937319-344454492b37?q=80&w=1800');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

/* =====================================================
PROCESS SECTION
===================================================== */

.white-process-section{
    background:#f6f3ee;
    padding:120px 0;
    overflow:hidden;
}

.wl-process-wrapper{
    display:flex;
    align-items:center;
    overflow-x:auto;
    padding:70px 0 40px;
    scrollbar-width:none;
}

.wl-process-wrapper::-webkit-scrollbar{
    display:none;
}

.wl-process-card{
    min-width:420px;
}

.down-card{
    margin-top:170px;
}

.wl-image{
    height:340px;
    border-radius:35px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

.wl-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.wl-process-card:hover img{
    transform:scale(1.08);
}

.wl-content{
    padding-top:28px;
}

.wl-content span{
    color:#8b5d33;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.wl-content h3{
    font-size:30px;
    margin:16px 0;
}

.wl-content p{
    line-height:1.9;
    max-width:340px;
}

.wl-line{
    width:180px;
    height:4px;
    background:linear-gradient(to right,#8b5d33,#111);
    border-radius:50px;
    margin:0 20px;
    position:relative;
    flex-shrink:0;
}

.wl-line::before{
    content:'';
    position:absolute;
    width:16px;
    height:16px;
    background:#8b5d33;
    border-radius:50%;
    left:-2px;
    top:50%;
    transform:translateY(-50%);
}

.wl-line::after{
    content:'';
    position:absolute;
    width:16px;
    height:16px;
    background:#111;
    border-radius:50%;
    right:-2px;
    top:50%;
    transform:translateY(-50%);
}

/* =====================================================
PARTNER FORM
===================================================== */

.partner-form-section{
    background:#111;
    padding:120px 0;
}

.partner-form-box{
    background:#fff;
    padding:50px;
    border-radius:35px;
}

.partner-form-box .form-control,
.partner-form-box .form-select{
    height:60px;
    border-radius:16px;
    border:none;
    background:#f5f5f5;
    padding:15px 20px;
}

.partner-form-box textarea.form-control{
    height:auto;
}

/* =====================================================
SHOP HERO
===================================================== */

.shop-hero{
    background:
    linear-gradient(to right,rgba(0,0,0,0.82),rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1514996937319-344454492b37?q=80&w=1800');
    background-size:cover;
    background-position:center;
}

/* =====================================================
PROCESS FLOW
===================================================== */

.premium-process-section{
    background:#fff;
}

.process-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.process-item{
    width:180px;
    text-align:center;
    position:relative;
}

.process-image{
    width:180px;
    height:180px;
    border-radius:50%;
    overflow:hidden;
    margin:auto;
    border:6px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.process-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.process-content{
    margin-top:25px;
}

.process-content h4{
    font-size:20px;
    margin-bottom:12px;
}

.process-content p{
    font-size:14px;
    line-height:1.7;
}

.flow-arrow{
    font-size:36px;
    color:#8b5d33;
}
/* =====================================================
INFRASTRUCTURE
===================================================== */

.infrastructure-section{
    background:#f7f3ed;
}

.infra-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:100%;
}

.large-card{
    min-height:700px;
}

.small-card{
    min-height:338px;
}

.infra-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.infra-card:hover img{
    transform:scale(1.08);
}

.infra-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,0.82),transparent);
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.infra-overlay h3,
.infra-overlay h4{
    color:#fff;
    margin-bottom:15px;
}

.infra-overlay p{
    color:#ddd;
}
/* =====================================================
INNER HERO
===================================================== */

.inner-hero{
    background:
    linear-gradient(to right,rgba(0,0,0,0.82),rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1514996937319-344454492b37?q=80&w=1600');
    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
}

.hero-title{
    font-size:72px;
    color:#fff;
    line-height:1.1;
    margin-bottom:30px;
    font-weight:800;
}

.hero-text{
    color:#ddd;
    font-size:18px;
    max-width:700px;
    line-height:1.9;
    margin-bottom:35px;
}          

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media(max-width:991px){

    .timeline-content{
    padding:30px;
  }

  .timeline-content h3{
    font-size:26px;
  }

  .timeline-item::before{
    left:25px;
    top:20px;
  }

    .timeline-image,
  .timeline-content{
    width:100%;
  }

  .timeline-image{
    margin-bottom:25px;
  }

  .timeline-image img{
    height:280px;
  }

    .timeline-item,
  .timeline-item.reverse{
    flex-direction:column;
    padding-left:60px;
    margin-bottom:70px;
  }

  .hero-title{
        font-size:46px;
    }

    .hero-buttons .btn{
        width:100%;
        margin-bottom:15px;
    }

    .large-card,
    .small-card{
        min-height:350px;
    }

    .process-wrapper{
        flex-direction:column;
    }

    .flow-arrow{
        transform:rotate(90deg);
    }

    .process-item{
        width:100%;
    }

  .infra-bento-grid{
        grid-template-columns:1fr;
        grid-auto-rows:300px;
    }

    .large-box,
    .wide-box{
        grid-column:span 1;
        grid-row:span 1;
    }

    .infra-content{
        padding:30px;
    }

    .luxury-process-wrapper{
        flex-direction:column;
    }

    .luxury-step{
        width:100%;
        max-width:320px;
        margin-top:0 !important;
        margin-bottom:40px;
    }

    .luxury-image{
        width:100%;
        height:280px;
    }

    .luxury-connector{
        width:3px;
        height:70px;
    }

    .luxury-connector::after{
        top:auto;
        bottom:-4px;
        left:50%;
        transform:translateX(-50%);
    }

  .connected-process-wrapper{
        flex-direction:column;
        overflow:visible;
        padding:20px 0;
    }

    .connected-step{
        min-width:100%;
        width:100%;
        margin-top:0 !important;
        margin-bottom:0;
    }

    .step-image{
        height:320px;
    }

    .step-content{
        padding:25px 10px 40px;
    }

    .step-content p{
        max-width:100%;
    }

    .process-line{
        width:4px;
        height:90px;
        margin:0;
    }

    .process-line::before{
        left:50%;
        top:-2px;
        transform:translateX(-50%);
    }

    .process-line::after{
        left:50%;
        top:auto;
        bottom:-2px;
        transform:translateX(-50%);
    }

  .wl-process-wrapper{
        flex-direction:column;
        overflow:visible;
    }

    .wl-process-card{
        min-width:100%;
        margin-top:0 !important;
    }

    .wl-image{
        height:300px;
    }

    .wl-line{
        width:4px;
        height:90px;
        margin:0;
    }

    .wl-line::before{
        left:50%;
        top:-2px;
        transform:translateX(-50%);
    }

    .wl-line::after{
        left:50%;
        top:auto;
        bottom:-2px;
        transform:translateX(-50%);
    }

    .partner-form-box{
        padding:30px;
    }

  .category-grid{
        grid-template-columns:1fr;
    }

    .large-card{
        grid-column:span 1;
    }

    .product-card{
        min-width:280px;
    }

    .product-image{
        height:280px;
    }

    .smart-query-box{
        padding:30px;
    }

  .who-grid{
        grid-template-columns:1fr;
        grid-auto-rows:auto;
    }

    .large-story{
        grid-column:span 1;
        grid-row:span 1;
        height:350px;
    }

    .story-content{
        padding:35px;
    }

    .director-message{
        grid-column:span 1;
    }

    .director-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .director-image{
        width:100%;
        height:320px;
    }
  .document-image{
        height:260px;
    }
.document-content{
        padding:28px;
    }

    .certificate-modal .modal-body{
        padding:20px;
    }
    

  .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:280px;
    }

    .large-item,
    .wide-item{
        grid-column:span 1;
        grid-row:span 1;
    }

    .policy-wrapper{
        grid-template-columns:1fr;
    }

    .contact-info-box,
    .contact-form-box{
        padding:30px;
    }

  .map-section iframe{
        height:400px;
    }

  .hero h1{
        font-size:48px;
      }

      .section-title{
        font-size:36px;
      }

      .lead-section{
        padding:40px 25px;
      }

      .floating-buttons{
        display:none;
      }

      .mobile-bar{
        display:flex;
        justify-content:space-around;
        align-items:center;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        background:#111;
        padding:12px 0;
        z-index:999999;
      }

      .mobile-bar a{
        color:#fff;
        text-align:center;
        font-size:13px;
        text-decoration:none;
      }

      section{
        padding:75px 0;
      }

  .navbar-brand img{
    height:50px;
  }
  .timeline-wrapper::before{
    left:25px;
  }
  .hero{
        padding:120px 0;
      }

  .navbar-collapse{
    background:#fff;
    padding:25px;
    margin-top:20px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
  }

  .navbar-nav .nav-link{
    margin:12px 0;
  }

  .footer-brand h2{
    font-size:30px;
  }

  .footer-btn{
    width:100%;
    text-align:center;
  }

  .footer-bottom{
    text-align:center;
  }

  .footer-bottom a{
    margin:0 8px;
  }

}
