:root {
   
    --yellow: #ffeb3b;     
    --yellow-hover: #ffc107; 
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
  }
  
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: 'Orbitron', sans-serif; 
  }
  
  body {
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
  }
  

  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
  }
  

  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
   
    backdrop-filter: blur(8px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .logo {
    color: var(--yellow);
    font-size: 1.8rem;
    
    text-shadow: 0 0 10px var(--yellow); 
    font-weight: 700;
  }
  
  .nav a {
    margin-left: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav a:hover,
  .nav a.active {
    color: var(--yellow);
  }
  
 
  .contact-section {
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  .contact-content {
    width: 90%;
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 10px;
   
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.8); 
    border: 1px solid rgba(255, 235, 59, 0.3);
  }
  
  .contact-content h2 {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
  }
  
  .contact-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  
 
  .contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .contact-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
  }
  
  .contact-info h3 {
    color: var(--yellow);
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    margin-bottom: 0.5rem;
  }
  

  .contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 10px;
    border: 1px solid #444; 
    border-radius: 6px;
    outline: none;
    background: #222;
    color: #fff;
    transition: border-color 0.3s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--yellow);
  }
  
  .contact-form button {
    padding: 12px;
    background: var(--yellow);
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: var(--yellow-hover); 
  }
  
 
  .footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }