@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,600,600italic");

/*
	--Credits--
	
	Design: 
	Forty by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)

	Images:
	https://unsplash.com/photos/5siQcvSxCP8


	Vertical timeline:
	https://codepen.io/ygc/pen/AXzVya/
	
*/

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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #2c3e50;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d1117;
    --text-light: #ffffff;
    --text-gray: #8b949e;
    --text-muted: #6e7681;
    --accent-color: #ff6b35;
    --card-bg: #21262d;
    --border-color: #30363d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--darker-bg);
    overflow-x: hidden;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.3);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    #header {
        background: rgba(13, 17, 23, 0.8);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    }
}

.navbar {
    padding: 1rem 2rem;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--accent-color);
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 2rem 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text-light);
}

.hero-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-weight: 300;
}

.accent {
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--darker-bg);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.profile-img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}



/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.tech-item:hover {
    opacity: 1;
}

.tech-item i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Section */
/* Services & About Section */
.services-about {
    padding: 6rem 2rem;
    background: var(--darker-bg);
}

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

/* Services Column */
.services-column {
    position: relative;
}

.service-timeline {
    position: relative;
    padding-left: 2rem;
}

.service-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.service-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.service-timeline-item:last-child {
    margin-bottom: 0;
}

.service-timeline-dot {
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--darker-bg);
    z-index: 2;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.service-content h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-timeline-item:hover .service-icon {
    background: var(--accent-color);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.service-timeline-item:hover .service-icon i {
    color: white;
}

.service-timeline-item:hover .service-content h4 {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

/* About Column */
.about-column {
    padding-left: 2rem;
}

.about-column h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    text-align: left;
}

.about-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-gray);
    text-align: left;
}

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

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.info-item i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    width: 20px;
    font-size: 1.1rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

/* Education Section */
.education {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.education-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.education h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-light);
}

.education-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

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

.education-info h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.education-info .institution {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.education-info .location {
    display: block;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.education-info .duration {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.skills-section h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.skill-category {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-3px);
}

.skill-category h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.skill-category p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Work Experience Section */
.experience {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.experience h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.timeline-item.right {
    justify-content: flex-start;
}

.timeline-item.left .timeline-content {
    margin-right: 3rem;
    text-align: left;
}

.timeline-item.right .timeline-content {
    margin-left: 3rem;
    text-align: left;
}

.timeline-content {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 450px;
    width: 100%;
    position: relative;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 4px solid var(--dark-bg);
}

.company-info {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.company-info h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.company-info .role {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.company-info .duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.work-description p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.work-description ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.work-description li {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.work-description li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.work-description strong {
    color: var(--accent-color);
    font-weight: 600;
}

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

.tech-tags span {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Projects Section */
.projects {
    padding: 6rem 2rem;
    background: var(--darker-bg);
}

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

.projects h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    border-radius: 20px;
    padding-bottom: 3rem;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 1rem 0;
}

.project-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    flex: 0 0 350px;
    min-width: 350px;
    height: 520px;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
}

.project-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.project-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.project-tech span {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
}

.project-link:hover {
    background: var(--accent-color);
    color: white;
}

.project-link.disabled {
    color: var(--text-muted);
    border-color: var(--text-muted);
    cursor: not-allowed;
}

.project-link.disabled:hover {
    background: transparent;
    color: var(--text-muted);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--darker-bg);
}

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

.contact h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-item span {
    color: var(--text-light);
    font-weight: 500;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.8rem;
    }
    
    .profile-img {
        width: 320px;
        height: 320px;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .btn {
        text-align: center;
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .tech-stack {
        gap: 1.5rem;
    }
    
    .tech-item i {
        font-size: 2rem;
    }
    
    .services-about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-timeline {
        padding-left: 1.5rem;
    }
    
    .service-timeline-item {
        padding-left: 1.5rem;
    }
    
    .service-timeline-dot {
        left: -1.5rem;
        width: 12px;
        height: 12px;
        border: 3px solid var(--darker-bg);
    }
    
    .service-content {
        gap: 1rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-content h4 {
        font-size: 1.1rem;
    }
    
    .about-column {
        padding-left: 0;
    }
    
    .about-column h2 {
        text-align: center;
    }
    
    .about-column p {
        text-align: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        flex: 0 0 300px;
        min-width: 300px;
        height: 500px;
    }
    
    .project-info {
        padding: 1.2rem;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
        .about-column h2,
    .experience h2,
    .projects h2,
    .contact h2 {
        font-size: 2.5rem;
    }

    .timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 60px;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin: 0;
        text-align: left;
        max-width: 100%;
    }

    .timeline-dot {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .company-info h3 {
        font-size: 1.3rem;
    }
    
    .company-info .role {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 1rem;
    }
    
    .hero {
        padding: 70px 1rem 3rem;
    }
    
    .services,
    .about,
    .services-about,
    .projects,
    .contact {
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.3rem;
    }
    
    .profile-img {
        width: 260px;
        height: 260px;
    }
    
    .tech-stack {
        gap: 1rem;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
    
    .services-about-container {
        gap: 2rem;
    }
    
    .service-timeline {
        padding-left: 1rem;
    }
    
    .service-timeline-item {
        padding-left: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-timeline-dot {
        left: -1rem;
        width: 10px;
        height: 10px;
        border: 2px solid var(--darker-bg);
    }
    
    .service-content {
        gap: 0.8rem;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
    }
    
    .service-icon i {
        font-size: 1rem;
    }
    
    .service-content h4 {
        font-size: 1rem;
    }
    
    .about-column h2,
    .experience h2,
    .projects h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .project-card {
        flex: 0 0 280px;
        min-width: 280px;
        height: 480px;
    }
    
    .project-info {
        padding: 1rem;
    }
    
    .project-info h3 {
        font-size: 1.1rem;
    }
    
    .project-info p {
        font-size: 0.85rem;
    }
    
    .project-tech span {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .project-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .carousel-dots {
        gap: 0.5rem;
        bottom: -0.5rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 50px;
        margin-bottom: 1rem;
    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {
        margin: 0;
        text-align: left;
        max-width: 100%;
        padding: 1.5rem;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
    }
    
    .company-info h3 {
        font-size: 1.1rem;
    }
    
    .company-info .role {
        font-size: 0.9rem;
    }
    
    .work-description li {
        font-size: 0.85rem;
    }
}

/* Smooth scrolling enhancements */
section {
    scroll-margin-top: 80px;
}

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

.hero-content > * {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-content h1 { animation-delay: 0.1s; }
.hero-content h2 { animation-delay: 0.2s; }
.hero-content h3 { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.4s; }

/* Hover effects for better UX */
.project-card,
.service-content,
.stat-item,
.contact-item {
    cursor: pointer;
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.service-content:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.stat-item:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.contact-item:hover {
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}