.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-hero__video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;   /* a bit oversize to avoid edges on parallax */
  height: 120%;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.video-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: left;
  padding: 0 1rem;
  background: rgba(0,0,0,0.3); /* Optional dark overlay */
}

.video-hero__content {
  max-width: 800px;
  color: #fff;
  text-align: center;
}

.video-hero__title {
  margin: 0 0 0.5em;
  font-family: sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.1;
}

.video-hero__subtitle {
  margin: 0 0 1.5em;
  font-size: clamp(1rem, 3vw, 1.5rem);
  line-height: 1.4;
}

.video-hero__button {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  text-decoration: none !important;
  color: #f5d17c;             /* gold accent */
  border: 2px solid #f5d17c;
  border-radius: 30px;
  transition: background .3s, color .3s;
}
.video-hero__button:hover {
  background: #f5d17c;
  color: #1a1a1a;
}


@media (max-width: 768px) {
  .video-hero__title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
  .video-hero__subtitle {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }
  .video-hero__button {
    padding: 0.6em 1.2em;
    font-size: 0.9rem;
  }
}


.page-header {
    display: none;
}

/**Second section***/
.collection {
  padding: 4rem 1rem;
  background: #4a4a4a;
}
.collection__title {
  text-align: left;
  font-size: clamp(1rem, 2vw, 2.25rem);
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 3rem;
}
.collection__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LEFT BOX */
.collection__info {
  flex: 1 1 300px;
  background: #4a4a4a;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
 
  z-index: 10;
}
.collection__subtitle {
  margin: 0;
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: #fff;
}
.collection__divider {
  width: 50px;
  height: 2px;
  background: #f5d17c;
  margin: 0.75rem 0;
}
.collection__text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}
.collection__arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: transform .3s;
}
.collection__arrow:hover {
  transform: translateX(5px);
}

/* RIGHT IMAGE (initially off‑screen) */
.collection__media {
  flex: 1 1 600px;
  overflow: hidden;
  transform: translateX(100px);
  opacity: 0;
  transition: transform .8s ease-out, opacity .8s ease-out;
}
.collection__media.visible {
  transform: translateX(0);
  opacity: 1;
}
.collection__media img {
  width: 100%;
  height: auto;
  display: block;
}

/* MOBILE FALLBACK: show both statically */
@media (max-width: 768px) {
  .collection__inner {
    flex-direction: column;
  }
  .collection__media,
  .collection__info {
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .collection__info {
  margin-right: -40px;

}
}

.twr-third-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2%;
  margin: 4rem 1rem;
}

/* Each item holds one image + card */
.twr-third-section__item {
  position: relative;
  width: 48%;
  overflow: hidden;
  height: 100vh;
}

/* Media (image) initial state */
.twr-third-section__media {
  transform: translateX(0);
  opacity: 0;
  transition: transform .8s ease-out, opacity .8s ease-out;
}
/* Left comes from left, right comes from right */
.twr-third-section__item--left .twr-third-section__media {
  transform: translateX(-100px);
}
.twr-third-section__item--right .twr-third-section__media {
  transform: translateX(100px);
}
/* When visible */
.twr-third-section__item.twr-visible .twr-third-section__media {
  transform: translateX(0);
  opacity: 1;
}

.twr-third-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Card shared styles */
.twr-third-section__card {
  position: absolute;
  background: #4a4a4a;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 320px;
  color: #fff;
}

/* Top‑left card for wardrobes */
.twr-third-section__card--top-left {
  top: 1%;
  right: 2%;
}

/* Bottom‑right card for doors */
.twr-third-section__card--bottom-right {
  bottom: 1%;
  left: 2%;
}

.twr-third-section__card-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: 1px;
}

.twr-third-section__divider {
  width: 50px;
  height: 2px;
  background: #f5d17c;
  margin: 0.5rem 0 1rem;
}

.twr-third-section__card-text {
  font-size: 1rem;
  line-height: 1.5;
}

