/* Base Styles */
:root {
    --primary-color: #6e48aa;
    --secondary-color: #9d50bb;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --light-gray: #e6e6e6;
    --medium-gray: #cccccc;
    --dark-gray: #333333;
    --accent-color: #41b8d5;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #F44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

/* Navigation */
nav {
    background-color: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
     font-size: 1.25rem;
        border: #e6e6e6 4px;
        border-style:inset;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
 
}

.nav-link {
    font-weight: 500;
    color: var(--medium-gray);
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    padding: 0.5rem;
}

.nav-link:hover {
    color: var(--light-color);
}

.nav-link.active {
    color: var(--light-color);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .mobile-menu-button {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 46, 0.95);
        flex-direction: column;
        align-items: center;
        
        gap: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 500px; /* Adjust based on content */
        border-bottom: 1px solid rgba(102, 102, 102, 0.2);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
        border: #e6e6e6 4px;
        border-style:inset ;
    }
}
/* Page Styles */
.page {
    display: none;
    min-height: calc(100vh - 120px);
    padding: 2rem 0;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(110, 72, 170, 0.2), rgba(65, 184, 213, 0.2));
    border-radius: 15px;
    margin: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--light-gray);
}

/* Buttons */
.cta-button {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(110, 72, 170, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(110, 72, 170, 0.6);
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

/* Section Styles */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Tool Cards */
.tool-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(110, 72, 170, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 72, 170, 0.1), rgba(65, 184, 213, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tool-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tool-name {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.tool-category {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.tool-desc {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.tool-features h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.tool-features ul {
    margin-left: 1rem;
}

.tool-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.tool-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Process Steps */
.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.process-step:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--accent-color);
    transform: translateX(5px);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(65, 184, 213, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.step-desc {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: rgba(26, 26, 46, 0.9);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(102, 102, 102, 0.2);
}

.footer-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--light-gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(110, 72, 170, 0.4);
}

.copyright {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 1rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 3rem 1rem;
        margin: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .tool-card {
        padding: 1rem;
    }

    .tool-header {
        flex-direction: column;
        text-align: center;
    }

    .tool-icon {
        margin-bottom: 0.5rem;
    }
}