@font-face {
  font-family: "BYeKan";
  src: url("BYekan/BYekan.eot") format("eot");
  src: url("BYekan/BYekan.ttf") format("tff");
  src: url("BYekan/BYekan.woff") format("woff");
}
*{
    
    margin: 0;
      font-family: "BYeKan";
}
.feature-section {
  padding: 80px 20px;
  background-color: #ECE2C4;
}
.feature-wrapper{
    display: flex;
    gap: 20px;
}

.feature-image {
  flex: 1 1 40%;
  height: 380px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-text {
  flex: 1 1 50%;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  direction: rtl;
}

.feature-text h2 {
  color: #a89a6d;
  margin-bottom: 20px;
}

.text-box {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.5s ease;
 
}

.text-box.expanded {

    max-height: 1000px;
}

.extra-text {
  margin-top: 15px;
}

.toggleBtn {
  margin-top: 15px;
  background-color: #a89a6d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.toggleBtn:hover {
  background-color: #8c7b54;
}
.panel-specs {
 
  padding: 20px;

}

.panel-specs h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
}

.panel-specs ul {
  margin: 0;
  padding: 0;
 
}

.panel-specs ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.panel-specs ul li:last-child {
  border-bottom: none;
}
.panel-types h3,h4{
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (max-width:768px) {
  .feature-wrapper{
    flex-direction: column;
  }
  .feature-image {
  
    flex: none;
   
  }
 
  
}
@media(max-width:480px){
  .feature-image{
    height: 200px;
  }
  .text-box{
    max-height: 120px;
  }
}


.mini-gallery {
  width: 100%;
  overflow: hidden;
  text-align: center;
    background-color: #f5f0e6;
}
.mini-gallery h2{
    margin-block: 30px;
}

.gallery-slider {
  overflow: hidden;
  width: 100%;
  padding: 20px;
}

.gallery-track {
  display: flex;
  gap: 10px;
  will-change: transform;
    direction: ltr !important;
}


 .gallery-track img {
  flex: 0 0 calc((100% / 6) - 10px); 
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
 
}

@media (max-width: 1024px) {
  .gallery-track img {
    flex: 0 0 calc(100% / 4 - 10px);
  }
}



@media (max-width: 600px) {
  .gallery-track img {
    flex: 0 0 calc(100% / 2 - 10px);
  }
}
