* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
   font-family: "Tajawal", sans-serif;
}

:root {
  --second-color: #835d29;
 --main-color : #c57507;
  --dark-color: #000D44;
  --parg-color: #666666;
  --name-item: #0066c0;
  --drak-red: #d01418;
  --border-color: #6666662a;
  --border: 1px solid #6666662c;
}


body {
  direction: rtl;
  

}

html {
  scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,h6{
  color: var(--dark-color);
}
p {
  color: var(--parg-color);
}

.container{
  width: 75%;
  margin: auto
}
section{
  padding: 50px 0;
}
.btn{
  padding: 13px 40px;
  background: var(--main-color);
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid var(--main-color);
  transition: 0.3s ease;
  scale: 1;
}
.btn:hover{
  scale: 1.2;
}


.top_sec{
  text-align: center;
  margin-bottom: 50px;
}
.top_sec h3{
  background: var(--main-color);
  width: max-content;
  margin: 0 auto 30px;
  padding: 10px 30px;
  border-radius: 30px;
  color: #fff;
}
.top_sec p{
  font-size: 25px;
  font-weight: 600;
  color: var(--dark-color);
}

 .wood-hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
              url('../img/home.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 5vw;
}

.wood-hero-container {
  width: 100%;
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 4vw;
}

.wood-hero-content {
  max-width: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInContent 1.2s forwards 0.4s;
}

@keyframes fadeInContent {
  to { opacity: 1; transform: translateY(0); }
}

.top-location {
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  color: #c57507;
  font-weight: 700;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  white-space: nowrap;
}

.location-icon-wrapper {
  display: inline-flex;
  animation: pulseRotate 5s infinite ease-in-out;
}

.location-icon {
  width: 1.9em;
  height: 1.9em;
  fill: currentColor;
}

@keyframes pulseRotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.25) rotate(12deg); }
}

.location-text {
  color: #f0f0f0;
}

.location-text .city-link {
  color: #c57507;
  text-decoration: none;
  transition: all 0.3s;
}

.location-text .city-link:hover,
.location-text .city-link:focus {
  color: #ffca28;
  text-decoration: underline;
}

.wood-hero-title {
  font-size: clamp(3.2rem, 10vw, 8rem);
  font-weight: 900;
  margin-bottom: 1.8rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-90px);
  animation: titleDrop 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards 0.5s;
}

.wood-hero-title .main-text {
  color: #fff;
}

@keyframes titleDrop {
  to { opacity: 1; transform: translateY(0); }
}

.highlight {
  color: #c57507;
}

.wood-hero-subtitle {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 2.2rem;
  color: #eee;
  opacity: 0;
  transform: translateX(120px);
  animation: slideFromRight 1.1s ease-out 0.7s forwards;
}

@keyframes slideFromRight {
  to { opacity: 1; transform: translateX(0); }
}

.wood-hero-desc {
  font-size: clamp(1.15rem, 3.5vw, 1.7rem);
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  color: #ddd;
  line-height: 1.9;
  opacity: 0;
  transform: translateX(90px);
  animation: slideFromRight 1.2s ease-out 0.9s forwards;
}

.wood-hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
  opacity: 0;
  transform: scale(0.85);
  animation: popUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1.3s forwards;
}

@keyframes popUp {
  to { opacity: 1; transform: scale(1); }
}

.wood-btn {
  padding: 0.9rem 2.2rem;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  text-align: center;
  box-sizing: border-box;
}

.wood-btn svg {
  width: 1.4em;
  height: 1.4em;
  fill: currentColor;
}

.wood-btn-primary {
  background: #c57507;
  color: white;
}

.wood-btn-primary:hover {
  background: #d08a0a;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(197, 117, 7, 0.4);
}

.wood-btn-outline {
  background: transparent;
  color: #c57507;
  border: 2px solid #c57507;
}

.wood-btn-outline:hover {
  background: #c57507;
  color: white;
  transform: translateY(-4px);
}

/* ────────────── Responsive ────────────── */

