/* Reset */
* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 5px 50px; z-index: 1000;
  }
  .logo { font-weight: 600; font-size: 1.2rem; }
  .nav-links { list-style: none; display: flex; }
  .nav-links li { margin: 0 15px; }
  .nav-links a { color: #fff; text-decoration: none; transition: 0.3s; }
  .nav-links a:hover { color: #00d9ff; }
  
  .language-switch { display: flex; gap: 10px; }
  .lang-flag { width: 25px; cursor: pointer; transition: 0.3s; }
  .lang-flag:hover { transform: scale(1.2); }
  
  /* Glassmorphism */
  .glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 40px;
    margin: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  
  /* Hero */
  #hero {
    height: 100vh;
    display: flex; justify-content: center; align-items: center;
    text-align: center;
    background: url('background.jpg') center/cover no-repeat fixed;
  }
  .hero-content h1 { font-size: 3rem; margin-bottom: 20px; }
  .hero-content p { font-size: 1.2rem; margin-bottom: 30px; }
  .btn-glass {
    padding: 10px 20px; border: none;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    color: #fff; cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
  }
  .btn-glass:hover { background: rgba(0,217,255,0.6); }
  
  /* Services */
  #services { text-align: center; padding: 80px 20px; }
  .service-container {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; margin-top: 40px;
  }
  .service-box {
    padding: 40px; border-radius: 15px;
    background: rgba(255,255,255,0.1);
    cursor: pointer; transition: 0.3s;
  }
  .service-box:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(0,217,255,0.3);
  }
  
  /* Contact */
  #contact form {
    display: flex; flex-direction: column;
    gap: 15px; max-width: 500px; margin: auto;
  }
  #contact input, #contact textarea {
    padding: 10px; border-radius: 8px; border: none;
  }
  .address {
    font-size: 0.8rem; margin-top: 20px;
    text-align: center; line-height: 1.4;
  }
  
  /* Footer */
  footer {
    text-align: center; padding: 20px;
    background: rgba(255,255,255,0.1);
  }
  