/* Base Styles */
:root {
    --background: #0f1217;
    --foreground: #ffffff;
    --primary: #06B6D4;
    --primary-hover: #0891b2;
    --secondary: #1e293b;
    --muted: #334155;
    --muted-foreground: #94a3b8;
    --accent: #7C3AED;
    --accent-foreground: #ffffff;
    --blue: #2563EB;
    --purple: #7C3AED;
    --cyan: #06B6D4;
    --pink: #DB2777;
    --red: #ef4444;
    --green: #22c55e;
    --yellow: #eab308;
    --indigo: #6366f1;
    --border: #1e293b;
    --input: #1e293b;
    --radius: 0.5rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul {
    list-style: none;
  }
  
  /* Utility Classes */
  .text-white {
    color: var(--foreground);
  }
  
  .highlight-gradient {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 0.5rem;
  }
  
  .primary-btn {
    background-color: var(--primary);
    color: white;
  }
  
  .primary-btn:hover {
    background-color: var(--primary-hover);
  }
  
  .button-glow {
    position: relative;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
  }
  
  .button-glow:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.7);
  }
  
  .wide-btn {
    width: 100%;
  }
  
  .bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f1217 0%, #172036 100%);
    z-index: -2;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Navbar */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1rem 0;
  }
  
  #navbar.scrolled {
    background-color: rgba(15, 18, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  #navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .desktop-menu button {
    margin-left: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .desktop-menu button:hover {
    color: var(--cyan);
  }
  
  .mobile-menu-button {
    display: block;
  } 
  
  #menu-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 18, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
  }
  
  .mobile-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  .mobile-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .mobile-menu button:hover {
    color: var(--cyan);
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
    z-index: -1;
  }
  
  .parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .layer-1,
  .layer-2,
  .layer-3,
  .layer-4,
  .layer-5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
    padding: 6rem 0 4rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 500px;
    margin: 0 auto 2rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    
  }
  
  .floating-icons-bg,
  .floating-icons-fg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-icon-fg {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
  }
  
  .blue-icon { color: var(--blue); top: 25%; left: 25%; }
  .red-icon { color: var(--red); bottom: 30%; right: 25%; }
  .green-icon { color: var(--green); top: 30%; right: 25%; }
  .purple-icon { color: var(--purple); bottom: 25%; left: 30%; }
  
  .blue-icon-fg { color: var(--blue); top: 20%; left: 20%; }
  .red-icon-fg { color: var(--red); bottom: 20%; right: 20%; }
  .green-icon-fg { color: var(--green); top: 33%; right: 10%; }
  .purple-icon-fg { color: var(--purple); bottom: 33%; left: 10%; }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  .decorative-circles {
    position: absolute;
    inset: 0;
  }
  
  .circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.1;
    animation: spin 15s linear infinite;
  }
  
  .circle-blue {
    width: 16rem;
    height: 16rem;
    background-color: var(--blue);
    top: 25%;
    right: 25%;
  }
  
  .circle-cyan {
    width: 20rem;
    height: 20rem;
    background-color: var(--cyan);
    bottom: 25%;
    left: 33%;
    animation-direction: reverse;
    animation-duration: 18s;
  }
  
  .circle-purple {
    width: 12rem;
    height: 12rem;
    background-color: var(--purple);
    top: 33%;
    left: 25%;
    animation-duration: 12s;
  }
  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
  }
  
  .scroll-indicator span {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
  }
  
  .scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--muted-foreground);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
  }
  
  .scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    background-color: var(--muted-foreground);
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    animation: scroll 1.5s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 
    40% { transform: translateY(-10px) translateX(-50%); } 
    60% { transform: translateY(-5px) translateX(-50%); } 
  }
  
  @keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(0.5rem); opacity: 0; }
  }
  
  /* Tools Section */
  .tools-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
  }
  
  .bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
  }
  
  .bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.05;
  }
  
  .blob-1 {
    width: 18rem;
    height: 18rem;
    background-color: var(--blue);
    top: 25%;
    left: 0;
  }
  
  .blob-2 {
    width: 16rem;
    height: 16rem;
    background-color: var(--purple);
    bottom: 25%;
    right: 0;
  }
  
  .tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tool-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .tool-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .red-bg { background-color: rgba(239, 68, 68, 0.2); color: var(--red); }
  .blue-bg { background-color: rgba(37, 99, 235, 0.2); color: var(--blue); }
  .green-bg { background-color: rgba(34, 197, 94, 0.2); color: var(--green); }
  .yellow-bg { background-color: rgba(234, 179, 8, 0.2); color: var(--yellow); }
  .purple-bg { background-color: rgba(124, 58, 237, 0.2); color: var(--purple); }
  .indigo-bg { background-color: rgba(99, 102, 241, 0.2); color: var(--indigo); }
  .cyan-bg { background-color: rgba(6, 182, 212, 0.2); color: var(--cyan); }
  
  .tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .tool-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }
  
  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  
  .format-info {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }
  
  .format-info i {
    margin: 0 0.5rem;
    font-size: 0.625rem;
  }
  
  .card-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
  }
  
  .card-btn:hover {
    color: white;
    background-color: rgba(6, 182, 212, 0.2);
  }
  
  .floating-file-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
  }
  
  .file-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
  }
  
  .icon-1 { color: var(--blue); top: 20%; left: 10%; }
  .icon-2 { color: var(--red); bottom: 30%; right: 10%; animation-delay: 0.5s; }
  .icon-3 { color: var(--green); top: 40%; right: 15%; animation-delay: 1s; }
  .icon-4 { color: var(--purple); bottom: 25%; left: 15%; animation-delay: 1.5s; }
  
  /* Features Section */
  .features-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }
  
  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    margin-bottom: 1rem;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  /* About Section */
  .about-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }
  
  .stats-container {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    margin-bottom: 1rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  /* Footer */
  footer {
    padding: 4rem 0 2rem;
    position: relative;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: linear-gradient(to bottom, transparent, var(--background));
    pointer-events: none;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-column h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }
  
  .footer-column p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--cyan);
  }
  
  .footer-column ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-column ul li a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: var(--cyan);
  }
  
  .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .contact-info li i {
    color: var(--muted-foreground);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
  }
  
  .copyright {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--muted-foreground);
  }
  
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  .legal-links a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.3s ease;
  }
  
  .legal-links a:hover {
    color: var(--cyan);
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .tools-grid,
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
      flex-direction: row;
      
      
    }
    .faq-section {
      /* padding: 80px 0;s */
      /* background-color: #f8f9fa; */
      /* position: absolute; */
      transform: translateX(-500px);
    }
  
    
  }
  
  @media (min-width: 768px) {
    .desktop-menu {
      display: flex;
      align-items: center;
    }
    
    .mobile-menu-button {
      display: none;
    }
    
    .hero-content h1 {
      font-size: 3.5rem;
    }
    
    .hero-content p {
      font-size: 1.25rem;
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .copyright {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .legal-links {
      margin-top: 0;
    }
    .faq-section {
      /* padding: 80px 0;s */
      /* background-color: #f8f9fa; */
      /* position: absolute; */
      transform: translateX( 500px);
      left: 500px;
    }
  }
  
  @media (min-width: 1024px) {
    .tools-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-content h1 {
      font-size: 4rem;
    }
    .faq-section {
      /* padding: 80px 0;s */
      /* background-color: #f8f9fa; */
      /* position: absolute; */
      transform: translateX(-500px);
    }
  }
  
  /* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  /* background-color: #f8f9fa; */
  /* position: absolute; */
  transform: translateX(380px);
}
/* .faq-section.container h2{
  transform: translateY(50px);
} */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  margin: 0;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question:after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}
@media (max-width: 640px) {

  .faq-section {
    /* padding: 80px 20px; */
    padding-right: 30px;
    padding-left: 50px;
    overflow: hidden;
    /* margin: 0; */
    /* text-align: justify; */
    /* background-color: #f8f9fa; */
    /* position: absolute; */
    transform: translateX(-10px);
  }

  
}




