#about{
    padding: 80px 0px;
    color: #ababab;
}

/* This is the new line I added from the ChatGPT to just separate the paragraphs */

#about p{
    margin-bottom: 1.5em;   /* creates a blank line between paragraphs */
    line-height: 1.6;       /* improves readability */
}

/* New alternating section layout */
.about-section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.about-section:nth-child(1) { animation-delay: 0.2s; }
.about-section:nth-child(2) { animation-delay: 0.6s; }
.about-section:nth-child(3) { animation-delay: 1.0s; }

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

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

/* Section 1: Image Left, Text Right */
.about-section-1 .about-content {
    flex-direction: row;
}

/* Section 2: Image Right, Text Left */
.about-section-2 .about-content {
    flex-direction: row;
}

/* Section 3: Image Left, Text Right */
.about-section-3 .about-content {
    flex-direction: row;
}

/* Image Styles */
.about-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5px;
}

.about-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.4);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(138, 43, 226, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.image-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Text Styles */
.about-text {
    flex: 1.2;
    padding: 20px;
}

.text-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.text-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.text-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

.text-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.text-content p:hover {
    transform: translateX(10px);
    color: #fff;
}

.text-content strong {
    color: #8a2be2;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    transition: all 0.3s ease;
}

.text-content strong:hover {
    color: #6366f1;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .about-content {
        flex-direction: column !important;
        gap: 30px;
        min-height: auto;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-text {
        order: 2;
        padding: 10px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .text-content {
        padding: 25px;
    }
    
    .text-content p {
        font-size: 15px;
    }
}

.tab-titles{
    display: flex;
    margin: 20px 0 40px;
}

.tab-links{
    margin-right: 50px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.tab-links::after{
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -8px;
    transition: 0.5s;
}

.tab-links.active-link::after{
    width: 50%;
}

.tab-contents ul li{
    list-style: none;
    margin: 10px 0;
}

.tab-contents ul li span{
    color: #b54769;
    font-size: 14px;
}

.tab-contents{
    display: none;
}

.tab-contents.active-tab{
    display: block;
}

/* Revolutionary Skills, Experience, Education Section */
.revolutionary-skills-section {
    margin-top: 120px;
    padding: 80px 20px;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.08) 0%, 
        rgba(99, 102, 241, 0.06) 25%, 
        rgba(138, 43, 226, 0.04) 50%, 
        rgba(99, 102, 241, 0.06) 75%, 
        rgba(138, 43, 226, 0.08) 100%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.revolutionary-skills-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, 
        rgba(138, 43, 226, 0.1) 0%, 
        transparent 40%, 
        rgba(99, 102, 241, 0.05) 60%, 
        transparent 100%);
    animation: revolutionaryRotate 30s linear infinite;
}

@keyframes revolutionaryRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #8a2be2, #6366f1, #8a2be2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.3);
}

.section-subtitle {
    font-size: 20px;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Interactive Tabs Container */
.interactive-tabs {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.nav-btn {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05), 
        rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 25px 35px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    overflow: hidden;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(138, 43, 226, 0.4), 
        transparent);
    transition: left 0.8s ease;
    z-index: -1;
}

.nav-btn:hover::before {
    left: 0;
}

.nav-btn:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.4);
}

.nav-btn.active {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.25), 
        rgba(99, 102, 241, 0.2));
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.5);
    transform: translateY(-5px) scale(1.02);
}

.btn-icon {
    font-size: 36px;
    animation: iconBounce 3s ease-in-out infinite;
}

.nav-btn span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(138, 43, 226, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #6366f1, #8a2be2);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.nav-btn.active .btn-glow {
    width: 80%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(138, 43, 226, 0.8); }
    50% { box-shadow: 0 0 20px rgba(138, 43, 226, 1); }
}

/* Tab Content Wrapper */
.tab-content-wrapper {
    position: relative;
    min-height: auto;
    height: auto;
}

.tab-panel {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    display: none;
}

.tab-panel.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
    display: block;
}

