*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}
/* HEADER */
.main-header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  padding:25px 5%;
  z-index:1000;
  transition:all 0.4s ease;
  background:transparent;
}

/* SCROLL STATE */
.main-header.scrolled{
  background:#111;
  padding:16px 5%;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* Logo resize on scroll */
.main-header.scrolled .header-center img{
  height:60px;
  transition:0.3s;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

/* Left */
.header-left{
  width:33%;
  display:flex;
  align-items:center;
}

/* Center Logo */
.header-center{
  width:33%;
  text-align:center;
}

.header-center img{
  height:100px;
  object-fit:contain;
}

/* Right */
.header-right{
  width:33%;
  display:flex;
  justify-content:flex-end;
  gap:16px;
}

/* HAMBURGER */
.hamburger{
  cursor:pointer; background:rgba(0,0,0,0.5); padding:10px;
}

.hamburger span{
  display:block;
  width:30px;
  height:2px;
  background:#fff;
  margin:6px 0;
  transition:0.3s;
}

/* RIGHT BUTTONS */
.header-right{
  display:flex;
  gap:16px;
}

.pill-btn{
  padding:8px 20px;
  border:1px solid #fff;
  border-radius:30px;
  text-decoration:none;
  color:#fff;
  font-size:16px;
  transition:0.3s;
}

.pill-btn:hover{
  background:#000;
  color:#fff;
}














/* OVERLAY */
.menu-overlay{
  position:fixed;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  backdrop-filter:blur(6px);
  top:0;
  left:0;
  opacity:0;
  visibility:hidden;
  transition:0.4s ease;
  z-index:999;
}

/* SIDE MENU PANEL */
.side-menu{
  position:fixed;
  left:-420px;
  top:0;
  width:420px;
  height:100%;
  background:#222;
  padding:60px 50px;
  transition:0.6s cubic-bezier(.77,0,.18,1);
  z-index:1000;
  display:flex;
  flex-direction:column;
}

/* ACTIVE STATES */
.side-menu.active{
  left:0;
}

.menu-overlay.active{
  opacity:1;
  visibility:visible;
}

/* MENU TOP */
.menu-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.menu-logo img{
width:110px;
  font-family:serif;
}

.menu-close{
  font-size:26px; color:#fff;
  cursor:pointer;
}

/* MENU LINKS */
.menu-links{
  list-style:none;
  margin-top:60px;
}

.menu-links li{
  margin-bottom:16px;
}

.menu-links a{
  text-decoration:none;
  font-size:28px;
  color:#fff;
  font-weight:500;
  transition:0.3s;
}

.menu-links a:hover{
  padding-left:10px;
}

/* EXTRA LINKS */
.menu-extra{
  margin-top:40px;
}

.menu-extra p a{
  margin-bottom:10px;
  font-size:16px; color:#fff;
}
/* CONTACT */
.menu-contact p {
  margin-top:auto;
  font-size:16px; text-decoration: none;
  color:#fff;
}
/* CONTACT */
.menu-contact p a{
  margin-top:auto;
  font-size:16px; text-decoration: none;
  color:#fff;
}
.products-panel{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg,#7b4a2e,#5a2e1d);
  transform:translateY(-100%);
  transition:0.5s ease;
  z-index:3000;
  padding:100px 5% 60px;
  overflow-y:auto;
}

.products-panel.active{
  transform:translateY(0);
}

.products-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.products-left{
  flex:1;
  color:#fff;
}

.products-left h2{
  font-size:42px;
}

.products-right{
  flex:1.5;
  position:relative;
}
.slider-wrapper{
  overflow:hidden; /* scroll remove */
  width:100%;
}

.product-track{
  display:flex;
  gap:20px;
  transition:transform 0.5s ease;
}

.product-card{
  flex:0 0 280px;
}

/* Hide mobile scroll */
@media(max-width:768px){
  .slider-wrapper{
    overflow:hidden;
  }
  .header-left {
    width:13%;
    display: flex;
    align-items: center;
}
.pill-btn {
    padding: 8px 16px !important;
    border: 1px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 14px !important;
    transition: 0.3s;
}
}

.product-card img{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:6px;
}

.product-card span{
  position:absolute;
  bottom:16px;
  left:16px;
  color:#fff;
  font-weight:500;
}

/* arrows */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:45px;
  height:45px;
  border-radius:50%;
  border:none;
  background:#fff;
  color:#000;
  font-size:22px;
  cursor:pointer;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 16px rgba(0,0,0,0.2);
  transition:0.3s ease;
}

.arrow.left{
  left:10px;   /* changed */
}

.arrow.right{
  right:10px;  /* changed */
}

.arrow:hover{
  background:#8b5e3c;
  color:#fff;
}

/* ================= MOBILE ================= */

@media (max-width:992px){
  .products-container{
    flex-direction:column;
    gap:30px;
  }

  .products-left h2{
    font-size:28px;
  }

  .products-right{
    width:100%;
  }

  .arrow{
    display:none;
  }

  .slider-wrapper{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .product-track{
    gap:16px;
  }

  .product-card{
    flex:0 0 220px;
  }

  .product-card img{
    height:260px;
  }
}

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

.product-card span{
  position:absolute;
  bottom:16px;
  left:20px;
  font-size:20px;
}



.products-right{
  position:relative;
  display:flex;
  align-items:center;
  width:68%;
}

.slider-wrapper{
  overflow:hidden;
  width:100%;
}

.product-track{
  display:flex;
  gap:30px;
  transition:0.6s ease;
}

.product-card{
  min-width:280px;
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

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

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

.product-card span{
  position:absolute;
  bottom:16px;
  left:20px;
  font-size:20px;
  color:#fff; background:rgba(0,0,0,0.5); padding:10px;
}

.arrow{
  background:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  font-size:24px;
  cursor:pointer;
  position:absolute;
  z-index:10;
}

.arrow.left{
  left:-25px;
}

.arrow.right{
  right:-25px;
}


.hero-slider{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero-gradient{
  position:absolute;
  inset:0;
  z-index:2;

  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 20%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.05) 55%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.75) 100%
  );
}

.slide{
  position:absolute;
  top:0;
  left:0;
  width:100vw;   /* instead of 100% */
  height:100vh;

  transition:opacity 1.5s ease-in-out;
}
.slide.active{
  opacity:1;
  z-index:1;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  animation: zoomEffect 8s linear infinite;
}

@keyframes zoomEffect{
  0%{
    transform:scale(1);
  }
  100%{
    transform:scale(1.15);
  }
}


.content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  color:#fff;
  text-align:center;
  z-index:2;
}

