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

:root {
    /* AI Theme Colors */
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --ai-color: #10b981;
    --neon-blue: #00d4ff;
    --neon-purple: #a855f7;
    --text-color: #ffffff;
    --text-light: #94a3b8;
    --bg-color: #0a0a0f;
    --bg-secondary: #111827;
    --bg-card: #1e293b;
    --border-color: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --ai-gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--ai-color));
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Mobile-first container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography for mobile */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title i {
    margin-right: 0.75rem;
    color: var(--neon-blue);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--ai-gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Navigation - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    z-index: 1001;
}

.logo-accent {
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hide nav links on mobile, show menu toggle */
.nav-links {
    display: none;
}

.menu-toggle {
    background: none;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--neon-blue);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 15, 0.98);
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    width: 90%;
    max-width: 300px;
}

.mobile-nav-link {
    font-size: 1.25rem;
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
    color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.mobile-theme-toggle {
    margin-top: 2rem;
    font-size: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--neon-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--ai-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Hero Section - Mobile Optimized */
.hero {
    padding: 7rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.hero-text {
    order: 2;
}

.hero-image {
    order: 1;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--ai-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-ai-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ai-text {
    color: #94a3b8;
}

.ai-highlight {
    color: var(--neon-blue);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    gap: 0.75rem;
    text-align: center;
}

.btn-primary {
    background: var(--ai-gradient);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.5);
    color: #cbd5e1;
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.social-link:hover {
    background: var(--neon-blue);
    color: white;
    transform: translateY(-2px);
}

/* Profile Picture */
.profile-picture-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.profile-picture {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--ai-gradient) border-box;
}

.profile-picture-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: var(--ai-gradient);
    z-index: -1;
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Quick Stats */
.quick-stats {
    padding: 2rem 0;
    background: rgba(30, 41, 59, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 1.75rem;
    color: var(--neon-blue);
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 3rem 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.about-text p {
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.ai-highlight-box {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.ai-highlight-box h3 {
    color: var(--neon-blue);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-link-inline {
    color: var(--neon-blue);
    text-decoration: none;
    border-bottom: 1px dashed var(--neon-blue);
}

.tech-passions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.tech-passions h4 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.passion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.passion-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Boeing Card */
.boeing-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.boeing-image {
    position: relative;
    height: 250px;
}

.boeing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boeing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: white;
}

.boeing-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.boeing-overlay p {
    font-size: 0.875rem;
    color: #cbd5e1;
}

/* Media Production */
.media-production {
    padding: 3rem 0;
    background: rgba(10, 10, 15, 0.5);
}

.media-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.media-text {
    background: rgba(30, 41, 59, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 128, 0.2);
}

.media-text h3 {
    color: var(--neon-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.media-text h3 i {
    color: #ff0080;
}

.media-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

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

.media-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.media-item i {
    color: #ff0080;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.media-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.media-item p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.media-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
}

.gallery-caption h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Projects Section */
.projects {
    padding: 3rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.project-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
}

.project-header {
    padding: 1.25rem 1.25rem 0;
}

.project-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.project-badge i {
    margin-right: 0.375rem;
}

.project-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.project-image {
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    opacity: 0.7;
}

.project-content {
    padding: 1.25rem;
}

.project-description {
    color: #94a3b8;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

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

.tech-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

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

.project-link {
    text-decoration: none;
    color: var(--neon-blue);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* Skills Section - Accordion for Mobile */
.skills {
    padding: 3rem 0;
    background: rgba(10, 10, 15, 0.5);
}

.skills-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.accordion-item {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-header i:first-child {
    color: var(--neon-blue);
    margin-right: 0.75rem;
}

.accordion-header i:last-child {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i:last-child {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.25rem 1.25rem;
    max-height: 1000px;
}

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

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

.skill-name {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.skill-bar {
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: var(--ai-gradient);
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
}

/* ICDL Badges */
.icdl-badges {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.badges-title {
    text-align: center;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.badge-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.badge-item i {
    font-size: 1.75rem;
    color: var(--neon-blue);
}

.badge-item span {
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Achievements Section */
.achievements {
    padding: 3rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.achievement-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.achievement-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.achievement-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.75rem;
}

.achievement-description {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.achievement-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-option {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.contact-option i {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 0.75rem;
}

.contact-option h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-option p {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.contact-option-btn {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-size: 0.875rem;
    transition: var(--transition);
}

.contact-option-btn:hover {
    background: rgba(0, 212, 255, 0.2);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--neon-blue);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-form-container {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.form-group label i {
    color: var(--neon-blue);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: rgba(10, 10, 15, 0.95);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-copyright a {
    color: var(--neon-blue);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #00d4ff;
    text-decoration: underline;
}
/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    /* Navigation for desktop */
    .nav-links {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .nav-link {
        text-decoration: none;
        color: #cbd5e1;
        font-weight: 500;
        font-size: 0.875rem;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    /* Hero Section for desktop */
    .hero {
        padding: 9rem 0 5rem;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 4rem;
    }
    
    .hero-text {
        flex: 1;
        order: 1;
    }
    
    .hero-image {
        flex: 1;
        order: 2;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .hero-ai-tagline {
        flex-direction: row;
        align-items: center;
    }
    
    /* Profile Picture for desktop */
    .profile-picture-container {
        width: 300px;
        height: 300px;
    }
    
    /* Stats Grid for desktop */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* About Section for desktop */
    .about-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .about-text {
        flex: 2;
    }
    
    .boeing-card {
        flex: 1;
    }
    
    /* Media Production for desktop */
    .media-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .media-text {
        flex: 1;
    }
    
    .media-gallery {
        flex: 1;
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Projects Grid for desktop */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Achievements Grid for desktop */
    .achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Contact Options for desktop */
    .contact-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        flex-direction: row;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-form-container {
        flex: 1;
    }
    
    /* Footer for desktop */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-brand {
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-social {
        align-self: flex-start;
    }
    
    /* Section paddings for desktop */
    .about,
    .media-production,
    .projects,
    .skills,
    .achievements,
    .contact {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .profile-picture-container {
        width: 350px;
        height: 350px;
    }
    
    .section-title::after {
        width: 100px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}