@media (max-width: 768px) {
  .wood-hero {
    padding: 60px 5vw;
    min-height: 90vh;
  }
  
  .wood-hero-buttons {
    gap: 1rem;
    flex-wrap: nowrap;
  }
  
  .wood-btn {
    min-width: 45%;
    padding: 0.85rem 1.5rem;
    font-size: clamp(1rem, 3.5vw, 1.15rem);
  }
}

@media (max-width: 480px) {
  .wood-hero-buttons {
    gap: 0.9rem;
    flex-wrap: nowrap;
  }
  
  .wood-btn {
    min-width: 48%;
    padding: 0.8rem 1.2rem;
    font-size: 1.05rem;
  }
  
  /* إذا الشاشة صغيرة جدًا (اختياري - يمكنك تشغيله لو حابب) */
  /* @media (max-width: 360px) {
    .wood-hero-buttons {
      flex-direction: column;
      gap: 1rem;
    }
    .wood-btn {
      min-width: 100%;
    }
  } */
}

.wood-stats {
  display: flex;
  justify-content: center;
  gap: clamp(3rem, 6vw, 8rem);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInStats 1.3s forwards 1.7s;
}

@keyframes fadeInStats {
  to { opacity: 1; }
}

.stat-item {
  text-align: center;
  min-width: 160px;
  opacity: 0;
  transform: translateY(50px);
  animation: statRise 0.9s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 1.8s; }
.stat-item:nth-child(2) { animation-delay: 2s; }
.stat-item:nth-child(3) { animation-delay: 2.2s; }

@keyframes statRise {
  to { opacity: 1; transform: translateY(0); }
}

.stat-number {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #c57507;
  line-height: 1;
}

.stat-text {
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  color: #bbb;
  margin-top: 12px;
}
/* about section */

.about .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .container .div_img{
  width: 40%;
  text-align: left;
  position: relative;
}

.about .container .div_img img{
  width: 100%;
  border-radius: 40px;
}
.about .container .div_img .div_cont{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 20px 10px 80px 5px;
  width: 250px;
  border: 2px solid #c57507;
  right: -125px;
  animation: aboutan 6s infinite ease;
}
@keyframes aboutan{
  0%{
      top: 40%;
  }
  50%{
      top: 60%;
  }
  100%{
      top: 40%;
  }
}



.about .container .div_img .div_cont .div_Svg{
  width: 70px;
  height: 70px;
  padding: 15px;
  background: #e7e7e7;
  border-radius: 100%;
  transition: 0.3s ease-in-out;
  text-align: center;
  margin: auto;
  margin-bottom: 10px;
}
.about .container .div_img .div_cont:hover .div_Svg{
  background: var(--main-color);
}
.about .container .div_img .div_cont .div_Svg svg{
  width: 100%;
  fill: var(--dark-color);
  transition: 0.3s ease-in-out;
}
.about .container .div_img .div_cont:hover .div_Svg svg{
  fill: #fff;
}
.about .container .div_img .div_cont span{
  color: #c57507;
  font-size: 20px;
  font-weight: bold;
}
.about .container .div_img .div_cont h3{
  font-size: 16px;
  color: var(--dark-color);
  margin-top: 15px;
}

.about .text{
  width: 45%;
}

.about .text h5{
  color: #c57507;
  font-size: 20px;
}
.about .text h2{
  font-size: 50px;
  margin-top: 20px;
}
.about .text p{
  margin-top: 30px;
  line-height: 1.7; 
  font-size: 22px;   
}
.about .text .phone{
  background: #dbe6f6;
  padding: 15px 25px 15px 80px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-left: 2px solid var(--main-color);
  width: max-content;
  margin: 30px 0 50px;
}
.about .text .phone svg{
  width: 70px;
}
.about .text .phone p{
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--dark-color);
}

.about .text .phone h6{
  font-size: 30px;
  font-weight: bold;
}











/* hatem section */

.hatem_sec .container{
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
}

