body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  header {
    background-color: #0b0b0b;
    padding: 20px 0;
    border-bottom: 2px solid navy;
  }
  
  .logo {
    font-size: 28px;
    color: #00aaff; /* bright blue */
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    color: #0077cc;
  }
  
  /* Hero Section */
  .hero {
    background-color: #0a0a0a;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image img {
    width: 300px;
    border: 2px solid navy;
    border-radius: 8px;
  }
  
  .hero-video video {
    width: 350px;
    border: 2px solid #0077cc;
    border-radius: 8px;
  }
  
  /* Sections */
  .section {
    padding: 60px 0;
    border-bottom: 1px solid #111;
  }
  
  h2 {
    color: #0077cc;
  }
  
  .skills-list {
    list-style: none;
    padding: 0;
  }
  
  .skills-list li {
    margin: 10px 0;
    color: #ccc;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #0b0b0b;
    color: #666;
  }
  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #00aaff; /* Bright blue hover */
  }
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
  }
  
  .company-name {
    font-size: 24px;
    color: #00aaff;
    margin: 0;
  }
  