/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: black;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;

}
nav a{
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: blue;
}

/* Hero Section */
#hero {
    height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-portrait {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.portrait-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, blue 0%, blue 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 50px rgba(230, 57, 70, 0.5); }
    to { box-shadow: 0 0 80px rgba(230, 57, 70, 0.8); }
}

.portrait-container img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-text {
    flex: 1;
    text-align: left;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    color: blue;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.hero-text h2 .underline {
    position: relative;
}

.hero-text h2 .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: blue;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #1D9BF0;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(29, 155, 240, 0.3);
}

.btn-primary-hero:hover {
    background-color: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 155, 240, 0.4);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background-color: white;
    color: #000000;
    transform: translateY(-3px);
}

.social-icons-hero {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon-hero:hover {
    background-color: white;
    color: #000000;
    transform: translateY(-3px);
}

.hire-btn-container {
    margin-top: 2rem;
}

.hire-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: blue;
    text-decoration: none;
    border: 2px solid blue;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hire-btn:hover {
    background-color: blue;
    color: white;
    transform: translateY(-2px);
}



/* Sections */
section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    background-color: #000000;
}

section.animate {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: blue;
}

/* About Section */
#about {
    background-color: #000000;
}

#about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #ffffff;
}

/* Skills Section */
#skills {
    background-color: #000000;
    padding: 80px 0;
}

.skills-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: blue;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    border-color: blue;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.skill-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.skill-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: blue;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.tag i {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Projects Section */
#projects {
    padding: 80px 0;
    background-color: black;
}

.projects-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.project-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, black 0%, black);
    z-index: -1;
}

.project-header:nth-child(2)::before {
    background: linear-gradient(135deg, black 0%, black 100%);
}

/* HEADER IMAGE */
/* FULL HEADER (clean, modern) */
.project-header {
  width: 100%;
  height: 230px;          /* full header height */
  overflow: hidden; /* optional */
}

.project-header-image {
  width: 200%;
  height: 300%;
  object-fit: cover;       /* fills the header */
  object-position: center; /* centers image */
  display: block;          /* removes white gap */
}

.project-content {
    padding: 1.5rem 2rem 2rem;
}

.project-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.project-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.project-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 2px solid blue;
    background: transparent;
    color: #667eea;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: blue;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}



/* Certifications Section */
#certifications {
    background-color: #000000;
    padding: 80px 0;
}

.certifications-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: blue;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #0f0248f0;
    border-color: blue;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-icon {
    width: 80px;
    height: 80px;
    background: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.certification-card:hover .certification-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.certification-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.certification-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.certification-date {
    color: blue;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Projects Section */
.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.github-btn i {
    font-size: 1.1rem;
}

/* Connect Section */
#connect {
    background-color: #000000;
    padding: 80px 0;
}

.connect-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

.connect-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px #0f0248f0;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px #0f0248f0;
    border-color: blue;
}

.status-badge {
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    background: blue;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px #0f0248f0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
}

.contact-item i {
    color: blue;
    font-size: 1.2rem;
    width: 20px;
}

.qr-codes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qr-code-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px #0f0248f0;
    text-align: center;
    transition: all 0.3s ease;
}

.qr-code-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px #0f0248f0;
    border-color: blue;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    box-shadow: 0 3px 10px #0f0248f0;
}

.qr-code-item p {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 60px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: blue;
    color: blue;
    box-shadow: 0 8px 25px #0f0248f0;
}

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

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: blue;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px #0f0248f0;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px #0f0248f0;
}

.download-btn i {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */

/* Large screens (desktops >1200px) */
@media (min-width: 1201px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .skills-cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

/* Medium screens (tablets 992px - 1200px) */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

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

    .skills-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }

    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .experience-timeline {
        max-width: 700px;
    }
}

/* Small screens (tablets 768px - 991px) */
@media (max-width: 991px) {
    #hero {
        padding: 0 3rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        gap: 1.5rem;
    }

    .skills-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .connect-layout {
        gap: 2rem;
    }

    .experience-timeline {
        max-width: 600px;
    }

    .experience-item {
        margin-bottom: 30px;
    }
}

/* Extra small screens (mobile 576px - 767px) */
@media (max-width: 767px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding: 0 2rem;
    }

    .hero-portrait {
        margin-bottom: 2rem;
    }

    .portrait-container {
        width: 250px;
        height: 250px;
    }

    .portrait-container img {
        width: 230px;
        height: 230px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .social-icons-hero {
        justify-content: center;
    }

    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .skills-cards,
    .projects-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .connect-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qr-codes {
        order: -1;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .experience-timeline {
        max-width: 100%;
        padding: 0 1rem;
    }

    .experience-item {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .experience-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .experience-content {
        text-align: center;
    }
}

/* Extra small screens (mobile <576px) */
@media (max-width: 575px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

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

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

    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .portrait-container {
        width: 200px;
        height: 200px;
    }

    .portrait-container img {
        width: 180px;
        height: 180px;
    }

    .skills-cards,
    .projects-grid,
    .certifications-grid {
        gap: 1.5rem;
    }

    .skill-card,
    .certification-card {
        padding: 2rem 1.5rem;
    }

    .project-card {
        margin-bottom: 2rem;
    }

    .qr-code-item {
        padding: 1rem;
    }

    .qr-code img {
        width: 100px;
        height: 100px;
    }

    .experience-content {
        padding: 1.5rem;
    }

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Experience Section */
#experience {
    background-color: #000000;
    padding: 80px 0;
}

.experience-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-style: italic;
}

.experience-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: blue;
}

.experience-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.experience-icon {
    width: 60px;
    height: 60px;
    background: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    z-index: 1;
}

.experience-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    flex: 1;
    transition: all 0.3s ease;
}

.experience-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
    border-color: blue;
}

.experience-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.experience-content h4 {
    color: blue;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.experience-date {
    display: block;
    color: blue;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.experience-location {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.experience-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: blue;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
