/* Base Font Size Adjustment */
html {
    font-size: 80%; /* This makes 1rem = 10px */
}

/* Journey Hero Section */
.journey-hero {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #000000, #000000);
    position: relative;
    overflow: hidden;
}

.journey-hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,238,255,0.1) 0%, rgba(0,0,0,0) 70%);
    animation: pulse 4s ease-in-out infinite;
}

.journey-content {
    max-width: 100rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.journey-content h1 {
    font-size: 8.2rem;
    background: linear-gradient(172deg, rgba(255,255,255,1) 43%, rgba(0,238,255,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0,238,255,0.3);
}

.journey-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: #fff;
    line-height: 1.6;
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.stat-box i {
    font-size: 4.5rem;
    color: #00eeff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0,238,255,0.5);
}

.stat-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.stat-box p {
    font-size: 1.4rem;
    color: #00eeff;
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 1.4rem;
    color: #aaa;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
    transition: 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 2.5rem;
    height: 4rem;
    border: 2px solid #fff;
    border-radius: 2rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 0.8rem;
    border-radius: 50%;
    animation: scrollAnim 1.5s infinite;
}

.scroll-indicator p {
    font-size: 1.4rem;
    color: #fff;
}

/* Timeline Section */
.timeline-section {
    padding: 12rem 9% 8rem;
    background: #000000;
    position: relative;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0,238,255,0.1) 0%, rgba(0,0,0,0) 70%);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 6rem auto 0;
    cursor: pointer;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, #00eeff, rgba(0,238,255,0.3));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(0,238,255,0.3);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    perspective: 1000px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.timeline-content:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.timeline-date {
    font-size: 1.5rem;
    color: #00eeff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0,238,255,0.3);
}