.content h1{
  font-size:55px;
  margin-bottom:20px;
}

.content p{
  font-size:20px;
}


.cinematic-hero{
  height:100vh;
  position:relative;
  background:url('images/hero.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  padding-left:8%;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.hero-text{
  position:relative;
  max-width:600px;
  z-index:2;
}

.hero-text h1{
  font-family:'Playfair Display', serif;
  font-size:80px;
  font-weight:400;
  line-height:1.05;
  letter-spacing:-1px;
}

.hero-text p{
  font-family:'Poppins', sans-serif;
  font-size:16px;
  font-weight:300;
  margin-top:30px;
  line-height:1.7;
  max-width:400px;
  color:rgba(255,255,255,0.85);
}

.hero-text{
  animation: fadeUp 1.2s ease forwards;
  opacity:0;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}





@media (max-width:992px){

  .products-left{
    margin-bottom:40px;
  }

  .products-left h2{
    font-size:32px;
  }

  .hero-text h1{
    font-size:40px;
  }
}

@media (max-width:768px){

  .main-header{
    padding:16px;
  }


  .products-panel{
    padding-top:80px;
  }

  .product-track{
    overflow-x:auto;
    scroll-snap-type:x mandatory;
  }

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

  .hero-text{
    left:5%;
    right:5%; top:5%;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-text p{
    font-size:16px;
  }

  .header-center{
  width:auto !important;
  text-align:center;
}

.header-center img{
  height:60px !important;
  object-fit:contain;
}
}



@media (max-width:768px){

  .products-container{
    flex-direction:column;
    align-items:flex-start;
    gap:30px;
  }

  .products-left{
    width:100%;
  }

  .products-right{
    width:100%;
  }

}

@media (max-width:768px){

  .arrow{
    display:none;
  }

  .slider-wrapper{
    overflow-x:auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-track{
    display:flex;
    gap:16px;
  }

  .product-card{
    min-width:220px;
    flex:0 0 auto;
  }

}








.product-offerings{
  padding:100px 5%;
  background:#f3ede4;
  
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header span{
  font-size:16px;
  letter-spacing:3px;
  color:#7b4a2e;
}

.section-header h2{
  font-size:42px;
  margin-top:16px;
  font-family:'Playfair Display', serif;
  font-weight:400;
}
.offerings-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:30px;
}

.offerings-grid a{
grid-column:span 2;
}

/* last row center */

.offerings-grid a:nth-child(4){
grid-column:2 / span 2;
}

.offerings-grid a:nth-child(5){
grid-column:4 / span 2;
}

.offer-card{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  border-radius:6px;
}

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

.offer-card h3{
  position:absolute;
  bottom:20px;
  left:20px;
  color:#fff;
  font-size:20px;
  font-weight:500;
}

.offer-card:hover img{
  transform:scale(1.1);
}


/* 📱 MOBILE VIEW */
@media (max-width:768px){

.offerings-grid{
grid-template-columns:1fr;
gap:20px;
}

.offerings-grid a{
grid-column:span 1;
}

.offerings-grid a:nth-child(4),
.offerings-grid a:nth-child(5){
grid-column:span 1;
}

}



.section-desc{
  max-width:620px;
  margin:20px auto 0;
  font-size:16px;
  line-height:1.7;
  color:#222;
}

.offer-content{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  padding:50px;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color:#fff;
  transition:0.4s ease;
}

.offer-content h3{
  margin-bottom:-10px;
  font-size:20px; color: #fff;
}

.offer-content p{
  font-size:16px;
  opacity:0.85;
}

/* Hover animation */
.offer-card:hover .offer-content{
  background:linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}



.products-close{color:#fff;}






.kumar-parallax{
  position:relative;
  height:100vh;
  background:url('../images/slider3.jpg') center/cover no-repeat fixed;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

/* Elegant Gradient Overlay */
.kumar-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.75) 100%
  );
  z-index:1;
}

.kumar-content{
  position:relative;
  z-index:2;
  max-width:750px;
  padding:20px;
  animation:fadeUp 1.2s ease forwards;
}

/* Brand Name */
.brand-name{
  letter-spacing:4px;
  font-size:16px;
  margin-bottom:20px;
  opacity:0.8;
}

/* Main Heading */
.kumar-content h2{
  font-size:65px;
  font-family:'Playfair Display', serif;
  font-weight:400;
  margin-bottom:20px;
  line-height:1.1;
}

.kumar-content h2 span{
  font-style:italic;
  font-weight:300;
}

/* Description */
.kumar-content p{
  font-size:18px;
  max-width:600px;
  margin:0 auto 30px;
  line-height:1.6;
  opacity:0.9;
}

/* Button */
.kumar-btn{
  display:inline-block;
  padding:12px 30px;
  border:1px solid #fff;
  border-radius:40px;
  text-decoration:none;
  color:#fff;
  transition:0.4s ease;
}

.kumar-btn:hover{
  background:#fff;
  color:#000;
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}







@media(max-width:768px){

  .kumar-parallax{
    background-attachment:scroll;
padding:40px;
  }

  .kumar-content h2{
    font-size:32px;
  }

  .kumar-content p{
    font-size:16px;
  }

}








.clients-section{
  padding:100px 5%;
  background:#f8f5f0;
  text-align:center;
}

.clients-header span{
  letter-spacing:3px;
  font-size:13px;
  color:#8b5e3c;
}

.clients-header h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-top:16px;
  margin-bottom:60px;
}

/* Slider */
.clients-slider{
  overflow:hidden;
  position:relative;
}

.clients-track{
  display:flex;
  gap:30px;
  width:max-content;
  animation:scrollClients 25s linear infinite;
}

.client-logo{
  min-width:180px;

  transition:0.4s ease;
}

.client-logo img{
  width:250px;
  height:auto;


}

.client-logo:hover{
  opacity:1;
}

.client-logo:hover img{
  filter:grayscale(0%);
}

/* Animation */
@keyframes scrollClients{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}







@media(max-width:768px){

  .clients-header h2{
    font-size:28px;
  }

  .clients-track{
    gap:10px;
    animation-duration:15s;
  }

  .client-logo{
    min-width:100px;
  }

  .client-logo img{
    height:auto !important;
  }

}







.product-gallery{
  padding:100px 5%;
  background:#fff;
  text-align:center;
}

.gallery-header span{
  letter-spacing:3px;
  font-size:13px;
  color:#8b5e3c;
}

.gallery-header h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-top:16px;
  margin-bottom:40px;
}

