@charset "UTF-8";

body {
  font-family: "Raleway", sans-serif;
  color: #3f2a17;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: "Fondamento", serif;
  font-weight: 400;
}


/* ============ REUSABLE SECTION HEAD ============ */
@font-face {
  font-family: 'hidayatullah';
  /* set name */
  src: url(../img/hidayatullah.ttf) format("ttf");
  /* url of the font */
}

@font-face {
  font-family: "hidayatullah";
  src: url("../img/noor-e-kashmir/hidayatullah.woff2") format("woff2"), url("../img/noor-e-kashmir/hidayatullah.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}


.noor-container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-noor{
  padding: 90px 0;
  position: relative;
}

.section-head {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.section-head-label {
  /* flex: 0 0 260px; */
  font-size: 24px;
  letter-spacing: 0.3px;
  color: #8a5a25;
  padding-top: 6px;
}

.section-head.light .section-head-label {
  font-family: "Raleway", sans-serif;
  color: #e8c98a;
}

.section-head-main {
  flex: 1;
  min-width: 0;
}

.section-head-main h2 {
  font-size: 48px;
  line-height: 1.5;
  color: #5A3A11;
  margin-bottom: 16px;
}

.section-head.light .section-head-main h2 {
  color: #fdf3df;
}

.section-head-main p {
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  line-height: 1.5;
  color: #5A3A11;
}

.section-head.light .section-head-main p {
  color: #d9c6a3;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-bottom: -1px;
}

.hero-bg-wrap {
  position: absolute;
  top: 0;
  inset: 0;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2);
  animation: heroZoomOut 5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-frame-wrap {
  position: absolute;
  top: 0;
  inset: 0;
  overflow: hidden;
}

.hero-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(5);
  animation: frameZoomOut 5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.5s ease-out forwards;
  animation-delay: 5s;
}


/* .hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient( 180deg, rgba(10, 6, 3, 0.35) 0%, rgba(10, 6, 3, 0.15) 40%, rgba(10, 6, 3, 0.55) 100% ); z-index: 1; } */

@keyframes heroZoomOut {
  from {
    transform: scale(2);
  }

  to {
    transform: scale(1);
  }
}

@keyframes frameZoomOut {
  from {
    transform: scale(5);
  }

  to {
    transform: scale(1);
  }
}

.hero-border {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-border img {
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-title {
  font-family: "hidayatullah", serif;
  /* font-size: 180px; */
  font-size: 11.25rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 1.1s ease-out forwards;
  animation-delay: 6s;
}

.hero-sub {
  font-family: "Raleway", sans-serif;
  margin-top: 60px;
  /* font-size: 36px; */
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 6.5s;
}

.hero-desc {
  font-family: "Raleway", sans-serif;
  margin-top: 14px;
  /* font-size: 24px; */
  font-size: 1.5rem;
  font-weight: 300;
  color: #e7d9c4;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 7s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-explore {
  font-family: "Raleway", sans-serif;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards, floatY 2.6s ease-in-out 3.6s infinite;
  animation-delay: 6.5s, 6.6s;
}

.scroll-explore .scroll-arrow {
  margin-top: 8px;
  font-size: 20px;
}

@keyframes floatY {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

/* ============ SUB NAV ============ */
.sub-nav {
  /* position: sticky; */
  position: relative;
  top: 0;
  z-index: 9;
  background: #fff;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.06);
}

.sub-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.btn-enquiry {
  flex: 0 0 auto;
  margin-left: 24px;
  background: #e0136c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.25s;
}

.btn-enquiry:hover {
  background: #c00e5c;
}

/* ============ WHAT IS SECTION ============ */
.what-is-section {
  background: linear-gradient(180deg, #f8e6ab 0%, #f2d787 55%, #ecc766 100%);
  position: relative;
  overflow: hidden;
}

.what-is-section .section-head {
  font-family: "Raleway", sans-serif;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.what-is-section .section-head-label {
  flex: none;
  margin-bottom: 25px;
  font-size: 24px;
}

.what-is-section .section-head-main h2 {
  font-size: 64px;
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.3;
}

.what-is-body {
  font-family: "Raleway", sans-serif;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.what-is-body p {
  font-size: 24px;
  line-height: 36px;
  color: #000;
  margin-bottom: 18px;
}

.deco-flower {
  position: absolute;
  width: 7.5vw;
  top: 10%;
  right: 9%;
}

.deco-kesar {
  position: absolute;
  width: 7.5vw;
  top: 290px;
  left: 13%;
}

.deco-boat {
  position: absolute;
  width: 32.7vw;
  left: -16%;
  bottom: 21%;
}

.deco-cup {
  position: absolute;
  width: 12.08vw;
  right: 0px;
  bottom: 15%;
}

.bottom-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

/* ============ CHAPTERS SECTION ============ */

/* .svg-mask {
    width: 100%;
    height: auto;
    -webkit-mask-image: url("shape.svg");
    mask-image: url("shape.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
} */

.chapters-section {
  position: relative;
  background: #241005;
  overflow: hidden;
  background: linear-gradient(180deg, #3F2601 0%, #1E1100 100%);
  margin-top: -1px;
}

.chapters-section .section-head {
  margin-bottom: 40px;
}

.chapters-slider-wrap {
  position: relative;
}

.chapters-swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
}

.chapter-slide {
  width: 400px !important;
}

.chapter-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.chapter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chapter-slide:hover .chapter-thumb img {
  transform: scale(1.06);
}

.ep-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e0136c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 2px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.25s;
}

.play-btn:hover {
  background: rgba(224, 19, 108, 0.85);
  transform: translate(-50%, -50%) scale(1.08);
}

.chapter-info {
  padding: 22px 6px 0;
  color: #f4e8d3;
}

.chapter-location {
  font-size: 11.5px;
  letter-spacing: 1px;
  color: #c79f5f;
}

.chapter-info h3 {
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  margin: 8px 0 8px;
  color: #fff;
}

.chapter-info p {
  font-size: 14px;
  line-height: 1.65;
  color: #cdb894;
  margin-bottom: 12px;
}

.watch-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #f4d47b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chapters-progress {
  height: 10px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.chapters-progress .swiper-scrollbar{ height: 10px; left: 0px; top: 0px !important;}
.chapters-progress .swiper-scrollbar-drag {
  background: #f4d47b !important;
  border-radius: 5px;
  height:10px;
}

.drag-hint {
  margin-top: 14px;
  font-size: 13px;
  color: #a98c60;
}

/* ============ PEOPLE SECTION ============ */
.people-section {
  background: #fff;
}

.people-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, #f8dd8e 0%, #f0c862 100%);
  border-radius: 6px;
  overflow: hidden;
}

.people-thumbs {
  padding: 22px;
  position: relative;
}

.people-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3.1;
  border-radius: 4px;
  overflow: hidden;
  background: #111;
}

.people-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition:
    opacity 0.4s ease,
    transform 0.5s ease;
}

.people-main-image img.swap-out {
  opacity: 0;
  transform: scale(1.05);
}

.people-main-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.people-main-caption span {
  font-size: 11.5px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.people-main-caption h4 {
  font-size: 19px;
  margin-top: 4px;
  font-family: "Fondamento", serif;
}

.people-thumb-list {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.people-thumb {
  width: 25%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition:
    opacity 0.25s,
    border-color 0.25s;
}

.people-thumb:hover {
  opacity: 0.9;
}

.people-thumb.active {
  opacity: 1;
  border-color: #3f2a17;
}

.people-portrait {
  position: relative;
  min-height: 340px;
}

.people-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-names {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 10px;
  text-align: center;
}

.people-names div {
  display: flex;
  flex-direction: column;
}

.people-names strong {
  font-size: 12.5px;
  color: #3f2a17;
}

.people-names span {
  font-size: 11px;
  color: #7a5a2e;
}

.people-text {
  padding: 30px 30px 30px 10px;
}

.people-location {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #7a5a2e;
}

.people-text h3 {
  font-size: 28px;
  margin: 8px 0 14px;
  color: #3f2a17;
}

.people-text p {
  font-size: 14px;
  line-height: 1.75;
  color: #5b4118;
  margin-bottom: 14px;
}

.people-credit {
  font-size: 13.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.btn-dark {
  display: inline-block;
  background: #3f2a17;
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: background 0.25s;
}

.btn-dark:hover {
  background: #241708;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
  background: #fff;
}

.products-box {
  position: relative;
  padding: 80px 50px 0px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: end;
}

.products-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 17vw;
  z-index: -1;
  background: linear-gradient(180deg, #3F2601 0%, #1E1100 100%);
  border-radius: 6px;
}

.kashmir-product-card {
  position: relative;
  text-align: center;
  padding: 20px 10px;
  border-radius: 6px;
  transition:
    transform 0.4s ease,
    background 0.4s ease;
  overflow: hidden;
}

.product-name {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
  min-height: 24px;
}

.product-thumb {
  width: 73%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
}

.product-img {
  width: 100%;
  margin: 0 auto;
  transition: transform 0.45s ease;
}

.product-hover {
  
  opacity: 0;
  overflow: hidden;
  transition:
    opacity 0.4s ease,
    margin-top 0.45s ease;
  margin-top: 0;
}

.product-hover p {
  font-family: "Raleway", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 40px;
}

.btn-explore {
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  display: inline-block;
  background: #1E1100;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
}

.btn-explore:hover {
  background: #1E1100;
  color: #fff;
}

@media (hover: hover) {
  .kashmir-product-card:hover {
    transform: translateY(-30px);
  }

  .kashmir-product-card:hover .product-hover {
    opacity: 1;
  }
}

/* ============ ENQUIRY SECTION ============ */
.enquiry-section {
  padding-top: 0px;
  padding-bottom: 100px;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.enquiry-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.enquiry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.img-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 10px;
  border-radius: 3px;
}

.enquiry-form {
  padding: 10px 0;
}

.enquiry-form .section-head-label {
  font-family: "Raleway", sans-serif;
  display: block;
  margin-bottom: 14px;
}

.enquiry-form h2 {
  font-size: 48px;
  margin-bottom: 14px;
  color: #3f2a17;
}

.enquiry-form>p {
  font-size: 24px;
  line-height: 1.5;
  color: #5A3A11;
  margin-bottom: 28px;
}

.form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.form-row .form-col {
  flex: 1;
  width: 100%;
}

.form-row .form-col span {
  font-family: "Raleway", sans-serif;
  position: relative;
  display: inline-block;
  padding: 0 0 10px 0;
}

.form-row input,
.enquiry-form select {
  flex: 1;
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d9cbb0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #3f2a17;
  background: #fff;
}

.form-row input:focus,
.enquiry-form select:focus {
  outline: 2px solid #e0136c;
  outline-offset: 1px;
  font-family: "Raleway", sans-serif;
}

.field-label {
  display: block;
  font-size: 12.5px;
  color: #7a5a2e;
  margin-bottom: 6px;
}

.enquiry-form select {
  margin-bottom: 20px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #5A3A11;
  margin-bottom: 12px;
  line-height: 1.5;
}

.checkbox-row input {
  margin-top: 3px;
}

.enquiry-form button[type="submit"] {
  font-family: "Raleway", sans-serif;
  margin-top: 14px;
  border: none;
}

/* ============ VIDEO LIGHTBOX ============ */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 3, 0.9);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-lightbox.open {
  display: flex;
}

.video-lightbox-inner {
  width: 100%;
  max-width: 960px;
  position: relative;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}


.sub-nav-links {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-nav-links::-webkit-scrollbar {
  display: none;
}

.sub-nav-links li a {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  white-space: nowrap;
  text-decoration: none;
  color: #3f2a17;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.sub-nav-links li a:hover,
.sub-nav-links li.active a {
  color: #e0136c;
}

@media (max-width: 600px) {

    .sub-nav-links {
        display: block !important;
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0 !important;
        overflow: visible !important;
        background: #fff;
        box-sizing: border-box;
    }

    /* --------------------------------
       ALL LI HIDDEN BY DEFAULT
    -------------------------------- */

    .sub-nav-links li {
        display: none !important;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
        box-sizing: border-box;
    }

    /* --------------------------------
       ONLY SELECTED LI IS VISIBLE
    -------------------------------- */

    .sub-nav-links li.active {
        display: block !important;
    }

    .sub-nav-links li a {
        display: block !important;
        width: 100%;
        height: auto;
        padding: 13px 45px 13px 15px !important;
        margin: 0 !important;

        font-family: "Raleway", sans-serif;
        font-size: 16px !important;
        line-height: 1.3;
        white-space: nowrap;

        color: #3f2a17;
        background: #fff;

        text-decoration: none;
        box-sizing: border-box;
    }

    .sub-nav-links li.active a {
        color: #3f2a17;
    }


    /* --------------------------------
       DROPDOWN ARROW
    -------------------------------- */

    .sub-nav-links::after {
        content: "";
        position: absolute;
        right: 18px;
        top: 50%;

        width: 8px;
        height: 8px;

        border-right: 2px solid #3f2a17;
        border-bottom: 2px solid #3f2a17;

        transform: translateY(-70%) rotate(45deg);

        pointer-events: none;
        z-index: 20;
    }


    /* --------------------------------
       OPEN DROPDOWN
    -------------------------------- */

    .sub-nav-links.dropdown-open::after {
        transform: translateY(-30%) rotate(225deg);
    }

    .sub-nav-links.dropdown-open li {
        display: block !important;
    }

    .sub-nav-links.dropdown-open li a {
        border-top: 1px solid #e5e5e5;
    }

    .sub-nav-links.dropdown-open {
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    }

    .sub-nav-links.dropdown-open li.active a {
        color: #e0136c;
    }

}

@media (max-width: 600px) {
  .sub-nav-links {
    width: calc(100% - 110px);
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1440px) {
  .noor-container {
    padding: 0 24px;
  }

  .hero-title {
    font-size: 100px;
  }

  .hero-sub {
    font-size: 1.5rem;
  }

  .hero-desc{  font-size: 1.2rem;}

  .section-head {
    gap: 36px;
  }

  .product-name {
    font-size: 19px;
  }

  /* .section-head-label {
    flex-basis: 200px;
  } */
}

@media (max-width: 992px) {
  .section-noor{
    padding: 64px 0;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .section-head {
    flex-direction: column;
    gap: 16px;
  }

  .section-head-label {
    flex: none;
  }

  .section-head-main h2 {
    font-size: 29px;
  }

  .people-card {
    grid-template-columns: 1fr;
  }

  .people-portrait {
    min-height: 260px;
  }

  .people-names {
    position: static;
    margin-bottom: 14px;
    padding: 20px 10px 0;
  }

  .products-box {
    grid-template-columns: 1fr 1fr;
  }

  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-image img {
    min-height: 320px;
  }

  .deco-boat {
    width: 200px;
  }

  .deco-cup {
    width: 160px;
  }
}

@media (max-width: 600px) {
  .noor-container {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 13.5px;
  }

  .sub-nav-inner {
    height: 64px;
  }

  .btn-enquiry {
    padding: 10px 18px;
    font-size: 13.5px;
  }

  .what-is-section .section-head-main h2 {
    font-size: 23px;
    max-width: none;
  }

  .what-is-body {
    max-width: none;
  }

  .what-is-body p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .deco-flower {
    width: 56px;
    top: 26px;
  }

  .deco-boat {
    display: none;
  }

  .deco-cup {
    display: none;
  }

  .chapter-slide {
    width: 78vw !important;
  }

  .products-box {
    grid-template-columns: 1fr;
    padding: 0px 20px;
  }

  .kashmir-product-card {
    transform: none !important;
  }

  .product-img {
    transform: none !important;
  }

  .product-hover {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 16px !important;
    overflow: visible;
  }

  .people-text {
    padding: 24px 22px;
  }

  .people-thumbs {
    padding: 18px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .video-close {
    top: -38px;
    font-size: 28px;
  }
  .product-name{ color: #5A3A11;}
  .products-box::after{ display: none;}
  .enquiry-section{ padding-top: 0px;}
  .enquiry-grid{ gap: 20px;}
  .enquiry-form h2 { font-size: 29px;}
  .section-head-label { font-size: 20px; }
  .bottom-mask { left: -5%; width: 110%; }
}