@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
    
    :root {
      --primary: #00f0ff;
      --secondary: #0066ff;
      --dark: #0a0f1c;
      --light: #e0f7fa;
      --accent: #ff00e4;
      --card-bg: rgba(255, 255, 255, 0.05);
      --card-border: rgba(255, 255, 255, 0.1);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }
    
    body {
      background: var(--dark);
      color: var(--light);
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }
    
    h1, h2, h3 {
      font-weight: 600;
      line-height: 1.2;
    }
    
    p {
      line-height: 1.6;
    }
    
    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      border-bottom: 1px solid #eee;
      color: var(--dark);
      padding: 15px 5%;
      z-index: 1000;
      transition: all 0.3s ease;
    }
    
    nav.scrolled {
      padding: 10px 5%;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    nav .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    nav .logo img {
      height: 40px;
      transition: transform 0.3s ease;
    }
    
    nav .logo:hover img {
      transform: rotate(15deg);
    }
    
    nav .logo span {
      font-weight: 600;
      font-size: 1.2rem;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }
    
    nav ul li {
      position: relative;
      cursor: pointer;
      padding: 5px 0;
      transition: all 0.3s ease;
    }
    
    nav ul li::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--secondary);
      transition: width 0.3s ease;
    }
    
    nav ul li:hover::after {
      width: 100%;
    }
    
    nav ul li:hover {
      color: var(--secondary);
    }
    
    nav ul li ul {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid #eee;
      padding: 10px;
      border-radius: 8px;
      min-width: 200px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    nav ul li:hover ul {
      display: block;
    }
    
    nav ul li ul li {
      padding: 8px 15px;
      white-space: nowrap;
      border-radius: 4px;
    }
    
    nav ul li ul li:hover {
      background: var(--dark);
      color: var(--light);
    }
    
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1001;
    }
    
    .menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background: var(--dark);
      border-radius: 3px;
      transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Hero with video */
    .hero {
      height: 90vh;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }
    
    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }
    
    .hero .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(10, 15, 28, 0.7), rgba(10, 15, 28, 0.9));
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
      color: #fff;
      padding: 0 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .hero-content h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 20px;
      color: var(--primary);
      text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);
      animation: glow 2s infinite alternate;
    }
    
    @keyframes glow {
      from {
        text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
      }
      to {
        text-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary), 0 0 40px var(--primary);
      }
    }
    
    .hero-content h2 {
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      margin-bottom: 30px;
      color: var(--light);
      font-weight: 300;
    }
    
    .cta-button {
      display: inline-block;
      padding: 12px 30px;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      color: var(--dark);
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
    }
    
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
    }
    
    /* Sections */
    section {
      padding: 80px 5%;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 2.2rem;
      display: inline-block;
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
    }
    
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    
    .card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 102, 255, 0.1));
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 240, 255, 0.1);
    }
    
    .card:hover::before {
      opacity: 1;
    }
    
    .card h3 {
      margin-bottom: 15px;
      color: var(--primary);
      font-size: 1.5rem;
    }
    
    .card-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      display: inline-block;
      transition: transform 0.3s ease;
    }
    
    .card:hover .card-icon {
      transform: scale(1.2);
    }
    
    .pricing {
      font-size: 1.8rem;
      color: var(--primary);
      margin: 20px 0;
      font-weight: 700;
    }
    
    .pricing-features {
      list-style: none;
      text-align: left;
      margin-top: 20px;
    }
    
    .pricing-features li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
    }
    
    .pricing-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: bold;
    }
    
    .highlight-card {
      border: 2px solid var(--primary);
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    }
    
    .highlight-card .cta-button {
      background: var(--primary);
      color: var(--dark);
    }
    
    /* About Section */
    .about-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .about-text {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .ceo-card {
      display: flex;
      align-items: center;
      gap: 30px;
      background: var(--card-bg);
      border-radius: 15px;
      padding: 30px;
      margin-top: 40px;
    }
    
    .ceo-image {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary);
    }
    
    .ceo-info h3 {
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .ceo-info span {
      color: var(--light);
      font-style: italic;
      margin-bottom: 15px;
      display: block;
    }
    
    /* Video Section */
    .video-section {
      text-align: center;
    }
    
    .video-wrapper {
      max-width: 800px;
      margin: 0 auto;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      border: 2px solid var(--card-border);
    }
    
    .video-wrapper video {
      width: 100%;
      display: block;
    }
    
    /* Contact Section */
    .contact-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-bottom: 40px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform 0.3s ease;
    }
    
    .contact-item:hover {
      transform: translateY(-5px);
    }
    
    .contact-icon {
      font-size: 1.5rem;
      color: var(--primary);
    }
    
    #contactForm {
      display: grid;
      gap: 20px;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .form-group {
      position: relative;
    }
    
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      color: var(--light);
      transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    }
    
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .file-upload-wrapper {
      position: relative;
    }
    
    .file-upload-btn {
      width: 100%;
      padding: 12px;
      background: rgba(0, 240, 255, 0.1);
      border: 1px dashed var(--primary);
      border-radius: 8px;
      color: var(--primary);
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .file-upload-btn:hover {
      background: rgba(0, 240, 255, 0.2);
    }
    
    .file-upload-input {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }
    
    /* Footer */
    footer {
      background: #060a14;
      padding: 60px 5% 20px;
      border-top: 1px solid var(--card-border);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column h4 {
      color: var(--primary);
      margin-bottom: 20px;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-column p, .footer-column ul {
      font-size: 0.9rem;
      line-height: 1.8;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul a {
      transition: color 0.3s ease;
    }
    .footer-column ul a:hover {
      color: var(--primary);
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .footer-logo img {
      height: 35px;
    }

    .footer-logo span {
      font-weight: 600;
      font-size: 1.1rem;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid var(--card-border);
      border-radius: 50%;
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background: var(--primary);
      color: var(--dark);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid var(--card-border);
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      nav ul {
        gap: 15px;
      }
      
      .ceo-card {
        flex-direction: column;
        text-align: center;
      }
    }
    
    @media (max-width: 768px) {
      nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.5s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
      }
      
      nav ul.active {
        right: 0;
      }
      
      nav ul li {
        width: 100%;
        text-align: center;
      }
      
      nav ul li ul {
        position: static;
        display: none; /* Initially hidden */
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0 0;
        width: 100%;
      }
      
      nav ul li:hover ul {
        display: none; /* Prevent hover from showing dropdown */
      }
      
      nav ul li.active ul {
        display: block; /* Show on active class */
      }
      
      nav ul li ul li {
        padding: 10px 0;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .hero {
        height: 80vh;
      }
      
      .hero-content h1 {
        font-size: 2rem;
      }
      
      .hero-content h2 {
        font-size: 1rem;
      }
      
      section {
        padding: 60px 5%;
      }
      
      .section-title h2 {
        font-size: 1.8rem;
      }
      
      .cards {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 20px;
      }

      .card .card-icon {
        font-size: 2.5rem;
      }

      .card h3 {
        font-size: 1.2rem;
      }
      
      .highlight-card {
        transform: scale(1);
      }
    }