/* Filters */
.gallery-filters{
  margin-bottom:50px;
}

.gallery-filters button{
  border:none;
  background:transparent;
  margin:0 16px;
  font-size:16px;
  cursor:pointer;
  padding-bottom:5px;
  position:relative;
}

.gallery-filters button.active,
.gallery-filters button:hover{
  color:#8b5e3c;
}

.gallery-filters button.active::after{
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:100%;
  height:2px;
  background:#8b5e3c;
}

/* Grid */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.gallery-item{
  overflow:hidden;
  border-radius:6px;
  transition:0.4s ease;
}

.gallery-item img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:0.6s ease;
}

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


@media (max-width:768px){

  .gallery-filters{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding-bottom:10px;
    margin-bottom:25px;
    scrollbar-width:none;
  }

  .gallery-filters::-webkit-scrollbar{
    display:none;
  }

  .gallery-filters button{
    flex:0 0 auto;
    padding:8px 16px;
    font-size:13px;
    border-radius:30px;
    border:1px solid #222;
    background:#fff;
    white-space:nowrap;
  }

  .gallery-filters button.active{
    background:#8b5e3c;
    color:#fff;
    border-color:#8b5e3c;
  }

}


@media (max-width:768px){

  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .gallery-item img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:8px;
  }

}
@media (max-width:768px){

  .gallery-header h2{
    font-size:26px;
  }

  .gallery-header span{
    font-size:12px;
    letter-spacing:2px;
  }

}