.timeline-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.timeline-content p {
    color: #aaa;
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.achievements-list {
    list-style: none;
    margin-top: 1.5rem;
}

.achievements-list li {
    color: #fff;
    font-size: 1.4rem;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.achievements-list li::before {
    content: '▹';
    color: #00eeff;
    position: absolute;
    left: 0;
    font-size: 1.6rem;
}

/* Achievements Section */
.achievements-section {
    padding: 12rem 9% 8rem;
    background: linear-gradient(135deg, #000000, #000000);
    position: relative;
    overflow: hidden;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3.5rem 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,238,255,0.1) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    transition: 0.5s;
    transform: scale(0.5);
}

.achievement-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.achievement-card:hover {
    transform: translateY(-15px);
    border-color: #00eeff;
    box-shadow: 0 0 40px rgba(0,238,255,0.2);
}

.achievement-icon {
    font-size: 5rem;
    color: #00eeff;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(0,238,255,0.5);
}

.achievement-card h3 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.achievement-card p {
    color: #aaa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.achievement-details {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.achievement-details li {
    color: #fff;
    font-size: 1.4rem;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.achievement-details li::before {
    content: '→';
    color: #00eeff;
    position: absolute;
    left: 0;
}

/* Skills Showcase */
.skills-showcase {
    padding: 12rem 9% 8rem;
    background: #000000;
    position: relative;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.skill-category:hover {
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.skill-category h3 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 10px rgba(0,238,255,0.3);
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 3.5rem;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #00eeff, rgba(0,238,255,0.5));
    border-radius: 2rem;
    position: relative;
    transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.skill-name {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

/* Certifications Section */
.certifications-section {
    padding: 12rem 9% 8rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.certification-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.certification-card:hover {
    transform: translateY(-10px);
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.certification-logo {
    width: 6rem;
    height: 6rem;
    background: rgba(0,238,255,0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00eeff;
}

.certification-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.certification-content p {
    font-size: 1.4rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.certification-date {
    font-size: 1.2rem;
    color: #00eeff;
}

/* Contact Section */
.contact-section {
    padding: 12rem 9% 8rem;
    background: #000000;
}

.contact-content {
    max-width: 1200px;
    margin: 5rem auto 0;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.contact-card i {
    font-size: 3.5rem;
    color: #00eeff;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1.4rem;
    color: #aaa;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-link {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00eeff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #00eeff;
    box-shadow: 0 0 20px rgba(0,238,255,0.3);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: translate(-50%, 0); }
    75% { opacity: 0; transform: translate(-50%, 1.5rem); }
    100% { opacity: 0; transform: translate(-50%, 1.5rem); }
}

/* Projects Section */
.projects-section {
    padding: 12rem 9% 8rem;
    background: #000000;
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0,238,255,0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transition: 0.4s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link, .project-github {
    width: 4rem;
    height: 4rem;
    background: rgba(0,238,255,0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00eeff;
    font-size: 2rem;
    transition: 0.3s;
}

.project-link:hover, .project-github:hover {
    background: #00eeff;
    color: #000;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.project-content p {
    color: #aaa;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-tech span {
    padding: 0.5rem 1.5rem;
    background: rgba(0,238,255,0.1);
    border-radius: 2rem;
    color: #00eeff;
    font-size: 1.2rem;
}

/* Research Section */
.research-section {
    padding: 12rem 9% 8rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.research-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.research-card:hover {
    transform: translateY(-10px);
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.research-icon {
    font-size: 4rem;
    color: #00eeff;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0,238,255,0.5);
}

.research-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.research-content p {
    color: #aaa;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.research-details {
    list-style: none;
    margin-bottom: 2rem;
}

.research-details li {
    color: #fff;
    font-size: 1.4rem;
    margin: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.research-details li::before {
    content: '▸';
    color: #00eeff;
    position: absolute;
    left: 0;
}

.research-date {
    color: #00eeff;
    font-size: 1.3rem;
}

/* Activities Section */
.activities-section {
    padding: 12rem 9% 8rem;
    background: #000000;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.activity-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-10px);
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.activity-icon {
    font-size: 4rem;
    color: #00eeff;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0,238,255,0.5);
}

.activity-card h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.activity-card p {
    color: #aaa;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.activity-details {
    list-style: none;
    text-align: left;
}

.activity-details li {
    color: #fff;
    font-size: 1.4rem;
    margin: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.activity-details li::before {
    content: '→';
    color: #00eeff;
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 12rem 9% 8rem;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #00eeff;
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.testimonial-quote {
    font-size: 3rem;
    color: #00eeff;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.testimonial-text {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00eeff;
}

.author-info h4 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.author-info span {
    color: #aaa;
    font-size: 1.4rem;
}

/* Awards Section */
.awards-section {
    padding: 12rem 9% 8rem;
    background: #000000;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.award-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: 0.4s;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0,238,255,0.2);
}

.award-image {
    height: 200px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.award-card:hover .award-image img {
    transform: scale(1.1);
}

.award-content {
    padding: 2rem;
}

.award-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.award-content p {
    color: #aaa;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.award-year {
    color: #00eeff;
    font-size: 1.3rem;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }

    .journey-content h1 {
        font-size: 3.8rem;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stat-box {
        padding: 2rem 1.5rem;

    }
}

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .journey-hero {
        padding: 12rem 5% 6rem;
    }

    .section {
        padding: 6rem 5%;
    }

    .journey-content {
        max-width: 60rem;
    }

    .journey-stats {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .activity-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 5rem auto 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 60%;
    }

    .journey-content h1 {
        font-size: 3.2rem;
    }

    .heading {
        font-size: 2.8rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 5rem auto 0;
    }

    .timeline::after {
        left: 2rem;
    }

    .timeline-item {
        width: 100%;
        padding-left: 5rem;
        padding-right: 2rem;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-content {
        padding: 2rem;
    }

    .navbar {
        background: rgba(0, 0, 0, 0.95);
        padding: 2rem 5%;
    }

    .navbar a {
        display: block;
        margin: 2rem 0;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 55%;
    }

    .journey-content h1 {
        font-size: 3rem;
    }

    .heading {
        font-size: 2.5rem;
    }

    .stat-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 350px) {
    html {
        font-size: 45%;
    }

    .journey-content h1 {
        font-size: 3.5rem;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .journey-hero {
        min-height: -webkit-fill-available;
    }
}

/* Improved Touch Interactions */
@media (hover: none) {
    .stat-box:hover,
    .activity-card:hover {
        transform: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .journey-hero {
        padding: 10rem 3% 2rem;
    }

    .journey-content h1 {
        font-size: 4.5rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .journey-content h1 {
        font-size: 3.5rem;
    }

    .stat-box {
        padding: 2rem;
    }

    .achievement-card {
        padding: 2.5rem 2rem;
    }

    .certification-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .contact-info {
        gap: 2rem;
    }
}

@media (max-width: 450px) {
    .journey-content h1 {
        font-size: 6rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .skill-category {
        padding: 2rem;
    }

    .social-link {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }
} 