/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #8a2be2 100%);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    z-index: 1;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 0 0 20px #8a2be2;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #d3d3d3;
}

/* Profile Card Design (Javierrocadev) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background for the page */
    color: #ffffff; /* White text */
}

.profile-card {
    width: 80%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    animation: fadeIn 2s ease-in-out;
    margin: 20px auto;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.profile-text {
    flex: 1;
}

.profile-text h1 {
    font-size: 3rem;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #8a2be2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.profile-text p {
    font-size: 1.2rem;
    color: #d3d3d3;
    margin: 10px 0;
}

.profile-text p:first-of-type {
    font-weight: bold;
    color: #8a2be2;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #8a2be2;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8a2be2, #9932cc, #ba55d3);
    z-index: -1;
    animation: rotate 10s linear infinite;
}

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

/* Social Media Floating Bar */
.social-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-toggle {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    color: #ffffff;
}

.social-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-floating:hover .social-links {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.6);
}

.social-link::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover::before {
    opacity: 1;
    visibility: visible;
}

.github {
    background: linear-gradient(135deg, #333, #24292e);
}

.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.facebook {
    background: linear-gradient(135deg, #3b5998, #2d4373);
}

.instagram {
    background: linear-gradient(135deg, #c13584, #833ab4);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000; /* Black navbar */
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(138, 43, 226, 0.5); /* Purple shadow */
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar li {
    display: inline;
    margin: 0 20px;
}

.navbar a {
    color: #ffffff; /* White text */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #8a2be2; /* Purple hover color */
    text-shadow: 0 0 10px #8a2be2; /* Glow effect */
}

/* Main Sections */
section {
    width: 100%;
    margin: 20px 0;
    padding: 20px 0;
    background-color: #1a1a1a; /* Dark gray for sections */
    border-radius: 0;
    box-shadow: none;
    scroll-margin-top: 70px;
    color: #ffffff; /* White text */
    animation: fadeIn 1s ease-in-out;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    color: #d3d3d3; /* Light gray heading */
    border-bottom: 2px solid #8a2be2; /* Purple border */
    padding-bottom: 5px;
}

.experience-item, .skill-item {
    margin-bottom: 20px;
}

h3 {
    color: #d3d3d3; /* Light gray heading */
    margin-bottom: 5px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #ffffff; /* White text */
}

p {
    margin: 5px 0;
    color: #d3d3d3; /* Light gray text */
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.project-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(138, 43, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.1), transparent);
    transition: left 0.5s;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
    border-color: #8a2be2;
}

.project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.project-card h3 {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.project-card p {
    color: #d3d3d3;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tags span {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.view-details-btn {
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.view-details-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(138, 43, 226, 0.1) 100%);
    padding: 30px;
    border-radius: 20px;
    width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
    position: relative;
    color: #ffffff;
    border: 1px solid rgba(138, 43, 226, 0.2);
    animation: popupFadeIn 0.3s ease-out;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.popup-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.popup-body {
    line-height: 1.6;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #d3d3d3;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.1);
    transform: scale(1.1);
}

#popup-title {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

#popup-description {
    color: #d3d3d3;
    margin: 0;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Experience Section */
.experience {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.experience-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #9932cc);
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.4);
    border-color: #8a2be2;
}

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

.experience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
    flex-shrink: 0;
}

.experience-title h3 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.experience-company {
    color: #8a2be2;
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 500;
}

.experience-duration {
    color: #d3d3d3;
    font-size: 0.9rem;
    font-weight: 400;
}

.experience-description {
    color: #d3d3d3;
    margin: 0 0 25px 0;
    line-height: 1.6;
    font-size: 1rem;
}

.experience-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.experience-achievements h4,
.experience-tech-stack h4 {
    color: #ffffff;
    margin: 0 0 15px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.experience-achievements h4 i,
.experience-tech-stack h4 i {
    color: #8a2be2;
}

.experience-achievements ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience-achievements li {
    color: #d3d3d3;
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.experience-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8a2be2;
    font-weight: bold;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-stack span {
    background: rgba(138, 43, 226, 0.15);
    color: #8a2be2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.tech-stack span:hover {
    background: rgba(138, 43, 226, 0.25);
    transform: scale(1.05);
}

/* Skills Section */
.skills {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.skills h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.skill-category {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8a2be2, #9932cc, #ba55d3);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.25);
    border-color: #8a2be2;
}

.skill-category h3 {
    color: #8a2be2;
    margin: 0 0 25px 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #9932cc);
    border-radius: 1px;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(138, 43, 226, 0.2);
    text-align: center;
    min-height: 100px;
}

.skill-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.3);
    border-color: #8a2be2;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.skill-item i {
    font-size: 32px;
    margin-bottom: 12px;
    color: #8a2be2;
    transition: all 0.3s ease;
}

.skill-item:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

.skill-item span {
    font-size: 14px;
    font-weight: 500;
    color: #d3d3d3;
    transition: color 0.3s ease;
}

.skill-item:hover span {
    color: #ffffff;
}

/* Download Section */
.download-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.download-text h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.download-text p {
    color: #d3d3d3;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #8a2be2, #9932cc);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.download-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;
}

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

.download-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(138, 43, 226, 0.6);
    border-color: #ffffff;
}

.download-button i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #ffffff;
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #8a2be2;
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #ffffff;
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: #d3d3d3;
    margin: 8px 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    color: #8a2be2;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    color: #d3d3d3;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-social-link:hover {
    background: #8a2be2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d3d3d3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #8a2be2;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(138, 43, 226, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .profile-card {
        width: 90%;
        padding: 20px;
    }

    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .profile-text h1 {
        font-size: 2rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .experience-card {
        padding: 25px;
    }

    .experience-card-header {
        gap: 15px;
    }

    .experience-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .experience-title h3 {
        font-size: 1.2rem;
    }

    .experience-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        padding: 20px;
    }

    .project-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .navbar li {
        margin: 0 10px;
    }

    .navbar a {
        font-size: 16px;
    }

    section {
        padding: 15px;
    }

    .popup-content {
        width: 90%;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .download-text h2 {
        font-size: 1.8rem;
    }

    .download-text p {
        font-size: 1rem;
    }

    .download-button {
        padding: 15px 28px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 10px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .profile-card {
        width: 95%;
        padding: 15px;
    }

    .profile-text h1 {
        font-size: 1.8rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .social-buttons {
        flex-wrap: wrap;
        padding: 10px 5px;
    }

    .social-button {
        width: 40px;
        height: 40px;
        margin: 5px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-card {
        padding: 20px;
    }

    .experience-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .experience-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .experience-title h3 {
        font-size: 1.1rem;
    }

    .experience-description {
        font-size: 0.95rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .skill-category {
        padding: 25px;
    }

    .skill-items {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .skill-item {
        padding: 15px 10px;
        min-height: 80px;
    }

    .skill-item i {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .skill-item span {
        font-size: 13px;
    }

    .navbar ul {
        padding: 0 10px;
    }

    .navbar li {
        display: block;
        margin: 10px 0;
    }

    .download-content {
        gap: 25px;
    }

    .download-text h2 {
        font-size: 1.5rem;
    }

    .download-text p {
        font-size: 0.95rem;
    }

    .download-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .footer {
        padding: 40px 0 15px 0;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }
}