/* ==== RESET ==== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #0d0d2b;
      color: #fff;
      overflow-x: hidden;
    }

 /* === Navbar === */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
/* === LOGO IMAGE === */
.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo img {
  height: 55px;
  width: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(0,255,255,0.3));
}

/* Hover glow effect */
.logo img:hover {
  filter: drop-shadow(0 0 15px rgba(0,255,255,0.9))
          drop-shadow(0 0 30px rgba(0,255,255,0.6));
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }
}
@media (max-width: 480px) {
  .logo img {
    height: 38px;
  }
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 5px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0%; height: 2px;
  background: #00ffd5;
  transition: 0.3s;
}
nav ul li a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav ul {
    position: absolute;
    top: 70px; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  nav ul.active {
    max-height: 250px;
  }
}
    /* ==== HERO SECTION (VIDEO BACKGROUND) ==== */
    header {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      color: #fff;
    }

    header video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 30, 0.6);
      z-index: 0;
    }

    header h1 {
      font-size: 3rem;
      color: cyan;
      z-index: 1;
      animation: fadeInDown 1.5s ease;
    }

    header p {
      font-size: 1.2rem;
      color: #ddd;
      z-index: 1;
      animation: fadeInUp 2s ease;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      header h1 { font-size: 2rem; }
      header p { font-size: 1rem; padding: 0 20px; }
    }

    /* ==== SERVICES SECTION ==== */
    section {
      padding: 100px 60px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      background: #0b0b25;
    }

    .card {
      background: #151538;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      transition: all 0.4s ease;
      cursor: pointer;
      position: relative;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 20px #FF00D9;
    }

    .card h3 {
      font-size: 1.5rem;
      color: #FF0088;
      margin-bottom: 10px;
    }

    .card p {
      color: #ccc;
      font-size: 0.95rem;
    }

    .card button {
      margin-top: 20px;
      background: #7209b7;
      border: none;
      padding: 10px 20px;
      color: white;
      font-weight: 600;
      border-radius: 25px;
      transition: background 0.3s;
    }

    .card button:hover {
      background: cyan;
      color: #000;
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 25px;
        grid-template-columns: 1fr;
      }
    }

    /* ==== ABOUT SECTION ==== */
    .about-section {
      background: linear-gradient(135deg, #0d0d2b 0%, #151538 100%);
      padding: 100px 60px;
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .about-container {
      max-width: 900px;
      margin: 0 auto;
      animation: fadeInSlideUp 1.8s ease forwards;
    }

    .about-title {
      font-size: 2.5rem;
      color: cyan;
      position: relative;
      display: inline-block;
      margin-bottom: 15px;
    }

    .about-title span {
      color: #00ff99;
    }

    .about-title::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: cyan;
      margin: 12px auto 25px auto;
      border-radius: 5px;
      animation: glowLine 2s infinite alternate;
    }

    .about-subtitle {
      font-size: 1.3rem;
      color: #00ff99;
      margin-bottom: 25px;
      font-weight: 500;
    }

    .about-section p {
      line-height: 1.7;
      color: #ccc;
      margin-bottom: 18px;
      font-size: 1rem;
      animation: fadeInText 2.2s ease both;
    }

    .about-highlight {
      color: #fff;
      font-weight: 500;
      margin-top: 20px;
    }

    .about-footer {
      margin-top: 40px;
      color: cyan;
      font-weight: 600;
      font-size: 1.1rem;
    }

    @keyframes fadeInSlideUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInText {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes glowLine {
      from { box-shadow: 0 0 5px cyan; }
      to { box-shadow: 0 0 20px cyan; }
    }

    @media (max-width: 768px) {
      .about-section {
        padding: 70px 30px;
      }
      .about-title { font-size: 2rem; }
      .about-subtitle { font-size: 1.1rem; }
      .about-section p { font-size: 0.95rem; }
    }

    /* ============ Floating Buttons ============ */
  .floating-controls {
    position: fixed;
    right: 20px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 20;
  }

  .chat-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg,#00f6ff,#0066ff);
    box-shadow: 0 10px 35px rgba(0,246,255,0.2);
    font-size: 26px;
    cursor: pointer;
    color: #001;
    transition: all 0.3s ease;
  }

  .chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(0,246,255,0.5);
  }

  .whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 0 30px rgba(37,211,102,0.2);
  }

  /* ============ Chat Panel ============ */
  .chat-panel {
    position: fixed;
    right: 22px;
    bottom: 100px;
    width: 340px;
    max-height: 460px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg,rgba(10,12,14,0.97),rgba(5,7,9,0.98));
    border: 1px solid rgba(0,246,255,0.15);
    box-shadow: 0 20px 60px rgba(0,246,255,0.08);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.35s ease-out;
    z-index: 15;
  }

  .chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0,246,255,0.12);
    color: #bffaff;
    font-weight: 700;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .chat-header img {
    width: 32px; height: 32px; border-radius: 50%;
    background: radial-gradient(circle,#00f6ff,#0066ff);
  }

  .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    color: #dff9ff;
    scrollbar-width: thin;
  }

  .chat-footer {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
  }

  .chat-footer input {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    color: #fff;
    outline: none;
  }

  .chat-footer button {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg,#00f6ff,#0066ff);
    color: #002;
    font-weight: 700;
    cursor: pointer;
  }

  .msg { margin: 8px 0; }
  .msg.user { text-align: right; }
  .msg.user .bubble {
    display: inline-block;
    background: #00f6ff;
    color: #002;
    padding: 8px 12px;
    border-radius: 14px 14px 2px 14px;
    max-width: 80%;
  }

  .msg.bot { text-align: left; }
  .msg.bot .bubble {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    color: #dff9ff;
    padding: 8px 12px;
    border-radius: 14px 14px 14px 2px;
    max-width: 80%;
  }

  .typing {
    display: inline-block;
    width: 20px;
    text-align: left;
  }
  .dot {
    display:inline-block;
    width:6px; height:6px;
    margin:0 2px;
    background:#00f6ff;
    border-radius:50%;
    animation: blink 1s infinite;
  }
  .dot:nth-child(2){animation-delay:0.2s;}
  .dot:nth-child(3){animation-delay:0.4s;}

  @keyframes blink {
    0%,80%,100%{opacity:0;}
    40%{opacity:1;}
  }
  @keyframes slideUp {
    from {transform:translateY(40px);opacity:0;}
    to {transform:translateY(0);opacity:1;}
  }

  /* ============ Mobile ============ */
  @media (max-width:600px) {
    .chat-panel {
      width: 90%;
      right: 5%;
      bottom: 90px;
      max-height: 70vh;
    }
    .chat-btn { width:58px;height:58px;font-size:22px; }
  }
    /* ==== Cursor Glow Effect ==== */
    #cursor-glow {
      position: fixed;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, rgba(0, 255, 255, 0.1) 70%, transparent 100%);
      filter: blur(6px);
      transition: transform 0.1s linear;
      mix-blend-mode: screen;
}

    
      
    /* ==== FOOTER ==== */
