:root {
      --primary: #273774;
      --accent: #57e0ff;
      --accent-dark: #00aaff;
      --text: #e0f7fa;
      --bg: #0a0f1f;
      --glass: rgba(39, 55, 116, 0.25);
      --border: rgba(87, 224, 255, 0.4);
      --glow: 0 0 30px rgba(87, 224, 255, 0.6);
      --shadow: 0 15px 35px rgba(39, 55, 116, 0.2);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      cursor: none;
    }

    /* Magnetic Cursor */
    #cursor {
      position: fixed; width: 20px; height: 20px;
      background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none; z-index: 9999;
      mix-blend-mode: screen; transform: translate(-50%, -50%);
      box-shadow: var(--glow); transition: transform 0.2s ease;
    }
    .ink-cursor {
      position: fixed; width: 40px; height: 40px;
      background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%) scale(0); opacity: 0;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }
    .ink-cursor.active {
      transform: translate(-50%, -50%) scale(1); opacity: 0.6;
    }

    /* Preloader */
    #preloader {
      position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
      background: var(--primary); display: flex; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.8s, visibility 0.8s;
    }
    .loader {
      width: 80px; height: 80px; border: 6px solid rgba(87, 224, 255, 0.2);
      border-top: 6px solid var(--accent); border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Navbar */
    .navbar {
      backdrop-filter: blur(20px); background: var(--glass); border-bottom: 1px solid var(--border);
      padding: 1.2rem 0; transition: all 0.4s; box-shadow: 0 0 30px rgba(87,224,255,0.1);
      z-index: 1050;
    }
    .navbar.scrolled { padding: 0.6rem 0; background: rgba(39,55,116,0.9); }
    .navbar-brand {
      font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900;
      background: linear-gradient(90deg, #fff, var(--accent));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .nav-link {
      color: white !important; font-weight: 600; position: relative;
      padding: 0.5rem 1rem !important; transition: 0.3s;
    }
    .nav-link::after {
      content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px;
      background: var(--accent); transition: 0.4s; transform: translateX(-50%);
    }
    .nav-link:hover::after, .nav-link.active::after { width: 80%; }

    /* Hero */
    .hero {
      height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center;
    }
    #hero-video {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.5);
    }
    .hero::after {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(39,55,116,0.9), rgba(87,224,255,0.1));
    }
    #particles-js {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    }
    .hero-content {
      position: relative; z-index: 2; text-align: center; max-width: 1000px;
    }
    .morph-text {
      font-family: 'Orbitron', sans-serif; font-size: 6.5rem; font-weight: 900;
      background: linear-gradient(90deg, #fff, var(--accent), #fff);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      text-shadow: 0 0 50px rgba(87,224,255,0.6);
    }
    .hero p {
      font-size: 1.8rem; margin: 1.5rem 0; font-weight: 300; opacity: 0.9;
    }

    /* Section Title */
    .section-title {
      font-family: 'Orbitron', sans-serif; font-size: 4rem; text-align: center; margin-bottom: 3rem;
      background: linear-gradient(90deg, var(--text), var(--accent));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      position: relative;
    }
    .section-title::after {
      content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
      width: 150px; height: 5px; background: var(--accent); border-radius: 3px;
      box-shadow: var(--glow);
    }

    /* 3D Flip Cards - Services */
    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem; padding: 2rem 0;
    }
    .service-card {
      perspective: 1000px; height: 380px; cursor: pointer;
    }
    .service-inner {
      position: relative; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      transform-style: preserve-3d; border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    .service-card:hover .service-inner { transform: rotateY(180deg); }
    .service-front, .service-back {
      position: absolute; width: 100%; height: 100%; backface-visibility: hidden;
      border-radius: 24px; overflow: hidden;
    }
    .service-front { background: linear-gradient(135deg, var(--primary), #1a1f3d); }
    .service-img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
    .service-card:hover .service-img { transform: scale(1.1); filter: brightness(0.7); }
    .service-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(39,55,116,0.8), rgba(87,224,255,0.3));
      display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
      color: var(--accent); opacity: 0; transition: 0.5s;
    }
    .service-card:hover .service-overlay { opacity: 1; }
    .service-back {
      background: linear-gradient(135deg, #1a1f3d, var(--primary));
      color: white; transform: rotateY(180deg); display: flex; align-items: center;
      justify-content: center; padding: 2rem; text-align: center;
    }
    .service-link {
      color: var(--accent); text-decoration: none; font-weight: 600;
      position: relative; transition: 0.4s;
    }
    .service-link::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
      background: var(--accent); transition: 0.4s;
    }
    .service-link:hover::after { width: 100%; }

    /* 3D Timeline - Why Choose Us */
    .timeline-container { position: relative; max-width: 1000px; margin: 0 auto; padding: 3rem 0; }
    .timeline-line {
      position: absolute; top: 0; left: 50%; width: 4px; height: 100%;
      background: linear-gradient(to bottom, transparent, var(--accent), transparent);
      transform: translateX(-50%); z-index: 1; border-radius: 2px;
      box-shadow: 0 0 20px rgba(87, 224, 255, 0.5); animation: pulseLine 3s infinite;
    }
    @keyframes pulseLine { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
    .timeline-item { position: relative; margin: 4rem 0; width: 50%; z-index: 2; }
    .timeline-item.right { left: 50%; }
    .timeline-card {
      background: var(--glass); backdrop-filter: blur(15px); border-radius: 20px;
      padding: 1.8rem; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: 0.6s; position: relative; margin-left: 3rem;
    }
    .timeline-item.right .timeline-card { margin-left: 0; margin-right: 3rem; }
    .timeline-card:hover {
      transform: translateY(-15px) scale(1.05); box-shadow: 0 20px 50px rgba(87,224,255,0.4);
      border-color: var(--accent);
    }
    .timeline-icon {
      position: absolute; top: 50%; left: -60px; width: 70px; height: 70px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; color: white; box-shadow: 0 0 30px rgba(87,224,255,0.6);
      transform: translateY(-50%); z-index: 3; transition: 0.5s;
    }
    .timeline-item.right .timeline-icon { left: auto; right: -60px; }
    .timeline-card:hover .timeline-icon {
      transform: translateY(-50%) scale(1.2) rotate(15deg);
      box-shadow: 0 0 50px rgba(87,224,255,0.9);
    }

    /* Ink Reveal - Strengths */
    .ink-container { max-width: 900px; margin: 0 auto; padding: 2rem 0; }
    .ink-item { position: relative; margin: 3rem 0; text-align: center; opacity: 0; transform: translateY(30px); }
    .ink-item.revealed { opacity: 1; transform: translateY(0); transition: all 0.8s ease; }
    .ink-line { width: 100%; height: 60px; margin-bottom: 1rem; }
    .ink-line path {
      stroke-dasharray: 1000; stroke-dashoffset: 1000; transition: stroke-dashoffset 2s ease;
    }
    .ink-item.revealed .ink-line path { stroke-dashoffset: 0; }
    .ink-text {
      font-family: 'Orbitron', sans-serif; font-size: 1.6rem; margin: 0.5rem 0;
      color: transparent; background: linear-gradient(90deg, #fff, #57e0ff);
      -webkit-background-clip: text; background-clip: text; opacity: 0;
      transform: translateY(20px); transition: all 1s ease 0.5s;
    }
    .ink-item.revealed .ink-text { opacity: 1; transform: translateY(0); }
    .ink-desc {
      font-size: 0.95rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto;
      opacity: 0; transform: translateY(15px); transition: all 1s ease 0.8s;
    }
    .ink-item.revealed .ink-desc { opacity: 1; transform: translateY(0); }
#about {
    min-height: 100vh;
    padding: 160px 0;
    position: relative;
    background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%), #0a0f1f;
    overflow: hidden;}
    /* Contact */
    .neon-card {
      background: var(--glass); backdrop-filter: blur(20px); border-radius: 24px;
      padding: 2.5rem; border: 1px solid var(--border); transition: 0.6s;
      box-shadow: var(--shadow); position: relative; overflow: hidden;
    }
    .neon-card:hover { transform: translateY(-20px) scale(1.03); box-shadow: 0 0 60px rgba(87,224,255,0.5); }

    /* Footer */
    .footer { background: linear-gradient(135deg, rgba(39,55,116,0.3), rgba(15,26,46,0.6)); backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; margin-top: 5rem; }
  .offcanvas.offcanvas-end{display: none;}
    /* Responsive */
    @media (max-width: 768px) {
      .hero h1 { font-size: 3.5rem; }
      .section-title { font-size: 2.5rem; }
      .service-card { height: 320px; }
      ul.navbar-nav{    color: #fff;
    z-index: 99999;
    position: absolute;}
    .offcanvas.offcanvas-end{display: block!important;}
    }

    /* About Section */
    #about {
      padding: 50px 0;
      position: relative;
      overflow: hidden;
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Title */
    .about-title {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
    }
.toggler-icon {
    display: flex
;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
}
.toggler-icon span {
    display: block;
    height: 3px;
    background: #57e0ff;
    border-radius: 2px;
    transition: 0.3s;
}
    .about-title h2 {
      font-family: 'Orbitron', sans-serif;
         font-size: 50px;
      font-weight: 900;
      background: linear-gradient(90deg, #ffffff, var(--accent), #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 40px rgba(87, 224, 255, 0.4);
      position: relative;
      display: inline-block;
    }
       .about-img-wrapper  img {height: 450px;
    object-fit: cover;
    border-radius: 10px;}
    .service-card  img {
    height: 220px; width: 100%;
    object-fit: cover;}
    .about-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 5px;
      background: var(--accent);
      border-radius: 3px;
      box-shadow: var(--glow);
      animation: pulseLine 2s infinite;
    }

    @keyframes pulseLine {
      0%, 100% { opacity: 0.7; }
      50% { opacity: 1; }
    }

    /* Content Row */
    .about-row {
      display: flex;
      align-items: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .about-img-wrapper {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .about-img {
          width: 100%;
    height: 450px;
      border-radius: 24px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      transition: all 0.6s ease;
      position: relative;
      z-index: 2;
    }

    .about-img-wrapper::before {
      content: '';
      position: absolute;
      top: -20px; left: -20px;
      right: -20px; bottom: -20px;
      background: linear-gradient(135deg, var(--accent), transparent);
      border-radius: 30px;
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: 1;
    }

    .about-img-wrapper:hover::before {
      opacity: 0.2;
    }

    .about-img-wrapper:hover .about-img {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 70px rgba(87, 224, 255, 0.3);
    }

    /* Glass Card for Text */
    .about-text {
      flex: 1;
      min-width: 300px;
      background: var(--glass);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: 24px;
          padding: 15px 40px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      transition: all 0.6s ease;
    }

    .about-text::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(87, 224, 255, 0.1), transparent);
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: 0;
    }

    .about-text:hover::before {
      opacity: 1;
    }

    .about-text:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(87, 224, 255, 0.25);
      border-color: var(--accent);
    }

    .about-text > * {
      position: relative;
      z-index: 2;
    }

    .about-text .lead {
      font-size: 1.35rem;
      font-weight: 500;
      margin-bottom: 1.2rem;
      color: white;
      line-height: 1.6;
    }

    .about-text p {
         font-size: 16px;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.85);
      transform: translateY(20px);
      transition: all 0.8s ease;
    }

    .about-text p.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* Floating Orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.1;
      z-index: 0;
      animation: float 10s infinite ease-in-out;
    }

    .orb-1 {
      width: 400px; height: 400px;
      background: var(--accent);
      top: 10%; left: -10%;
    }

    .orb-2 {
      width: 300px; height: 300px;
      background: var(--accent-dark);
      bottom: 10%; right: -10%;
      animation-delay: -5s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(10deg); }
    }
