
/* // Home Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
    overscroll-behavior-x: none;
}

:root {
    --bg-dark: #0F0F0F;
    --text-light: #FFFFFF;
    --accent-yellow: #FFD700;
    --subheading-gray: #E0E0E0;
    --card-bg: #1A1A1A;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --grid-line: rgba(255, 255, 255, 0.02);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 30px 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-yellow);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, #1c1c1c, #121212);
    box-shadow: var(--card-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--subheading-gray);
    max-width: 85%;
    margin-bottom: 40px;
}

.chart-animation {
    width: 90%;
    height: 70%;
    background: var(--card-bg);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.chart-bar {
    position: absolute;
    bottom: 0;
    width: 40px;
    background: var(--accent-yellow);
    border-radius: 8px 8px 0 0;
    transition: all 0.8s ease;
    animation: growBar 1.5s ease-in-out forwards;
    opacity: 0.9;
}

.chart-bar:nth-child(1) { left: 15%; height: 0; animation-delay: 0.2s; }
.chart-bar:nth-child(2) { left: 25%; height: 0; animation-delay: 0.4s; }
.chart-bar:nth-child(3) { left: 35%; height: 0; animation-delay: 0.6s; }
.chart-bar:nth-child(4) { left: 45%; height: 0; animation-delay: 0.8s; }
.chart-bar:nth-child(5) { left: 55%; height: 0; animation-delay: 1.0s; }
.chart-bar:nth-child(6) { left: 65%; height: 0; animation-delay: 1.2s; }
.chart-bar:nth-child(7) { left: 75%; height: 0; animation-delay: 1.4s; }

@keyframes growBar {
    to { height: calc(var(--bar-height) * 1px); }
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--subheading-gray);
}

/* AI Spotlight Section */
.ai-spotlight {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.spotlight-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.spotlight-content {
    flex: 1;
}

.spotlight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.spotlight-content p {
    color: var(--subheading-gray);
    margin-bottom: 30px;
    max-width: 90%;
}

.notification-preview {
    flex: 1;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bubble {
    background: #2A2A2A;
    border-radius: 24px;
    padding: 25px;
    max-width: 400px;
    position: relative;
    /* animation: pulse 5s infinite; */
}

.notification-bubble::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 40px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #2A2A2A transparent;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.notification-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-title {
    font-weight: 600;
    color: var(--accent-yellow);
}

.notification-message {
    line-height: 1.6;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Security Section */
.security {
    padding: 100px 0;
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-yellow);
    transition: var(--transition);
}

.badge:hover .badge-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.badge p {
    font-weight: 500;
    max-width: 200px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0f0f0f 100%);
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    color: var(--accent-yellow);
    font-size: 3rem;
    position: absolute;
    opacity: 0.3;
}

.testimonial-content::before {
    content: '"';
    top: -20px;
    left: -20px;
}

.testimonial-content::after {
    content: '"';
    bottom: -40px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: var(--subheading-gray);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    position: relative;
}

.footer-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--bg-dark), var(--accent-yellow), var(--bg-dark));
    margin-bottom: 60px;
    border-radius: 2px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 2;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--subheading-gray);
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-yellow);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--subheading-gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 25px;
}

