/* ریست اولیه و فونت */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* هدر */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #4FC3F7;
    color: #fff;
    flex-wrap: wrap;
}

.logo img {
    width: 200px;
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.nav-links a:hover {
    background-color: #fff;
    color: #333;
}

.circle-link a {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
}

/* همبرگر منو */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
}

/* ریسپانسیو هدر */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #333;
        width: 100%;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .hamburger {
        display: flex;
    }

    .circle-link {
        order: 3;
    }
}

/* بخش اصلی اول */
.asli {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-top: 5%;
    margin-right: 5%;

}


.imge {
    flex: 1 1 500px;
    margin-left: 2%;

}

.imge img {
    width: 46em;
    height: auto;

}

.text {
    flex: 1 1 500px;
    margin-right: 1%;
    height: 250px;
    width: 300px;
    text-align: right;
}

.text h1 {
    margin-bottom: 12px;
    text-align: right;
}

/* بخش دوم درباره ما */
.asli2 {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    flex-direction: row; 
    align-items:center;
    margin-top: 5%;
    margin-right: 5%;
    
}

.iconone {
    flex: 1 1 500px;
    margin-right: 5%;
    margin-left: 2%;
}

.iconone img {
    width: 100%;
    height: auto;
}

.texticonone {
    flex: 1 1 500px;
    min-width:  300px;
    margin-left: 3%;
    text-align: right;
}

.texticonone h1 {
text-align: right;
  margin-bottom: 12px;
}

/* ریسپانسیو موبایل */
@media (max-width: 749px) {
    .asli, .asli2 {
        flex-direction: column; /* بلوک‌ها عمودی شوند */
        text-align: center;




    }

    .text, .texticonone {
        text-align: center;
        margin: 10px 0;
        order: -1;
        width: 704px;
        height: 20px;
    }

    .imge img, .iconone img {
        width: 100%;
        height: auto;
    }
.text{
    height: 200px;
}

}





/* دکمه بیشتر بدانید 2 */

 
.shadow__btn {
  padding: 10px 20px;
  border: none;
  font-size: 17px;
  color: #fff;
  border-radius: 7px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
  margin-top: 5%;
}

.shadow__btn {
  background: #4FC3F7;
  box-shadow: 0 0 25px #4FC3F7;
}

.shadow__btn:hover {
  box-shadow: 0 0 5px #4FC3F7,
              0 0 25px #4FC3F7,
              0 0 50px #4FC3F7,
              0 0 100px #4FC3F7;
}

.shadow__btn a {
  text-decoration: none;
  color: white;
}





.banerr img{
    width: 1400px;
    height: auto;

    


}

@media screen and (max-width: 900px){
      .banerr img{
        width: 700px;   
    }  
}







@media screen and (max-width: 768px) {


    .banerr img{
        width: 260px;   
    }




}

@media only screen and (max-width: 768px){
    .banerr img{
        content: url('بند 2 موبایل.png');
        height: 320px;
        width: 768px;
    }
}



