button.btnsubmi{    border: 2px solid #fff;
    color: #fff;}
    /* Responsive */
    @media (max-width: 992px) {
      .about-title::after {
    content: '';
    left: 35%;}
    .why-title::after {
    content: '';
    left: 39%!important;}
      .service-card img {
    height: 200px;}
      .offcanvas-body    {background: #000;
    height: 270px;
    position: relative;
    top: -7px;
}
      .social-links {
    justify-content: center;}
      .about-row {
        flex-direction: column;
        text-align: center;
      }
      .about-img-wrapper, .about-text {
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .about-title h2 {
      font-size: 2rem;
      }
      .about-text {
        padding: 1.2rem;
      }
      .about-text .lead {
        font-size: 1.2rem;
      }
    }

    /* Why Choose Section */
    #why {
      padding: 40px 0;
      position: relative;
      background: linear-gradient(135deg, #0a0f1e 0%, #121826 100%);
      overflow: hidden;
    }

    .why-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      position: relative;
      z-index: 2;
    }

    /* Title */
    .why-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .why-title h2 {
      font-family: 'Orbitron', sans-serif;
         font-size: 50px;
      font-weight: 900;
      background: linear-gradient(90deg, #ffffff, var(--accent), #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 40px rgba(87, 224, 255, 0.4);
      position: relative;
      display: inline-block;
    }

    .why-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 5px;
      background: var(--accent);
      border-radius: 3px;
      box-shadow: var(--glow);
      animation: pulseLine 2s infinite;
    }

    .why-subtitle {
      text-align: center;
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 5rem;
      font-weight: 300;
    }

    @keyframes pulseLine {
      0%, 100% { opacity: 0.7; }
      50% { opacity: 1; }
    }

    /* Nexus Timeline */
    .nexus-container {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      padding: 4rem 0;
    }

    .nexus-line {
      position: absolute;
      top: 0; left: 50%;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, transparent, var(--accent), transparent);
      transform: translateX(-50%);
      border-radius: 2px;
      box-shadow: 0 0 20px rgba(87, 224, 255, 0.5);
      z-index: 1;
      animation: pulseLine 3s infinite;
    }

    /* Cards */
    .nexus-item {
      position: relative;
      margin: 5rem 0;
      width: 50%;
      z-index: 2;
    }

    .nexus-item.right {
      left: 50%;
    }

    .nexus-card {
      background: var(--glass);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      position: relative;
      margin-left: 3rem;
      overflow: hidden;
    }

    .nexus-item.right .nexus-card {
      margin-left: 0;
      margin-right: 3rem;
    }

    .nexus-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(87, 224, 255, 0.1), transparent);
      opacity: 0;
      transition: opacity 0.6s ease;
      z-index: 0;
    }

    .nexus-card:hover::before {
      opacity: 1;
    }

    .nexus-card:hover {
      transform: translateY(-15px) scale(1.05);
      border-color: var(--accent);
      box-shadow: 0 25px 60px rgba(87, 224, 255, 0.3);
    }

    .nexus-card > * {
      position: relative;
      z-index: 2;
    }

    .nexus-icon {
      position: absolute;
      top: 50%;
      left: -70px;
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      box-shadow: var(--glow);
      transform: translateY(-50%);
      z-index: 3;
      transition: all 0.5s ease;
    }

    .nexus-item.right .nexus-icon {
      left: auto;
      right: -70px;
    }

    .nexus-card:hover .nexus-icon {
      transform: translateY(-50%) scale(1.2) rotate(15deg);
      box-shadow: 0 0 50px rgba(87, 224, 255, 0.9);
      animation: pulseIcon 1.5s infinite;
    }

    @keyframes pulseIcon {
      0%, 100% { transform: translateY(-50%) scale(1.2); }
      50% { transform: translateY(-50%) scale(1.3); }
    }

    .nexus-content h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
      background: linear-gradient(90deg, white, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nexus-content p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
    }

    /* SVG Connection Lines */
    .nexus-svg {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      max-width: 1200px;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 0;
      opacity: 0.3;
    }

    .nexus-path {
      stroke: url(#gradient-line);
      stroke-width: 2;
      fill: none;
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: drawLine 3s forwards;
    }

    @keyframes drawLine {
      to { stroke-dashoffset: 0; }
    }

    /* Background Orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.12;
      z-index: 0;
      animation: float 12s infinite ease-in-out;
    }

    .orb-left {
      width: 500px; height: 500px;
      background: var(--accent);
      top: -10%; left: -10%;
    }

    .orb-right {
      width: 400px; height: 400px;
      background: var(--accent-dark);
      bottom: -15%; right: -10%;
      animation-delay: -6s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-40px) rotate(10deg); }
    }

    /* Responsive */
    @media (max-width: 992px) {
         .nexus-container {
      padding: 0rem 0;
    }
      .nexus-item, .nexus-item.right {
        width: 100%;
        left: 0 !important;
      }
      .nexus-card {
        margin-left: 3rem !important;
        margin-right: 0 !important;
      }
      .nexus-icon {
        left: -70px !important;
        right: auto !important;
      }
      .nexus-svg { display: none; }
    }

    @media (max-width: 576px) {
      .why-title h2 { font-size: 2rem; }
      .nexus-card { padding: 1.5rem; margin-left: 2rem !important; }
      .nexus-icon { width: 60px; height: 60px; font-size: 1.4rem; left: -60px !important; }
    }

    /* Services Section */
    #services {
      padding: 40px 0;
      position: relative;
      background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
        #0a0f1f;
      overflow: hidden;
    }

    .services-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    /* Title */
    .services-title {
      text-align: center;
      margin-bottom: 2rem;
    }

    .services-title h2 {
      font-family: 'Orbitron', sans-serif;
         font-size: 50px;
      font-weight: 900;
      background: linear-gradient(90deg, #00d4ff, #ffffff, #00d4ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
      letter-spacing: 2px;
    }

    .services-title::after {
      content: '';
      display: block;
      width: 120px;
      height: 5px;
      background: var(--accent);
      margin: 1.5rem auto 0;
      border-radius: 3px;
      box-shadow: var(--glow);
      animation: pulseLine 2s infinite;
    }

    .services-subtitle {
      font-size: 1.35rem;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 1rem;
      font-weight: 300;
    }

    @keyframes pulseLine {
      0%, 100% { opacity: 0.7; transform: scaleX(1); }
      50% { opacity: 1; transform: scaleX(1.1); }
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 2.5rem;
      padding: 2rem 0;
    }

    .service-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
          height: 500px;
      background: var(--glass);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-20px) scale(1.03);
      border-color: var(--accent);
      box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3), var(--glow);
    }

    .service-img {
      width: 100%;
      height: 45%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .service-card:hover .service-img {
      transform: scale(1.1);
    }

    .service-content {
      padding: 1.2rem;
      height: 55%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      margin-bottom: 1rem;
      box-shadow: var(--glow);
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.15) rotate(10deg);
      box-shadow: 0 0 50px rgba(0, 212, 255, 0.8);
    }

    .service-content h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.6rem;
      margin: 0.8rem 0;
      background: linear-gradient(90deg, white, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .service-content p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    .service-link {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.4s ease;
      position: relative;
    }

    .service-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.4s ease;
    }

    .service-link:hover {
      color: white;
      text-shadow: 0 0 10px var(--accent);
    }

    .service-link:hover::after {
      width: 100%;
    }

    .service-link i {
      transition: transform 0.4s ease;
    }

    .service-link:hover i {
      transform: translateX(5px);
    }

    /* Floating Glow Orbs */
    .glow-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
      animation: float 12s infinite ease-in-out;
    }

    .orb-1 {
      width: 500px; height: 500px;
      background: var(--accent);
      top: -10%; left: -10%;
    }

    .orb-2 {
      width: 400px; height: 400px;
      background: var(--accent-glow);
      bottom: -15%; right: -10%;
      animation-delay: -6s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-30px) rotate(8deg); }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .services-title h2 { font-size: 3.8rem; }
      .service-card { height: 460px; }
    }

    @media (max-width: 576px) {
      .services-title h2 { font-size: 2rem; }
      .service-card { height: 440px; }
      .service-content {     height: 50%;        padding: 10px 20px;
    }
      .service-icon { width: 60px; height: 60px; font-size: 1.5rem; }
      .service-content h3 { font-size: 1.4rem; }
    }
