/* * {
    user-select: none;
} */

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.navbar {
    padding: .5rem 2rem;
    background-color: rgba(26, 26, 26, 0.9);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-link {
    color: #ffffff !important;
    margin: 0 0.5rem;
}

.resume-btn {
    background-color: #6c63ff;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #2d1b69 0%, #1a103e 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-content {
    position: relative;
}

.hero-text-content::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #c026d3;
    border-radius: 50%;
    top: -20px;
    left: -20px;
}

.hero-greeting {
    font-size: 1.5rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #c026d3, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.cta-button {
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(to right, #c026d3, #9333ea);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(192, 38, 211, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(45deg, #c026d3, #9333ea);
    position: relative;
}

.image-container::before {
    content: "";
    position: absolute;
    inset: 6px;
    background: #1a103e;
    border-radius: 50%;
    z-index: 0;
}

.developer-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.decoration-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #c026d3;
    border-radius: 50%;
    top: 10%;
    right: 15%;
}

.scroll-indicator {
    position: absolute;
    bottom: -8rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-text-content::before {
        display: none;
    }

    .image-container {
        width: 280px;
        height: 280px;
    }

    .decoration-dot {
        display: none;
    }

    .hero-image {
        margin-top: 5rem;

    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 1rem;
        text-align: center;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-greeting {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .image-container {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .image-container {
        width: 200px;
        height: 200px;
    }
}

/* Add smooth transitions for responsive changes */
.hero-title,
.hero-subtitle,
.image-container,
.cta-button {
    transition: all 0.3s ease;
}



.about-section {
    padding: 6rem 1rem;
    /* background-color: #111111; */
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #c026d3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.illustration-card {
    background-color: #1a1a1a;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.illustration-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #9333ea, #c026d3);
    z-index: -1;
    border-radius: 1.1rem;
}

.about-illustration {
    width: 100%;
    height: auto;
    display: block;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    /* color: #111111; */
    color: #999;
    margin-bottom: 1rem;
}

.info-text {
    /* color: #666666; */
    color: #999;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: #666666;
    font-size: 0.9rem;
}

.stat-value {
    color: #111111;
    font-weight: 600;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    color: #666666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    color: #22c55e;
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }
}


.skills-section {
    padding: 4rem 1rem;
    /* background-color: #111111; */
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.skills-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
}

.skills-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #c026d3);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.skills-card {
    background: rgba(32, 32, 32, 0.95);
    border-radius: 1rem;
    padding: 2rem;
}

.skills-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #c026d3;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-bar {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    color: #ffffff;
    font-size: 0.9rem;
}

.skill-percentage {
    color: #ffffff;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #9333ea, #c026d3);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-pill {
    background-color: rgba(32, 32, 32, 0.95);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background-color: #c026d3;
}

@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skills-section {
        padding: 3rem 1rem;
    }

    .skills-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}


/* .projects-section {
    padding: 4rem 1rem;
    background-color: #1a1a1a;
}

.projects-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.projects-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #8f8aff);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.2);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    color: #6c63ff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #8f8aff;
}

.project-link::after {
    content: '→';
    margin-left: 0.25rem;
}

.view-all-btn {
    background-color: #6c63ff;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.view-all-btn:hover {
    background-color: #5650d8;
}

.projects-container {
    text-align: center;
}

@media (max-width: 768px) {
    .projects-section {
        padding: 3rem 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
} */

/* .projects-section {
    padding: 6rem 1rem;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #c026d3);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    background-color: #1a1a1a;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background-color: #262626;
    color: #ffffff;
}

.filter-tab.active {
    background-color: #18181b;
    color: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #ddd8d8;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-icon {
    background-color: #2f2f36;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.5rem;
}

.project-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: #ece7f0;
    color: #9333ea;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.project-links {
    display: flex;
    gap: 1.5rem;
}

.project-link {
    color: #9333ea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #c026d3;
}

@media (max-width: 768px) {
    .projects-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}


.project-card {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.filter-tab {
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #c026d3);
    transition: width 0.3s ease;
}

.filter-tab.active::after {
    width: 50%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
} */

.projects-section {
    padding: 6rem 1rem;
    background-color: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9333ea, #c026d3);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    background-color: #1a1a1a;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.filter-tab:hover {
    background-color: #262626;
    color: #ffffff;
}

.filter-tab.active {
    background-color: #18181b;
    color: #ffffff;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #c026d3);
    transition: width 0.3s ease;
}

