:root {
  --primary: #0B1C2D;
  --secondary: #1E90FF;
  --accent: #00C2FF;
  --background: #FFFFFF;
  --text: #1F2933;
}

body{
  margin: 0 ;
  padding: 0 ;
}

/* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #FFFFFF; 
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-weight: bold;
      font-size: 24px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      color: #1B1B1B; 
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      color: #1F2933;
      font-weight: 500;
      transition: color 0.3s;
      font-weight: bold;
    }

    .nav-links li a:hover {
      color: #00C2FF; 
    }

    .lang-btn {
      padding: 5px 10px;
      background-color: #00C2FF; 
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    /* Mobile */
    .menu-icon {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 992px) {
      .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: #ffff;
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        transition: right 0.3s;
      }

      .nav-links.show {
        right: 0;
      }

      .menu-icon {
        display: block;
      }

      .navbar {
        justify-content: space-between;
      }
    }




    /*footer*/
.site-footer {
  background-color: #0B1C2D;
  color: #FFFFFF;
  padding: 80px 20px 50px 20px; /* زيادة المساحة */
  font-family: Arial, sans-serif;
  min-height: 60vh; /* Footer أكبر يغطي جزء كبير من الشاشة */
}

.site-footer a {
  color: #1E90FF;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #00C2FF;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.blogs h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00C2FF;
}

.blogs ul {
  list-style: none;
  padding: 0;
}

.blogs ul li {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: white;
}

.projects-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.btn-our-projects {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1E90FF;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s, background-color 0.3s;
  font-size: 1.2rem;
}

.btn-our-projects:hover {
  transform: scale(1.1);
  background-color: #00C2FF;
}
.projects-btn a{
  color: white;
}

.projects-btn a:hover{
  color: white;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-social a {
  margin: 0 15px;
  display: inline-block;
  font-size: 40px;
}

.footer-social img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s;
}

.footer-social a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  font-size: 1rem;
  color: #AAAAAA;
}

/* Responsive */
@media(max-width:768px){
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .projects-btn {
    margin-top: 25px;
  }
  .blogs h3 {
    font-size: 1.5rem;
  }
  .blogs ul li {
    font-size: 1rem;
  }
  .btn-our-projects {
    font-size: 1rem;
    padding: 12px 25px;
  }
}