.twr-third-section__arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.5rem;
  text-decoration: none;
  color: #fff;
  transition: transform .3s;
}
.twr-third-section__arrow:hover {
  transform: translateX(5px);
}

/* STACK ON MOBILE */
@media (max-width: 768px) {
  .twr-third-section__item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .twr-third-section__card {
    position: static;
    padding: 1.5rem;
    margin-top: -4rem;
  }
  .twr-third-section__media {
    transform: none !important;
    opacity: 1 !important;
    transition: none;
  }
}
@media (min-width: 768px) {
.twr-third-section__item--left .twr-third-section__media {
    margin-top: 169px;
}
.twr-third-section__item {
    
    max-height: 593px;
}
}

/* Container */
.contact-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 4rem;
  color:#fff;
}

/* Full‑width background image */
.contact-section__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Card overlay */
.contact-section__card {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: #4a4a4a;
  padding: 2.5rem;
  max-width: 360px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  color: #333;
}

/* Title & divider */
.contact-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 1px;
  color: #fff;
}
.contact-section__divider {
  width: 50px;
  height: 3px;
  background: #f5d17c;
  margin-bottom: 1rem;
}

/* Text & link */
.contact-section__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
    color: #fff;
}
.contact-section__link {
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: color .3s;
}
.contact-section__link:hover {
  color: #f5d17c;
}
.contact-section__arrow {
  margin-left: 0.5rem;
  transition: transform .3s;
}
.contact-section__link:hover .contact-section__arrow {
  transform: translateX(4px);
}

/* Social icons */
.contact-section__social {
  margin-top: 1.5rem;
  color: #fff;
}
.contact-section__social a {
  margin-right: 1rem;
  color: #fff;
  font-size: 1.25rem;
  transition: color .3s;
}
.contact-section__social a:hover {
  color: #f5d17c;
}

/* Back to Top */
.back-to-top {
  text-align: center;
  margin-bottom: 2rem;
}
.back-to-top button {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  font: inherit;
  display: inline-flex;
  align-items: center;
}
.back-to-top__arrow {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  transition: transform .3s;
  color: #fff;
}
.back-to-top button:hover .back-to-top__arrow {
  transform: translateY(-4px);
}
.back-to-top__text {
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section__card {
    position: static;
    transform: none;
    margin: -4rem 1rem 2rem;
    width: auto;
    box-shadow: none;
    padding: 1.5rem;
  }
  .contact-section__title {
    text-align: left;
    color: #fff;
  }
}


.site-footer {
  
  color: #ccc;
  font-family: sans-serif;
}

/* Main row: logo, links column, social icons */
.site-footer__main {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  gap: 2rem;
}

/* Logo column */
.site-footer__col--logo {
  flex: 1 1 150px;
}
.site-footer__logo {
  max-width: 140px;
  height: auto;
  display: block;
}

/* Links column: phone, email, policy links grouped */
.site-footer__col--links {
  flex: 2 1 400px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.footer-link-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Text and links within link items */
.site-footer__item,
.site-footer__link {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
}
.site-footer__link {
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer__link:hover {
  color: #fff;
}

/* Social icons column */
.site-footer__col--social {
  flex: 1 1 150px;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.site-footer__col--social a {
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s;
}
.site-footer__col--social a:hover {
  color: #fff;
}

/* Bottom copyright row */
.site-footer__bottom {
  border-top: 1px solid #444;
  text-align: left;
  padding: 12px 20px;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .site-footer__main {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }
  .site-footer__col--links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .site-footer__col--social {
    justify-content: center;
  }
}

/*******About Us Page*****/

/* Container & sizing */
.about-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Parallax background */
.about-section__bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 150%;               /* extra height for parallax */
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translateY(-10%); /* initial shift up */
}

/* Overlay card */
.about-section__content {
  position: relative;
  max-width: 600px;
  background: #4a4a4a   ;
  padding: 3rem;
  margin-left: auto;
  margin-right: 5%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Title & divider */
.about-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 1px;
    color: #fff;
}
.about-section__divider {
  width: 60px;
  height: 3px;
  background: #f5d17c;
  margin: 0 0 1.5rem;
}

/* Text paragraphs */
.about-section__text p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #fff;
  font-size: 1rem;
}

/* Section padding to allow content and parallax */
@media (min-width: 769px) {
  .about-section {
    padding-top: 40px;  /* vertical space for parallax */
  }
}

/* MOBILE: stack content, remove parallax */
@media (max-width: 768px) {
  .about-section__bg {
    display: none;    /* fallback: static image in HTML if desired */
  }
  .about-section__content {
    margin: 2rem auto;
    width: 90%;
    padding: 2rem;
    box-shadow: none;
  }
}

.journey-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

/* Text side */
.journey-section__content {
  flex: 1 1 350px;
  max-width: 500px;
}
.journey-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 1px;
  text-align: left;
}
.journey-section__divider {
  width: 50px;
  height: 3px;
  background: #f5d17c;
  margin: 0.5rem 0 1.5rem;
}
.journey-section__timeline p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #fff;
}
.journey-section__timeline strong {
  color: #000;
}

