* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
  }


  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, #2d2d2d 0%, #313131 100%);
  }

  .logo {
    width: 200px;
    height: 110px;
  }

  .navigation a {
    font-size: 1.1em;
    color: #d9d9d9;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
    transition: 0.3s;
  }

  .navigation a:hover {
    color: #FF6B00;
  }

    /* Hamburger Menu for Medium Screens */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
  
    .menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: #d9d9d9;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

  .contact-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 120px 5% 50px;
    gap: 30px;
    background: linear-gradient(180deg, #2d2d2d 0%, #313131 100%);
}

.contact-info, .contact-form {
    flex: 1;
    background: rgba(45, 45, 45, 0.8);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 25px;
}

.animated-button {
    position: relative;
    padding: 12px 30px;
    background: #FF6B00;
    color: #fff;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    margin-bottom: 25px;
    overflow: hidden;
    cursor: default;
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contact-info p {
    margin: 15px 0;
    color: #d9d9d9;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #FF6B00;
    width: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #3a3a3a;
    color: #d9d9d9;
    border-radius: 50%;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #FF6B00;
    color: #fff;
    transform: translateY(-5px);
}

.contact-form h2 {
    color: #d9d9d9;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #d9d9d9;
    margin-bottom: 8px;
    font-size: 1em;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #3a3a3a;
    border: none;
    border-radius: 5px;
    color: #d9d9d9;
    font-size: 1em;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.send-btn {
    padding: 12px 30px;
    background: #FF6B00;
    color: #fff;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover {
    background: #E55E00;
}

.foot {
  color: #d9d9d9; /* Text color */
  text-align: center;
  padding: 13px 10px;
  position: relative; /* Ensure it stays at the bottom */
  background: linear-gradient(180deg, #2d2d2d 0%, #313131 100%);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media screen and (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }
  
  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #2d2d2d;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    padding: 50px 0;
    z-index: 1000;
  }
  
  .navigation.active {
    right: 0;
    padding: 60px 5px 5px 10px;
  }
  
  .navigation a {
    margin: 15px 0;
    font-size: 1.2em;
    display: block;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .header {
    padding: 10px 15px;
  }
  
  .logo {
    width: 130px;
    height: auto;
    z-index: 1001;
  }
}