/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d9ff;
    --secondary-color: #ff2d75;
    --accent-color: #0af;
    --terminal-green: #00ff9d;
    --terminal-blue: #009dff;
    --terminal-purple: #bd00ff;
    --text-color: #e6e6e6;
    --text-light: #a0a0a0;
    --bg-color: #0a0e14;
    --bg-dark: #05080d;
    --bg-light: #131a24;
    --card-bg: #131a24;
    --border-color: #1f2937;
    --code-bg: #0d1117;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 8px 30px rgba(0, 217, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --glow: 0 0 10px rgba(0, 217, 255, 0.7);
}

body {
    font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Terminal-like scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--terminal-green);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Terminal cursor animation */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo::after {
    content: ">";
    color: var(--terminal-green);
    margin-left: 5px;
    animation: blink 1s infinite;
}

.logo h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.logo span {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 10px 15px;
    border-radius: var(--radius);
    font-size: 14px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--terminal-green);
    background-color: rgba(0, 217, 255, 0.1);
}

nav ul li a::before {
    content: "./";
    color: var(--terminal-purple);
    margin-right: 5px;
    opacity: 0.7;
}

.theme-toggle button {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-size: 16px;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle button:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    box-shadow: var(--glow);
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary-color);
}

.mobile-menu-btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    box-shadow: var(--glow);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-color));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-text h2 .typewriter {
    color: var(--terminal-green);
    position: relative;
}

.hero-text h2 .typewriter::after {
    content: "|";
    position: absolute;
    right: -10px;
    color: var(--terminal-green);
    animation: blink 1s infinite;
}

.hero-text h3 {
    font-size: 1.5rem;
    color: var(--terminal-blue);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "> ";
    font-weight: bold;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    filter: blur(40px);
    z-index: 0;
}

/* Code Terminal Effect */
.code-terminal {
    background: var(--code-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
}

.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
    color: var(--text-light);
    font-size: 14px;
}

.terminal-content {
    color: var(--text-color);
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInLine 0.5s forwards;
}

.terminal-line:nth-child(1) { animation-delay: 0.5s; }
.terminal-line:nth-child(2) { animation-delay: 1s; }
.terminal-line:nth-child(3) { animation-delay: 1.5s; }
.terminal-line:nth-child(4) { animation-delay: 2s; }

.terminal-prompt {
    color: var(--terminal-green);
}

.terminal-command {
    color: var(--terminal-blue);
}

.terminal-output {
    color: var(--text-light);
}

@keyframes fadeInLine {
    to { opacity: 1; }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '();';
    color: var(--terminal-green);
    margin-left: 10px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '{ ... }';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: var(--border-color);
    opacity: 0.3;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Projects Section */
.featured-projects {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.project-card:hover img {
    filter: grayscale(0);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-color);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.project-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.project-info a::before {
    content: "> ";
}

.project-info a:hover {
    color: var(--terminal-green);
    gap: 12px;
}

.center-button {
    text-align: center;
}

/* Page Header */
.page-header {
    padding: 150px 0 50px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-color));
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: var(--text-color);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-content {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.5;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.personal-info {
    margin: 30px 0;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.info-item strong {
    min-width: 120px;
    margin-right: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.info-item span {
    color: var(--text-light);
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--terminal-green));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 24px;
    right: -10px;
    z-index: 1;
    box-shadow: 0 0 10px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: auto;
    left: -10px;
}

.timeline-date {
    font-weight: bold;
    color: var(--terminal-green);
    margin-bottom: 10px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 20px;
    font-size: 14px;
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.timeline-content span {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
    display: inline-block;
    font-size: 14px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Skills Section */
.skills-content {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.skills-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.skills-intro h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.skills-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.skills-category {
    margin-bottom: 50px;
}

.skills-category h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.skills-category h3::after {
    content: ' {}';
    color: var(--terminal-green);
}

.skills-grid {
    display: grid;
    gap: 20px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.skill-info span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.skill-info span:last-child {
    color: var(--terminal-green);
}

.skill-bar {
    height: 8px;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--terminal-green));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.other-skills {
    margin-top: 60px;
}

.other-skills h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* Projects Page */
.projects-content {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.projects-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-light);
    font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(0.3);
}

.project-item:hover .project-image img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 217, 255, 0.9), rgba(0, 255, 157, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-link,
.project-github {
    color: var(--bg-dark);
    font-size: 18px;
    margin: 0 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(10, 14, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.project-link:hover,
.project-github:hover {
    background-color: rgba(10, 14, 20, 0.5);
    transform: translateY(-3px);
}

.project-details {
    padding: 20px;
}

.project-details h3 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.project-details p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    padding: 5px 10px;
    background-color: var(--bg-light);
    border-radius: 15px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Contact Section */
.contact-content {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-text h4 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-color);
}

.contact-text p {
    margin: 0;
    color: var(--text-light);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-color);
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 217, 255, 0.2);
}

/* Footer */
footer {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-section ul li a::before {
    content: "> ";
    color: var(--terminal-green);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-content::before {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-color);
        transition: var(--transition);
        z-index: 999;
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 15px;
        border-radius: var(--radius);
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-text h3 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .filter-btn {
        margin-bottom: 10px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}