.kumar-parallax-img{
  position:relative;
  height:90vh;
  background:url('images/awning-parallax.jpg') center/cover no-repeat fixed;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* Dark Gradient Overlay */
.parallax-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.1) 70%,
    rgba(0,0,0,0.6) 100%
  );
  z-index:1;
}

/* Smooth Zoom Animation */
.kumar-parallax-img::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../images/awning-banner.jpg') center/cover no-repeat;
  animation:zoomSlow 20s linear infinite;
  z-index:0;
}

@keyframes zoomSlow{
  0%{ transform:scale(1); }
  100%{ transform:scale(1.1); }
}

.parallax-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding-left:8%;
}

.parallax-content{
  color:#fff;
  max-width:450px;
  animation:fadeUp 1.2s ease forwards;
}

.parallax-content h2{
  font-size:60px;
  font-family:'Playfair Display', serif;
  margin-bottom:16px;
}

.parallax-content p{
  font-size:18px;
  margin-bottom:25px;
}

.parallax-link{
  text-decoration:none;
  color:#fff;
  border-bottom:1px solid #fff;
  padding-bottom:5px;
  transition:0.4s;
}

.parallax-link:hover{
  opacity:0.7;
}

/* Bottom Strip */
.parallax-strip{
  background:linear-gradient(to right,#7b4a2e,#5a2e1d);
  text-align:center;
  padding:25px 0;
}

.parallax-strip a{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  border-bottom:1px solid #fff;
  padding-bottom:5px;
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}









.kumar-parallax-upholstery{
  position:relative;
  height:90vh;
  overflow:hidden;
}

/* Background Zoom Layer */
.kumar-parallax-upholstery::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('../images/Upholstery.webp') center/cover no-repeat;
  animation:zoomSlow 20s linear infinite;
  z-index:0;
}

/* Overlay */
.kumar-parallax-upholstery .parallax-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to left,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0.6) 100%
  );
  z-index:1;
}

.parallax-inner{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.right-align{
  justify-content:flex-end;
  text-align:right;
}

.parallax-content{
  max-width:450px;
  color:#fff;
  animation:fadeUp 1.2s ease forwards;
}

.parallax-content h2{
  font-size:60px;
  font-family:'Playfair Display', serif;
  margin-bottom:16px;
}

.parallax-content p{
  font-size:18px;
  margin-bottom:25px;
}

.parallax-link{
  text-decoration:none;
  color:#fff;
  border-bottom:1px solid #fff;
  padding-bottom:5px;
  transition:0.4s;
}

.parallax-link:hover{
  opacity:0.7;
}

/* Bottom Strip */
.parallax-strip{
  background:linear-gradient(to right,#7b4a2e,#5a2e1d);
  text-align:center;
  padding:25px 0;
}

.parallax-strip a{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  border-bottom:1px solid #fff;
  padding-bottom:5px;
}

/* Animations */
@keyframes zoomSlow{
  0%{ transform:scale(1); }
  100%{ transform:scale(1.1); }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}




.kumar-split-parallax{
  display:flex;
}

/* Desktop */
.split-item{
  width:50%;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:500px;
}

/* Mobile Fix */
@media (max-width:768px){

  .kumar-split-parallax{
    flex-direction:column !important; 
    height:auto !important;   /* important */
  }

  .split-item{
    width:100% !important;
    min-height:300px;
  }

}

@media (max-width:768px){

  .divider-text::before, .divider-text::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 14% !important;
    height: 1px;
    background: #fff;
}

.split-content{
  text-align:center;
  padding:20px;
}

.split-content h2{
  font-size:26px !important;
}

.split-content p{
  font-size:14px;
}

}



.kumar-footer{
  background:#724604;
  color:#fff;
  padding-top:70px;
}

.footer-container{
  width:90%;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
  padding-bottom:50px;
}

.footer-col h3{
  font-family:'Playfair Display', serif;
  font-size:28px;
  margin-bottom:20px;
}

.footer-col h4{
  margin-bottom:20px;
  font-size:18px;
}

.footer-col p a{
  font-size:16px;
  line-height:1.6;
color:#fff; text-decoration: none;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  text-decoration:none;
  color:#fff;
  font-size:16px;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#8b5e3c;
}

.footer-social{
  margin-top:20px;
}

.footer-social a{
  display:inline-block;
  margin-right:10px;
  padding:8px 12px;
  border:1px solid #fff;
  border-radius:50%;
  font-size:12px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#8b5e3c;
  border-color:#8b5e3c;
}

.footer-bottom{
  text-align:center;
  padding:20px;
  background:#111;
  font-size:16px;

}






@media(max-width:992px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-col{
    text-align:center; padding-left:15px; padding-right: 15px;
  }
}






.kumar-split-parallax{
  display:flex;
  height:90vh;
  overflow:hidden;
}

/* Each Half */
.split-item{
  position:relative;
  width:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
}

/* Background Zoom Animation */
.split-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  animation:zoomSlow 20s linear infinite;
  z-index:0;
}