.footer-links a:hover::before {
    transform: scale(1.3);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    color: var(--subheading-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    
    .hero p {
        max-width: 100%;
        margin: 0 auto 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spotlight-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .auth-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* a;dslfj;ajf;lkj
afvjkasd;lv
sd;vlma'sd
lsvdka'l */

/* How It Works Styles */


.how-it-works {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.intro h2 {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.intro p {
    color: var(--subheading-gray);
    font-size: 1.1rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card ul {
    list-style-type: none;
    padding-left: 20px;
}

.feature-card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.feature-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

/* Technology Section */
.tech-section {
    margin-bottom: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tech-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.tech-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tech-card p {
    color: var(--subheading-gray);
    font-size: 0.95rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.tech-item {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Key Features */
.key-features {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.key-feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.key-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.key-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.key-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.key-content p {
    color: var(--subheading-gray);
    font-size: 0.95rem;
}

/* Use Cases */
.use-cases {
    margin-bottom: 40px;
}

.cases-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.case-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--accent-yellow);
}

.case-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-card h4 i {
    color: var(--accent-yellow);
}

.case-card p {
    color: var(--subheading-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .intro h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .intro p {
        font-size: 1rem;
    }
}

/* agfagasfdvadgfvsgfbsrtgbsgfbxfg
jkfa;sljkeqkoa
laksdjf;lsajkzd;f
akjg'd;kl */


/* // About Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0F0F0F;
    --text-light: #FFFFFF;
    --accent-yellow: #FFD700;
    --subheading-gray: #E0E0E0;
    --card-bg: #1A1A1A;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}


/* Hero Section */
.about-hero {
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--subheading-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* About Sections */
.about-section {
    padding: 80px 0;
    position: relative;
}

.developer-section {
    background: radial-gradient(circle at 20% 50%, rgba(26, 26, 26, 0.8) 0%, var(--bg-dark) 60%);
}

.project-section {
    background: radial-gradient(circle at 80% 50%, rgba(26, 26, 26, 0.8) 0%, var(--bg-dark) 60%);
}

.section-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.developer-section .section-content {
    flex: 1;
}

.developer-section .section-visual {
    flex: 1;
}

.project-section .section-content {
    flex: 1;
    order: 2;
}

.project-section .section-visual {
    flex: 1;
    order: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.section-content p {
    color: var(--subheading-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.section-content ul {
    list-style: none;
    margin-top: 30px;
}

.section-content li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.section-content li::before {
    content: '🔹';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

/* Circuit Background */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
    overflow: hidden;
}

.circuit-line {
    position: absolute;
    background: var(--accent-yellow);
    opacity: 0.5;
}

/* Skill Visualization */
.skills-visual {
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill-node {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    z-index: 2;
    transition: var(--transition);
}

.skill-node:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.skill-node i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.skill-node span {
    font-size: 0.8rem;
    font-weight: 500;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-yellow);
    opacity: 0;
    z-index: 1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Project Visualization */
.project-visual {
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-container {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.pie-container:hover {
    transform: scale(1.05);
}

.pie-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 50%, 100% 50%, 100% 0);
    transform-origin: center;
}

.slice-1 {
    background: rgba(255, 215, 0, 0.8);
    transform: rotate(0deg);
}

.slice-2 {
    background: rgba(255, 215, 0, 0.6);
    transform: rotate(72deg);
}

.slice-3 {
    background: rgba(255, 215, 0, 0.4);
    transform: rotate(144deg);
}

.slice-4 {
    background: rgba(255, 215, 0, 0.3);
    transform: rotate(216deg);
}

.slice-5 {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(288deg);
}

.pie-center {
    position: absolute;
    width: 40%;
    height: 40%;
    background: var(--bg-dark);
    border-radius: 50%;
    top: 30%;
    left: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Tech Stack Carousel */
.tech-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.tech-carousel::-webkit-scrollbar {
    display: none;
}

.tech-item {
    min-width: 80px;
    height: 80px;
    background: var(--card-bg);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.tech-item i {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mission Statement */
.mission-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.mission-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
}

.mission-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--bg-dark), var(--accent-yellow), var(--bg-dark));
}

.mission-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent-yellow);
}

.mission-banner p {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
}

/* Footer
footer {
    padding: 40px 0;
    text-align: center;
    color: var(--subheading-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
} */

/* Responsive Design */
@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .project-section .section-content {
        order: 1;
    }
    
    .project-section .section-visual {
        order: 2;
    }
    
    .skills-visual, .project-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-banner h2 {
        font-size: 2rem;
    }
    
    .mission-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .skills-visual, .project-visual {
        height: 250px;
    }
    
    .pie-container {
        width: 250px;
        height: 250px;
    }
}

/* feBlend

8gy
df;m
fd/kgm'
feBlend */


/* Features Section Enhancements */



.features-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--accent-yellow);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--subheading-gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-cards {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

.feature-cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-cards:hover::before {
    transform: scaleX(1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-yellow);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.feature-tagline {
    color: var(--accent-yellow);
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-details {
    margin-top: 20px;
}

.feature-details ul {
    list-style-type: none;
    padding-left: 20px;
}

.feature-details li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.feature-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

.visual-indicator {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-yellow);
}

.progress-ring {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--accent-yellow);
    width: 0;
    border-radius: 5px;
    position: relative;
    transition: width 1s ease;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressGlow 1.5s infinite;
}

@keyframes progressGlow {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.alert-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--accent-yellow);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.feature-highlight {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px dashed rgba(255, 215, 0, 0.3);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background: var(--accent-yellow);
    color: var(--bg-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    transition: all 0.8s;
}

.cta-button:hover::after {
    left: 120%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grids {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Add this to your CSS - it's missing! */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 800;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 2rem;
    height: 0.25rem;
    background: #FFD700;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}
        
/* Mobile navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    z-index: 900;
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    flex-direction: column;
    
    /* Prevent touch interactions when closed */
    pointer-events: none;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto; /* Enable interactions when open */
    touch-action: auto;
}


.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-links a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: background 0.3s ease;
}

.mobile-nav-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.mobile-auth-buttons .btn {
    width: 100%;
}

.content, .mobile-nav-links, .mobile-auth-buttons {
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* Responsive styles */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .beta-tag {
        margin-left: 0.5rem;
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
    
    /* Ensure menu doesn't respond to edge swipes */
    body {
        overscroll-behavior-x: none;
        -webkit-overflow-scrolling: touch;
    }
}

.mobile-chart-stack {
    flex-wrap: wrap; /* make bars go to next line if needed */
}

.mobile-chart {
    display: flex;
    gap: 6px;            /* spacing between bars */
    justify-content: center;
    align-items: flex-end;
    overflow-x: auto;    /* let bars scroll if too many */
    padding: 0 10px;     /* breathing room */
}

/* Show desktop, hide mobile by default */
.desktop-footer { display: flex; justify-content: space-between; flex-wrap: wrap; }
.mobile-footer { display: none; }

/* Mobile settings */
@media (max-width: 768px) {
    .desktop-footer { display: none; }
    .mobile-footer {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-links-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }
    .footer-links-wrapper .footer-links {
        flex: 1;
    }
    .footer-links-wrapper ul {
        padding-left: 0;
        list-style: none;
    }
}



/* Mobile fixes */
@media (max-width: 768px) {
    /* Skill icons (About the Developer section) */
    .mobile-skills-visual {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
    }
    .mobile-skill-node {
        position: static !important; /* Remove absolute positioning */
        flex: 0 1 30%; /* Three per row */
        text-align: center;
    }
    .mobile-skill-text {
        display: block;
        font-size: 0.8rem;
        margin-top: 4px;
    }

    /* Tech stack carousel (About the Project section) */
    .mobile-tech-carousel {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 15px 0;
    }
    .mobile-tech-item {
        flex: 0 1 30%; /* Three per row */
        text-align: center;
    }
    .mobile-tech-text {
        display: block;
        font-size: 0.8rem;
        margin-top: 4px;
    }
}


.beta-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    padding: 20px;
}

.beta-modal-content {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    max-width: 500px;
    margin: 10% auto;
    border-radius: 10px;
    text-align: center;
}

.beta-modal-content h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.beta-modal-content p {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .beta-modal-content {
        width: 90%;
        margin-top: 40%;
        font-size: 0.9rem;
    }
}
