    * {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(180deg, #1a1a1a, #000);
      color: #fff;
      min-height: 100vh;
      margin: 0;
      padding: 0;
    }



























    /* Navbar Styles - Compact Version */
    .navbar {
      background-color: #111;
      padding: 10px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

        .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-video {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }


    .logo h1 {
      font-size: 1.4rem;
      color: #00ff88;
      font-weight: bold;
      letter-spacing: 0.5px;
      text-shadow: 0 0 4px rgba(0, 255, 136, 0.5);
    }


    .nav-links {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      color: #ddd;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      padding: 5px 0;
    }

    .nav-links a i {
      margin-right: 8px;
      font-size: 0.9rem;
    }

    .nav-links a:hover {
      color: #00ff88;
    }

    .active {
      color: #00ff88 !important;
      font-weight: 600 !important;
    }

    .active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #00ff88;
    }

    .hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
    }

    .hamburger div {
      width: 22px;
      height: 2px;
      background-color: white;
      margin: 3px 0;
      transition: all 0.3s ease;
    }































    
    /* Main Content - Combined Style */
    .main-container {
      padding: 30px 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .lang-container {
      display: flex;
      align-items: center;
      gap: 50px;
      padding: 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      margin-bottom: 40px;
      backdrop-filter: blur(5px);
      border: 1px solid #333;
    }

    .lang-img {
      width: 400px;
      border: 3px solid #333;
      border-radius: 10px;
      transition: transform 0.3s, border-color 0.3s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .lang-img:hover {
      transform: scale(1.02);
      border-color: #555;
    }

    .lang-info {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .lang-text {
      font-size: 1rem;
      color: #ddd;
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .lang-text strong {
      color: #aaa;
      font-size: 0.9rem;
      font-weight: 400;
    }

    .lang-container {
      position: relative;
    }































































































    /* Footer */
    footer {
      background-color: #111;
      padding: 30px 5%;
      text-align: center;
      margin-top: 50px;
    }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .footer-nav li a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .footer-nav li a:hover,
    .footer-nav li a.active {
      color: #00ff88;
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: 0 auto;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-logo img {
      height: 30px;
    }
    .footer-logo h2 {
      font-size: 1.3rem;
      color: #fff;
      font-weight: 700;
    }
    .social-links {
      display: flex;
      gap: 20px;
    }
    .social-links a {
      color: #ddd;
      font-size: 1.3rem;
      transition: color 0.3s;
    }
    .social-links a:hover {
      color: #00ff88;
    }
    .copyright {
      margin-top: 20px;
      color: #777;
      font-size: 0.9rem;
      width: 100%;
    }
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        align-items: center;
      }
      .footer-nav {
        flex-direction: column;
        align-items: center;
      }
      .social-links {
        justify-content: center;
      }
    }




























    /*download*/
    .download-btn {
      padding: 10px 20px;
      background: #00aa66;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 15px;
      font-size: 1rem;
      transition: background 0.3s;
      align-self: flex-start;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      font-family: inherit;
    }

    .download-btn:hover {
      background: #00cc77;
    }

















    /* Responsive Design */
    @media (max-width: 992px) {
      .lang-container {
        flex-direction: column;
        gap: 30px;
      }

      .lang-info {
        margin-top: 0;
        width: 100%;
      }

      .download-btn {
        align-self: center;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background-color: #111;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        clip-path: circle(0px at 90% -10%);
        transition: all 0.5s ease-out;
      }

      .nav-links.active {
        clip-path: circle(1000px at 90% -10%);
      }

      .nav-links li {
        margin: 0;
      }

      .hamburger {
        display: flex;
      }

      .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .hamburger.active div:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }

      .lang-img {
        width: 100%;
        max-width: 400px;
      }
    }















/* Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}






















































































































































































































































































































.lazy-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-in-out;
  visibility: hidden;
}

.lazy-section.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}










































































