/* css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #817e7e 0%, #f5f5f5 100%);
    color: #1a1a1a;
    overflow-x: hidden;
}

/* 3D Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000000;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #85e617, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    background: linear-gradient(135deg, #06bbe9, #e09642);
    -webkit-background-clip: text;
    background-clip: text;
}

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

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #85e617;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #85e617, #06bbe9);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 6rem 2rem 4rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge {
    background: linear-gradient(135deg, #85e617, #06bbe9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: #1a1a1a;
}

.title-gradient {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    z-index: 1;
}

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

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #85e617, #06bbe9);
    transition: left 0.3s ease;
    z-index: 0;
}

.stat-card:hover::before {
    left: 0;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label,
.stat-card:hover .stat-plus {
    position: relative;
    z-index: 1;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    display: inline-block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    display: inline-block;
}

/* Expertise Section */
.expertise {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(135deg, #85e617, #06bbe9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-icon i {
    background: linear-gradient(135deg, #85e617, #06bbe9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.expertise-card p {
    color: #666;
}

/* Tech Stack */
.tech-stack {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    z-index: 1;
}

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

.tech-category {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tech-category h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tech-item span:first-child {
    width: 100px;
    font-weight: 500;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #85e617, #06bbe9);
    width: 0;
    border-radius: 10px;
    transition: width 1s ease;
}

.percent {
    width: 45px;
    text-align: right;
    font-weight: 600;
    color: #85e617;
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #1a1a1a;
    box-shadow: none;
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #85e617;
}

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

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #85e617;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

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

.hero, .stats, .expertise, .tech-stack, .cta {
    animation: fadeInUp 0.8s ease-out;
}
/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Page Hero Section */
.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed Grid */
.services-detailed {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-detailed {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #85e617, #06bbe9);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-detailed:hover::before {
    transform: scaleX(1);
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-icon i {
    background: linear-gradient(135deg, #85e617, #06bbe9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card-detailed h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-detailed > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: #85e617;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #85e617, #06bbe9);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
}

/* ============================================
   PROJECTS PAGE SPECIFIC STYLES
   ============================================ */

/* Filter Section */
.filter-section {
    padding: 2rem 2rem 0;
    position: relative;
    z-index: 1;
}

.filter-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #555;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #85e617, #06bbe9);
    border-color: transparent;
    color: white;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.search-box i {
    color: #999;
}

.search-box input {
    border: none;
    outline: none;
    padding: 0.3rem;
    width: 200px;
    font-size: 0.9rem;
}

/* Projects Grid */
.projects-section {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #bbb;
}

.project-info {
    padding: 1.5rem;
}

.project-type {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-type.website {
    background: rgba(133, 230, 23, 0.1);
    color: #85e617;
}

.project-type.software {
    background: rgba(6, 187, 233, 0.1);
    color: #06bbe9;
}

.project-type.app {
    background: rgba(133, 230, 23, 0.1);
    color: #85e617;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.project-short-desc {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #888;
    font-size: 0.85rem;
}

.project-meta i {
    margin-right: 0.3rem;
}

.view-project-btn {
    background: none;
    border: none;
    color: #85e617;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: gap 0.3s ease;
}

.view-project-btn:hover {
    gap: 0.8rem;
}

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

.modal-content {
    background: white;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 24px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #1a1a1a;
}

.modal-project {
    display: flex;
    flex-direction: column;
}

.modal-project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.modal-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-project-info {
    padding: 2rem;
}

.modal-project-info h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    color: #1a1a1a;
}

.modal-project-info h3 {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-details,
.project-description {
    margin-bottom: 1.5rem;
}

.project-details h4,
.project-description h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.project-details p,
.project-description p {
    color: #555;
    line-height: 1.6;
}

.project-metadata {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.project-metadata p {
    color: #666;
}

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

/* Loading & No Projects */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.loading-spinner i {
    font-size: 2rem;
    color: #85e617;
}

.no-projects {
    text-align: center;
    padding: 3rem;
    color: #666;
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

.about-content {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.about-text h3 {
    font-size: 1.2rem;
    color: #85e617;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #85e617;
    display: block;
}

.about-stat span:last-child {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-circle {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #85e617, #06bbe9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.profile-circle i {
    font-size: 8rem;
    color: white;
}

/* Education Timeline */
.education-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    z-index: 1;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(135deg, #85e617, #06bbe9);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: #85e617;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.timeline-date {
    color: #85e617;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

.contact-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #85e617, #06bbe9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.social-connect h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.social-connect .social-links a {
    background: linear-gradient(135deg, #85e617, #06bbe9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-connect .social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(133, 230, 23, 0.3);
}

.social-connect .social-links a i {
    color: white;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #85e617;
    box-shadow: 0 0 0 3px rgba(133, 230, 23, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Responsive Design for All Pages */
@media (max-width: 968px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .profile-circle {
        width: 250px;
        height: 250px;
    }
    
    .profile-circle i {
        font-size: 5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .filter-section .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        justify-content: center;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .modal-content {
        margin: 1rem;
        border-radius: 16px;
    }
    
    .modal-project-info {
        padding: 1rem;
    }
    
    .modal-project-image {
        height: 200px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
    }
    
    .timeline-icon i {
        font-size: 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .contact-item {
        padding: 0.5rem;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}