:root {
    --primary-color: #6b46c1;
    --secondary-color: #805ad5;
    --text-color: #2d3748;
    --bg-color: #ffffff;
    --accent-color: #9f7aea;
    --light-purple: #e9d8fd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

header {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--light-purple);
}

.intro-section {
    display: flex;
    align-items: center;
    min-height: calc(40vh - 60px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.profile-image {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 1rem;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.geometric-shape {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--light-purple);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.intro-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-content, .philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p, .philosophy-content p {
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--light-purple);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--bg-color);
    border: 4px solid var(--accent-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd)::after {
    left: -16px;
}

.timeline-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.philosophy-section {
    background-color: var(--light-purple);
    padding: 4rem 0;
}

blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.philosophy-content ul {
    list-style-type: none;
    padding-left: 0;
}

.philosophy-content li {
    margin-bottom: 1rem;
}

.project-item {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--secondary-color);
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1rem 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }

    .intro-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }

    nav::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }

    nav ul {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.5rem;
        width: max-content;
    }

    nav ul li {
        margin: 0 1rem;
        white-space: nowrap;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }

    .timeline-item::after {
        left: 15px;
    }

    .timeline-item:nth-child(odd)::after {
        left: 15px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        margin: 0.5rem 0;
    }
}



:root {
    ---primary-color: #3498db;
    ---secondary-color: #2c3e50;
    ---background-color: #f4f7f9;
    ---text-color: #333;
    ---light-gray: #f8f9fa;
    ---dark-gray: #343a40;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(---text-color);
}

.footer {
    background-color: var(---dark-gray);
    color: #fff;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}

.footer-section {
    flex: 1;
    margin-bottom: 2rem;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(---primary-color);
}

.footer-section ul {
    list-style-type: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(---primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(---primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 2rem;
    }
}
