* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    padding: 0 !important;
    margin: 0 !important;
    color: var(--dark-text);
    line-height: 1.7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
}
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #a855f7;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #1e293b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --dark-bg: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --dark-text: #e5e7eb;
    --dark-text-secondary: #9ca3af;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.4), 0 1px 2px -1px rgb(0 0 0 / 0.4);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.4), 0 8px 10px -6px rgb(0 0 0 / 0.4);
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --border-color: #404040;
    --border-light: #505050;
    --success-bg: #1e3a2e;
    --success-border: #10b981;
    --warning-bg: #3a2e1e;
    --warning-border: #f59e0b;
    --info-bg: #1e2a3a;
    --info-border: #3b82f6;
    --danger-bg: #3a1e1e;
    --danger-border: #ef4444;
}




/*////////////////////////////////////  base.html  ////////////////////////////////////*/
.navbar {
    background-color: black !important;

}
.nav-link, .navbar-brand {
    color: white !important;
}
.navbar-toggler {
    border-color: white !important;
}
.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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.main-content {
    flex: 1;
    padding: 0;
    width: 100%;
}
.footer {
    background: #0f0f0f;
    padding: 3rem 2rem 2rem;
    color: #fff;
    width: 100%;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}




/*////////////////////////////////////  app-shared  ////////////////////////////////////*/
.hero-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark-bg) 100%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    padding: 6rem 0;
    background-color: var(--dark-bg);
}
.section:nth-child(even) {
    background-color: var(--dark-surface);
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;  
}
.section-title p {
    font-size: 1.2rem;
    color: #a1a1aa;  /* Changed from #666 to lighter color for dark background */
    max-width: 600px;
    margin: 0 auto;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 0.625rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.4;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}
.btn-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.value-card, .tech-card, .team-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.value-card:hover, .tech-card:hover, .team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--dark-surface);
}
.value-icon, .tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}
.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.value-title, .tech-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.value-description, .tech-description {
    color: var(--dark-text-secondary);
    line-height: 1.6;
}

.features-grid, .values-grid, .team-grid, .tech-grid, .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--dark-surface);
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}
.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.feature-description {
    color: var(--dark-text-secondary);
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--gray-900), var(--dark-bg));
    color: white;
    text-align: center;
}
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-subtitle {
    font-size: 1.125rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2rem;
}

/* Social Components */
.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-border);
}
.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--dark-text-secondary);
    margin-bottom: 0.5rem;
}
.form-control, .form-select {
    background-color: var(--dark-surface) !important;
    border: 1px solid var(--dark-border) !important;
    color: var(--dark-text) !important;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control::placeholder {
    color: var(--gray-500) !important;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2) !important;
    background-color: var(--dark-surface) !important;
    color: var(--dark-text) !important;
}

.contact-section {
    background: linear-gradient(135deg, var(--gray-900), var(--dark-bg));
    color: white;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}
.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}
.contact-info {
    color: var(--dark-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}




/*////////////////////////////////////  home.html  ////////////////////////////////////*/
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.comparison-section {
    background: var(--dark-surface);
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.comparison-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.comparison-header {
    padding: 2rem;
    background-color: white;
}
.comparison-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.comparison-title.danger {
    color: var(--danger);
}
.comparison-title.success {
    color: var(--success);
}
.comparison-content {
    padding: 2rem;
    padding: 25px 30px 20px;
    border-bottom: 2px solid #f8f9fa;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 68, 68, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-container:hover .hover-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: white;
}
.overlay-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.detector-result {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    color: #f9e318;
}
.overlay-text .detector-result {
    color: #ffeb3b;
    font-size: 1.5rem;
}

.explanation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}
.explanation-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.explanation-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    transform: translate(50%, -50%);
    opacity: 0.1;
}
.explanation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--dark-surface);
}
.explanation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}
.explanation-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.explanation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.explanation-list li {
    color: var(--dark-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    padding-left: 20px;
}
.explanation-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}
.explanation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.explanation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}
.explanation-list li strong {
    color: #fff;
    font-weight: 600;
}


.graphs-section {
    background: linear-gradient(135deg, var(--gray-900), var(--dark-bg));
    color: white;
    position: relative;
}
.rotating-words-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
}
.rotating-words {

    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;

    font-size: 3rem;

    margin-bottom: 1.5rem;
    min-height: 4rem;



}
.word-left, .word-right {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #4f46e5;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
    width: 45%;

}
.word-left {
    text-align: right;
}
.word-right {
    text-align: left;
}
.word-left.fade-out, .word-right.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}
.word-left.fade-in, .word-right.fade-in {
    opacity: 1;
    transform: translateY(0);
}
.separator {
    /* color: var(--dark-text-secondary); */
    color: #fff;
    font-weight: 300;
}
.rotating-subtitle {
    font-size: 1.125rem;
    color: var(--dark-text-secondary);
    margin-top: 1rem;
}
.graphs-grid {
    display: grid;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}
