/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0F0F0F;
    color: #ffffff;
    line-height: 1.6;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
    color: #ffffff;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff !important;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
    margin: 0 1rem;
}

.nav-link:hover, .nav-link:focus {
    opacity: 1;
    color: #ffffff !important;
}

.nav-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 1;
}

.dropdown-arrow {
    font-size: 0.8rem;
}

/* Fix for dropdown toggle active state */
.nav-link.dropdown-toggle.show {
    color: #ffffff !important;
    opacity: 1;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Illustration Styles */
.illustration-container {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cube {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffffff;
    opacity: 0.8;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.cube-1 {
    left: 20%;
    top: 30%;
}

.cube-2 {
    right: 25%;
    top: 45%;
    background: #ffffff;
}

.cube-3 {
    left: 40%;
    bottom: 20%;
    background: #ffffff;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--foreground), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background-color: #0F0F0F;
}

.features-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    animation: fadeIn 1s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2rem;
    text-align: left;
    animation: fadeInUp 1s ease;
}

.feature-icon {
    height: 100px;
    width: 100px;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Grid Icon Animation */
.grid-lines {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0px 0px 24px;
}

.grid-lines::before,
.grid-lines::after {
    content: '';
    position: absolute;
    background: #7FFFD4;
    animation: gridPulse 3s infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Document Icon Animation */
.doc-lines span {
    display: block;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
    width: 100%;
    animation: docLine 2s infinite;
}

@keyframes docLine {
    0% { width: 60%; }
    50% { width: 100%; }
    100% { width: 60%; }
}

/* Privacy Icon Animation */
.privacy-nodes {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.node {
    width: 12px;
    height: 12px;
    background: #7FFFD4;
    border-radius: 50%;
    animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background-color: #141414;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* About Us Section */
.about-us {
    padding: 6rem 2rem;
    background-color: #000000;
}
  
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}
  
.about-text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}
  
.lead-text {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #ffffff;
}
  
.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}
  
/* Stats Grid Styles */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 2rem;
}
  
.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
  
.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}
  
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
  
.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Contact section */
.contact-us {
    padding: 6rem 2rem;
    background-color: #0F0F0F;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-text {
    max-width: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 20px;
}

.info-item svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    opacity: 0.8;
}

.info-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Contact form styles */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.75rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
}

.contact-form:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff !important;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Form success and error messages */
.form-success, .form-error {
    color: #ffffff;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
    font-size: 0.9rem;
}

.form-success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.form-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Community Section */
.community {
    padding: 6rem 2rem;
    background-color: #141414;
    text-align: center;
}

.community-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.community-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.community-btn:hover {
    transform: translateY(-2px);
}

.github { background: #24292e; }
.discord { background: #7289DA; }
.twitter { background: #1DA1F2; }

/* FAQ Section */
.faq-section {
    background-color: rgba(56, 56, 56, 0.03);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: rgb(5, 5, 5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #fff;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #fff;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: black;
    padding: 70px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer h5 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .footer p {
    color: var(--light-gray);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .footer-links a:hover {
    color: white;
    text-decoration: none;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    color: var(--light-gray);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    color: white;
  }
  
  .footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer-bottom p {
    margin: 0;
    color: var(--light-gray);
  }
/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
  
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
  
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
  
.mobile-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}
  
.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
  
.mobile-menu-close span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
}
  
.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}
  
.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}
  
.mobile-menu-content {
    padding: 2rem 1.5rem;
    overflow-y: auto;
    height: calc(100vh - 70px);
}
  
.mobile-menu-section {
    margin-bottom: 2.5rem;
}
  
.mobile-menu-section h3 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
  
.mobile-menu-section a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0.75rem 0;
    transition: opacity 0.2s ease;
}
  
.mobile-menu-section a:hover {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 90%;
    }
    
    .contact-content {
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1.3rem;
    }

    .navbar-toggler {
        border-color: #000000;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .navbar {
        padding: 1rem;
    }
    

    .features-title {
        font-size: 2.5rem;
    }

    .features-grid,
    .products-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .community-links {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content,
    .contact-content,
    .footer-columns,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .contact-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-us {
        padding: 4rem 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
    
    .nav-item {
        display: block;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }


      .footer .col-lg-4, .footer .col-lg-2 {
        margin-bottom: 30px;
        text-align: center;
      }
      
      .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .social-icons {
        display: flex;
        justify-content: center;
      }
      
      .footer-bottom {
        margin-top: 30px;
      }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .benefits-grid,
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}