/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background: #090d17;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links .active {
    color: #38bdf8;
  }
  
  /* Contact Section */
  .contact-section {
    text-align: center;
    padding: 80px 20px;
  }
  
  .contact-section h1 {
    font-size: 45px;
    margin-bottom: 15px;
}
  
  
  .subtitle {
    color: #a3a3a3;
    margin-bottom: 40px;
  }
  
  /* Container */
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  /* Form */
  .contact-form {
    flex: 1 1 400px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
  }
  
  .contact-form button {
    background: #38bdf8;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    background: #0ea5e9;
  }
  
  /* Contact Info */
  .contact-info {
    flex: 1 1 300px;
    text-align: left;
  }
  
  .contact-info h2 {
    color: #38bdf8;
    margin-bottom: 15px;
  }
  
  .contact-info p {
    margin: 8px 0;
  }
  
  .social-links {
    margin-top: 20px;
  }
  
  .social-links a {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #fff;
    transition: 0.3s;
  }
  
  .social-links a:hover {
    color: #38bdf8;
  }
  .contact-section h1 span {
    color: #00e0ff;
    text-shadow: 0 0 10px #00e0ff;
  }
  footer {
    text-align: center;
    padding: 15px;
    background: rgba(0,0,0,0.8);
    color: #a3a3a3;
  }