/* Modern Portfolio CSS */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1a1a2e;
    --darker-color: #16213e;
    --light-color: #f8fafc;
    --text-color: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

/* Dark Mode Variables */
[data-theme="dark"],
body[data-theme="dark"] {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #f8fafc;
    --darker-color: #ffffff;
    --light-color: #1a1a2e;
    --text-color: #f8fafc;
    --text-light: #a0aec0;
    --white: #2d3748;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] body,
body[data-theme="dark"] {
    background-color: var(--light-color) !important;
    color: var(--text-color) !important;
}

[data-theme="dark"] .modern-nav {
    background: rgba(26, 26, 46, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .about-modern {
    background: var(--white);
}

[data-theme="dark"] .skills-modern {
    background: var(--light-color);
}

[data-theme="dark"] .services-modern {
    background: var(--white);
}

[data-theme="dark"] .testimonials-modern {
    background: var(--white);
}

[data-theme="dark"] .blog-modern {
    background: var(--light-color);
}

[data-theme="dark"] .projects-modern {
    background: var(--white);
}

[data-theme="dark"] .contact-modern {
    background: var(--light-color);
}

/* Dark Mode Text Color Overrides */
[data-theme="dark"] .brand-initial,
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .hero-social a,
[data-theme="dark"] .skill-progress-bar span,
[data-theme="dark"] .skill-badge,
[data-theme="dark"] .service-card:hover .service-icon,
[data-theme="dark"] .cta-content h2,
[data-theme="dark"] .cta-content p,
[data-theme="dark"] .footer-content,
[data-theme="dark"] .footer-bottom,
[data-theme="dark"] .project-link,
[data-theme="dark"] .blog-card .read-more {
    color: var(--text-color) !important;
}

/* Dark Mode Button Overrides */
[data-theme="dark"] .btn-secondary {
    background: var(--white) !important;
    color: var(--text-color) !important;
    border-color: var(--primary-color) !important;
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Dark Mode Card and Section Overrides */
[data-theme="dark"] .hero-card,
[data-theme="dark"] .about-card,
[data-theme="dark"] .skill-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .project-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .contact-card {
    background: var(--white) !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(248, 250, 252, 0.1) !important;
}

/* Dark Mode Navigation Links */
[data-theme="dark"] .nav-links a,
[data-theme="dark"] .nav-menu a {
    color: var(--text-color) !important;
}

[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-menu a:hover {
    color: var(--primary-color) !important;
}

/* Dark Mode Headings and Text */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] p,
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle {
    color: var(--text-color) !important;
}

/* Dark Mode Form Elements */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: var(--white) !important;
    color: var(--text-color) !important;
    border: 1px solid rgba(248, 250, 252, 0.2) !important;
}

[data-theme="dark"] .form-group label {
    color: var(--text-color) !important;
}

/* Dark Mode Background Overrides */
[data-theme="dark"] .hero-modern,
[data-theme="dark"] .about-modern,
[data-theme="dark"] .skills-modern,
[data-theme="dark"] .services-modern,
[data-theme="dark"] .projects-modern,
[data-theme="dark"] .testimonials-modern,
[data-theme="dark"] .blog-modern,
[data-theme="dark"] .contact-modern,
[data-theme="dark"] .cta-section {
    background: var(--light-color) !important;
}

[data-theme="dark"] .modern-nav,
[data-theme="dark"] .hero-card,
[data-theme="dark"] .about-card,
[data-theme="dark"] .skill-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .project-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .footer {
    background: var(--white) !important;
}

/* Dark Mode Testimonials Specific */
[data-theme="dark"] .testimonial-card .quote-icon {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .testimonial-card .client-name {
    color: var(--text-color) !important;
}

[data-theme="dark"] .testimonial-card .client-position {
    color: var(--text-light) !important;
}

/* Dark Mode Skills Progress */
[data-theme="dark"] .skill-progress {
    background: rgba(248, 250, 252, 0.1) !important;
}

[data-theme="dark"] .skill-progress-bar {
    background: var(--primary-color) !important;
}

/* Dark Mode Service Cards */
[data-theme="dark"] .service-icon {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Dark Mode Project Cards */
[data-theme="dark"] .project-status {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

[data-theme="dark"] .tech-tag {
    background: rgba(102, 126, 234, 0.1) !important;
    color: var(--primary-color) !important;
}

/* Dark Mode Professional Experience (Timeline) Section */
[data-theme="dark"] .experience-modern {
    background: var(--light-color) !important;
}

[data-theme="dark"] .timeline-card {
    background: var(--white) !important;
    color: var(--text-color) !important;
}

[data-theme="dark"] .job-info h3,
[data-theme="dark"] .job-info h4 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .job-description {
    color: var(--text-light) !important;
}

[data-theme="dark"] .responsibilities h5 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .responsibilities li {
    color: var(--text-light) !important;
}

[data-theme="dark"] .metric-label {
    color: var(--text-light) !important;
}

[data-theme="dark"] .company-logo {
    background: var(--light-color) !important;
    color: var(--primary-color) !important;
}

[data-theme="dark"] .metrics-grid {
    background: var(--light-color) !important;
}

/* Dark Mode Connect With Me (Contact) Section */
[data-theme="dark"] .contact-modern {
    background: var(--light-color) !important;
}

[data-theme="dark"] .contact-info .contact-card {
    background: var(--white) !important;
}

[data-theme="dark"] .contact-card h3 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .contact-card p {
    color: var(--text-light) !important;
}

[data-theme="dark"] .social-links-section h3 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .social-link-card {
    background: var(--white) !important;
    color: var(--text-color) !important;
}

[data-theme="dark"] .contact-form-modern {
    background: var(--white) !important;
}

/* Dark Mode Development Process Section */
[data-theme="dark"] .process-section h3 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .process-step {
    background: var(--white) !important;
}

[data-theme="dark"] .step-content h4 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .step-content p {
    color: var(--text-light) !important;
}

[data-theme="dark"] .intro-text h3 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .intro-text p {
    color: var(--text-light) !important;
}

[data-theme="dark"] .status-indicator {
    color: var(--text-color) !important;
}

[data-theme="dark"] .response-time {
    color: var(--text-light) !important;
}

[data-theme="dark"] .freelance-stat .stat-label {
    color: var(--text-light) !important;
}

[data-theme="dark"] .intro-content {
    background: var(--white) !important;
}

[data-theme="dark"] .freelance-stat {
    background: var(--light-color) !important;
}

/* Dark Mode Footer Section */
[data-theme="dark"] .footer-modern {
    background: var(--darker-color) !important;
}

[data-theme="dark"] .footer-content {
    color: var(--text-color) !important;
}

[data-theme="dark"] .footer-brand h3 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .footer-brand p {
    color: var(--text-light) !important;
}

[data-theme="dark"] .footer-links a {
    color: var(--text-light) !important;
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--text-color) !important;
}

[data-theme="dark"] .footer-bottom {
    color: var(--text-light) !important;
    border-color: rgba(248, 250, 252, 0.1) !important;
}

/* Dark Mode Additional Text Elements */
[data-theme="dark"] .detail-item {
    color: var(--text-light) !important;
}

[data-theme="dark"] .detail-item strong {
    color: var(--text-color) !important;
}

[data-theme="dark"] .feature-item {
    color: var(--text-color) !important;
}

[data-theme="dark"] .author-info h4 {
    color: var(--text-color) !important;
}

[data-theme="dark"] .author-info span {
    color: var(--text-light) !important;
}

[data-theme="dark"] .blog-meta {
    color: var(--text-light) !important;
}

[data-theme="dark"] .achievement-list li {
    color: var(--text-light) !important;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 1002; /* Higher than nav which is 1000 */
}

.theme-switch-checkbox {
    display: none;
}

.theme-switch-label {
    display: block;
    width: 50px;
    height: 24px;
    background: var(--gradient);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.theme-switch-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.theme-switch-inner .fa-sun {
    color: #fbbf24;
    display: block;
}

.theme-switch-inner .fa-moon {
    color: #6366f1;
    display: none;
}

.theme-switch-checkbox:checked + .theme-switch-label .theme-switch-inner {
    transform: translateX(26px);
}

.theme-switch-checkbox:checked + .theme-switch-label .theme-switch-inner .fa-sun {
    display: none;
}

.theme-switch-checkbox:checked + .theme-switch-label .theme-switch-inner .fa-moon {
    display: block;
}

/* Particles Canvas */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Prevent interference with click events */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Modern Navigation */
.modern-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.brand-initial {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.title-name {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin: 0.5rem 0;
}

.title-role {
    display: block;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient);
    color: white;
}

.hero-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gradient);
    padding: 8px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.decoration-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.item-1 { top: 10%; right: 10%; animation-delay: 0s; }
.item-2 { bottom: 20%; right: 0%; animation-delay: 1s; }
.item-3 { bottom: 10%; left: 10%; animation-delay: 2s; }
.item-4 { top: 20%; left: 0%; animation-delay: 3s; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-modern {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.main-card {
    grid-row: 1 / 3;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.about-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--gradient);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Experience Section */
.experience-modern {
    background: var(--light-color);
}

.timeline-modern {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 80px;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 15px;
    width: 18px;
    height: 18px;
    background: var(--gradient);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.timeline-item.active .timeline-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.timeline-card {
    background: white;
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.job-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.job-info h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.timeline-date {
    background: var(--gradient);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.company-logo {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.job-description {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.responsibilities h5 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.responsibilities ul {
    list-style: none;
    padding: 0;
}

.responsibilities li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
}

.responsibilities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tech-stack-experience {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-color);
}

.tech-tag {
    background: var(--gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Skills Section */
.skills-modern {
    background: white;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.skill-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.skill-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.skill-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.skill-level {
    width: 100%;
    height: 6px;
    background: var(--light-color);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    width: 0%;
    transition: width 2s ease;
}

.skill-percentage {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Freelance Services Section */
.services-modern {
    background: white;
    position: relative;
}

.services-intro {
    margin-bottom: 3rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color) 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.intro-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.intro-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.availability-status {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.freelance-stat {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.freelance-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.freelance-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.freelance-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.featured-service {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transform: scale(1.01);
}

.featured-service::before {
    transform: scaleX(1);
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(3deg);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.feature-item i {
    color: #10b981;
    font-size: 0.9rem;
}

.service-pricing {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-color);
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
}

.process-section {
    margin-bottom: 3rem;
    text-align: center;
}

.process-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.cta-section {
    background: var(--gradient);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Projects Section */
.projects-modern {
    background: var(--light-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.featured-project {
    border: 2px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.featured-project:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(102, 126, 234, 0.95), 
        rgba(118, 75, 162, 0.95)
    );
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.btn-github, .btn-demo {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-github {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-demo {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.project-content {
    padding: 1.3rem;
}

.project-content h3 {
    color: var(--text-color);
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-details {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 0.8rem;
    border-radius: var(--border-radius);
    margin: 0.8rem 0;
    border-left: 3px solid var(--primary-color);
}

.detail-item {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: #4b5563;
}

.detail-item strong {
    color: var(--text-color);
    font-weight: 600;
}

.project-achievements {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 0.8rem;
    border-radius: var(--border-radius);
    margin: 0.8rem 0;
    border-left: 3px solid #f59e0b;
}

.project-achievements h5 {
    color: #92400e;
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-achievements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #78350f;
    line-height: 1.4;
}

.project-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #f59e0b;
    font-weight: bold;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: var(--gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-modern {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 0.8rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-form-modern {
    background: var(--light-color);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    background: white;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.social-links-section {
    text-align: center;
}

.social-links-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.social-link-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient);
    color: white;
}

.social-link-card i {
    font-size: 2rem;
}

/* Footer */
.footer-modern {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.loading-spinner i {
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Status Classes */
.status-live-in-production {
    color: #059669;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-modern {
    padding: 4rem 0;
    background: var(--light-color);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.testimonial-card {
    width: 33.333%;
    padding: 0 1rem;
    opacity: 0.7;
    transform: scale(0.95);
    transition: var(--transition);
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: var(--text-color);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #fbbf24;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* Blog Section */
.blog-modern {
    padding: 4rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-content h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 1rem;
}

.blog-cta {
    text-align: center;
}

.status-live-in-production {
    color: #059669;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.status-in-development {
    color: #d97706;
    font-weight: 600;
    background: rgba(217, 119, 6, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.status-in-pipeline {
    color: #7c3aed;
    font-weight: 600;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.status-live {
    color: #059669;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.status-completed {
    color: #059669;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .image-frame {
        width: 300px;
        height: 300px;
    }
    
    .section-container {
        padding: 3rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services responsive styles */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-service {
        transform: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    /* Services mobile styles */
    .intro-content {
        padding: 1.5rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .process-section h3 {
        font-size: 1.5rem;
    }
    
    /* New sections mobile styles */
    .theme-toggle {
        right: 1rem;
        top: 20px;
        transform: none;
    }
    
    .theme-switch-label {
        width: 40px;
        height: 20px;
    }
    
    .theme-switch-inner {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .theme-switch-checkbox:checked + .theme-switch-label .theme-switch-inner {
        transform: translateX(20px);
    }
    
    .testimonials-carousel {
        margin: 2rem 0;
    }
    
    .testimonial-track {
        width: 300%; /* Keep the same for proper sliding */
    }
    
    .testimonial-card {
        width: 33.333%; /* Keep the same for proper sliding */
        padding: 0 0.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero-content {
        padding: 4rem 1rem 2rem;
    }
    
    .hero-title .title-name {
        font-size: 2rem;
    }
    
    .hero-title .title-role {
        font-size: 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-grid {
        gap: 1rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-card {
        padding: 1.5rem;
    }
    
    .skill-card {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