.graph-card {

    backdrop-filter: blur(10px);

    border-radius: 20px;

    position: relative;
    z-index: 2;
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a3a3a;
    text-align: center;
}
.graph-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}
.graph-card p {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}
.graph-card:hover {
    transform: translateY(-8px);
    background: rgba(99, 102, 241, 0.15);
}
.graph-placeholder {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.graph-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}
.graph-description {
    color: var(--dark-text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 4rem 0;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section {
        padding: 4rem 0;
    }
    .rotating-words {
        flex-direction: column;
        gap: 0.5rem;
    }
}
@media (max-width: 480px) {
    .feature-card,
    .comparison-card,
    .explanation-card,
    .graph-card {
        padding: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .comparison-card {
        margin-bottom: 2rem;
    }
    
    .comparison-header {
        padding: 20px 25px 15px;
    }
    
    .comparison-content {
        padding: 25px;
        min-height: 250px;
    }
    
    .comparison-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 1024px) {
    .rotating-words {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .graphs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rotating-words {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}

/*////////////////////////////////////  company.html  ////////////////////////////////////*/
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.stat-item {
    text-align: center;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(99, 102, 241, 0.15);
}
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--dark-text-secondary);
    font-weight: 500;
}
.mission-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin: 0 2rem;
    box-shadow: var(--shadow-lg);
}
.timeline-content {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    flex: 1;
    border: 1px solid var(--dark-border);
}
.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}
.timeline-description {
    color: var(--dark-text-secondary);
    line-height: 1.6;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.team-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2rem;
    text-align: center;
    color: white;
}
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    border: 3px solid rgba(255, 255, 255, 0.3);
}
.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.team-role {
    font-size: 0.875rem;
    opacity: 0.9;
}
.team-body {
    padding: 2rem;
}
.team-bio {
    color: var(--dark-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: 4rem 0;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .timeline-marker {
        margin: 0 auto 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .values-grid,
    .team-grid,
    .tech-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 1rem;
    }

    .value-card,
    .team-card,
    .tech-card,
    .contact-card {
        padding: 1.5rem;
    }
}



/*////////////////////////////////////  documentation.html  ////////////////////////////////////*/
.doc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--bg-primary);
}
.doc-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.doc-sidebar h5 {
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}
.doc-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.doc-sidebar li {
    margin-bottom: 8px;
}
.doc-sidebar a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 4px;
    border: 1px solid transparent;
}
.doc-sidebar a:hover {
    color: var(--text-primary);
    background-color: var(--bg-tertiary);
    border-color: var(--border-light);
    transform: translateX(4px);
}
.doc-sidebar a.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}
.doc-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.doc-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}
.doc-section h2 {
    color: var(--text-primary);
    border-bottom: 3px solid var(--accent-primary);
    padding-bottom: 12px;
    margin-bottom: 24px;
    font-weight: 700;
}
.doc-section h3 {
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}
.doc-section h4 {
    color: var(--text-secondary);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}
.doc-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}
.doc-section ul, .doc-section ol {
    color: var(--text-secondary);
}
.code-block {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    overflow-x: auto;
    color: var(--text-primary);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}
.info-box {
    background: var(--info-bg);
    border-left: 4px solid var(--info-border);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    color: var(--text-secondary);
}
.warning-box {
    background: var(--warning-bg);
    border-left: 4px solid var(--warning-border);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    color: var(--text-secondary);
}
.success-box {
    background: var(--success-bg);
    border-left: 4px solid var(--success-border);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    color: var(--text-secondary);
}
.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}
.step-list li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    color: var(--text-secondary);
}
.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}
.table-responsive {
    margin: 24px 0;
}
.table {
    background: var(--bg-tertiary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.table th {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    padding: 16px 12px;
}
.table td {
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 12px;
}
.table tbody tr:hover {
    background-color: var(--bg-secondary);
}
@media (max-width: 768px) {
    .doc-sidebar {
        position: static;
        margin-bottom: 24px;
    }
    
    .doc-content {
        padding: 24px;
    }
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--border-light);
} 




/*////////////////////////////////////  contact.html  ////////////////////////////////////*/
.contact-container {
    background-color: var(--dark-bg);
    padding: 6rem 0;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-xl);
}
.contact-info-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.info-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}
.info-item i {
    font-size: 1.25rem;
    width: 40px;
    text-align: center;
    margin-right: 1rem;
}
.info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.info-item a:hover {
    color: var(--dark-text);
}
.contact-form-section {
    padding: 3rem;
}
.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2rem;
}
.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.submit-btn:disabled {
    opacity: 0.7;
}
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}




/*////////////////////////////////////  signin.html  ////////////////////////////////////*/
.signin-container {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark-bg) 100%);
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.signin-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 5rem;
}
.signin-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}
.signin-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--dark-border);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.signin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px 24px 0 0;
}
.signin-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.signin-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.signin-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.signin-subtitle {
    color: var(--dark-text-secondary);
    font-size: 1rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--dark-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: var(--dark-card);
}
.form-input::placeholder {
    color: var(--dark-text-secondary);
}
.password-container {
    position: relative;
}
.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--dark-text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}
.password-toggle:hover {
    color: var(--primary);
}
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}
.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text-secondary);
}
.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}
.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.forgot-password:hover {
    color: var(--secondary);
}
.signin-btn {
    width: 100%;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.signin-btn:active {
    transform: translateY(0);
}
.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--dark-text-secondary);
    font-size: 0.875rem;
}
.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--dark-border);
}
.divider span {
    padding: 0 1rem;
}
.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.social-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    color: var(--dark-text);
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.social-btn:hover {
    background: var(--dark-card);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.signup-link {
    text-align: center;
    color: var(--dark-text-secondary);
    font-size: 0.875rem;
}
.signup-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
}
.signup-link a:hover {
    color: var(--secondary);
}
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: none;
}
.form-input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.signin-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}
.signin-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
    .signin-card {
        margin: 1rem;
        padding: 2rem;
    }

    .social-login {
        flex-direction: column;
    }

    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .signin-card {
        padding: 1.5rem;
    }

    .signin-title {
        font-size: 1.75rem;
    }
}

/* ===== RUN ELEMENT HOVER EFFECTS ===== */
.run {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    display: inline;
    position: relative;
}

.run:hover {
    transform: translateY(-1px);
}

.rsid-highlight {
    background-color: rgba(255, 107, 107, 0.15) !important;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
    transition: all 0.2s ease-in-out;
}