* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #111;
  }
  
  header {
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    height: 40px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    padding: 8px 12px;
    transition: background 0.3s;
  }
  
  .nav-links a:hover {
    background-color: #e8e8e8;
    border-radius: 5px;
  }
  
  .signup-btn {
    background: #111;
    color: #fff;
    border-radius: 20px;
    padding: 8px 16px;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
    min-width: 200px;
  }
  
  .dropdown-menu li {
    display: block;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 10px;
    white-space: nowrap;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  /* 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;
  }
  
  .video-tools {
    background: #0f0f0f;
    color: white;
    padding: 60px 20px;
    margin-top: 40px; /* This will now take effect */
  }
  bttons-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  

  
  .buttons-bar button {
    border: none;
    padding: 10px 18px;
    margin: 5px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .primary {
    background-color: #1a1a1a;
    color: white;
  }
  
  .secondary {
    background-color: #2a2a2a;
    color: white;
  }
  
  .input-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
  }
  
  .input-group input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 280px;
  }
  
  .input-group .add-captions {
    background-color: blue;
    color: white;
    border-radius: 5px;
    padding: 10px 14px;
  }
  
  .input-group .upload {
    background-color: white;
    color: black;
    border-radius: 5px;
    padding: 10px 14px;
  }
  
  .video-scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 30px;
  }
  
  .video-track {
    display: inline-flex;
    animation: scroll 20s linear infinite;
  }
  
  .video-track img {
    width: 200px;
    height: 360px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 10px;
  }
  
  /* Scroll Animation */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  .button-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .stats-section {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 80px 20px;
    text-align: center;
  }
  
  .stats-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: white;
  }
  
  .stats-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
  }
  
  .card {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.08), rgba(0,0,0,0.1));
    padding: 40px 30px;
    border-radius: 24px;
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
  
  .card h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .card h3 span {
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: #ccc;
  }
  
  .card p {
    font-size: 14px;
    color: #aaa;
  }
  .ai-caption-preview {
    text-align: center;
    padding: 80px 20px 60px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0f0f0f 100%);
  }
  
  .ai-caption-preview h1 {
    font-size: 38px;
    font-weight: bold;
    line-height: 1.3;
  }
  
  .ai-caption-preview h1 .highlight {
    background: linear-gradient(to right, Blue, Blue);
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .ai-caption-preview p {
    font-size: 16px;
    color: #ccc;
    margin: 20px auto 40px;
    max-width: 600px;
  }
  
  .video-preview video {
    width: 250px;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    
  }
  
  .idea-generator {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
  }
  
  .idea-input-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .idea-input-container input {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    width: 300px;
    max-width: 80%;
    background-color: white;
    color: black;
    font-size: 15px;
  }
  
  .idea-input-container select {
    padding: 12px 10px;
    border-radius: 10px;
    border: none;
    background-color: black;
    color: white;
    font-size: 15px;
  }
  
  .idea-input-container button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, blue, Blue);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .idea-input-container button:hover {
    opacity: 0.9;
  }
  
  .scrolling-carousel {
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(to bottom, #0d0d0d, #1a1a1a);
  }
  
  .carousel-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 50s linear infinite;
  }
  
  .carousel-track img {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    margin-right: 20px;
    object-fit: cover;
  }
  
  /* Scrolling animation */
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  video {
    width: 300px;
    height: auto;
    object-fit: cover;
  }
  .main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    gap: 40px;
    flex-wrap: wrap;
    background: #000000;
    color: white;
  }
  
  .hero-text {
    flex: 1;
    max-width: 500px;
  }
  
  .hero-text .tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .hero-text .tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
  }
  
  .tag.purple {
    background: linear-gradient(to right, Blue, blue);
    color: white;
  }
  
  .tag.dark {
    background: #222;
    color: #eee;
  }
  
  .hero-text h1 {
    font-size: 36px;
    line-height: 1.3;
  }
  
  .hero-text .highlight {
    background: linear-gradient(to right, Blue, white);
    
    -webkit-text-fill-color: transparent;
  }
  
  .input-bar {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .input-bar input {
    padding: 10px;
    flex: 1;
    border: none;
    border-radius: 8px;
    background: white;
    color: black;
  }
  
  .input-bar select {
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #2a2a3f;
    color: white;
  }
  
  .input-bar button {
    padding: 10px 20px;
    background: linear-gradient(to right, Blue, blue);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
  }
  
  .video-scroll {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
  }
  
  .video-track {
    display: flex;
    animation: scroll-left 20s linear infinite;
    gap: 20px;
  }
  
  .video-track video {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  @keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .zeemo-style {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, #0e0e1a, #000);
    color: #fff;
  }
  
  .tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .tag {
    background: #222;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
  }
  
  .headline {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
  }
  
  .gradient-text {
    background: linear-gradient(90deg, blue, blue);
    
    -webkit-text-fill-color: transparent;
  }
  
  .video-generator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .video-generator input {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: none;
    width: 300px;
    font-size: 1rem;
    background: white;
    color: black;
  }
  
  .video-generator select {
    padding: 0.75rem;
    border-radius: 8px;
    background: black;
    color: white;
    border: none;
    font-size: 1rem;
  }
  
  .btn-gradient {
    padding: 0.75rem 1.2rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, blue, blue);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }
.features-section {
  padding: 60px 20px;
  background: black;
  overflow: hidden;
}
.features-container {
    display: flex;
    justify-content: center;   /* center items inside container */
    gap: 20px;
    padding: 10px;
    max-width: 100%;           /* keep it responsive */
    width: fit-content;        /* shrink to fit contents */
    margin: 0 auto;            /* center container itself */
    margin-top: 30px;
  }
  
  
  
.feature-box {
  background: black;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 280px;
  width: 100%;
  text-align: left;
  transition: transform 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-8px);
}
.feature-box img {
  width: 100%;
  height: auto;
  display: block;
}
.feature-box h3 {
  font-size: 18px;
  margin: 15px 15px 5px;
}
.feature-box p {
  font-size: 14px;
  color: grey;
  margin: 0 15px 15px;
}
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    align-items: center;
  }
}
.Trusted {
  text-align: center;
  padding: 4rem 2rem
}
.reviews-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 40px;
}
.review-box {
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  min-width: 250px;
  max-width: 250px;
  text-align: center;
  padding: 20px;
  flex-shrink: 0;
}
.user-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px auto;
}
.user-name {
  font-size: 18px;
  margin: 10px 0 5px 0;
  color: white;
}
.user-post {
  font-size: 14px;
  color: blue;
  margin-bottom: 15px;
}
.user-review{
  font-size: 14px;
  color: white;
  line-height: 1.4;
}
.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: 15Spx;
  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;
}

