* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'bruno ace sc' ,cursive;
       margin: 0;
      padding: 0;
      background-image: url(../Img/xatec.png); 
      background-size: cover;     
      background-position: center;
      background-attachment: fixed; 
      height: 100vh;              
      font-family: Arial, sans-serif;
      color: white;
      
    }

    .activeMenu {
      font-size: 180%;
      color: red !important;
    }

    nav {
      background-color: #000000;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
          }

    .navbar {
      max-width: 1200px;
      display: flex;
      justify-content: space-between;
      padding: 2rem;
    
    }

    .logo {
    position: absolute;
      top: -90px;
      left: 10px;
      width: 500px; 
      height: auto;
    }

    .nav-links {
    display: flex;
    margin-left: 530px; 
    gap :4rem
    }

    .nav-links a {
      text-decoration: none;
      color: #ffffff;
      transition: color 0.3s;
      font-family: 'bruno ace sc',cursive;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 5px;
      width: 100%;
      background-color: rgb(255, 0, 0);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 2s ease;
      box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 60px #ff0000;
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-links a:hover {
      color: #ee0000f6;
      text-decoration: underline;
    }

 .custom-button {
      position: absolute;
      top: 15px;
      right: 20px;
      padding: 15px 30px;
      font-size: 18px;
      font-family:'bruno ace sc',cursive ;
      color: white;
      background-color: #000000; 
      border: 2px solid red;
      cursor: pointer;
      clip-path: polygon(
        20px 0%,
        100% 0%,
        100% calc(100% - 20px),
        calc(100% - 20px) 100%,
        0% 100%,
        0% 20px
      );
      transition: background-color 0.3s ease;
      user-select: none;
      z-index: 1000; 
    }

    .custom-button:hover {
      background-color: rgb(255, 0, 0); 
  
    }

    .custom-button:focus {
      outline: none;
      box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.7);
    }

.footer {
  position: relative;
  background-color: #111118;
  color: #ccc;
  padding: 60px 20px;
  border-radius: 10px 10px 0 0;
}




.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: #e91e63;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer-column ul li {
  margin: 10px 0;
}

.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #2c2f3f;
  color: #fff;
  text-align: center;
  line-height: 40px;
  margin: 0 5px 10px 0;
  border-radius: 50%;
  transition: background 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background-color: #e91e63;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-column {
    margin-bottom: 40px;
  }
}

