* {
  font-family: "BYeKan";
  box-sizing: border-box;
  
}

@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");
}
body{
    margin: 0;
}
/* 
header{
    
    display: flex;
    padding-inline: 5%;
    justify-content: space-between;
    align-items: center;
      background-color: #e4d5a2;
      width: 100%;

}
.phone-number-container button{
    border: none;
    background-color:  #F0E68C ;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    color: #222;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
.phone-number-container button:hover{
    background-color: #dac508;
}

.menu-logo-container{
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-menu{
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    
}
.main-menu li{
    list-style: none;

}
.main-menu a{
    text-decoration: none;
    color: #63666A;
    padding:5px ;
    
}
.main-menu a:hover{
    padding: 5px;
    text-decoration: underline black;
    
} */


.services-slide {
  background-color: #f9f5e9;
  padding-inline: 5%;
  padding-block: 5%;
}

.services-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
 
}

.services-title h2 {
  font-size: 28px;
  color: #3b3b3b;
  margin-bottom: 20px;
  margin: 0;
}

.services-title p {
  font-size: 16px;
  color: #63666A;
  line-height: 1.8;
}
.service-grid a {
    text-decoration: none;
    display: flex;
}

.services-card-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.services-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  direction: rtl;
  position: relative;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.services-card span {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #7a5c2e;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-card h3 {
  font-size: 20px;
  color: #3b3b3b;
  margin-bottom: 12px;
}

.services-card p {
  font-size: 14px;
  color: #63666A;
  line-height: 1.7;
}

.services-card.active {
  border: 2px solid #7a5c2e;
}


.service-gallery {
  background-color: #fff;
  padding-inline: 5%;
  padding-block: 5%;
  text-align: center;
}

.service-gallery h2 {
  font-size: 28px;
  color: #3b3b3b;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #f9f5e9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-item h3 {
  font-size: 18px;
  color: #7a5c2e;
  margin: 16px 0 8px;
}

.service-item p {
  font-size: 14px;
  color: #63666A;
  padding: 0 16px 20px;
  line-height: 1.7;
}


@media (max-width: 768px) {
  .service-gallery {
    padding-inline: 5%;
    padding-block: 10% 5%;
  }

  .service-gallery h2 {
    font-size: 6vw;
    margin-bottom: 30px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-item img {
    height: 160px;
  }

  .service-item h3 {
    font-size: 5vw;
    margin: 12px 0 6px;
  }

  .service-item p {
    font-size: 4vw;
    padding: 0 12px 16px;
    line-height: 1.8;
  }
}


@media (max-width: 480px) {
  .service-gallery h2 {
    font-size: 7vw;
  }

  .service-item img {
    height: 140px;
  }

  .service-item h3 {
    font-size: 5.5vw;
  }

  .service-item p {
    font-size: 4.5vw;
  }
}




.testimonial-section {
  background-color: #f9f5e9;
  text-align: center;
  padding-block:5% ;
 
}

.testimonial-section h2 {
  font-size: 24px;
  color: #3b3b3b;
  margin-bottom: 30px;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  direction: rtl;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 300px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.testimonial-card p {
  font-size: 15px;
  color: #63666A;
  line-height: 1.8;
  margin-bottom: 12px;
}

.testimonial-card span {
  font-size: 14px;
  color: #7a5c2e;
  font-weight: bold;
}


.feature-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.feature-section h2 {
  font-size: 28px;
  color: #3b3b3b;
  margin-bottom: 50px;
}

.feature-list {
  display: flex;
  justify-content: space-between;
  gap: 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1 1 220px;
  direction: rtl;
  padding: 30px 20px;
  border-left: 1px solid #ddd;
  transition: background-color 0.3s ease;
}

.feature-card:first-child {
  border-left: none;
}

.feature-card:hover {
  background-color: #f9f5e9;
}

.feature-card h4 {
  font-size: 18px;
  color: #7a5c2e;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #63666A;
  line-height: 1.7;
}


.service-contact-section {
  background: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #222;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: right;
}

.form-group label {
  font-weight: 600;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #7a5c2e;
  outline: none;
}

.form-btn {
  background-color: #7a5c2e;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-btn:hover {
  background-color:  #917955;
}




footer{
background-color:#e4d5a2 ;
display: flex;
flex-direction: column;
padding-inline: 5%;

}
.footer-info-box{
    display: flex;
    direction: rtl;
    padding-block: 5% 3%;
   
}
.footer-info-box h4{
    font-size: 25px;
}
.footer-about p{
    color: 		#3b3b3b;
}
.footer-about-logo{
    display: flex;
}
.footer-links a{
    color: 	#3b3b3b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover{
    color: #816e02;
}
.footer-about,
.footer-links,
.footer-contact,
.footer-social{
    width: 100%;
    padding: 2%;
}

.footer-contact p{
    color: 	#3b3b3b;
}
.footer-social a{
    font-size: 30px;
    margin-left: 10px;
    color: 	#3b3b3b;
    transition: color 0.3s ease;

}
.footer-social a:hover{
    color: 		#816e02;
}

.footer-legal-box{
    border-top: 2px solid darkgray;
}
.footer-legal-box p{
    margin: 0;
    text-align: center;
    padding-block:3% 1%;
}