<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    background: #0a0f2c;
    color: #fff;
  }
  .container {
    padding: 0 8%;
  }
  body {
    margin: 0;
    overflow: hidden;
    background: #0B0B2D; /* dark AR-style background */
  }
  
  #qr-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  
  .qr-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url('ajj.jpg'); /* Replace with your tiny QR image */
    background-size: cover;
    opacity: 0.05;
    animation: floatRandom infinite;
  }
  
  /* random floating keyframes */
  @keyframes floatRandom {
    0% {
      transform: translate(0, 0) rotate(0deg) scale(1);
    }
 25% {
      transform: translate(-50px, 50px) rotate(45deg) scale(1.1);
    }
    50% {
      transform: translate(50px, -30px) rotate(90deg) scale(1);
    }
    75% {
      transform: translate(-30px, -50px) rotate(135deg) scale(0.9);
    }
    100% {
      transform: translate(0, 0) rotate(180deg) scale(1);
    }
  }
  
  
  /* Navbar */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
  }
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
  }
  .nav-btn {
    display: none;
  }
  .menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding-top: 120px;
  }
  .hero-content {
    max-width: 600px;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  .hero-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
  }
  
  /* Buttons */
  .btn-primary {
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }
  .btn-primary:hover {
    opacity: 0.8;
  }
  
  /* Features */
  .features {
    padding: 60px 20px;
    text-align: center;
  }
  
  .features-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .feature-card {
    background: #0d0d36;
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .feature-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Reels */
  .reels {
    padding: 100px 0;
    text-align: center;
  }
  .reel-slider {
    display: flex;
    overflow-x: auto;
    margin: 2rem;
    gap: 20px;
    margin-top: 40px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .reel {
    min-width: 250px;
    scroll-snap-align: center;
  }
  .reel img {
    width: 100%;
    border-radius: 12px;
  }
  

  /* Whole scrollbar */
::-webkit-scrollbar {
    width: 5px;    /* Vertical scrollbar width */
    height: 5px;   /* Horizontal scrollbar height */
  }
  
  /* Scrollbar track (background) */
  ::-webkit-scrollbar-track {
    background: #0f172a; /* dark background */
    border-radius: 10px;
  }
  
  /* Scrollbar thumb (the draggable part) */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #06b6d4, #3b82f6);
    border-radius: 10px;
  }
  
  /* Scrollbar thumb when hovered */
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
  }
  
  /* Contact */
  .contact {
    padding: 100px 0;
    text-align: center;
  }
  
  /* Footer */
  .footer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
  }
  
  /* Animation */
  .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column-reverse;
      text-align: center;
    }
    
    .nav-links.active {
      display: flex;
    }
    .menu-toggle {
      display:none;
    }
    .nav-btn {
      display: none;
    }
  }
  



/* Contact Us Form  */
.form-card {
    background: #0d0d36;
    border-radius: 20px;
    padding: 30px;
    width: 600px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  label {
    font-size: 14px;
    margin-bottom: 10px;
    color: #cbd5e1;
  }

  input, textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #1e293b;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(6, 182, 212, 0.3);
  }

  input::placeholder, textarea::placeholder {
    color: #94a3b8;
  }

  input:focus, textarea:focus {
    background-color: #334155;
    box-shadow: 0 0 10px #06b6d4;
  }




  /* Services and Policy  */
  



  .Services-card {
    background: #0d0d36;
    border-radius: 20px;
    padding: 30px;
    width: 800px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }</pre></body></html>