* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #f5f5f5;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Remove or comment out the animated background elements */
        .bg-elements,
        .bg-elements::before,
        .bg-elements::after,
        .bg-elements .f1-flag,
        .bg-elements .f1-speedline,
        .bg-elements .f1-speedline2 {
            display: none !important;
        }

        /* Navigation - Fixed to top right */
        nav {
            position: fixed;
            top: 0;
            right: 0;
            padding: 1.5rem 2rem;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(0, 0, 0, 0.3);
            border-radius: 0 0 0 20px;
            width: auto;
            display: flex;
            justify-content: flex-end;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: #c0c0c0;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Source Sans Pro', sans-serif;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #009688;
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #009688;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .logo-frame {
            width: 300px; /* Match intended logo width */
            height: 300px; /* Make frame square for a circular logo appearance */
            border-radius: 50%; /* Makes it a circle */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem; /* Space below the frame */
            position: relative; /* For the ::after pseudo-element */
            overflow: hidden; /* To clip the image to the circular frame */
            /* border property removed, will be handled by ::after */
        }

        .logo-frame img {
            width: 110%; /* Fill the frame's width */
            height: 130%; /* Make the image height 90% of the frame's height */
            object-fit: cover; /* Maintain aspect ratio, cover the area, crop if needed */
            display: block; /* Removes extra space below image */
            position: relative; /* To allow transform to shift it visually */
            transform: translateY(15px); /* Shift down by 5% of frame height (half of 100%-90%) to align bottom */
        }

        .logo-frame::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid #009688; /* Teal border */
            border-radius: 50%; /* Match parent's shape */
            box-sizing: border-box; /* Border is inside the pseudo-element's dimensions */
            pointer-events: none; /* So it doesn't interfere with mouse events */
        }

        .profile-circle {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            border: 3px solid #009688;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5;
            position: relative;
            box-shadow: 0 0 30px rgba(0, 150, 136, 0.3);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 30px rgba(0, 150, 136, 0.3); }
            50% { box-shadow: 0 0 50px rgba(0, 150, 136, 0.5); }
        }

        .profile-circle::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: linear-gradient(45deg, transparent, rgba(0, 150, 136, 0.2), transparent);
            animation: rotate 10s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .profile-circle span {
            font-size: 1.2rem;
            font-weight: bold;
            color: #009688;
            letter-spacing: 2px;
        }

        .intro-text {
            margin-bottom: 1rem;
        }

        .intro-text h1 {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: #777474;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        .name {
            font-size: 3.5rem;
            font-weight: bold;
            color: #b9b8b8;
            margin: 1rem 0;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.5s both;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .name-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .pronunciation-btn {
            background: none;
            border: none;
            color: #009688;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 0.3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .pronunciation-btn:hover {
            transform: scale(1.2);
            opacity: 1;
            background: rgba(0, 150, 136, 0.1);
        }

        .pronunciation-btn:focus {
            outline: 2px solid rgba(0, 150, 136, 0.5);
        }

        .pronunciation-btn:active {
            transform: scale(0.95);
        }

        .job-title {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 1.3rem;
            color: #009688;
            font-weight: 500;
            margin-bottom: 0.5rem;
            animation: fadeInUp 1s ease-out 0.8s both;
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 1.2rem;
            color: #b0b0b0;
            max-width: 600px;
            line-height: 1.6;
            margin: 1.5rem 0 2.5rem 0;
            font-style: italic;
            animation: fadeInUp 1s ease-out 1s both;
            font-family: 'Source Sans Pro', sans-serif;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            background: linear-gradient(45deg, #009688, #00695C);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 1.5s both;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 150, 136, 0.4);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #009688;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* About Section */
        .about {
            min-height: 100vh;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .about.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #009688;
        }

        .about-text p {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ede8e8;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .about-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .about-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            border: 5px solid rgba(0, 150, 136, 0.5);
        }

        .about-image:hover {
            transform: scale(1.02);
        }

        .about-decoration {
            width: 300px;
            height: 300px;
            border: 2px solid #009688;
            border-radius: 20px;
            position: relative;
            transform: rotate(15deg);
            background: linear-gradient(135deg, rgba(0, 150, 136, 0.1), transparent);
        }

        .about-decoration::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            border: 1px solid rgba(0, 150, 136, 0.3);
            border-radius: 15px;
        }

        .personal-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
            background: rgba(0, 150, 136, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #009688;
        }

        .info-item {
            display: flex;
            flex-direction: column;
        }

        .info-label {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            letter-spacing: 2px;
            color: #009688;
        }

        .info-value {
            font-family: 'Source Sans Pro', sans-serif;
            color: #f5f5f5;
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* Social Links */
        .social-links {
            position: fixed;
            top: 40%;
            right: 32px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1.5rem;
            z-index: 1200;
            /* Remove margin-bottom for fixed position */
            margin-bottom: 0;
            /* Optional: add pointer-events: none; if you want to avoid blocking content, but keep as is for interactivity */
        }

        .social-icon {
            color: #c0c0c0;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .social-icon:hover {
            color: #009688;
            transform: translateY(-3px);
        }

        .social-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: #009688;
            bottom: -5px;
            left: 0;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .social-icon:hover::after {
            transform: scaleX(1);
        }

        /* Interests Section */
        .interests {
            min-height: 100vh;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .interests.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .interests h2 {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .interests h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #009688;
        }

        .interests-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .interest-card {
            background: rgba(0, 150, 136, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 150, 136, 0.2);
        }

        .interest-card:hover {
            transform: translateY(-10px);
            background: rgba(0, 150, 136, 0.1);
            border-color: #009688;
        }

        .interest-icon {
            font-size: 2.5rem;
            color: #009688;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .interest-card h3 {
            font-family: 'Source Sans Pro', sans-serif;
            color: #ffffff;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            text-align: center;
            letter-spacing: 1px;
        }

        .interest-card p {
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 400;
            color: #f5f5f5;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .skills-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(0, 150, 136, 0.05);
            border-radius: 10px;
        }

        .skills-list li {
            font-family: 'Source Sans Pro', sans-serif;
            color: #f5f5f5;
            font-size: 0.95rem;
            padding: 0.4rem 0;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(0, 150, 136, 0.1);
        }

        .skills-list li:last-child {
            border-bottom: none;
        }

        .skills-list li strong {
            font-family: 'Source Sans Pro', sans-serif;
            font-weight: 600;
            color: #00bfad;
            margin-right: 0.8rem;
            min-width: 100px;
        }

        .skills-list li::before {
            display: none;
        }

        .interest-card:hover .skills-list {
            background: rgba(0, 150, 136, 0.1);
        }

        /* Projects Section */
        .projects {
            min-height: 100vh;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .projects.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .projects-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .projects-text h2 {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 2rem;
            position: relative;
        }

        .projects-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #009688;
        }

        .project-item {
            background: rgba(0, 150, 136, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid #009688;
            transition: all 0.3s ease;
        }

        .project-item:hover {
            transform: translateX(10px);
            background: rgba(0, 150, 136, 0.1);
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .project-header h3 {
            font-family: 'Source Sans Pro', sans-serif;
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .github-link {
            color: #009688;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .github-link:hover {
            color: #00bfad;
            transform: translateY(-2px);
        }

        .project-item p {
            font-family: 'Source Sans Pro', sans-serif;
            color: #f5f5f5;
            font-size: 1rem;
            line-height: 1.6;
        }

        .projects-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .projects-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            border: 5px solid rgba(0, 150, 136, 0.5);
        }

        .projects-image:hover {
            transform: scale(1.02);
        }

        /* Project Showcase Section */
        .project-showcase {
            min-height: 100vh;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }

        .project-showcase.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-showcase h2 {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .project-showcase h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #009688;
        }

        .project-container {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .project-card {
            display: flex;
            flex-direction: column;
            background: rgba(0, 150, 136, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 150, 136, 0.2);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: #009688;
        }

        .project-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-tools {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 5px;
            max-width: 80%;
        }

        .tool-tag {
            background: rgba(0, 150, 136, 0.85);
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(2px);
            transition: all 0.3s ease;
        }

        .tool-tag:hover {
            background: rgba(0, 150, 136, 1);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-details {
            padding: 1.5rem;
        }

        .project-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .project-title h3 {
            font-family: 'Source Sans Pro', sans-serif;
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .project-github-link {
            color: #009688;
            font-size: 1.4rem;
            transition: all 0.3s ease;
        }

        .project-github-link:hover {
            color: #00bfad;
            transform: translateY(-2px) rotate(5deg);
        }

        .project-details p {
            font-family: 'Source Sans Pro', sans-serif;
            color: #f5f5f5;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Community Section */
        .community {
            min-height: 100vh;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
            position: relative;
        }

        .community.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .community-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .community-header h2 {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .community-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: #009688;
        }

        .community-subtitle {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 1.2rem;
            color: #009688;
            font-weight: 400;
            margin-top: 1rem;
            letter-spacing: 1px;
        }

        .community-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        /* Remove vertical timeline line since we're using a grid layout now */
        .community-timeline::before {
            display: none;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
            background: rgba(0, 150, 136, 0.05);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 150, 136, 0.1);
            transition: all 0.3s ease;
        }

        /* Remove odd/even item differences since we're using a grid */
        .timeline-item:nth-child(odd) {
            flex-direction: column;
        }

        .timeline-item:hover {
            transform: translateY(-10px);
            background: rgba(0, 150, 136, 0.1);
            border-color: #009688;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .timeline-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #009688;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            z-index: 2;
            box-shadow: 0 0 15px rgba(0, 150, 136, 0.5);
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 0 25px rgba(0, 150, 136, 0.7);
        }

        .timeline-content {
            width: 100%;
            padding: 0 0 1.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Remove the content arrow styles as they don't make sense in this grid layout */
        .timeline-content::before {
            display: none;
        }

        .timeline-img-container {
            width: 100%;
            height: 180px;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
            margin-bottom: 1rem;
            position: relative;
        }

        .timeline-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .timeline-item:hover .timeline-img-container img {
            transform: scale(1.1);
        }

        .timeline-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #009688;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transform: rotate(-3deg);
        }

        .timeline-content h3 {
            font-family: 'Source Sans Pro', sans-serif;
            color: #ffffff;
            font-size: 1.4rem;
            margin: 0 1.5rem 0.5rem 1.5rem;
        }

        .timeline-date {
            display: block;
            color: #009688;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 1.5rem 1rem 1.5rem;
            font-style: italic;
        }

        .timeline-content p {
            font-family: 'Source Sans Pro', sans-serif;
            color: #f5f5f5;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 1.5rem 1rem 1.5rem;
        }

        .timeline-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0 1.5rem;
        }

        .timeline-tag {
            background: rgba(0, 150, 136, 0.2);
            color: #f5f5f5;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-tag {
            background: rgba(0, 150, 136, 0.4);
            transform: translateY(-3px);
        }

        /* Updated media queries for Community Section */
        @media (max-width: 968px) {
            .community-timeline {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 1200px) {
            .community-timeline {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .name {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .about-decoration {
                width: 200px;
                height: 200px;
            }
            
            .about-image {
                max-width: 300px;
                margin: 2rem auto;
            }

            .personal-info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .interests-grid {
                grid-template-columns: 1fr;
            }

            .projects-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .projects-image {
                max-width: 300px;
                margin: 2rem auto;
            }

            .project-card {
                max-width: 100%;
            }
        }

        @media (max-width: 968px) {
            .interests-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 768px) {
            .project-container {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
                gap: 2rem;
            }
        }

        /* Contact Section */
        .contact-section {
            min-height: 70vh;
            padding: 5rem 2rem 3rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
            position: relative;
            background: linear-gradient(120deg, rgba(0,150,136,0.07) 0%, rgba(0,0,0,0.12) 100%);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0,150,136,0.08);
            overflow: hidden;
        }

        .contact-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-content-wrapper {
            display: flex;
            flex-direction: row;
            width: 100%;
            gap: 3rem;
            align-items: stretch;
            justify-content: center;
        }

        .contact-visual {
            flex: 1 1 40%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 2rem 0 2rem 1rem;
            position: relative;
            min-width: 260px;
        }

        .contact-illustration {
            width: 240px;                /* Increased from 180px */
            height: 240px;               /* Ensure it's a perfect circle */
            max-width: 100%;
            margin-bottom: 2rem;
            filter: drop-shadow(0 4px 16px rgba(0,150,136,0.12));
            animation: floatY 4s ease-in-out infinite;
            border-radius: 50%;           /* Makes the image circular */
            border: 6px solid #009688;    /* Slightly thicker border for larger image */
            background: #181818;          /* Optional: fallback background */
            object-fit: cover;            /* Ensures image covers the circle */
            box-shadow: 0 0 32px rgba(0,150,136,0.12);
            display: block;
        }

        @keyframes floatY {
            0%, 100% { transform: translateY(0);}
            50% { transform: translateY(-12px);}
        }

        .contact-info-card {
            background: rgba(0,150,136,0.09);
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,150,136,0.08);
            padding: 1.5rem 1.2rem;
            color: #fff;
            width: 100%;
            max-width: 260px;
            margin: 0 auto;
            margin-bottom: 1rem;
            border-left: 4px solid #009688;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .contact-info-card h3 {
            font-size: 1.1rem;
            color: #00bfad;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        .contact-info-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info-card li {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 1rem;
            margin-bottom: 0.7rem;
            color: #e0e0e0;
        }

        .contact-info-card a {
            color: #00bfad;
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-info-card a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .contact-container {
            flex: 1 1 60%;
            background: rgba(0, 150, 136, 0.05);
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .contact-container h2 {
            font-family: 'Source Sans Pro', sans-serif;
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 0.5rem;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .contact-divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #009688 60%, #00bfad 100%);
            border-radius: 2px;
            margin: 0.7rem 0 1.2rem 0;
            animation: growWidth 1.2s cubic-bezier(.4,1.4,.6,1) 0.2s both;
        }

        @keyframes growWidth {
            from { width: 0; opacity: 0.2;}
            to { width: 60px; opacity: 1;}
        }

        .contact-subtitle {
            color: #009688;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Source Sans Pro', sans-serif;
        }

        #contact-form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .form-group {
            width: 100%;
        }

        #contact-form input,
        #contact-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1.5px solid #009688;
            background: rgba(0,0,0,0.15);
            color: #fff;
            font-size: 1rem;
            font-family: 'Source Sans Pro', sans-serif;
            transition: border 0.3s;
            margin-bottom: 0.5rem;
        }

        #contact-form input:focus,
        #contact-form textarea:focus {
            outline: none;
            border: 2px solid #00bfad;
            background: rgba(0, 150, 136, 0.08);
        }

        .send-btn {
            background: linear-gradient(45deg, #009688, #00695C);
            color: #fff;
            padding: 0.9rem 2.2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Source Sans Pro', sans-serif;
            box-shadow: 0 2px 10px rgba(0,150,136,0.15);
            margin-top: 0.5rem;
        }

        .send-btn:hover {
            background: linear-gradient(45deg, #00bfad, #009688);
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 6px 18px rgba(0,150,136,0.25);
        }

        #form-status {
            margin-top: 1rem;
            font-size: 1rem;
            text-align: center;
            min-height: 24px;
            color: #00bfad;
            font-family: 'Source Sans Pro', sans-serif;
        }

        /* Responsive Navigation */
        @media (max-width: 900px) {
            nav {
                padding: 1rem 1.2rem;
                border-radius: 0 0 0 14px;
            }
            nav ul {
                gap: 1.2rem;
            }
        }

        @media (max-width: 600px) {
            nav {
                padding: 0.7rem 0.5rem;
                border-radius: 0 0 0 8px;
            }
            nav ul {
                flex-direction: column;
                gap: 0.7rem;
                align-items: flex-end;
            }
            nav a {
                font-size: 1.05rem;
                padding: 0.2rem 0.5rem;
            }
        }

        /* Hero Section Responsive */
        @media (max-width: 900px) {
            .hero .logo-frame {
                width: 200px;
                height: 200px;
            }
            .profile-circle {
                width: 200px;
                height: 200px;
            }
            .name {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 600px) {
            .hero {
                padding-top: 3.5rem;
            }
            .logo-frame {
                width: 120px;
                height: 120px;
            }
            .profile-circle {
                width: 120px;
                height: 120px;
            }
            .name {
                font-size: 1.4rem;
            }
            .cta-button {
                font-size: 1rem;
                padding: 0.7rem 1.2rem;
            }
        }

        /* About Section Responsive */
        @media (max-width: 900px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .about-image {
                max-width: 220px;
                margin: 2rem auto;
            }
            .about-decoration {
                width: 120px;
                height: 120px;
            }
            .personal-info-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Interests Section Responsive */
        @media (max-width: 968px) {
            .interests-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        @media (min-width: 600px) and (max-width: 968px) {
            .interests-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Projects Section Responsive */
        @media (max-width: 900px) {
            .projects-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .projects-image {
                max-width: 220px;
                margin: 2rem auto;
            }
        }
        @media (max-width: 600px) {
            .project-container {
                gap: 1.2rem;
            }
            .project-card {
                padding: 1rem;
            }
            .project-image {
                height: 140px;
            }
        }

        /* Project Showcase Responsive */
        @media (max-width: 900px) {
            .project-showcase {
                padding: 2.5rem 0.5rem;
            }
            .project-container {
                gap: 1.2rem;
            }
            .project-card {
                padding: 1rem;
            }
            .project-image {
                height: 140px;
            }
        }

        /* Community Section Responsive */
        @media (max-width: 968px) {
            .community-timeline {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
        }
        @media (min-width: 1200px) {
            .community-timeline {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
        }

        /* Contact Section Responsive */
        @media (max-width: 900px) {
            .contact-section {
                padding: 2.5rem 0.5rem 2rem 0.5rem;
                max-width: 98vw;
            }
            .contact-content-wrapper {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }
            .contact-visual, .contact-container {
                min-width: 0;
                width: 100%;
                max-width: 100%;
                padding: 1rem 0;
            }
            .contact-illustration {
                width: 160px;
                height: 160px;
            }
        }

        @media (max-width: 600px) {
            .contact-section {
                border-radius: 10px;
                padding: 1.5rem 0.2rem 1rem 0.2rem;
            }
            .contact-visual {
                padding: 1rem 0 1rem 0;
            }
            .contact-info-card {
                padding: 1rem 0.7rem;
                max-width: 100%;
                font-size: 0.97rem;
            }
            .contact-container {
                padding: 1.2rem 0.5rem;
            }
            .contact-illustration {
                width: 110px;
                height: 110px;
                margin-bottom: 1rem;
            }
            .contact-divider {
                width: 40px;
                height: 3px;
            }
            .contact-container h2 {
                font-size: 1.3rem;
            }
            .send-btn {
                font-size: 1rem;
                padding: 0.7rem 1.2rem;
            }
            #contact-form input,
            #contact-form textarea {
                font-size: 0.97rem;
                padding: 0.7rem;
            }
        }

        /* General: Make sure all sections have proper padding on mobile */
        @media (max-width: 600px) {
            section, .about, .interests, .projects, .project-showcase, .community {
                padding: 1.2rem 0.2rem !important;
            }
        }