.header-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .header-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #2C2C2C;
    --accent-color: #FF6B35;
    --light-color: #1A1A1A;
    --dark-color: #0F0F0F;
    --text-color: #E0E0E0;
    --section-padding: 4rem 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo a:hover {
    color: var(--primary-color);
}

.logo-img {
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-color);
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: var(--accent-color);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -300px;
        width: 300px;
        height: calc(100vh - 80px);
        background-color: var(--dark-color);
        flex-direction: column;
        gap: 0;
        padding: 0;
        transition: right 0.3s ease;
        border-left: 1px solid var(--secondary-color);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .btn-nav {
        width: 100%;
        background-color: var(--primary-color);
        color: white;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 0;
        margin: 0;
        order: -1;
    }
    
    .btn-nav:hover {
        background-color: var(--accent-color);
        transform: none;
        box-shadow: none;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 2rem;
    }
    
    .nav-link {
        text-align: left;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--secondary-color);
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: transparent;
        margin-top: 0;
        padding: 0;
        width: 100%;
        padding-left: 1rem;
    }
    
    .dropdown-link {
        padding: 0.75rem 0;
        text-align: left;
        display: block;
        position: relative;
        padding-left: 1.5rem;
        border-bottom: 1px solid rgba(44, 44, 44, 0.5);
    }
    
    .dropdown-link::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

/* Secondary button for navigation actions */
.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--dark-color);
    border-color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(224, 224, 224, 0.2);
}

/* Header Section */
header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    header::before {
        top: 0;
        right: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to bottom, rgba(255, 107, 53, 0.08) 0%, transparent 100%);
    }
}

#fluid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.header-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.header-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.header-text {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.profile-container {
    flex: 0 0 330px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-item {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.testimonial-item:hover::before {
    opacity: 1;
}

.featured-testimonial {
    grid-column: 1 / -1;
    max-width: 100%;
    width: 100%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.author-title {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Expertise Section */
.expertise {
    background-color: var(--secondary-color);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.skill-title {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.skill-title i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.skill-desc {
    color: var(--text-color);
}

/* Experience Section */
.experience {
    background-color: var(--light-color);
}

.timeline-intro {
    margin-bottom: 3rem;
    max-width: 800px;
}

.timeline-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

/* Timeline line starts from VP role (second item) */
.timeline-item:nth-child(2) {
    position: relative;
}

.timeline-item:nth-child(2)::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    height: 800vh; /* Much taller to cover all items */
    left: 50px;
    margin-left: -2px;
    z-index: 0;
}

.timeline-item {
    padding: 20px 40px 20px 80px;
    position: relative;
    background-color: inherit;
    width: 100%;
    margin-bottom: 3rem;
}

/* Only show timeline dots for non-featured items after the featured one */
.timeline-item:not(.featured) {
    padding: 20px 40px 20px 80px;
}

.timeline-item:not(.featured)::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border: 4px solid var(--secondary-color);
    top: 25px;
    left: 50px;
    border-radius: 50%;
    z-index: 1;
    transform: translateX(-50%);
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

/* Featured Timeline Item - no timeline dot */
.timeline-item.featured {
    padding: 20px 0; /* Remove left padding to make full width */
    margin-bottom: 4rem; /* Extra spacing */
    width: 100%; /* Ensure full width */
}

.timeline-item.featured .timeline-content {
    background: linear-gradient(to right, #2C2C2C, #1A1A1A);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
    width: 100%; /* Ensure content takes full width */
    max-width: 100%; /* Override any max-width constraints */
}

.timeline-item.featured .timeline-content {
    background: linear-gradient(to right, #2C2C2C, #1A1A1A);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.now-available {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.featured-cta {
    margin-top: 1.5rem;
    text-align: right;
}

.highlight-box {
    background-color: rgba(255, 107, 53, 0.05);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 3px solid var(--primary-color);
}

.feature-list {
    margin: 1rem 0;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.feature-list-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

.timeline-heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.timeline-company {
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-period {
    color: var(--accent-color);
    font-style: italic;
}

.timeline-desc {
    margin-top: 1rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Pricing Section */
.pricing {
    background-color: var(--secondary-color);
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-item {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.pricing-item.featured {
    background: linear-gradient(to bottom, #2C2C2C, #1A1A1A);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    border-top: 4px solid var(--primary-color);
    transform: translateY(-10px);
}

.pricing-item.featured:hover {
    transform: translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
}

.pricing-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.pricing-item p {
    margin-bottom: 1.5rem;
}

.pricing-item ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-item li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.pricing-item li i {
    margin-right: 10px;
    margin-top: 5px;
}

.pricing-item .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
}

.pricing-footer p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.calendar-container {
    max-width: 700px;
    margin: 2rem auto 0;
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.calendar-container h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.calendar-container p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Collapsible Sections */
.collapsible-section {
    transition: all 0.3s ease;
}

.collapsible-section .collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.collapsible-section.expanded .collapsible-content {
    max-height: none;
    overflow: visible;
    padding-top: 2rem;
}

.section-toggle {
    background: none;
    border: none;
    color: inherit;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.section-toggle:hover {
    color: var(--primary-color);
}

.section-toggle .section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.collapsible-section.expanded .toggle-icon {
    transform: rotate(180deg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-info-title {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info-title i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.contact-info-desc {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: var(--accent-color);
}

.contact-method i {
    font-size: 1.1rem;
}

.contact-form-placeholder {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.placeholder-content p {
    margin-bottom: 1rem;
}

.placeholder-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-5px);
}

.footer-text {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
}

.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-img {
        width: 280px;
        height: 280px;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        flex-direction: column-reverse;
    }
    
    .profile-container {
        margin-bottom: 2rem;
        flex: 0 0 auto;
    }
    
    .profile-img {
        width: 200px;
        height: 200px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
    
    header {
        height: auto;
        padding: 4rem 0;
    }
    
    .header-content {
        text-align: center;
        max-width: 100%;
    }
    
    .header-text {
        margin: 0 auto 2rem;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .timeline-item:nth-child(2)::before {
        left: 31px;
        height: 600vh; /* Much taller for mobile */
    }
    
    .timeline-item:not(.featured) {
        padding-left: 60px;
    }
    
    .timeline-item:not(.featured)::after {
        left: 30px;
    }
    
    .timeline-item.featured {
        padding: 20px 0; /* Full width on mobile too */
    }
    
    .timeline-heading {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-period {
        margin-top: 0.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-item.featured {
        transform: none;
    }
    
    .pricing-item.featured:hover {
        transform: translateY(-5px);
    }
}