/* Assign Images */
.left .split-bg{
  background-image:url('../images/awning-banner.jpg');
}

.right .split-bg{
  background-image:url('../images/Upholstery.webp');
}

/* Dark Overlay */
.split-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.3)
  );
  z-index:1;
}

/* Content */
.split-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:350px;
  animation:fadeUp 1.2s ease forwards;
}

.split-content h2{
  font-size:48px;
  font-family:'Playfair Display', serif;
  margin-bottom:16px;
}

.split-content p{
  font-size:16px;
  margin-bottom:20px;
}

.split-link{
  text-decoration:none;
  color:#fff;
  border-bottom:1px solid #fff;
  padding-bottom:5px;
  transition:0.3s;
}

.split-link:hover{
  opacity:0.7;
}

/* Animations */
@keyframes zoomSlow{
  0%{ transform:scale(1); }
  100%{ transform:scale(1.1); }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}




.section-divider{

  width:100%;
  background:#724604;
}


.divider-text{
  text-align:center;
  padding:40px 0;
  font-size:13px;
  letter-spacing:3px;
  color:#fff;
  position:relative;
}

.divider-text::before,
.divider-text::after{
  content:"";
  position:absolute;
  top:50%;
  width:35%;
  height:1px;
  background:#fff;
}

.divider-text::before{ left:0; }
.divider-text::after{ right:0; }





.blinds-bg{
  background-image:url('../images/blinds-banner.jpg');
}

.curtain-bg{
  background-image:url('images/curtain-fabric.jpg');
}


.lux-divider{
  position:relative;
  text-align:center;
  padding:60px 0;
  background:#fff;
}

.lux-divider span{
  font-size:14px;
  letter-spacing:4px;
  color:#8b5e3c;
  font-weight:500;
  position:relative;
  padding:0 20px;
}

/* Side Lines */
.lux-divider::before,
.lux-divider::after{
  content:"";
  position:absolute;
  top:50%;
  width:35%;
  height:1px;
  background:linear-gradient(
    to right,
    transparent,
    rgba(139,94,60,0.6)
  );
}

.lux-divider::before{
  left:0;
}

.lux-divider::after{
  right:0;
  background:linear-gradient(
    to left,
    transparent,
    rgba(139,94,60,0.6)
  );
}






.kumar-testimonial{
  padding:100px 5%;
  background:#f8f5f0;
  text-align:center;
}

.testimonial-header span{
  font-size:13px;
  letter-spacing:3px;
  color:#8b5e3c;
}

.testimonial-header h2{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-top:16px;
  margin-bottom:60px;
}

/* Slider */
.testimonial-slider{
  overflow:hidden;
  max-width:900px;
  margin:auto;
}

.testimonial-track{
  display:flex;
  transition:0.6s ease;
}

.testimonial-card{
  min-width:100%;
  padding:0 40px;
}

.testimonial-card p{
  font-size:20px;
  line-height:1.7;
  margin-bottom:25px;
  font-style:italic;
  color:#333;
}

.testimonial-card h4{
  font-size:18px;
  margin-bottom:5px;
}

.testimonial-card span{
  font-size:14px;
  color:#222;
}

@media(max-width:768px){

  .testimonial-header h2{
    font-size:28px;
  }

  .testimonial-card p{
    font-size:16px;
  }

}

.testimonial-nav{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
}

.test-btn{
  width:45px;
  height:45px;
  border-radius:50%;
  border:1px solid #8b5e3c;
  background:transparent;
  color:#8b5e3c;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.4s ease;
}

.test-btn:hover{
  background:#8b5e3c;
  color:#fff;
  transform:translateY(-3px);
}

 .enquire{display: none;}








 /* FLOATING CONTACT */
.floating-contact{
  position:fixed;
  left:20px;
  bottom:30px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

.float-btn{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#fff;
  box-shadow:0 5px 16px rgba(0,0,0,0.25);
  transition:0.3s;
}

.call{
  background:#007bff;
}

.whatsapp{
  background:#25D366;
}

.float-btn:hover{
  transform:scale(1.1);
}


/* BACK TO TOP */
#backToTop{
  position:fixed;
  right:20px;
  bottom:30px;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:#8b5e3c;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  display:none;
  z-index:9999;     padding: 10px 16px;
  box-shadow:0 5px 16px rgba(0,0,0,0.25);
}

#backToTop:hover{
  background:#000;
}