/* Image side */
.journey-section__media {
  flex: 1 1 400px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100px);
  transition: transform .8s ease-out, opacity .8s ease-out;
}
.journey-section__media.visible {
  transform: translateX(0);
  opacity: 1;
}
.journey-section__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* MOBILE: stack */
@media (max-width: 768px) {
  .journey-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .journey-section__content,
  .journey-section__media {
    flex: 1 1 100%;
  }
  .journey-section__media {
    transform: none !important;
    opacity: 1 !important;
    transition: none;
    margin-top: 2rem;
  }
}

/* Container */
.infra-tech-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  gap: 2rem;
}

/* Content (right) */
.infra-tech-section__content {
  flex: 1 1 400px;
  max-width: 500px;
}
.infra-tech-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 1px;
  text-align: left;
}
.infra-tech-section__divider {
  width: 60px;
  height: 3px;
  background: #f5d17c;
  margin-bottom: 1.5rem;
}
.infra-tech-section__content p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: #fff;
  font-size: 1rem;
}

/* Media (left) */
.infra-tech-section__media {
  flex: 1 1 500px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-100px);
  transition: transform .8s ease-out, opacity .8s ease-out;
}
.infra-tech-section__media.visible {
  transform: translateX(0);
  opacity: 1;
}
.infra-tech-section__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .infra-tech-section {
    flex-direction: column-reverse; /* content first, then image */
    text-align: left;
  }
  .infra-tech-section__media {
    transform: none !important;
    opacity: 1 !important;
    transition: none;
    width: 100%;
    margin-top: 2rem;
  }
  .infra-tech-section__content {
    width: 100%;
  }
}
.infra-tech-section__media {
  order: 0;
}
.infra-tech-section__content {
  order: 1;
}

/* Container */
.brochure-section {
  position: relative;
  overflow: hidden;
  
}

/* Full‑width background image */
.brochure-section__media img {
  display: block;
  width: 100%;
  height: 700px;
  object-fit: cover;
}

/* Content card */
.brochure-section__card {
  position: absolute;
  bottom: 0px;
  left: 8%;
  
  background: #4A4A4A;
  padding: 2rem;
  max-width: 420px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 1;
}

/* Title & divider */
.brochure-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 1px;
}
.brochure-section__divider {
  width: 60px;
  height: 3px;
  background: #f5d17c;
  margin-bottom: 1.5rem;
}

/* Paragraph text */
.brochure-section__text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

/* Link styling */
.brochure-section__link {
  color: #333;
  text-decoration: underline;
  transition: color .3s;
}
.brochure-section__link:hover {
  color: #f5d17c;
}

/* MOBILE: stack content */
@media (max-width: 768px) {
  .brochure-section__card {
    position: static;
    transform: none;
    margin: -4rem auto 2rem;
    width: 90%;
    box-shadow: none;
    padding: 1.5rem;
    max-width: none;
  }
}

/* Section wrapper */
.pdf-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Optional section title */
.pdf-section__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 2rem;
  color: #333;
}