@media (max-width: 768px) {

   .faq-section {
    padding-right: 30px;
    padding-left: 50px;
    /* padding: 80px 0; */
    /* background-color: #f8f9fa; */
    /* position: absolute; */
    transform: translateX( -10px);
    /* left: 500px; */
  }
}

@media (max-width: 1030px) {
 
  .faq-section {
    padding-right: 30px;
    padding-left: 50px;
    /* padding: 80px 0;s */
    /* background-color: #f8f9fa; */
    /* position: absolute; */
    transform: translateX(-10px);
  }
}

@media (max-width: 1180px) {
 
  .faq-section {
    padding-right: 30px;
    padding-left: 50px;
    /* padding: 80px 0;s */
    /* background-color: #f8f9fa; */
    /* position: absolute; */
    transform: translateX(-10px);
  }
}
@media (max-width: 1310px) {
 
  .faq-section {
    padding-right: 30px;
    padding-left: 50px;
    /* padding: 80px 0;s */
    /* background-color: #f8f9fa; */
    /* position: absolute; */
    transform: translateX(-10px);
  }
}
@media (max-width: 1450px) {
 
  .faq-section {
    padding-right: 30px;
    padding-left: 50px;
    /* padding: 80px 0;s */
    /* background-color: #f8f9fa; */
    /* position: absolute; */
    transform: translateX(-10px);
  }
}
@media (max-width: 1629px) {
 
  .faq-section {
    padding-right: 30px;
    padding-left: 60px; 
    /* padding: 80px 0;s */
    /* background-color: #f8f9fa; */
    /* position: absolute; */
    transform: translateX(-10px);
  }
  .cta-buttons .btn {
    left: 450px;
    
  }


 
}