.blind-card{
position:relative;
overflow:hidden;
border-radius:10px;
}

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

/* overlay */

.blind-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
color:#fff;
padding:20px;
transition:0.4s;
}

/* default state */

.blind-overlay p,
.blind-overlay .blind-btns{
opacity:0;
max-height:0;
overflow:hidden;
transition:0.4s; line-height: 1.4; font-size: 16px;
}

/* hover state */

.blind-card:hover .blind-overlay p,
.blind-card:hover .blind-overlay .blind-btns{
opacity:1;
max-height:200px;
margin-top:10px;
}

/* title style */

.blind-overlay h3{
margin:0;
font-size:22px;
font-weight:600;
}

/* hover */

.blind-card:hover img{
transform:scale(1.1);
}

.blind-card:hover .blind-overlay{
opacity:1;
}



.zoom-close{
position:absolute;
top:10px;
right:20px;
font-size:32px;
color:#fff;
background:none;
border:none;
cursor:pointer;
z-index:10;
}

.modal-content{
border:none;
}

.image-modal .modal-content{
background:transparent;
border:none;
box-shadow:none;
text-align:center;
}

.image-modal .modal-dialog{
max-width:none;
}

#modalImage{
max-width:90vw;
max-height:90vh;
width:auto;
height:auto; border:4px solid #fff;
}

.zoom-close{
position:absolute;
top:16px;
right:20px;
font-size:34px;
color:#fff;
background:none;
border:none;
cursor:pointer;
z-index:10;
}
.enquiry{color:#fff; text-decoration: none;}

.breadcrumb-hero{
background:url(../images/banner1.jpg) center/cover no-repeat;
height:420px;
position:relative;
display:flex;
align-items:center;
}

.breadcrumb-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
}

.breadcrumb-hero .container{
position:relative;
z-index:2;
color:#fff; top: 90px;
}

.hero-title{
font-size:50px;
font-weight:600;
margin-bottom:10px;
}

.hero-subtitle{
font-size:18px;
margin-bottom:25px;
opacity:0.9;
}

/* menu */

.hero-menu a{
display:inline-block;
padding:8px 18px;
margin:5px;
border-radius:30px;
background:rgba(255,255,255,0.2);
color:#fff;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.hero-menu a:hover{
background:#8b5e3c;
}


@media(max-width:768px){

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

.breadcrumb-hero{
height:300px;
}

}







.enquiry-modal{
border-radius:10px;
padding:20px;
position:relative;
}

.close-btn{
position:absolute;
top:10px;
right:16px;
font-size:28px;
background:none;
border:none;
cursor:pointer;
}

.enquiry-modal h4{
margin-bottom:20px;
font-weight:600;
text-align:center;
}

.enquiry-btn{
color:#fff;
text-decoration:none;
font-size:14px;
}








.upholstery-section img{
border-radius:6px;
width:100%;
}

.section-title{
font-size:40px;
font-weight:700;
margin-bottom:16px;  margin-top:40px;
}

.section-title span{
background:#cfe6f6;
padding:5px 12px;
}

.section-text{
font-size:16px;
line-height:1.7;
margin-bottom:16px;
color:#222;
}

.highlight-text{
color:#c68b3c;
font-weight:600;
margin-bottom:16px;
}

.feature-list{
list-style:none;
padding:0;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-bottom:20px;
}

.feature-list li{
font-size:14px;
color:#222;
}

.partner-title{
margin-bottom:10px;
font-weight:600;
}

.partner-logos img{
height:35px;
margin-right:16px;
}







.awnings-section{
background:#fafafa;
}

.section-title{
font-size:38px;
font-weight:700;
margin-bottom:5px;
}

.section-subtitle{
color:#b57932;
margin-bottom:16px;
font-weight:600;
}

.section-text{
font-size:16px;
line-height:1.7;
color:#222;
margin-bottom:10px;
}

.awnings-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-top:16px;
font-size:14px;
color:#333;
}

.awnings-img img{
border-radius:8px;
}





.aluminium-windows{
background:#f7f7f7;
}

.section-title{
font-size:32px;
font-weight:600;
margin-bottom:16px;
}

.window-features{
list-style:none;
padding:0;
margin-top:16px;
}

.window-features li{
margin-bottom:8px;
font-size:16px;
}

.window-btn{
background:#1f4f8b;
color:#fff;
padding:10px 25px;
border-radius:4px;
margin-top:16px;
}

.window-btn:hover{
background:#163c6a;
color:#fff;
}








.aluminium-doors{
background:#f7f7f7;
}

.door-title{
font-size:32px;
font-weight:600;
margin-bottom:16px;
color:#222;
}

.door-img img{
border-radius:8px;
}

.door-features{
list-style:none;
padding:0;
margin-top:16px;
}