/* Grid layout */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
}

/* Individual PDF item */
.pdf-item {
  text-decoration: none;
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon */
.pdf-item__icon {
  width: 64px;
  height: auto;
  margin-bottom: 0.75rem;
  filter: grayscale(60%) brightness(80%);
  transition: filter 0.3s;
}
.pdf-item:hover .pdf-item__icon {
  filter: none;
}

/* Label */
.pdf-item__label {
  font-size: 0.9rem;
  line-height: 1.3;
  text-align: center;
  color: #f5d17c;
}

/* Mobile tweaks (optional) */
@media (max-width: 480px) {
  .pdf-item__icon {
    width: 56px;
    margin-bottom: 0.5rem;
  }
  .pdf-item__label {
    font-size: 0.85rem;
  }
}

/* Scoped under .Product-header */
.Product-header .kitchens-section {
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.Product-header .kitchens-section__media img {
  display: block;
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.Product-header .kitchens-section__card {
  position: absolute;
  bottom: 0px;
  left: 6%;
  background: #4A4A4A;
  padding: 2.5rem;
  max-width: 420px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 1;
}

.Product-header .kitchens-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: 1px;
}
.Product-header .kitchens-section__divider {
  width: 60px;
  height: 3px;
  background: #f5d17c;
  margin-bottom: 1rem;
}

.Product-header .kitchens-section__subtitle {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: #333;
  font-style: italic;
  line-height: 1.4;
}

.Product-header .kitchens-section__text {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .Product-header .kitchens-section__card {
   
    transform: none;
    width: 90%;
    box-shadow: none;
    padding: 1.5rem;
    max-width: none;
    text-align: left;
  }
}
.Product-header {
    height: 700px;
}

.shutter-designs {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}

.shutter-designs__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.shutter-designs__subtitle {
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Grid of panels */
.shutter-designs__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Each shutter item */
.shutter-item {
  flex: 1 1 calc(33.333% - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Image wrapper: initial offscreen */
.shutter-item__media {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: transform .8s ease-out, opacity .8s ease-out;
}
.shutter-item__media.from-right {
  transform: translateX(100px);
}
.shutter-item__media.from-left {
  transform: translateX(-100px);
}
/* When in‑view: slide to 0 */
.shutter-item__media.in {
  transform: translateX(0);
  opacity: 1;
}

.shutter-item__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Title & link */
.shutter-item__title {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 400;
}
.shutter-item__link {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.shutter-item__link:hover {
  color: #f5d17c;
  border-color: #f5d17c;
}

/* STACK ON MOBILE */
@media (max-width: 768px) {
  .shutter-designs__grid {
    flex-direction: column;
    gap: 3rem;
  }
  .shutter-item {
    flex: 1 1 100%;
  }
}

  .twr-door-section {
      padding: 60px 20px;
      background-color: #4A4A4A;
      color: #fff;
    }
    .twr-door-section .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Title & Intro */
    .twr-door-section h2 {
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: 6px;
      font-weight: normal;
      text-align: left;
      margin-bottom: 16px;
      color: #222;
    }
    .twr-door-section p {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      text-align: center;
    }

    /* Two‑column layout */
    .twr-door-section .door-content {
      display: flex;
      align-items: flex-start;
      gap: 40px;
    }
    .twr-door-section .door-image-container,
    .twr-door-section .door-text {
      flex: 1;
    }

    /* Image & animation */
    .twr-door-section .door-image {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .twr-door-section .door-image.slide-in {
      opacity: 1;
      transform: translateX(0);
    }

    /* Text column */
    .twr-door-section .door-text h3 {
    font-size: 15px;
    margin-top: 9px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #222;
}
    .twr-door-section .door-text ul {
      list-style: none;
      padding: 0;
      margin: 0 0 12px;
    }
    .twr-door-section .door-text ul li {
      position: relative;
      margin-bottom: 8px;
      font-size: 14px;
      color: #fff;
    }
    

    /* Responsive */
    @media (max-width: 768px) {
      .twr-door-section {
        padding: 40px 10px;
      }
      .twr-door-section .door-content {
        flex-direction: column;
      }
      .twr-door-section .door-text h3 {
        margin-top: 16px;
      }
    }
    
    
    .contact-section { padding: 60px 20px; font-family: Arial, sans-serif; color: #333; }
.container { max-width: 1200px; margin: 0 auto; }

/* Layout */
.contact-wrapper { display: flex; gap: 40px; }
.contact-left, .contact-right { flex: 1; }

/* Left Side */
.contact-left h2 { font-size: 32px; margin-bottom: 16px; }
.contact-left h3 { font-size: 24px; margin-top: 40px; margin-bottom: 16px; }
.contact-left p { line-height: 1.6; margin-bottom: 20px; }
.contact-info { display: flex; gap: 40px; margin-bottom: 20px; }
.info-block h4 { font-size: 18px; margin-bottom: 8px; }
.socials { display: flex; gap: 10px; margin-bottom: 20px; }
.social-icon { font-size: 24px; color: #333; text-decoration: none; }

/* Footer Blocks */
.footer-info { display: flex; gap: 40px; margin-top: 40px; }
.footer-block h4 { font-size: 18px; margin-bottom: 8px; }
.footer-block p { line-height: 1.6; }

/* Contact Form 7 Styling */
.contact-right .wpcf7-form { display: flex; flex-wrap: wrap; gap: 20px; }
.contact-right .wpcf7-form-control-wrap { width: 100%; }
.contact-right .wpcf7-form-control-wrap.half { width: calc(50% - 10px); }
.contact-right input[type="text"],
.contact-right input[type="email"],
.contact-right textarea,
.contact-right select { width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
.contact-right textarea {   max-height: 80px; }
.contact-right .wpcf7-file { background: #f9f9f9; padding: 12px; border: 1px solid #ccc; border-radius: 4px; cursor: pointer; }
.contact-right .wpcf7-submit { background: #c9a16c; color: #fff; border: none; padding: 14px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }
.contact-right label {
    width: 100%;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper { flex-direction: column; }
  .contact-info, .footer-info { flex-direction: column; }
  .contact-right .wpcf7-form-control-wrap.half { width: 100%; }
}
@media (min-width: 768px) {
  .contact-right .cf7-row {
    display: flex;
    gap: 2px;
}
}
.page-id-384 .twr-contact-from { margin-top: -424px;}
.page-id-384 .twr-contact-from .e-con-inner {
    background: #4a4a4a;
}

/***********Blog***************/
.twr-blog-listing .post {
  display: flex;
  gap: 1.5rem;        
  align-items: flex-start;
  border: 1px solid #dddddd;
    margin-bottom: 27px;

}


.twr-thumb {
  flex:  40%;      
  max-width: 40%;
}

.twr-content {
  flex: 60%;      
  max-width: 60%;
padding: 24px;
}

@media (max-width: 768px) {
  .twr-blog-listing .post {
    flex-direction: column;
  }
  .twr-thumb,
.twr-content {
    flex: none;
    max-width: 100%;
  }
}



.twr-blog-archive {
  position: relative;
  width: 100%;
  background: url('https://hapners.co.in/wp-content/uploads/2025/07/75576e_1d391db1c8b84dcd85d701e337165e75mv2.jpg') center center / cover no-repeat;
  padding: 60px 20px;           
}


.twr-blog-archive__card {
  max-width: 450px;
  margin: 0 auto;
  background: #4A4A4A;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.twr-blog-archive__title {
  font-family: 'Segoe UI', sans‑serif;
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0;
}

.twr-blog-archive__divider {
  width: 60px;
  height: 4px;
  background-color: #DDB35B;
  margin: 12px 0 20px;
}


.twr-blog-archive__subtitle {
  font-size: 1.125rem;
  color: #444;
  margin: 0 0 16px;
}

/* Body text */
.twr-blog-archive__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}


@media (min-width: 768px) {
  .twr-blog-archive {
    height: 700px;               
    padding: 0;
  }

  .twr-blog-archive__card {
    position: absolute;
    bottom: 0;
    left: 8%;                    
    margin: 0;
  }
}

.twr-blog-listing {
    padding-top: 70px;
    padding-bottom: 50px;
}

.single-post .page-header{
    display: block;
}
.twr-blog-archive__date {
    margin-bottom: 20px;
}

.twr-blog-archive__featured-image {
    margin-bottom: 25px;
}

.single-post #page {
    background: #4A4A4A;
}

.single-post main#content {
    background: #4A4A4A;
    padding: 23px 40px;
}

.page-id-153 header#masthead {
    background: #fff;
}

@media (max-width: 700px){
    .twr-third-section__card {
    position: static;
    padding: 1.5rem;
    margin-top: 35px;
    width: 100%;
    max-width: 100%;
}
.twr-third-section__item {
    height: auto;
}
.twr-third-section__item {
    width: 100%;
    margin-bottom: 0;
}
.twr-third-section {
  
    margin: 0;
}
.contact-section__card {
 
    margin: 4rem 1rem 2rem;
}
.collection__media {
    flex: none;
}
}

/* styles.css */
.blog-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-intro__heading {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  color: #fff;
}

.blog-intro__underline {
  width: 60px;
  height: 4px;
  background-color: #d4af37; /* gold */
  margin: 0.5rem 0 1.5rem;
}

.blog-intro__text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

/* Mobile-first adjustments */
@media (max-width: 600px) {
  .blog-intro {
    padding: 1.5rem 1rem;
  }
  .blog-intro__heading {
    font-size: 1.5rem;
    color: #fff;
  }
  .blog-intro__underline {
    width: 40px;
    height: 3px;
    margin: 0.4rem 0 1rem;
  }
  .blog-intro__text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
.wppsac-post-categories .wppsac-post-categories-list li:nth-child(4n+1) a {
    background: #000;
}
.wppsac-sub-content {
    display: none;
}
ul.wppsac-post-categories-list {
    display: none;
}
.wppsac-post-content {
    display: none;
}

.menu-item a.hfe-menu-item {
    color: #fff !important;
}
.wppsac-post-carousel.design-1 .wppsac-post-title a {
    color: #fff;
}
.wppsac-post-date {
    color: #c7c4c4 !important;
}
h1,h2,h3,h4,p{color:#fff !important;}
.brochure-section__link{color:#f5d17c;}
time.post-date {
    color: #fff;
}
.post .entry-title a {
    color: #DDB35B;
}
.twr-blog-archive__date {
    color: #fff;
}
.single-post li {
    color: #fff;
}
@media (max-width: 600px) {
.menu-item a.hfe-menu-item {
    color: #fff !important;
    background-color: #4A4A4A !important;
}
.site-footer__col--links {
    flex: 2 1 246px;
}
.site-footer__col--social {
    flex: 1 1 57px;
}
.site-footer__col--logo {
    flex: 1 1 120px;
}
.contact-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
   
}
}
a.hfe-sub-menu-item {
    background: #4a4a4a !important;
    color: #fff !important;
}

.blog li {
    color: #fff;
}
.elementor-hidden-desktop .menu-item a.hfe-menu-item {
   
    padding: 2px 18px;
}
@media (max-width: 768px) {
.brochure-section__card {
    position: static;
    transform: none;
    margin: 0rem auto 2rem;
    width: 90%;
    box-shadow: none;
    padding: 1.5rem;
    max-width: none;
}
}

.twr-aboutus-header.Product-header {
    height: AUTO;
}
.twr-aboutus-header.Product-header .kitchens-section__media img {
    height: AUTO;
}

@media (max-width:700px){
    .twr-aboutus-header.Product-header {
    height: 742px;
}
.elementor-hidden-desktop a.hfe-sub-menu-item {
    padding: 0px 39px;
}
.video-hero {
 
  height: auto;
}
.video-hero__overlay {
  padding: 24px 1rem;
}
}