:root {
  --dark-color: #0b1c2c;
  --primary-color: #001f3f;
  --accent-color: #d82121;
  --green-color: #28a745;
  --red-color: #dc3545;
  --yellow-color: #ffc107;
  --section-color: #f4f6f9;
  --blue-color: #17a2b8;
}

body { 
  font-family: 'Cairo';
}




/* Start heder   */
.header{
  background-color: var(--section-color);
}
.header .logos{
  margin-top: 30px;
}
.header .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(256, 256, 256, .1);
  border-radius: 50px;
  transition: .1s;
}
.header .btn.btn-social:hover {
  color: #002163;
  border: rgb(0, 168, 197) 2px solid;
  transform: scale(1.2);
}
.header .facebook {
  background-color: #1877f2;
}
.header .twitter {
  background-color: #1da1f2;
}
.header .linkedin {
  background-color: #0077b5;
}
.header .instagram {
  background-color: #f14848;
}
.header ul li{
  transition: .1s;
}
.header ul li:hover{
 
  transform: scale(1.2);
}






/* Start Navbar   */
.navbar {
  background-color: var(--primary-color);
}
.navbar .navbar-brand {
  display: none;
}
.navbar .navbar-nav .nav-link{
  color: #eff7fa;
}
.navbar .navbar-nav .nav-item {
  transition: all 0.2s;
  margin: 5px;
  padding: 7px;
  font-size: 20px;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
  color: #6AE6E7;
  border: 1px solid;
  border-color: #07fcf4 ;
}
.navbar .navbar-toggler {
  color: white;
  font-size: 20px;
  border-color: white;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
/*   End Navbar   */





/*   Start Landing   */

/*   End Landing   */







/* Start Features */
.features {
  background-color: var(--section-color);
  height: 100%;
}
.features .card-body{
  margin-top: 100px;
  margin-bottom: 100px;
}
/* End Features */





/* Start servises  */
.servises .container{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
}
.servises .container .card{
  position: relative;
  align-items: center;
  max-width: 300px;
  height: 210px;
  background:#fff;
  margin: 20px 10px;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  border: 1px solid #e1e5eb;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.servises .container .card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.servises .container .card .imgBx{
  transition: 0.2s;
  position: relative;
  width: 270px;
  height: 200px;
  top: -40px;
  z-index: 1;
  text-align: center;
}
.servises .container .card .imgBx:hover .loging{
  opacity: 1;
}
.servises .container .card .imgBx img{
  max-width: 100%;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}
.servises .container .card .imgBx img:hover{
  transform: scale(1.05);
}
.servises .container .card .imgBx .intro {
  position: absolute;
  height: 90px;
  width: 270px;
  background-color: rgba(11, 28, 44, 0.85);
  padding: 10px;
  box-sizing: border-box;
  bottom: 20px;
  transition: 0.2s ease-in-out;
  border-radius: 0 0 8px 8px;
}
.servises .container .card .imgBx:hover .intro {
  background-color: var(--accent-color);
}
.servises .container .card .loging{
  margin-top: 10px;
  transition: 0.5s;
  opacity: 0;
}
.servises .container .card .imgBx h6{
color: white;
font-weight: bold;
transition: 0.2s ease-in-out;
font-size: 18px;
}
.servises .container .card:hover .tx{
  font-size: 20px;
  }
/* End servises */






/* Start Products */
.ppr{
  background-color: #ffffff ;
}
.ppr .main-title{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.product .card{
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  height: 100%;
  width: 100%;
  border: 1px solid #e1e5eb;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}    
.product .card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product .card .imge{
  transition: 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product .card:hover .imge{
  transform: scale(1.05);
}

.product .card .intro{
  position: absolute;
  height: 60px;
  width: 100%;
  border-radius: 0 0 8px 8px;
  background-color: rgba(11, 28, 44, 0.85);
  bottom: 0px;
  transition: 0.3s;
}
.product .card .intro a{
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.product .card:hover .intro{
  background-color: var(--accent-color);
}

.product .card .intro p{
font-weight: bold;
font-size: 16px;
color: white;
padding-top: 15px;
}
/* End Products */






/* Start News */
.news {
  background-color: var(--dark-color);
}
.news .card img{
  transition: 0.3s ease-in-out;
  border-radius: 8px 8px 0 0;
}
.news .card{
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  border: none;
}
.news .card:hover img{
  transform: scale(1.05);
}
.news .card:hover{
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}
.news .card a{
  text-decoration: none;
}
.news .card .card-body .card-title{
  transition: 0.3s ease-in-out;
  color: #000000;
}
.news .card:hover .card-title{
  color: var(--accent-color);
  font-weight: bold;
}
/* End News */





/* Start News-2 */
.news-2 {
  background-color: var(--section-color);
}
.news-2 .card img{
  transition: 0.3s ease-in-out;
  border-radius: 8px 8px 0 0;
}
.news-2 .card{
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  border: 1px solid #e1e5eb;
}
.news-2 .card:hover img{
  transform: scale(1.05);
}
.news-2 .card:hover{
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.news-2 .card a{
  text-decoration: none;
}
.news-2 .card .card-body .card-title{
  transition: 0.3s ease-in-out;
  color: #000000;
}
.news-2 .card:hover .card-title{
  color: var(--accent-color);
  font-weight: bold;
}
/* End News-2 */






/* Start techs */
.techs p{
  color: #000000;
  font-size: 18px;
  font-weight:600;
}
.techs h2{
  margin: 15px;
  color: #690476;
  font-size: 28px;
  font-weight:600;
}
/* End techs */





/* Start maps */

/* End maps */




/*** Footer ***/
.footer{
  height: 100%;
  background-color: var(--primary-color);
}
.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, .1);
  border-radius: 40px;
  transition: .3s;
}
.footer .btn.btn-social:hover {
  color: var(--primary);
  transform: scale(1.2);
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: .3s;
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
  color: var(--secondary);
  
}
.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright a {
  color: var(--light);
}
.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
}
.footer .footer-menu a:hover{
color: #04ffff;

}
.footer .logo-box{
  border-radius: 20px;
  border: #6fe7e3 1px solid;
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.5);
}
.footer .logo{
  margin-top: 95px;
}
.footer .facebook {
  background-color: #1877f2;
}
.footer .twitter {
  background-color: #1da1f2;
}
.footer .linkedin {
  background-color: #0077b5;
}
.footer .instagram {
  background-color: #f14848;
}
.footer .texte{
font-size: 14px;
text-align: justify;
}
.footer .contacts p a{
  color: #ffffff;
  font-size: 17px;
}
.footer .section-title{
  font-size: 24px;
  color: #04ffff;
}
/*** Footer ***/









/*** cattls ***/
.cattls .card {
  width: 230px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: none;
}
.cattls .card:hover .card-title {
  background-color: var(--accent-color);
  color: #fff;
}
.cattls .card .card-img{
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: 0.3s;
}
.cattls .card:hover .card-img {
  transform: scale(1.05);
}
.cattls .card .card-body{
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
  transition: .3s;
}
.cattls .card .card-body:hover{
  background: linear-gradient(to top, rgba(216,33,33,0.8), transparent 50%);
}
.cattls .card .card-title{
  position: absolute;
  bottom: 0;
  top: auto;
  width: 100%;
  height: 60px;
  background-color: rgba(11, 28, 44, 0.85);
  transition: .3s;
}
.cattls .card .card-title p{
font-size: 18px;
color: rgb(255, 255, 255);
padding-top: 10px;
}
.top-top{
  background-color: var(--section-color);
}
/*** cattls ***/



.rotational{
  background-color: #E8FBFC ;
}
.rotational .nav-link{
  color: white;

}



/*** about ***/
.about{
  background-color: #ffffff ;
}
.about .card-about{
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.about .techs p{
  color: #000000;
  font-size: 18px;
  font-weight:600;
}

.abou .techs h2{
  margin: 15px;
  color: #690476;
  font-size: 28px;
  font-weight:600;
}
/*** about ***/





/*** contactus ***/
.contactus{
  background-color: var(--section-color) ;
}
.contactus .FForm{
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 35px;
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contactus .btn.btn-social {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(256, 256, 256, .1);
  color: #ffffff;
  background-color: #0A1D56;
  transition: .1s;
}
.contactus .btn.btn-social:hover {
  border: rgb(255, 255, 255) 2px solid;
  
}
.contactus .FForm a{
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
}
.contactus .FForm a:hover{

transform: scale(1.2);
}

/*** contactus ***/





/*** Engneer ***/
.Eng{
  background-color: #ffffff ;
}
.Eng .card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 35px;
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.Eng .card .card-title .card-body{
  font-size: 0.65em;
  color: #446;
}
/*** Engneer ***/




/*** catalog ***/   
.catalog {
  background-color: #E8FBFC ;
}
.catalog ul li{
  transition: .1s;
}
.catalog ul li:hover{
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.25);
  transform: scale(1.1);
}
/*** catalog ***/