.door-features li{
font-size:16px;
margin-bottom:8px;
}

.door-btn{
display:inline-block;
margin-top:16px;
padding:10px 25px;
background:#1f4f8b;
color:#fff;
border-radius:4px;
text-decoration:none;
}

.door-btn:hover{
background:#163c6a;
color:#fff;
}










.who-we-are{
padding:100px 20px;
text-align:center;
background:#f6f6f6;
}

.who-we-are .container{
max-width:900px;
margin:auto;
}

.who-we-are h2{
font-size:42px;
font-weight:600;
margin-bottom:30px;
color:#7a4b2a;
}

.who-we-are p{
font-size:16px;
line-height:1.8;
color:#222;
margin-bottom:16px;
}


.kumar-story{
position:relative;
background:url("../images/banner1.jpg") center/cover no-repeat;
padding:120px 0;
color:white;
}

.story-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.story-content{
position:relative;
z-index:2;
}

.story-title{
font-size:48px;
font-weight:700;
margin-bottom:20px;
}

.story-content p{
font-size:16px;
line-height:1.8;
color:#f1f1f1;
margin-bottom:16px;
}



.kumar-vision{
padding:100px 0;
background:#fafafa;
}

.vision-img{
overflow:hidden;
border-radius:10px;
}

.vision-img img{
width:100%;
transition:0.5s;
}

.vision-img img:hover{
transform:scale(1.05);
}

.vision-title{
font-size:38px;
font-weight:600;
margin-bottom:20px;
color:#7a4b2a;
}

.kumar-vision p{
font-size:16px;
line-height:1.8;
color:#222;
margin-bottom:16px;
}

.vision-btn{
display:inline-block;
margin-top:10px;
padding:12px 28px;
background:#7a4b2a;
color:white;
text-decoration:none;
border-radius:30px;
transition:0.3s;
}

.vision-btn:hover{
background:#000;
color:#fff;
}








.why-choose-kumar{
padding:100px 0;
background:#f6f3ef;
}

.why-card{
background:#fff;
padding:35px;
border-radius:16px;
height:100%;
position:relative;
transition:0.3s;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.why-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 35px rgba(0,0,0,0.1);
}

.why-icon{
position:absolute;
top:25px;
right:25px;
font-size:28px;
color:#8b5a3c;
}

.why-card h4{
font-size:20px;
margin-bottom:12px;
color:#222;
}

.why-card h4::after{
content:"";
display:block;
width:40px;
height:2px;
background:#8b5a3c;
margin-top:8px;
}

.why-card p{
font-size:16px;
line-height:1.7;
color:#222;
margin-top:16px;
}











.customization-section{
background-image: url("../images/sec-img.png");
background-size: cover;
background-position: center;
padding:120px 0;
position:relative;
}

/* overlay like reference */
.customization-section::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.85);
}

.customization-section .container{
position:relative;
z-index:2;
}

.custom-content{
max-width:500px;
padding:40px;
}

.custom-content h2{
font-size:42px;
margin-bottom:20px;
font-weight:600;
}

.custom-content p{
font-size:16px;
line-height:1.8;
color:#222;
margin-bottom:20px;
}

.custom-btn{
text-decoration:none;
color:#8b5a3c;
font-weight:500;
border-bottom:2px solid #8b5a3c;
padding-bottom:5px;
transition:0.3s;
}

.custom-btn:hover{
color:#000;
border-color:#000;
}





.contact-section{
padding:100px 0;
background:#f7f7f7;
}

.contact-heading h2{
font-size:40px;
margin-bottom:10px;
}

.contact-heading p{
color:#222;
margin-bottom:50px;
}

