header{
    padding: 7px;
    position: fixed;
    width: 100%;
    z-index: 1;
    
}
*{
    scroll-behavior: smooth;
    text-align: center;
    /* font-weight: bold; */
    font-size: 18px;
}
:root {
    --color-1: rgb(22, 163, 168);
    --color-2: hsla(182, 82%, 38%, 1);
}


h1{
    text-transform: uppercase;
    padding: 30px 0px;
    font-weight: bold;
    color: white;
    font-size: 32px;
    
}
h3{
    font-size: 24px;
}
.btn{
    font-size: 16px;
}
span.title{
    color: wheat;
    border-bottom: 2px solid wheat ;
    font-size: 32px;
}





nav .navbar-brand{
    color: red;
    font-size: large;
    font-size: 32px;
    font-weight: bold;
}section nav{
    padding: 25px;  
}


nav a{
    color: white;
    font-size: 18px;
    text-transform:uppercase;
    padding: 5px;
 
}
nav .link a{
    color: red; 
    font-size: 15px !important;  
}

.navbar {
    background-color: #1a252f;
}


.gallrey img{
    width: auto;
    height: 300px;
}

nav .navbar-brand{
    font-size: large;
    font-size: 32px;
    font-weight: bold;
}
a .brand{
    color: red ;
}
a .brand span{
    color:#243c52;
}



.drop a{
    color: black;
}
.drop1 a{
    font-size: 18px;
    
}
.drop1{
    padding-top: 2px;
    
}
.menu a{
    cursor: pointer;    
}





.hero{
    padding-top: 150px;
    min-height: 80vh;
    background-color: var(--color-1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


#section2 img{
    width: 200px;
    padding-top: 30px;



}

h2 img{
    height: 70px;

}

#section3{
    height: auto;
    padding: 100px 0px;
    /* background-color: #95a5a6; */
    background-color: #243c52;
    background-attachment: fixed;
}
.about{
    height: auto;
    padding: 200px 0px;
    background-color: var(--color-1);
    color: white;
}




.skills{
    height: auto;
    padding: 200px 0px;
    
}

#section4{
    height: 100vh;
}
.con{
    display: flex;
    justify-content: center;
    
}

.card{
    height: 300px;
    margin: 8px 0px;
    overflow: hidden;
    transition: transform 0.3s ease; /* حركة ناعمة */


    
}
.card img{
    height: 220px;

   
}
.card .card-title{
    background-color: white;
    padding: 20px 0px;
   
}
.card:hover{
    transform: translatey(-10px); /* يتحرك لليسار 10px */
}



/************************ << progress >> **************************/
.progress{
    width: 100%;
    height: 17px;
    position: relative;
    background-color: white;
    margin: 10px;
   
}

.progress span{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: indianred;
    transition: width 0.3s linear;
  
}

.ProSection{
    /* background-color: #95a5a6; */
     background-color: var(--color-1);
}

.ProSection h5{
    padding-left: 10px;
}

.ProSection .pr{
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 20px;
}
.ProSection .pr h6{
    color: #243c52 !important;
}

footer{
    background-color: #1a252f;
    height: auto;
    padding: 130px 0px;
    color: white;
    
}

footer .container{
    text-align: left;
}
footer h2{
    text-transform: uppercase;
}
footer .title h2{
    text-align: left;
}
footer .title p{
    text-align: left;
    padding-bottom: 20px;
}
footer p{
    color: gray;
    font-weight: bold;
}



.copyright{
    background-color: #2c3e50;  
    height: 5vh;
    color: black;
    padding: 30px 0px;
    
}
.ProSection{

    padding: 100px 0px;
}
.about .box{
    display: flex;
 
}
.about .box img{
    width: 120px;
    height: 140px;
    padding-right: 10px;
}
.about .box .box-text p{
    text-align: left;
    
}


 i{
    font-size: 40px;
    padding: 5px;
    cursor: pointer;   
    overflow: hidden;
   
}
.media1 a{
    text-decoration: none;
    font-size: 32PX;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
    overflow: hidden;
  
    
}
.media1 a:hover{
       color: #00bcd4;
      transform: scale(1.2);
    
      
}



#section4{
    height: auto;
    padding: 200px 0px;
    display: flex;
    align-items: center;

}
input{
    padding: 10px;
    text-align: left;

}



/*============================= << typing >>=====================================*/

.typing-effect {
  font-size: 18px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  /* border-right: 3px solid rgb(247, 244, 244);  لمحاكاة مؤشّر الكتابة */
  animation: typing 10s steps(35) infinite, blink 0.75s step-end infinite;
}

@keyframes typing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
  100% {
    border-color: black;
  }
}








/*============================= << typing >>=====================================*/



/******************** loader **************/
/* Preloder */
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.5s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.whasap i{
    display: flex;
    justify-content: center;
    align-items: center;
}

/******************** loader **************/

@media(max-width:700px){
     .hero{
        padding-top: 200px;
        height: auto;
    }
    *{
        font-size: 16px;
        
    }
  
   
    .hero .text h1{
        font-size: 40px;
    }
   
   #section2 img{
    width: 140px;
    padding-top: 30px;


}
.btn{
    font-size: 14px;
}
footer h3{
    font-size: 17px;
}
h1{
    text-transform: uppercase;
    padding: 30px 0px;
    font-weight: bold;
    color: white;
    font-size: 25px;
    
}
span.title{
    color: wheat;
    border-bottom: 2px solid wheat ;
    font-size: 25px;
}



   footer p{
        text-align: left;
    }
    footer h3{
        text-align: left;
    }
    footer .media1{
        text-align: left;
    }

  

}
@media(max-width:577px){

       #section3 .container{
         padding: 0px 30px;
     }
     .about{
        padding: 0px 10px;
   
      
     
     }
     .about img{
        display: none;
     }
     .text h3{
        font-size: 18px;
     }
     .about .box-text span{
      display: none;
    }
   
}