.hatem_sec .container .box{
  width: 22%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.hatem_sec .container .box:nth-child(2),
.hatem_sec .container .box:nth-child(4){
  top: -60px;
}
.hatem_sec .container .box:nth-child(2) .div_img::after{
  content: "2";
}
.hatem_sec .container .box:nth-child(3) .div_img::after{
  content: "3";
}
.hatem_sec .container .box:nth-child(4) .div_img::after{
  content: "4";
}

.hatem_sec .container .box .div_img{
  background: var(--second-color);
  width: 50%;
  margin: auto;
  padding: 40px;
  border-radius: 30px;
  position: relative;
}

.hatem_sec .container .box .div_img::after{
  position: absolute;
  content: "1";
  width: 40px;
  height: 40px;
  top: -15px;
  right: -15px;
  background: var(--main-color);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  border: 2px solid #ffffff;
} 

.hatem_sec .container .box .div_img img{
  width: 100%;
}

.hatem_sec .container .box h3{
  font-size: 20px;
}
.hatem_sec .container .box p{
  font-size: 18px;
  line-height: 1.6;
}












/* small section */ 

.sm_sec{
  position: relative;
  padding: 100px 0;
  width: 100%;
  background: #fff;
  text-align: center;
}
.sm_sec .container{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sm_sec .container .box{
  width: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sm_sec .container .box .div_img{
  mask-image: url(../img/process_box_bg.png);
  height: 156px;
  mask-size: 100% 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;

}
.sm_sec .container .box .img_border{
  background: url(../img/dotted_bg_1.png);
  width: 154px;
  height: 172px;
  padding: 8px 8px 8px 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-bottom: 30px;

}
.sm_sec .container .box .img_border p{
  background: var(--second-color);
  width: 36px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: calc(50% - 18px);
  -webkit-clip-path: path("M16.8293 0.872822L1.15962 9.76303C0.441905 10.1702 0 10.9214 0 11.7342V29.5255C0 30.3435 0.447543 31.0987 1.1725 31.5039L16.8486 40.2672C17.5622 40.6662 18.4378 40.6661 19.1514 40.2671L34.8278 31.5011C35.5526 31.0957 36 30.3407 36 29.5228V11.8415C36 11.0326 35.5623 10.2845 34.8501 9.87582L19.1674 0.878402C18.4458 0.464403 17.5529 0.46229 16.8293 0.872822Z");
  clip-path: path("M16.8293 0.872822L1.15962 9.76303C0.441905 10.1702 0 10.9214 0 11.7342V29.5255C0 30.3435 0.447543 31.0987 1.1725 31.5039L16.8486 40.2672C17.5622 40.6662 18.4378 40.6661 19.1514 40.2671L34.8278 31.5011C35.5526 31.0957 36 30.3407 36 29.5228V11.8415C36 11.0326 35.5623 10.2845 34.8501 9.87582L19.1674 0.878402C18.4458 0.464403 17.5529 0.46229 16.8293 0.872822Z");
  text-align: center;
  margin: 0;
}
.sm_sec .container .box:nth-child(2) .img_border p,
.sm_sec .container .box:nth-child(4) .img_border p{
  background: var(--main-color);
}
.sm_sec .container .box .img_border img{
  width: 100%;
  height: 100%;
}
.sm_sec .container .box .content h4{
  font-size: 25px;
  margin-bottom: 20px;
}
.sm_sec .container .box .content p{
  line-height: 1.7;
}


/* Services */

.services {
  background: #e0effb;
}
.services .boxs{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}


.services .boxs .box{
  width: 31%;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 5px 5px 12px #9191914b;
  transition: 0.3s ease-in-out;
  margin-bottom: 30px;
}


.services .boxs .box .img_absolute{
  position: absolute;
  bottom: 0;
  left: 0;
}

.services .boxs .box
.services .boxs .box:hover{
  box-shadow: 5px 5px 22px #5d5d5db8;
}
.services .boxs .box::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 4px;
  background: var(--main-color);
  transition: 0.3s ease-in-out;
}
.services .boxs .box:hover::after{
  width: 100%;
}
.services .boxs .box .div_img{
  position: relative;
}
.services .boxs .box .div_img .icons{
  position: absolute;
  background: #fff;
  z-index: 10;
  top: calc(100% - 30px);
  right: 20px;
  border-radius: 50%;
  overflow: hidden;
  padding: 15px;
  width: 60px;
  height: 60px;
  box-shadow: 5px 5px 8px #00000045;
  transition: 0.3s ease-in-out;
}
.services .boxs .box .div_img .icons img{
  width: 100%;
}
.services .boxs .box:hover .div_img .icons img{
  scale: 1 !important;
}
.services .boxs .box:hover .div_img .icons{
  background: var(--second-color);
}

.services .boxs .box .div_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  scale: 1;
  transition: 0.3s ease;
}
.services .boxs .box .div_img .img_serv{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
}
.services .boxs .box:hover .div_img img{
  scale: 1.1;
}

.services .boxs .box .content{
  padding: 40px 15px 40px;
}
.text_bg_gr{
  background: var(--second-color);
  width: max-content;
  position: relative;
  right: -15px;
  padding: 8px 15px 8px 25px;
  font-size: 15px;
  color: #fff;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  margin: 10px 0 20px;
}
.services .boxs .box h2{
  font-size: 24px;
  margin-bottom: 20px;
}
.services .boxs .box p{
  margin-bottom: 30px;
}


/* blog section */

.blog{
  background: #E0EFFB;
}
.blog .boxs{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog .boxs .box{
  width: 31%;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 5px 5px 12px #9191914b;
  transition: 0.3s ease-in-out;
}
.blog .boxs .box:hover{
  box-shadow: 5px 5px 22px #5d5d5db8;
}

.blog .boxs .box .div_img{
  position: relative;
  padding: 20px;
  border-radius: 10px;
}
.blog .boxs .box .div_img img{
  width: 100%;
  height: 100%;
  z-index: -1;
  scale: 1;
  transition: 0.3s ease;
  border-radius: 10px;
}
.blog .boxs .box .div_img .img_serv{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
}
.blog .boxs .box:hover .div_img img{
  scale: 1.1;
}

.blog .boxs .box .content{
  padding: 0px 15px 40px;
}
.blog .boxs .box h2{
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog .boxs .box p{
  margin-bottom: 30px;
  line-height: 1.6;
}







@media(max-width:1450px){
  .container{
      width: 90%;
  }
  .hatem_sec .container .box .div_img{
      padding: 30px;
  }
 
}

@media(max-width:1000px){

  .hero .container{
      flex-direction: column;
      justify-content: center;
      gap: 50px;
  }
  .hero .container .div_text{
      width: 100%;
  }
  .hero .container .div_img{
      width: 80%;
  }



  .about .container{
      flex-direction: column;
      gap: 80px;
  }
  .about .text{
      width: 100%;
      padding-right: 15px;
  }

  .about .container .div_img{
      width: 70%;
  }

  .about .container .div_img img{
      width: 100%;
  }
  .about .content ul li{
      font-size: 15px;
      margin-bottom: 10px;
  }
  .about .content ul li:last-child{
      margin-bottom: 40px;
  }
  












  .hatem_sec .container{
      flex-wrap: wrap;
      flex-direction: column;
      gap: 0;
      justify-content: space-between;
      align-items: flex-start;

  }
  .hatem_sec .container .box{
      flex-direction: row;
      width: 100%;
  }
 
  .hatem_sec .container .box:nth-child(2),
  .hatem_sec .container .box:nth-child(4){
      top: 0;
  }
  .hatem_sec .container .box .div_img{
      margin: 0;
      width: 90px;
      position: relative;
      right: 10px;
  }
  .hatem_sec .container .box{
      justify-content: space-between;
      text-align: right;
      margin-bottom: 50px;
      align-items: flex-start;
  }
  .hatem_sec .container .box h3{
      margin-bottom: 10px;
  }
  .hatem_sec .container .box .div_img{
      padding: 22px;
  }

  .hatem_sec .container .box .content{
      width: calc(100% - 120px);
  }
  .hatem_sec .container .box .div_img::before{
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 100%;
      width: 1px;
      height: 100px;
      border-left: 2px dashed #999;
  }
  .hatem_sec .container .box:last-child .div_img::before{
      border: 0px;
  }





  .sm_sec .container .box{
      width: 48%;
      margin-bottom: 40px;
  }
  
  .services .boxs .box{
      width: 49%;
      margin-bottom: 30px;

  }


  .blog .boxs .box{
      width: 49%;
      margin-bottom: 30px;
  }
}

@media(max-width:500px){
  .container{
      width: 95%;
  }
  .top_sec h3{
      font-size: 30px;
  }
  .top_sec p{
      font-size: 15px;
  }



  .hero{
      height: auto;
  }
  .hero .container{
      padding: 100px 0;
  }

  .hero .container .div_img{
      width: 100%;
  }
  .hero .div_text{
      text-align: center;
  }
  .hero .div_text h1{
      font-size: 35px;
  }
  .hero .div_text .div{
      flex-direction: column;
  }
  .hero .div_text h6{
      margin-inline: auto;
      font-size: 11px;
  }



  .about{
      padding-bottom: 100px;
  }
  .about .top_sec p{
      font-size: 22px;
  }

  .about .container .div_img{
      width: 100%;
  }
  .about .text .content{
      display: flex;
      flex-direction: column;
  }
  .about .container .div_img .div_cont{
      width: 200px;
  }
  @keyframes aboutan{
      0%{
          top: 100%;
          left: 10%;
          right: auto;
      }
      50%{
          top: 100%;
          left: 30%;
          right: auto;
      }
      100%{
          top: 100%;
          left: 10%;
          right: auto;
      }
  }

  .about .container .div_img .div_cont{
      padding: 20px 20px;
  }
  .about .container .div_img .div_cont .div_Svg{
      width: 60px;
      height: 60px;
      padding: 10px;
  }
  .about .container .div_img .div_cont span{
      font-size: 17px;
  }
  .about .container .div_img .div_cont h3{
      font-size: 14px;
      margin-top: 10px;
  }
  .about .text .phone{
      padding: 15px 20px 15px 20px;
  }
  .about .text .phone h6{
      font-size: 17px;
  }
  .about .text .phone svg{
      width: 60px;
  }
  .about .text .phone{
      gap: 15px;
  }










  .hatem_sec .container .box h3{
      font-size: 18px;
  }
  .hatem_sec .container .box p{
      font-size: 15px;
  }





  .sm_sec .container .box{
      width: 90%;
      margin: auto;
      margin-bottom: 40px;
  }





  .services .boxs {
      justify-content: center;
  }
  .services .boxs .box{
      width: 90%;
      margin-bottom: 30px;
  }
  .services .boxs .box .div_img .img_serv{
      height: 170px;
  }
  .services .boxs .box p{
      font-size: 20px;
  }
  .services .boxs .box h2{
      font-size: 20px;
      margin-bottom: 12px;
  }


  .blog .boxs {
      justify-content: center;
  }
  .blog .boxs .box{
      width: 90%;
      margin-bottom: 30px;
  }
  .blog .boxs .box .div_img .img_serv{
      height: 170px;
  }
  .blog .boxs .box p{
      font-size: 16px;
  }
  .blog .boxs .box h2{
      font-size: 23px;
      margin-bottom: 12px;
      font-weight: 500;
  }
}
footer .container .row h4 p{
  color: #fff;

}

/*انميشن */

/* منع خروج العناصر من حدود الشاشة */
 /* .container, .wrapper {
  overflow-y: hidden;
} */

/* إخفاء العناصر في البداية */
.anim, .box, .div_img, .content, .top_sec, .text, .div_text, .div_cont {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تأثيرات خاصة لكل سكشن */
.hero .shape {
  transform: translateY(20px) scale(0.95);
}

.hero .div_text {
  transform: translateX(-30px);
}

.hero .div_img {
  transform: translateX(30px);
}

.about .text {
  transform: translateX(-30px);
}

.about .div_img {
  transform: translateX(30px);
}

.hatem_sec .box:nth-child(odd) {
  transform: translateX(-20px);
}

.hatem_sec .box:nth-child(even) {
  transform: translateX(20px);
}

.services .box {
  transform: scale(0.95);
}

.sm_sec .box {
  transform: translateY(30px);
}

/* .blog .box:nth-child(odd) {
  transform: translateX(-20px);
} */

/* .blog .box:nth-child(even) {
  transform: translateX(20px);
} */

/* تحسين أنميشن الصور في blog و hatem_sec */
.blog .div_img, .hatem_sec .div_img {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 1.2s ease;
}

.visible .blog .div_img, .visible .hatem_sec .div_img {
  opacity: 1;
  transform: scale(1.03) translateY(0);
}

/* حالة الظهور */
.visible .anim, .visible .box, .visible .div_img, .visible .content, .visible .top_sec, .visible .text, .visible .div_text, .visible .div_cont {
  opacity: 1;
  transform: none;
}

/* تأثير خفيف للصور */
.hatem_sec .box .div_img img, .services .box .div_img img, .sm_sec .box .div_img img, .blog .box .div_img img {
  transition: transform 1s ease;
}

.visible .hatem_sec .box .div_img img, .visible .services .box .div_img img, .visible .sm_sec .box .div_img img, .visible .blog .box .div_img img {
  transform: scale(1.03);
}

/* تأثير hover للأزرار */
.btn, .btn_White, .linkes {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover, .btn_White:hover, .linkes:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(163, 117, 44, 0.3);
}

/* تأخير متدرج للعناصر */
.visible .anim:nth-child(1), .visible .box:nth-child(1), .visible .div_img:nth-child(1), .visible .content:nth-child(1) { transition-delay: 0.1s; }
.visible .anim:nth-child(2), .visible .box:nth-child(2), .visible .div_img:nth-child(2), .visible .content:nth-child(2) { transition-delay: 0.2s; }
.visible .anim:nth-child(3), .visible .box:nth-child(3), .visible .div_img:nth-child(3), .visible .content:nth-child(3) { transition-delay: 0.3s; }
.visible .anim:nth-child(4), .visible .box:nth-child(4), .visible .div_img:nth-child(4), .visible .content:nth-child(4) { transition-delay: 0.4s; }
.visible .anim:nth-child(5), .visible .box:nth-child(5), .visible .div_img:nth-child(5), .visible .content:nth-child(5) { transition-delay: 0.5s; }
.visible .anim:nth-child(6), .visible .box:nth-child(6), .visible .div_img:nth-child(6), .visible .content:nth-child(6) { transition-delay: 0.6s; }
.visible .anim:nth-child(7), .visible .box:nth-child(7), .visible .div_img:nth-child(7), .visible .content:nth-child(7) { transition-delay: 0.7s; }
.visible .anim:nth-child(8), .visible .box:nth-child(8), .visible .div_img:nth-child(8), .visible .content:nth-child(8) { transition-delay: 0.8s; }
.visible .anim:nth-child(9), .visible .box:nth-child(9), .visible .div_img:nth-child(9), .visible .content:nth-child(9) { transition-delay: 0.9s; }

/* الموبايل */
@media (max-width: 768px) {
  .anim, .box, .div_img, .content, .top_sec, .text, .div_text, .div_cont {
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero .shape, .hero .div_text, .hero .div_img, .about .text, .about .div_img,
  .hatem_sec .box, .services .box, .sm_sec .box, .blog .box {
    transform: translateY(30px);
  }

  .visible .anim, .visible .box, .visible .div_img, .visible .content, .visible .top_sec, .visible .text, .visible .div_text, .visible .div_cont {
    transform: none;
  }

  /* إصلاح سكشن البلوج */
  .blog {
    padding: 30px 15px;
  }

  .blog .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(30px) !important;
    margin-bottom: 20px;
  }

  .blog .div_img,
  .blog .text {
    width: 100%;
    max-width: 100%;
  }

  /* إصلاح سكشن الأرقام hatem_sec */
  .hatem_sec {
    padding: 40px 15px;
  }

  .hatem_sec .box {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
    transform: translateY(30px) !important;
  }

  .hatem_sec .div_img,
  .hatem_sec .text {
    width: 100%;
    max-width: 100%;
  }
}