.contact-info{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-info h4{
margin-bottom:25px;
}

.info-item{
display:flex;
align-items:center;
margin-bottom:20px;
}

.info-item i{
font-size:22px;
color:#8b5a3c;
margin-right:15px;
}

.info-item a{
text-decoration:none;
color:#333;
}

.contact-form{
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px 15px;
margin-bottom:15px;
border:1px solid #F0F0F0;
border-radius:5px;
}

.contact-form button{
background:#8b5a3c;
color:#fff;
border:none;
padding:12px 30px;
border-radius:5px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#000;
}






.leading-brands{
padding:100px 0;
background:#f8f8f8;
}

.brand-heading h2{
font-size:38px;
font-weight:600;
margin-bottom:10px;
}

.brand-heading p{
color:#222;
margin-bottom:50px;
}

.brand-logos{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
align-items:center;
}

.client-logo{
background:#fff;
padding:20px;
border-radius:8px;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.client-logo img{
max-width:100%;



transition:0.3s;
}

.client-logo:hover img{

transform:scale(1.05);
}

.client-logo:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}


@media(max-width:992px){

.brand-logos{
grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:768px){

.brand-logos{
grid-template-columns:repeat(3,1fr);
gap:20px;
}

}

@media(max-width:480px){

.brand-logos{
grid-template-columns:repeat(2,1fr);
}

}





.blog-section{
padding:100px 0;
background:#f7f7f7;
}

.blog-heading h2{
font-size:38px;
margin-bottom:10px;
}

.blog-heading p{
color:#222;
margin-bottom:50px;
}

.blog-card{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
height:100%;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.blog-img img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:25px;
}

.blog-category{
font-size:12px;
font-weight:600;
color:#fff;
text-transform:uppercase;
}

.blog-content h4{
font-size:20px;
margin:10px 0;
}

.blog-content p{
font-size:14px;
color:#222;
line-height:1.6;
}

.blog-btn{
text-decoration:none;
color:#8b5a3c;
font-weight:500;
display:inline-block;
margin-top:10px;
}

.blog-btn:hover{
color:#000;
}





.blog-hero{
background:#f7f7f7;
padding:80px 0;
text-align:center;
}

.blog-breadcrumb{
font-size:14px;
margin-bottom:15px;
color:#222;
}

.blog-breadcrumb a{
text-decoration:none;
color:#8b5a3c;
}

.blog-hero h1{
font-size:40px;
font-weight:600;
max-width:900px;
margin:auto;
}

.blog-meta{
margin-top:10px;
color:#222;
font-size:14px;
}

.blog-detail{
padding:80px 0;
}

.blog-image img{
width:100%;
border-radius:10px;
margin-bottom:40px;
}

.blog-content{
max-width:850px;
margin:auto;
}

.blog-content p{
font-size:16px;
line-height:1.8;
color:#222;
margin-bottom:20px;
}

.blog-content h3{
margin-top:30px;
font-size:24px;
color:#222;
}






.interior-hero{
background:url("images/interior-blog.jpg") center/cover no-repeat;
height:420px;
position:relative;
display:flex;
align-items:center;
}

.interior-overlay{
background:rgba(0,0,0,0.55);
width:100%;
height:100%;
display:flex;
align-items:center;
}

.interior-overlay .container{
color:#fff;
}

.blog-category{
background:#8b5a3c;
padding:6px 12px;
font-size:12px;
border-radius:3px;
text-transform:uppercase;
}

.interior-hero h1{
font-size:40px;
margin-top:15px;
max-width:700px;
}

.blog-meta{
margin-top:10px;
color:#222;
}

.interior-article{
padding:90px 0;
}

.interior-article .lead-text{
font-size:20px;
line-height:1.7;
margin-bottom:30px;
color:#222;
}

.interior-article h3{
margin-top:30px;
font-size:24px;
}

.interior-article p{
font-size:16px;
line-height:1.8;
color:#222;
}



.door-overlay{
background:rgba(0,0,0,0.55);
width:100%;
height:100%;
display:flex;
align-items:center;
}

.door-overlay .container{
color:#fff;
}

.blog-category{
background:#8b5a3c;
padding:6px 12px;
font-size:12px;
border-radius:3px;
text-transform:uppercase;
}

.door-hero h1{
font-size:40px;
margin-top:15px;
max-width:700px;
}

.blog-meta{
margin-top:10px;
color:#222;
}

.door-article{
padding:90px 0;
}

.door-article .lead-text{
font-size:20px;
line-height:1.7;
margin-bottom:30px;
color:#222;
}

.door-article h3{
margin-top:30px;
font-size:24px;
}

.door-article p{
font-size:16px;
line-height:1.8;
color:#222;
}







.kl-products{
padding:100px 0;
background:#f7f7f7;
}

.kl-products-header{
text-align:center;
margin-bottom:60px;
}

.kl-products-header span{
font-size:12px;
letter-spacing:2px;
color:#8b5a3c;
display:block;
margin-bottom:10px;
}

.kl-products-header h2{
font-size:38px;
margin:10px 0;
}

.kl-products-header p{
max-width:650px;
margin:auto;
color:#222;
line-height:1.6;
}

/* GRID */

.kl-products-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.kl-product-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.kl-product-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* IMAGE */

.kl-product-img img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

/* TEXT AREA */

.kl-product-text{
padding:20px;
text-align:center;
background:#fff;
}

.kl-product-text h3{
font-size:18px;
margin-bottom:12px;
}

/* BUTTON */

.kl-view-btn{
display:inline-block;
padding:8px 20px;
border:1px solid #8b5a3c;
color:#8b5a3c;
border-radius:25px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.kl-view-btn:hover{
background:#8b5a3c;
color:#fff;
}

/* RESPONSIVE */

@media(max-width:1200px){

.kl-products-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:992px){

.kl-products-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.kl-products{
padding:70px 20px;
}

.kl-products-grid{
grid-template-columns:1fr;
}

.kl-products-header h2{
font-size:28px;
}

}