/*add-subtitle-to-video*/
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: white;
    color: black;
  }
  
  /* Header */
  header {
    background: #0f0f0f;
    padding: 20px;
    border-bottom: 1px solid #1e1e1e;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
  }
  
  .logo {
    height: 40px;
  }
  
  nav .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  .nav-links .signup-btn {
    background: blue;
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
  }
  
  .dropdown:hover .mega-menu {
    display: flex;
  }
  
  .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1e1e1e;
    padding: 20px;
    width: 800px;
    justify-content: space-between;
    border-radius: 8px;
    z-index: 999;
  }
  
  .mega-column {
    flex: 1;
  }
  
  .mega-column h4 {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .mega-column a {
    display: block;
    color: #eee;
    font-size: 13px;
    margin: 5px 0;
    text-decoration: none;
  }
  
  .mega-column a:hover {
    text-decoration: underline;
  }
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #111111, #1a1a1a); /* your dark gradient */
    padding: 100px 20px 60px;
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 36px;
    max-width: 800px;
    margin: auto;
    color: white;
    font-weight: bold;
    line-height: 1.4;
  }
  
  .hero h1 span {
    background: linear-gradient(to right, white, white);  }
  
  .hero p {
    font-size: 18px;
    color: #cccccc;
    margin-top: 20px;
  }
  .footer {
    background-color: #0e0e0e;
    color: white;
    padding: 60px 40px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-brand {
    flex: 1 1 250px;
    margin: 20px;
  }
  
  .footer-brand h1 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    color: #cccccc;
    margin-bottom: 20px;
    max-width: 250px;
    font-size: 14px;
  }
  
  .social-icons a img {
    width: 20px;
    margin-right: 12px;
    filter: invert(100%);
  }
  
  .app-buttons a img {
    height: 40px;
    margin-top: 20px;
    margin-right: 10px;
  }
  
  .footer-links {
    display: flex;
    flex: 3 1 700px;
    gap: 40px;
    flex-wrap: wrap;
    margin: 20px;
  }
  
  .footer-column {
    flex: 1 1 180px;
    min-width: 150px;
  }
  
  .footer-column h4 {
    font-size: 20px;
    color: #c9c9df;
    margin-bottom: 15px;
  }
  
  .footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: white;
  }
  .legal-footer {
    background-color: #0e0e0e;
    border-top: 1px solid #333;
    padding: 20px 40px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
  }
  
  .legal-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .legal-container p {
    color: #ccc;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
  }
  
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .legal-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .legal-links a:hover {
    color: white;
  }
  .feature-heading {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}
.feature-text {
    text-align: center;
    font-size: 18px;
    color: blue;
    margin-top: 10px;
}
  
  