.neon-card{color:#fff;}
.form-control::placeholder {
  color: #ffffff !important;
  opacity: 1; /* Ensures full visibility in Firefox */
  font-weight: 400;
}
    /* Hero Section with Background Image */
    #hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      overflow: hidden;
     background: url(../../assets/img/slider/slide1a.jpg);
         background-color: #767676f0;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    display: flex
;
    align-items: center;
    background-position: center;    }

    /* Dark Overlay for Readability */
    .overlay {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: var(--overlay);
      z-index: 1;
    }

    /* Particle Canvas */
    #particle-canvas {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    /* Title */
    .hero-title {
      position: relative;
      z-index: 3;
      margin-bottom: 1.5rem;
    }

    .hero-title h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 7rem;
      font-weight: 900;
      background: linear-gradient(90deg, #ffffff, var(--accent), #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 
        0 0 40px rgba(0, 224, 255, 0.8),
        0 0 80px rgba(0, 224, 255, 0.5),
        0 0 120px rgba(0, 224, 255, 0.3);
      letter-spacing: 5px;
      transform: perspective(1000px) rotateX(12deg);
      animation: floatTitle 6s infinite ease-in-out;
    }

    @keyframes floatTitle {
      0%, 100% { transform: perspective(1000px) rotateX(12deg) translateY(0); }
      50% { transform: perspective(1000px) rotateX(12deg) translateY(-25px); }
    }

    .hero-title h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 5.5rem;
      font-weight: 700;
      color: transparent;
      -webkit-text-stroke: 2.5px var(--accent);
      text-stroke: 2.5px var(--accent);
      text-shadow: var(--glow);
      margin-top: -1.2rem;
      animation: pulseStroke 3s infinite;
    }

    @keyframes pulseStroke {
      0%, 100% { opacity: 0.85; }
      50% { opacity: 1; }
    }

    .hero-subtitle {
      font-size: 1.5rem;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 2.5rem;
      font-weight: 300;
      letter-spacing: 1.5px;
      position: relative;
      z-index: 3;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    /* Custom Cursor */
    #cursor {
      position: fixed;
      width: 35px; height: 35px;
      background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: screen;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 40px var(--accent);
      transition: transform 0.1s ease;
    }
