/*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }*/

  body {
    font-family: 'Segoe UI', sans-serif;
    background: #0e0e0e;
    color: white;
    scroll-behavior: smooth;
  }

  /* Navbar Styles */
  .navbar {
    background-color: #ffffff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
  }

  .navbar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo */
  .logo img {
    height: 50px; /* Smaller logo */
    width: auto;
    align-items: left;
    justify-content: left;
  }

  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    vertical-align: middle;
  }

  .nav-links li {
    display: inline-flex;
  }

  .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .nav-links a:hover {
    background-color: #218de0;
    color: white;
  }

  /* Login Button */
  .login-btn-container {
    display: flex;
    align-items: center;
  }

  .login-btn {
    background-color: #218de0;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .login-btn:hover {
    background-color: #186bb5;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .login-btn-container {
      display: none;
    }
  }

  .blurred-content {
    filter: blur(5px); /* Apply blur only to the main content */
  }

  .coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px); /* Added blur effect */
  }

  .coming-soon-text {
    font-size: 48px;
    font-weight: bold;
    color: #f0a22a;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  header {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .logo {
    font-weight: bold;
    font-size: 24px;
    color: #333;
  }

  .nav-center {
    display: flex;
    gap: 20px;
  }

  .nav-center a {
    background-color: #218de0;
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
  }

  .login-btn {
    background-color: #777;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    font-weight: 500;
    cursor: pointer;
  }

  .hero {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
  }

  .hero-divider {
    position: absolute;
    top: 0;
    left: 55.0%;
    width: 2%;
    height: 100%;
    background: white;
    transform: skewX(-10deg);
    z-index: 3;
  }

  .hero-left {
    width: 60%;
    background: #12335e;
    padding: 100px 60px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .slide-in {
    opacity: 0;
    transform: translateY(200px);
    animation: slideIn 0.8s ease-out forwards;
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-left h1 {
    font-size: 38px;
    font-weight: bold;
    color: #f0a22a;
    animation-delay: 0.2s;
  }

  .hero-left h1 span {
    color: white;
  }

  .hero-left h2 {
    font-size: 22px;
    font-weight: 300;
    color: #cfcfcf;
    margin-top: 6px;
    animation-delay: 0.5s;
  }

  .subtext {
    font-size: 16px;
    margin-top: 10px;
    animation-delay: 0.8s;
  }

  .buttons {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(200px);
    animation: slideIn 0.8s ease forwards;
    animation-delay: 1.1s;
  }

  .btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.4px;
  }

  .btn-gold {
    background-color: #c7822c;
    color: white;
  }

  .btn-gold:hover {
    background-color: #a96b22;
  }

  .btn-gray {
    background-color: #888;
    color: white;
  }

  .btn-gray:hover {
    background-color: #666;
  }

  .hero-right {
    width: 40%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }

  .gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(-60px);
  }

  .gallery img {
    width: 300px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      height: auto;
    }

    .hero-left, .hero-right {
      width: 100%;
      clip-path: none;
      padding: 40px 20px;
    }

    .gallery {
      transform: none;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-center {
      display: none;
    }
  }
  .coming-soon-text {
    font-size: 48px;
    font-weight: bold;
    color: #f0a22a;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
  }

  #more {
    height: 800px;
    background-color: #111;
    padding: 50px;
    text-align: center;
    font-size: 24px;
  }

  .about-us {
    background-color: #f9f9f9;
    color: #333;
    padding: 50px 20px;
    text-align: center;
  }

  .about-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .about-us h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #218de0;
  }

  .about-us p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
  }

  .highlights {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
    text-align: left;
  }

  .highlights-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .highlights h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .feature {
    background-color: #222;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cursor {
    display: inline-block;
    animation: blink 1s step-start infinite;
    color: white;
    font-weight: bold;
  }
  
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }
  
  #rotating-wrapper {
    font-weight: bold;
    color: white;
    font-family: monospace;
  }

  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }

  .icon {
    font-size: 24px;
    color: #00d1ff;
    flex-shrink: 0;
  }

  .feature h3 {
    font-size: 18px;
    font-weight: bold;
    color: #00d1ff;
  }

  .feature p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
  }

  .rotating-text {
    animation: fadeIn 1.5s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .working-preview {
    background-color: #f0f0f0;
    color: #333;
    padding: 50px 20px;
    text-align: center;
  }

  .preview-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .working-preview h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #218de0;
  }

  .working-preview p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
  }

  .btn-gold {
    background-color: #c7822c;
    color: white;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.4px;
  }

  .btn-gold:hover {
    background-color: #a96b22;
  }

  .pricing {
    background-color: #f9f9f9;
    color: #333;
    padding: 50px 20px;
    text-align: center;
  }

  .pricing-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .pricing h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #218de0;
  }

  .pricing p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
  }

  .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }

  .card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
  }

  .card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .card ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #777;
  }

  .btn {
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.4px;
  }

  .btn-gray {
    background-color: #888;
    color: white;
  }

  .btn-gray:hover {
    background-color: #666;
  }

  .btn-gold {
    background-color: #c7822c;
    color: white;
  }

  .btn-gold:hover {
    background-color: #a96b22;
  }

  .bottom-bar {
    background-color: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 50px;
  }

  .bottom-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
  }

  .bottom-bar p {
    margin: 0;
  }

  .footer-links {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    display: inline;
  }

  .footer-links a {
    text-decoration: none;
    color: #00d1ff;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #fff;
  }

  @media (max-width: 768px) {
    .bottom-bar-container {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: left;
  }

  .card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
  }

  .card ul li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
  }

  .card .price {
    font-size: 16px;
    font-weight: bold;
    color: #218de0;
  }

  .trusted-vtcs {
    background-color: #f9f9f9;
    color: #333;
    padding: 50px 20px;
    text-align: center;
  }

  .trusted-vtcs-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .trusted-vtcs h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #218de0;
  }

  .trusted-vtcs p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
  }

  .vtcs-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .vtc-logo {
    text-align: center;
    width: 150px;
  }

  .vtc-logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .vtc-logo p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }


    .who-is-behind {
      background-color: #f9f9f9;
      color: #333;
      padding: 50px 20px;
      text-align: center;
    }

    .who-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .who-is-behind h2 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #218de0;
    }

    .who-is-behind p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 40px;
      color: #555;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .team-member {
      background-color: #fff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

    .team-member img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .team-member h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #333;
    }

    .team-member p {
      font-size: 14px;
      color: #555;
      margin: 5px 0;
    }