/* Base Styles */
:root {
    --primary: #00ff88;
    --secondary: #0066ff;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gray: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark), var(--darker));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/data-pattern.png') center/cover no-repeat;
    opacity: 0.05;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.profile-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid var(--primary);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.bio {
    flex: 1;
}

.bio h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.bio p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social a {
    color: var(--light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

    /* Experience Section Styles */
    .experience-timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding-left: 50px;
    }

    .experience-timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--primary);
    }

    .experience-item {
        position: relative;
        margin-bottom: 2.5rem;
    }

    .experience-date {
        position: absolute;
        left: -50px;
        width: 100px;
        padding: 0.5rem;
        background: var(--primary);
        color: var(--dark);
        text-align: center;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .experience-content {
        background: var(--gray);
        padding: 1.5rem;
        border-radius: 10px;
        border-left: 3px solid var(--primary);
        transition: transform 0.3s ease;
    }

    .experience-content:hover {
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1);
    }

    .experience-content h3 {
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .company {
        color: #aaa;
        font-style: italic;
        margin-bottom: 1rem;
        display: inline-block;
        padding-bottom: 3px;
        border-bottom: 1px dashed var(--primary);
    }

    .experience-content ul {
        padding-left: 1.5rem;
    }

    .experience-content li {
        margin-bottom: 0.5rem;
        position: relative;
        line-height: 1.6;
    }

    .experience-content li::before {
        content: '▹';
        position: absolute;
        left: -1.5rem;
        color: var(--primary);
    }







/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.skill-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.skill-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.skill-card p {
    opacity: 0.8;
}

.analytics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-card {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.metric-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 5px;
    transition: width 1s ease;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.project-info p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.project-links a:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

footer {
    background: var(--darker);
    position: relative;
    transition: all 0.3s ease;
}

footer:hover {
    background: linear-gradient(to right, var(--darker), #0f0f0f);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--light); /* Base text color */
    transition: all 0.3s ease;
    cursor: default;
}

.contact-info p:hover {
    color: var(--primary); /* Text color on hover */
    transform: translateX(5px);
}

.contact-info i {
    color: var(--primary);
    font-size: 1.3rem;
    width: 30px;
    transition: all 0.3s ease;
}

.contact-info p:hover i {
    color: var(--light); /* Icon color changes on hover */
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
   
    font-size: 1.3rem;
    transition: all 0.3s ease;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.copyright {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: color 0.3s ease;
}

.copyright:hover {
    color: var(--primary);
}


/* Scroll Animations */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-img {
        width: 250px;
        height: 250px;
    }
    
    .social {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        padding: 2rem;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    .experience-timeline {
        padding-left: 30px;
    }
    
    .experience-date {
        left: -30px;
        width: 80px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}
        /* Add these new styles for awards section */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .award-card {
            background: var(--gray);
            border-radius: 10px;
            padding: 2rem;
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            transition: transform 0.3s ease;
            border-left: 4px solid var(--primary);
        }

        .award-card:hover {
            transform: translateY(-5px);
        }

        .award-icon {
            font-size: 2rem;
            color: var(--primary);
        }

        .award-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .award-date {
            color: #aaa;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .btn-verify {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .btn-verify:hover {
            background: var(--primary);
            color: var(--dark);
        }