.hero-title{opacity: 1!important;}
    /* Responsive */
    @media (max-width: 992px) {
      .hero-title h1 { font-size: 5rem; }
      .hero-title h2 { font-size: 3.8rem; }
      .hero-subtitle { font-size: 1.3rem; }
    }

    @media (max-width: 576px) {
      .hero-title h1 { font-size: 3.5rem; letter-spacing: 3px; }
      .hero-title h2 { font-size: 2.8rem; }
      .hero-subtitle { font-size: 1.1rem; margin-top: 2rem; }
      #cursor { width: 25px; height: 25px; }
    }

    /* contact us */
    .contact-container {
      max-width: 600px;
      width: 100%;
      text-align: center;
    }

    /* Hand-Drawn Title */
    .title-svg {
      width: 100%;
      height: 80px;
      margin-bottom: 1rem;
    }

    #titlePath {
      stroke: var(--accent);
      stroke-width: 2.5;
      fill: none;
      stroke-dasharray: 900;
      stroke-dashoffset: 900;
      animation: draw 3s forwards ease-in-out;
    }

    .handwritten {
      font-family: 'Dancing Script', cursive;
      font-size: 3.2rem;
      font-weight: 700;
      fill: transparent;
      animation: fillText 2s forwards 2.5s;
    }

    @keyframes draw { to { stroke-dashoffset: 0; } }
    @keyframes fillText { to { fill: var(--accent); } }

    /* Subtitle */
    .subtitle {
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 2.5rem;
      font-size: 1.1rem;
    }

    /* Form */
    .contact-form {
      background: var(--glass);
      backdrop-filter: blur(16px);
      border-radius: 24px;
      padding: 2.5rem;
      border: 1.5px solid var(--border);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .form-group {
      margin-bottom: 1.5rem;
      text-align: left;
    }

    label {
      display: block;
      margin-bottom: 0.6rem;
      font-weight: 600;
      color: white;
      font-size: 0.95rem;
    }

    input, textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      border: 1.5px solid rgba(87, 224, 255, 0.3);
      color: white;
      padding: 1rem 1.2rem;
      border-radius: 16px;
      font-size: 1rem;
      transition: all 0.4s ease;
      backdrop-filter: blur(8px);
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 25px rgba(87, 224, 255, 0.3);
    }

    input::placeholder, textarea::placeholder {
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    /* Submit Button */
    .submit-btn {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 1.5rem auto 0;
      box-shadow: 0 0 30px rgba(87, 224, 255, 0.4);
      transition: all 0.5s ease;
    }

    .submit-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 0 45px rgba(87, 224, 255, 0.7);
    }

    .submit-btn i {
      font-size: 1.2rem;
    }

    /* Success Message */
    .success {
      margin-top: 1.5rem;
      color: var(--accent);
      font-weight: 600;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.6s ease;
    }

    .contact-form:valid .success {
      opacity: 1;
      transform: translateY(0);
    }

    /* Footer Info */
    .contact-info {
      margin-top: 3rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .contact-info a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 576px) {
      .handwritten { font-size: 2.4rem; }
      .contact-form { padding: 2rem; }
      .submit-btn { padding: 0.9rem 2rem; font-size: 1rem; }
    }

