    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg: #0b1020;
      --card: rgba(255,255,255,0.06);
      --border: rgba(255,255,255,0.1);
      --text: #f8fafc;
      --muted: #94a3b8;
      --primary: #6366f1;
      --secondary: #8b5cf6;
      --success: #22c55e;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden !important;
      
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
    }

    .container {
      width: min(1200px, 92%);
      margin-inline: auto;
    }

   /* =========================================
   RESPONSIVE NAVBAR
========================================= */

.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(11,16,32,0.88);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}

.nav-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:80px;
  position:relative;
  /* border: 1px solid red; */
}

/* =========================================
   LOGO
========================================= */

.logo{
  white-space:nowrap;
  flex-shrink:0;
}
.logo img{
  width: 80px;
}
.logo span{
  color:var(--primary);
}

/* =========================================
   NAV LINKS
========================================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  color:var(--muted);
  font-size:0.95rem;
}

.nav-links a{
  transition:0.25s ease;
}

.nav-links a:hover{
  color:var(--text);
}

/* =========================================
   CTA BUTTON
========================================= */

.nav-btn{
  padding:12px 18px;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );

  font-weight:600;
  transition:0.3s ease;
  white-space:nowrap;
  flex-shrink:0;
}

.nav-btn:hover{
  transform:translateY(-2px);
}

/* =========================================
   MEGA MENU
========================================= */

.mega-dropdown{
  position:relative;
  /* border: 1px solid red; */
}

.mega-btn{
  background:transparent;
  border:none;
  color:var(--muted);
  font-size:0.95rem;
  cursor:pointer;
  font-family:inherit;
  transition:0.25s ease;
}

.mega-btn:hover{
  color:var(--text);
}

.mega-menu{
  position:absolute;
  left:50%;
  top:180%;
  transform:translateX(-50%) translateY(10px);

  width:min(1200px,95vw);

  background:#0f172a;

  border:1px solid var(--border);
  /* border: 1px solid red; */

  border-radius:24px;

  padding:40px;

  opacity:0;
  visibility:hidden;

  transition:0.35s ease;

  z-index:999;

  box-shadow:0 20px 50px rgba(0,0,0,0.45);
}

.mega-dropdown:hover .mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0);
}

.mega-content{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  /* border: 1px solid red; */
}

.mega-column h4{
  font-size:1rem;
  margin-bottom:18px;
  color:white;
}

.mega-column a{
  display:block;
  padding:10px 0;
  color:var(--muted);
  transition:0.25s ease;
  font-size:0.95rem;
}

.mega-column a:hover{
  color:#c7d2fe;
  transform:translateX(4px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width:1100px){

  .nav-wrapper{
    gap:18px;
  }

  .nav-links{
    gap:18px;
    font-size:0.9rem;
  }

  .nav-btn{
    padding:10px 14px;
    font-size:0.9rem;
  }

  .mega-content{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px){
 
  .nav-btn{
    display: none;
  }
  .mega-menu{
  position: fixed;
  top:100%;
  transform:translateX(-50%) translateY(10px);
  width:min(1200px,95vw);

 

 
}
  nav-wrapper{
  gap:12px;}
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:480px){

  .logo{
    font-size:1.3rem;
  }

  .nav-links{
    padding:14px;
  }

  .mega-menu{
    padding:18px;
  }

  .mega-column a{
    font-size:0.9rem;
  }
  

}



    /* Hero */
    .hero {
      position: relative;
      padding: 100px 0 80px;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 70%);
      top: -250px;
      left: -150px;
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 50px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(99,102,241,0.12);
      border: 1px solid rgba(99,102,241,0.2);
      padding: 10px 16px;
      border-radius: 999px;
      color: #c7d2fe;
      font-size: 0.9rem;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      line-height: 1.1;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.1rem;
      margin-bottom: 32px;
      max-width: 650px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary {
      padding: 15px 24px;
      border-radius: 14px;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    .btn-secondary {
      border: 1px solid var(--border);
      color: var(--muted);
    }

    .btn-primary:hover,
    .btn-secondary:hover {
      transform: translateY(-3px);
    }

    .hero-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 28px;
      border-radius: 24px;
      /* backdrop-filter: blur(12px); */
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      /* border: 1px solid red; */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero-card img{
      height: 500px;
    }

  
    /* Search */
    .search-box {
      margin-top: 30px;
      display: flex;
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      max-width: 700px;
    }

    .search-box input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 18px;
      color: white;
      font-size: 1rem;
    }

    .search-box button {
      border: none;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 0 24px;
      font-weight: 600;
      cursor: pointer;
    }

    /* Sections */
    section {
      padding: 80px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header span {
      color: #a5b4fc;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .section-header h2 {
      font-size: 2.5rem;
      margin: 14px 0;
    }

    .section-header p {
      color: var(--muted);
      max-width: 700px;
      margin-inline: auto;
    }

    /* Tools Grid */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
    }

    .tool-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 28px;
      border-radius: 24px;
      transition: 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .tool-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(99,102,241,0.12), transparent);
      opacity: 0;
      transition: 0.35s ease;
      pointer-events: none;
      z-index: 0;
    }

    .tool-card:hover::before {
      opacity: 1;
    }

    .tool-card:hover {
      transform: translateY(-6px);
      border-color: rgba(99,102,241,0.4);
    }
    .tool-card * {
  position: relative;
  z-index: 2;
}

    .tool-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
      background: rgba(99,102,241,0.15);
    }

    .tool-card h3 {
      margin-bottom: 12px;
      font-size: 1.2rem;
    }

    .tool-card p {
      color: var(--muted);
      margin-bottom: 18px;
      font-size: 0.95rem;
    }

    .tool-card a {
      color: #c7d2fe;
      font-weight: 600;
      z-index: 33 !important;
    }

    /* Stats */
    .stats {
      background: rgba(255,255,255,0.03);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .stat h3 {
      font-size: 2.4rem;
      margin-bottom: 10px;
      color: white;
    }

    .stat p {
      color: var(--muted);
    }

    /* Content Section */
    .content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .content-card {
      background: var(--card);
      border: 1px solid var(--border);
      padding: 30px;
      border-radius: 22px;
    }

    .content-card h3 {
      margin-bottom: 16px;
    }

    .content-card p {
      color: var(--muted);
    }
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.contact-form button {
  background: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.contact-form button:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  #faq,#Populartools,.faq{
      display: none !important;
  }
}
@media (max-width: 600px) {
 
  #faq,#Populartools,.faq{
      display: none !important;
  }
}
    /* Footer */
    footer {
      padding: 50px 0;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--muted);
    }

    footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    @media (max-width: 768px) {
      

      .hero {
        padding-top: 70px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        text-align: center;
      }

      .search-box {
        flex-direction: column;
      }

      .search-box button {
        padding: 18px;
      }
    }