/* 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: #333;
}

/* Header and Navigation */
header {
    position: relative;
    background-color: #f8f9fa;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Sections */
section {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: -80px; /* Adjust based on your nav height */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.profile-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.hero-text {
    flex: 1;
    padding-right: 50px;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #2d3436;
}

.hero-text p {
    font-size: 1.5rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, #0984e3, #0052cc);
    color: white;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.secondary-btn {
    background: white;
    color: #0984e3;
    border: 2px solid #0984e3;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.1);
}

.secondary-btn:hover {
    background: rgba(9, 132, 227, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.2);
}

.primary-btn::after, .secondary-btn::after {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.primary-btn:hover::after, .secondary-btn:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* About Section */
#about {
    background-color: #fff;
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.about-image {
    flex: 0 0 300px;
    margin-right: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-intro {
    margin-bottom: 2rem;
}

.about-intro h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-section {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-section:hover {
    transform: translateX(10px);
}

.about-section h4 {
    color: #007bff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-section h4 i {
    font-size: 1.2rem;
}

.key-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #007bff;
}

.highlight-item:hover i {
    color: #fff;
}

.highlight-item span {
    font-weight: 500;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image {
        flex: 0 0 auto;
        margin-bottom: 2rem;
    }

    .about-section:hover {
        transform: translateY(-5px);
    }

    .key-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .highlight-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .profile-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
        border-width: 3px;
    }
}

/* Navigation Menu */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    background: linear-gradient(135deg, #2d3436 0%, #0984e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0984e3, #0052cc);
    transition: width 0.4s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo a:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #636e72;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 82, 204, 0.1));
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0984e3, #0052cc);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: #0984e3;
}

.nav-link.active::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(9, 132, 227, 0.1);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2d3436;
    transition: all 0.3s ease;
    transform-origin: left;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(1px, -2px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px, 2px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link::after {
        bottom: -2px;
    }
}

/* Companies Section */
#companies {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.companies-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.company-logo img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.company-details h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-details h4 {
    color: #007bff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.company-duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.achievements {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.4;
}

.achievements li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-stack span {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-stack span:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .company-card {
        grid-template-columns: 1fr;
    }

    .company-logo {
        padding: 2rem;
    }

    .company-logo img {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    #companies {
        padding: 4rem 1rem;
    }

    .company-card {
        padding: 1.5rem;
    }

    .achievements li {
        font-size: 0.95rem;
    }
}

/* Skills Section */
#skills {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.skill-category {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.skill-category h3 {
    color: #2d3436;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f2f6;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-item span {
    color: #636e72;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: #f1f2f6;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #0984e3, #0052cc);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

@media (max-width: 768px) {
    .skills-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .skill-category {
        padding: 1.5rem;
    }
}

/* Projects Section */
#projects {
    background-color: #fff;
    padding: 6rem 2rem;
}

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

.projects-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.projects-intro p {
    font-size: 1.1rem;
    color: #666;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.project-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.project-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.tech-tag {
    padding: 0.3rem 1rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-features {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.project-features h4 {
    color: #333;
    margin-bottom: 1rem;
}

.project-features ul {
    list-style-type: none;
    padding: 0;
}

.project-features li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.project-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
}

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

.project-link {
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-link:hover {
    background-color: #0056b3;
    color: #fff;
}

.more-projects {
    text-align: center;
    margin-top: 4rem;
}

.more-projects h3 {
    margin-bottom: 2rem;
    color: #333;
}

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

.mini-project {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mini-project:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-5px);
}

.mini-project i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.mini-project:hover i {
    color: #fff;
}

.mini-project h4 {
    margin-bottom: 0.5rem;
}

.mini-project p {
    font-size: 0.9rem;
    color: #666;
}

.mini-project:hover p {
    color: #fff;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 1.5rem;
    }

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

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

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

#contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #0984e3, #0052cc);
    border-radius: 3px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.8rem;
    color: #0984e3;
    background: linear-gradient(135deg, rgba(9, 132, 227, 0.1), rgba(0, 82, 204, 0.1));
    padding: 1rem;
    border-radius: 12px;
}

.contact-text h4 {
    color: #2d3436;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p, .contact-text a {
    color: #636e72;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #0984e3;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    color: #2d3436;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0984e3;
    background: white;
    box-shadow: 0 0 0 4px rgba(9, 132, 227, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    padding: 0 0.5rem;
    color: #636e72;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: #0984e3;
    background: white;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0984e3, #0052cc);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(9, 132, 227, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 132, 227, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    #contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Education Section */
#education {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.education-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.education-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.education-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.education-details {
    text-align: center;
}

.education-details h3 {
    color: #2d3436;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.education-details h4 {
    color: #0984e3;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.education-info {
    color: #636e72;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .education-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .education-card {
        padding: 1.5rem;
    }
}

/* Position Progression Section */
.position-progression {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #007bff;
}

.position-progression p {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.position-progression ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-progression li {
    color: #666;
    font-size: 0.9rem;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1rem;
}

.position-progression li::before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links li {
        margin-left: 0;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }

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

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

/* Section Headers */
section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

/* Utility Classes */
.rounded-image {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Download Button Styles */
.download-btn {
    background: linear-gradient(135deg, #0984e3, #0052cc);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #0052cc, #0984e3);
}

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

@media (max-width: 768px) {
    .download-btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* LinkedIn-specific styles */
.contact-item .fa-linkedin {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1), rgba(0, 97, 146, 0.1));
    color: #0077b5;
}

.contact-item:hover .fa-linkedin {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.contact-item a[href*="linkedin"] {
    color: #0077b5;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a[href*="linkedin"]:hover {
    text-decoration: underline;
}

.contact-item a[href*="linkedin"]::after {
    content: '↗';
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.contact-item a[href*="linkedin"]:hover::after {
    transform: translate(2px, -2px);
}