/* Footer */
    footer {
      position: relative;
      background: linear-gradient(135deg, #0f1a3d 0%, #0a0f1f 100%);
      padding: 80px 0 40px;
      overflow: hidden;
      border-top: 1px solid var(--border);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      position: relative;
      z-index: 2;
    }

    /* Logo & Tagline */
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .footer-logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      background: linear-gradient(90deg, #ffffff, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: var(--glow);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .footer-logo:hover {
      text-shadow: 0 0 50px rgba(87, 224, 255, 0.9);
      transform: scale(1.05);
    }

    .footer-tagline {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    /* Quick Links */
    .footer-links h3 {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.4rem;
      margin-bottom: 1.2rem;
      color: var(--accent);
      text-shadow: 0 0 15px rgba(87, 224, 255, 0.4);
    }
.social-links {
    display: flex
;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    width: 40px; text-decoration: none;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s 
ease;
}
.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}
    .footer-links ul {
      list-style: none;    padding-left: 0px;
    margin-left: -15px;
    }

    .footer-links li {
      margin: 0.7rem 0;
      transform: perspective(1000px) rotateX(0deg);
      transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding-left: 20px;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .footer-links a::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: bold;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: white;
      text-shadow: 0 0 10px var(--accent);
      padding-left: 25px;
    }

    .footer-links a:hover::before {
      opacity: 1;
      transform: translateX(0);
    }

    .footer-links li:hover {
      transform: perspective(1000px) rotateX(8deg) translateY(-3px);
    }

    /* Copyright */
    .footer-bottom {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px dashed rgba(87, 224, 255, 0.3);
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.6);
      position: relative;
      z-index: 2;
    }

    /* Scroll to Top */
    .scroll-top {
      position: absolute;
      right: 30px;
      bottom: 30px;
      width: 50px;
      height: 50px;
      background: var(--glass);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--glow);
      transition: all 0.4s ease;
      z-index: 10;
    }

    .scroll-top:hover {
      transform: translateY(-5px) scale(1.1);
      background: rgba(87, 224, 255, 0.2);
      box-shadow: 0 0 50px rgba(87, 224, 255, 0.8);
    }

    .scroll-top i {
      color: var(--accent);
      font-size: 1.3rem;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    /* Particle Background */
    #footer-particles {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    /* Glass Overlay */
    .footer-overlay {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: var(--glass);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 0;
      opacity: 0.4;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .footer-links h3 { margin-bottom: 1rem; }
      .scroll-top { right: 20px; bottom: 20px; width: 45px; height: 45px; }
      .footer-logo { font-size: 1.9rem; }
    }

    @media (max-width: 480px) {
      .footer-logo { font-size: 1.7rem; }
      .footer-links a { font-size: 0.95rem; }
    }