.filter-tab.active::after {
    width: 50%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.project-card {
    width: 100%;
    max-width: 300px;
    background-color: #ddd8d8;
    border-radius: 1rem;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-icon {
    background-color: #2f2f36;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.5rem;
}

.project-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: #ece7f0;
    color: #9333ea;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

.project-links {
    display: flex;
    gap: 1.5rem;
}

.project-link {
    color: #9333ea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    &:hover {
        color: #c026d3;
    }
}

.all-projects {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    text-decoration: none;
    outline: none;
    border: none;
}

.all-projects button {
    padding: .8rem;
    border-radius: 40px;
    background: linear-gradient(90deg, #9333ea, #c026d3);
    outline: none;
    border: none;
    color: white;
    &:hover {
        color: #fff;
        box-shadow: 0 4px 20px rgba(192, 38, 211, 0.4);
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Optional: Add animation for new projects appearing */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}




.education-section {
    padding: 4rem 1rem;
    background-color: #1a1a1a;
}

.education-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.education-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    /* background: linear-gradient(90deg, #6c63ff, #8f8aff); */
    background: linear-gradient(90deg, #9333ea, #c026d3);

}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(108, 99, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.6s;
}

.timeline-dot {
    position: absolute;
    left: -2.35rem;
    top: 1.5rem;
    width: 1rem;
    height: 1rem;
    /* background: #6c63ff; */
    background: linear-gradient(90deg, #9333ea, #c026d3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

.education-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.2);
}

.degree {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.school {
    /* color: #6c63ff; */
    color: #9333ea;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.duration {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.additional-info {
    color: #999;
    font-size: 0.9rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c63ff;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    color: #cccccc;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.info-item::before {
    content: '•';
    /* color: #6c63ff; */
    color: #9333ea;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .education-section {
        padding: 3rem 1rem;
    }

    .timeline-container {
        padding-left: 1.5rem;
    }

    .timeline-dot {
        left: -1.85rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}



.experience-section {
    padding: 4rem 1rem;
    background-color: #1a1a1a;
}

.experience-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.experience-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    /* background: linear-gradient(90deg, #6c63ff, #8f8aff); */
    background: linear-gradient(90deg, #9333ea, #c026d3);
}

.experience-container {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-card:nth-child(1) {
    animation-delay: 0.2s;
}

.job-card:nth-child(2) {
    animation-delay: 0.4s;
}

.job-card:nth-child(3) {
    animation-delay: 0.6s;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.job-duration {
    color: #999;
    font-size: 0.9rem;
}

.company-info {
    margin-bottom: 1.5rem;
}

.company-name {
    color: #9333ea;
    font-size: 1rem;
    text-decoration: none;
}

.company-name:hover {
    text-decoration: underline;
}

.company-location {
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.job-description {
    margin-bottom: 1.5rem;
}

.job-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-description li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.job-description li::before {
    content: '•';
    color: #9333ea;
    position: absolute;
    left: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #999;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(108, 99, 255, 0.1);
    color: #9333ea;
}

@media (max-width: 768px) {
    .experience-section {
        padding: 3rem 1rem;
    }

    .job-header {
        flex-direction: column;
    }

    .job-duration {
        margin-top: 0.5rem;
    }

    .company-info {
        flex-direction: column;
    }

    .company-location {
        margin-left: 0;
        margin-top: 0.25rem;
    }
}


.github-section {
    padding: 4rem 1rem;
    background-color: #1a1a1a;
}

.github-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.github-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #8f8aff);
}

.github-container {
    max-width: 1200px;
    margin: 0 auto;
}

.github-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.github-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.github-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.1);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c63ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.activity-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.icon-merge {
    background: #6c63ff;
    color: white;
}

.icon-create {
    background: #4CAF50;
    color: white;
}

.icon-feature {
    background: #FF9800;
    color: white;
}

.activity-time {
    color: #666;
    margin-left: auto;
}

.language-card {
    grid-column: 1 / -1;
}

.language-list {
    display: grid;
    gap: 1rem;
}

.language-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 1rem;
}

.language-name {
    color: #cccccc;
}

.language-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.language-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.language-percent {
    color: #6c63ff;
}

.js-bar {
    background: #f7df1e;
}

.py-bar {
    background: #3572A5;
}

.ts-bar {
    background: #2b7489;
}

.java-bar {
    background: #b07219;
}

.github-button {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    background: #6c63ff;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.github-button:hover {
    background: #5650d8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .github-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .language-item {
        grid-template-columns: 80px 1fr auto;
    }
}



.testimonials-section {
    padding: 4rem 1rem;
    background-color: #1a1a1a;
}

.testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #8f8aff);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #6c63ff;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: #999;
}

.testimonial-content {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-rating {
    color: #6c63ff;
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


.contact-section {
    padding: 4rem 1rem;
    background-color: #1a1a1a;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    /* background: linear-gradient(90deg, #6c63ff, #8f8aff); */
    background: linear-gradient(90deg, #9333ea, #c026d3);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 20px;
    height: 20px;
    color: #6c63ff;
}

.contact-text {
    color: #cccccc;
}

.contact-label {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.25rem;
}

.social-links {
    margin-top: 2rem;
}

.social-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: #cccccc;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6c63ff;
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #6c63ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #5650d8;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}



.footer {
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 1rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: #cccccc;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.75rem;
}

.quick-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #6c63ff;
}

.contact-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #999;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: #6c63ff;
}

/* .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #6c63ff;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
} */

.footer {
    /* background-color: #111111; */
    background-color: #1a1a1a;
    padding: 4rem 0 2rem;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(to right, #c026d3, #9333ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    color: #9ca3af;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ffffff;
}

.newsletter-text {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 0.5rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #9333ea;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #c026d3, #9333ea);
    border: none;
    border-radius: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.newsletter-button:hover {
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}