* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #404040;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #404040;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%), url('aws-community-builder-banner-800px.png');
    background-size: cover, auto 30%;
    background-position: center, bottom right;
    background-repeat: no-repeat, no-repeat;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background-size: cover, auto 20%;
        background-position: center, bottom center;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.profile-image {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.profile-image img:hover {
    transform: scale(1.1) rotate(5deg);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animations */
.fade-in {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

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

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    color: #e0e0e0;
}

/* About Section */
.about {
    background: #2d2d2d;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skills h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.tag {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.animate-tag {
    animation: slideInLeft 0.6s ease-out forwards;
    opacity: 0;
}

.animate-tag:nth-child(1) { animation-delay: 0.1s; }
.animate-tag:nth-child(2) { animation-delay: 0.2s; }
.animate-tag:nth-child(3) { animation-delay: 0.3s; }
.animate-tag:nth-child(4) { animation-delay: 0.4s; }
.animate-tag:nth-child(5) { animation-delay: 0.5s; }
.animate-tag:nth-child(6) { animation-delay: 0.6s; }
.animate-tag:nth-child(7) { animation-delay: 0.7s; }
.animate-tag:nth-child(8) { animation-delay: 0.8s; }

.tag:hover {
    background: #2980b9;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

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

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

.project-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.project-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.2) rotate(10deg);
}

.animate-card {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.6s ease-out forwards;
}

.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.3s; }
.animate-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.project-card p {
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

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

.project-tech span {
    background: #404040;
    color: #e0e0e0;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

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

.project-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border: 2px solid #3498db;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.project-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.project-link.live {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.project-link.live:hover {
    background: #219a52;
    border-color: #219a52;
}

/* Blog Section */
.blog {
    background: #2d2d2d;
}

.blog-card {
    background: #404040;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.blog-card {
    background: #404040;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.blog-card h3 {
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.blog-source {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.blog-link:hover {
    color: #2980b9;
}

/* Contact Section */
.contact-content {
    text-align: center;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #3498db;
    width: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

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

/* CV Modal */
.cv-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.cv-modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    height: 90%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.cv-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #333;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cv-close:hover {
    background: #f0f0f0;
}

#cv-iframe {
    width: 100%;
    height: 100%;
}

/* AWS Builder Section */
.aws-builder {
    background: #2d2d2d;
    padding: 80px 0;
}

.builder-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.builder-badge {
    font-size: 4rem;
    color: #ff9900;
    text-align: center;
}

.builder-text h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.builder-text p {
    color: #d0d0d0;
}

.builder-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.builder-link:hover {
    color: #2980b9;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cert-card {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

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

.cert-provider {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.cert-provider.aws { background: #ff9900; }
.cert-provider.cisco { background: #1ba0d7; }
.cert-provider.sap { background: #0f7db8; }
.cert-provider.comptia { background: #c8102e; }
.cert-provider.microsoft { background: #00bcf2; }

.cert-card h3 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cert-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.cert-badge-btn {
    background: #87ceeb;
    color: #1a1a1a;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cert-badge-btn:hover {
    background: #5dade2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.blog-content {
    padding: 80px 0;
}

.loading {
    text-align: center;
    padding: 4rem 0;
    color: #e0e0e0;
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3498db;
}

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

.blog-post-card {
    background: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.blog-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.blog-post-title {
    color: #1e88e5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-post-description {
    color: #d0d0d0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-post-tags {
    margin-bottom: 1rem;
}

.blog-tag {
    background: #404040;
    color: #3498db;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.blog-post-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.blog-post-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-link:hover {
    color: #2980b9;
}

.nav-menu .active {
    color: #3498db;
}

.no-articles, .error {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    padding: 2rem;
}

.error {
    color: #e74c3c;
}

/* Projects Page Styles */
.projects-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.projects-content {
    padding: 80px 0;
}

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

.github-project-card {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #404040;
}

.github-project-card:hover {
    transform: translateY(-5px);
    border-color: #3498db;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-icon {
    font-size: 1.5rem;
    color: #3498db;
}

.project-meta {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.project-title {
    color: #1e88e5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

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

.project-topics {
    margin-bottom: 1rem;
}

.project-topic {
    background: #404040;
    color: #3498db;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.project-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
    align-items: center;
}

.project-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.project-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border: 2px solid #3498db;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.project-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.project-link.live {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.project-link.live:hover {
    background: #219a52;
    border-color: #219a52;
}

.no-projects {
    text-align: center;
    color: #e0e0e0;
    font-size: 1.1rem;
    padding: 2rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.about-content {
    padding: 80px 0;
    background: linear-gradient(rgba(45, 45, 45, 0.9), rgba(45, 45, 45, 0.9)), url('aws-community-builder-banner-1200px.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.about-story {
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
    line-height: 1.8;
}

.about-story p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-story h3 {
    color: #1e88e5;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.experience-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.experience-list li {
    margin-bottom: 0.8rem;
    color: #d0d0d0;
}

.connect-links {
    margin-top: 3rem;
    text-align: center;
}

.social-connect {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.connect-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #3498db;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.connect-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
    line-height: 1.8;
}

.privacy-summary h2 {
    color: #1e88e5;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.privacy-summary h3 {
    color: #3498db;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.privacy-summary ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #d0d0d0;
}

.privacy-summary li {
    margin-bottom: 0.5rem;
}

.privacy-summary a {
    color: #3498db;
    text-decoration: none;
}

.privacy-summary a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.last-updated {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #404040;
    color: #b0b0b0;
    font-size: 0.9rem;
}



.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #404040;
    transition: 0.3s;
    pointer-events: none;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .builder-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 9999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #404040;
        transition: 0.3s;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        justify-content: center;
    }
    
    .cv-modal-content {
        margin: 5% auto;
        width: 95%;
        height: 85%;
    }
}