footer {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 50px 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-right {
  text-align: right;
  position: relative;
}

.company-name {
  font-size: 28px;
  font-weight: bold;
  color: #00ff99;
  animation: floatText 3s ease-in-out infinite alternate;
}

@keyframes floatText {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.footer-middle h3,
.footer-left h3 {
  margin-bottom: 10px;
  color: #00ff99;
}

.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle li {
  margin: 6px 0;
}

.footer-middle li::before {
  content: "• ";
  color: #00ff99;
}

.footer-left p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.social-icons a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00ff99;
}

.social-icons img {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

#copy {
  text-align: center;
  margin-top: 50px;
  color: #aaa;
  font-size: 0.9rem;
  width: 100%;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  footer {
    padding: 40px 40px;
  }
  .company-name {
    font-size: 24px;
  }
  .footer-left, .footer-middle, .footer-right {
    margin: 15px 0;
  }
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }
  .footer-left, .footer-middle, .footer-right {
    text-align: center;
    margin: 15px 0;
    min-width: auto;
    width: 90%;
  }
  .company-name {
    font-size: 22px;
  }
  .social-icons a {
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 20px 15px;
  }
  .company-name {
    font-size: 20px;
  }
  .footer-left p,
  .footer-middle li,
  .footer-right p {
    font-size: 0.9rem;
  }
  #copy {
    margin-top: 30px;
    font-size: 0.8rem;
  }
  .social-icons img {
    width: 20px;
    height: 20px;
  }
}