   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #7c3aed;
      --primary-dark: #5b21b6;
      --accent: #00C2FF;
      --dark: #0f172a;
      --dark-lighter: #1e293b;
      --light: #f8fafc;
      --whatsapp: #25D366;
      --whatsapp-dark: #128C7E;
      --text-muted: #94a3b8;
      --text-body: #64748b;
    }

    html, body {
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }

    .site-header {
      width: 100%;
      padding: 10px 1px;
      background: lightblue;
    }

     .header {
      color: yellowgreen;
      margin-right: 150px;
    }


    .nav-container {
      background: purple;
      display: flex;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0;
    }


   .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      flex-shrink: 0;
    }

   .logo img {
      height: 48px;
      width: 48px;
      border-radius: 12px;
      object-fit: cover;
    }

   .logo-text h1 {
      font-size: 20px;
      color: orange;
      font-weight: 700;
    }

   .logo-text p {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: -2px;
    }

   .main-nav {
      margin-left: auto;
    }

   .main-nav ul {
      list-style: none;
      display: flex;
      gap: 32px;
      align-items: center;
    }

   .main-nav > ul > li {
      position: relative;
    }

   .main-nav a {
      color: #e2e8f0;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: color 0.2s;
      padding: 8px 0;
      display: block;
      cursor: pointer;
    }

   .main-nav a:hover {
      color: var(--accent);
    }

   .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
      margin-right: 10px;
    }

    /* Hero */
   .hero {
      position: relative;
      width: 100%;
      height: 85vh;
      overflow: hidden;
      background: #000;
    }

   .hero video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: slowZoom 25s ease-in-out infinite alternate;
    }

    @keyframes slowZoom {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }

   .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(15,23,42,0.8));
    }

   .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 2;
      width: 90%;
    }

   .hero-text marquee {
      font-size: clamp(32px, 6vw, 64px);
      font-weight: 800;
      margin-bottom: 16px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      font-family: Roman;
    }

   .hero-text h2:hover {
      color: var(--accent);
      text-shadow: 0 0 30px rgba(0, 194, 255, 0.6);
    }

   .hero-text p {
      font-size: clamp(16px, 2.5vw, 20px);
      color: #cbd5e1;
      margin-bottom: 32px;
    }

   .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

   .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 25px;
      border-radius: 600px;
      font-weight: 100;
      text-decoration: none;
      transition: all 0.3s;
      border: none;
      cursor: pointer;
      font-size: 30px;
    }

   .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
    }

   .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
    }

   .btn-whatsapp {
      background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
      color: white;
    }

   .btn-whatsapp:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }

    /* Content Sections */
   .section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 24px;
      overflow: hidden;
    }

   .section-title {
      font-family: Roman;
      text-align: center;
      font-size: 25px;
      color: purple;
   }

   .connect a {
      text-decoration: none;
      color: blue;
   }

    .image1 img {
      width: 90%;
      height: 400px;
      margin-left: 5%;
      border-radius: 20px;
    }

    .image2 img {
      width: 90%;
      height: 400px;
      margin-left: 5%;
      border-radius: 20px;
    }

    .image3 img {
      width: 90%;
      height: 400px;
      margin-left: 5%;
      border-radius: 20px;
    }

    .web-card {
       background-color: orange;
      text-align: center;
      padding: 5px;
      color: orange;
      padding: 20px 15px;
      border-radius: 16px;
      width: 30%;
      margin-left: 35%;
      font-size: 20px;
      
    }

    .web-card a {
      text-decoration: none;

    }

    .desktop-softwares {
      background-color: orange;
      text-align: center;
      padding: 5px;
      color: orange;
      padding: 20px 15px;
      border-radius: 16px;
      width: 30%;
      margin-left: 35%;
      font-size: 20px;
      
    }

    .desktop-card a {
      text-decoration: none;

    }

    .about-section {
      margin-left: 20px;
    }

    .sub-title {
      margin-left: 2px;
    }

    .listing {
      margin-left: 50px;
    }

    p {
      margin-left: 20px;
    }



    /* Contact */
   .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }

   .contact-card {
      background: lightgreen;
      padding: 32px 24px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;

    }

   .contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 25px -5px rgb(0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

   .contact-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 16px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 40px;
    }

   .contact-card a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
    }

   .contact-card a:hover {
      text-decoration: none;
    }

   .action-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

    /* Form */
   .form-group {
      margin-bottom: 20px;
    }

   .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--dark);
    }

   .form-input {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 15px;
      transition: border 0.2s;
    }

   .form-input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }

    /* Floating Action Buttons */
   .floating-actions {
      position: fixed;
      bottom: 24px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
    }

   .fab {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      font-size: 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      transition: all 0.3s;
    }

   .fab:hover {
      transform: scale(1.1);
    }

   .fab-call {
      background-color: blue;
    }

   .fab-whatsapp {
      background: green;
    }

    /* Footer */
    footer {
      background: lightsalmon;
      color: blue;
      padding: 48px 24px 24px;
    }

   .footer-grid {
      max-width: 1200px;
      margin: 0 auto 32px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

   .footer-title {
      color: green;
      font-weight: 600;
      margin-bottom: 16px;
      font-size: 20px;
    }

    .footer-link {
      text-decoration: none;

      
    }

    .footer-copy {
      text-align: center;
      color: black;
    }

    /* Mobile */
    @media (max-width: 768px) {
     .mobile-toggle {
        display: block;
      }

     .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 16px;
      }

     .main-nav.active {
        display: block;
      }

     .main-nav ul {
        flex-direction: column;
        gap: 0;
      }

     .main-nav li {
        width: 100%;
        border-bottom: 1px solid #334155;
      }

     .dropdown-menu {
        position: static;
        box-shadow: none;
        margin: 0;
        background: var(--dark-lighter);
        border-top: none;
        border-left: 2px solid var(--accent);
      }

     .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

     .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }

     .image-card {
        flex: 0 0 280px;
      }
    }

    .about-card {
         
    }