/* Skills Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    justify-content: center;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(30px);
    opacity: 0;
    animation: cardAppear 1s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-background {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(138, 43, 226, 0.1) 0%, 
        transparent 60%);
    animation: cardRotate 20s linear infinite;
    z-index: -1;
}

@keyframes cardRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.4);
}

.card-content-inner {
    position: relative;
    z-index: 2;
}

.card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    border-radius: 20px;
    opacity: 0.2;
    filter: blur(15px);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.icon {
    font-size: 48px;
    position: relative;
    z-index: 1;
    animation: iconFloat 4s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(138, 43, 226, 0.5);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 30px;
}

/* Progress Containers */
.progress-container {
    margin-bottom: 25px;
}

.progress-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8a2be2, #6366f1, #8a2be2);
    border-radius: 15px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-glow {
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    bottom: -5px;
    background: linear-gradient(90deg, #8a2be2, #6366f1);
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(10px);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.progress-percentage {
    font-size: 18px;
    font-weight: 700;
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

/* Card Tags */
.card-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.2), 
        rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.4), 
        rgba(99, 102, 241, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

/* Timeline Container for Experience */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8a2be2, #6366f1, #8a2be2);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    z-index: 3;
}

.marker-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(138, 43, 226, 0.8); }
    50% { transform: scale(1.2); box-shadow: 0 0 40px rgba(138, 43, 226, 1); }
}

.timeline-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 35px;
    width: calc(50% - 60px);
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
    opacity: 0;
    animation: timelineAppear 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) .timeline-content { animation-delay: 0.2s; }
.timeline-item:nth-child(2) .timeline-content { animation-delay: 0.4s; }
.timeline-item:nth-child(3) .timeline-content { animation-delay: 0.6s; }

@keyframes timelineAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.3);
}

.exp-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.exp-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

.exp-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(138, 43, 226, 0.5);
}

.exp-duration {
    font-size: 14px;
    color: #8a2be2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 20px;
}

.exp-achievements {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.achievement {
    font-size: 14px;
    color: #ddd;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.achievement:hover {
    color: #fff;
    transform: translateX(10px);
    border-bottom-color: rgba(138, 43, 226, 0.5);
}

/* Education Grid */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
}

.edu-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(30px);
    opacity: 0;
    animation: eduCardAppear 1s ease-out forwards;
}

.edu-card:nth-child(1) { animation-delay: 0.1s; }
.edu-card:nth-child(2) { animation-delay: 0.2s; }
.edu-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes eduCardAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edu-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 30px 60px rgba(138, 43, 226, 0.4);
}

.edu-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.edu-icon-wrapper {
    position: relative;
}

.edu-icon {
    font-size: 36px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
    position: relative;
    z-index: 2;
}

.edu-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    border-radius: 25px;
    opacity: 0.3;
    filter: blur(15px);
    animation: eduGlow 3s ease-in-out infinite;
}

@keyframes eduGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.edu-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(138, 43, 226, 0.5);
}

.edu-type {
    font-size: 14px;
    color: #8a2be2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.edu-description {
    margin-bottom: 25px;
}

.edu-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #bbb;
}

.edu-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #8a2be2;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edu-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8a2be2, #6366f1);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

/* Responsive Design - Fixed Issues */
@media only screen and (max-width: 1200px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .education-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .revolutionary-skills-section {
        padding: 60px 15px;
        margin-top: 80px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 280px;
        padding: 20px 25px;
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-icon {
        font-size: 28px;
    }
    
    .nav-btn span {
        font-size: 16px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .icon {
        font-size: 40px;
    }
    
    .feature-card h3 {
        font-size: 22px;
    }
    
    .timeline-container {
        padding: 20px 0;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-bottom: 40px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 60px;
        padding: 25px 20px;
    }
    
    .exp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .exp-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .edu-card {
        padding: 30px 25px;
    }
    
    .edu-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .edu-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .edu-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .edu-badge {
        position: static;
        margin-bottom: 15px;
        align-self: flex-start;
    }
}

@media only screen and (max-width: 480px) {
    .revolutionary-skills-section {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-btn {
        padding: 15px 20px;
        min-width: 140px;
    }
    
    .btn-icon {
        font-size: 24px;
    }
    
    .nav-btn span {
        font-size: 14px;
    }
    
    .feature-card,
    .edu-card {
        padding: 25px 20px;
    }
    
    .timeline-content {
        margin-left: 50px;
        width: calc(100% - 70px);
        padding: 20px 15px;
    }
    
    .edu-stats {
        flex-direction: column;
        gap: 15px;
    }
}
