* {
  /* margin: 0;
  padding: 0;
  box-sizing: border-box; */
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f7f7;
  color: #333;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  /* background: #f1f1f1; */
  background: #f8f9f5;
  border-bottom: 0.00001px solid #5F6B09;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}


.logo-circle {
  width: 50PX;
  height: 50PX;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #5F6B09;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-circle img {
  width: 80%;
  height: auto;
  display: block;
}

.site-name {
  font-size: 22px;
  font-weight: 600;
  color: #5F6B09;
}

.header nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #5F6B09;
}
.header nav a:hover{
  color: #9B5A13;
  text-decoration: underline;
}

.header-btns button {
  margin-left: 10px;
  padding: 8px 18px;
  border: none;
  border-radius: 20px;
  background: #5F6B09;
  color: #fff;
  cursor: pointer;
}
/* .header-btns button:hover{
 color: ;
} */

.header-btns .lang {
  background: #5F6B09;
  color: #fff;
}
.main-footer{
  background: #f8f9f5;
  color: #5F6B09;
  padding-top: 50px;
  border-top: 0.001px solid #5F6B09;
  /* border:0px solid #5F6B09; */
}

.footer-container{
  width: min(1100px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

.footer-col h4{
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p{
  font-size: 14px;
  line-height: 1.6;
  color: #5F6B09;
}

.footer-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  
}

.footer-logo img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-col ul{
  list-style: none;
  padding: 0;
}

.footer-col ul li{
  margin-bottom: 8px;
}

.footer-col ul li a{
  text-decoration: none;
  color: #5F6B09;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover{
  color: #333;
  
}


.footer-bottom{

  text-align: center;
  padding: 15px;
  font-size: 13px;
}

/* Responsive Footer */
@media (max-width: 900px){
  .footer-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo{
    justify-content: center;
  }
  .social-icons{
    justify-content: center;
  }
}

/*Language*/
html[dir="rtl"]{ direction: rtl; }
.lang-ar{ display:none; font-family:'Cairo', sans-serif; }
.lang-en{ display:inline; }

body.ar .lang-ar{ display:inline; }
body.ar .lang-en{ display:none; }

/*Responsive Header*/
@media (max-width: 900px){
  .header{
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 4%;
  }
  .logo-area{
    justify-content: center;
  }
  .header nav{
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }
}
@media (max-width: 768px) {

  .header {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
    text-align: center;
  }

  .logo-area {
    justify-content: center;
  }

  .header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header nav a {
    margin: 5px 10px;
  }

  .header-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header-btns button {
    margin-left: 0;
  }
}


