.portfolio-carousel-container {
    position: relative;
    padding: 0 40px;
    margin: 2rem 0;
}

.portfolio-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.portfolio-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.portfolio-item {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.portfolio-item h3 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    text-align: center;
    color: #000000;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #000000;
    text-align: center;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.portfolio-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #000000;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 2;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

.carousel-arrow:hover {
    color: #49fcd4;
    box-shadow: none;
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

/* Fixed Navigation */
#fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}

#fixed-nav.hidden {
    transform: translateY(-100%);
}

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

.nav-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
    border-bottom: none;
}

.nav-logo a:hover {
    color: #4acaa8;
    border-bottom: none;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: none;
}

.nav-links li a:hover {
    color: #4acaa8;
    border-bottom: none;
}

.contact-link {
    background: #4acaa8;
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px;
    transition: background-color 0.3s ease !important;
}

.contact-link:hover {
    background: #3ab898;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.nav-mobile-contact {
    display: none;
    gap: 1rem;
    margin-right: 1rem;
}

.nav-mobile-contact a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    text-decoration: none;
    border-bottom: none;
}

.nav-mobile-contact a:hover {
    color: #4acaa8;
    border-bottom: none;
}

/* Responsive Navigation */
@media screen and (max-width: 980px) {
    .hamburger {
        display: block;
    }

    .nav-mobile-contact {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

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

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

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

/* Add padding to intro section */
.intro {
    padding-top: 60px; /* Adjust this value based on your nav height */
}

/* Experience Section Styles */
.experience-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: margin-bottom 0.3s ease;
}

.experience-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 1rem;
}

.experience-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.experience-header h3 {
    margin: 0;
    flex: 0 1 auto;
    min-width: 120px;
}

.experience-period {
    margin: 0;
    color: #000000;
    flex: 0 1 auto;
    white-space: nowrap;
}

.toggle-details {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

.toggle-details:focus {
    outline: none;
    box-shadow: none;
}

.toggle-details i {
    color: #000000;
}

.toggle-details.active {
    transform: rotate(180deg);
}

.experience-details {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    padding: 0 1rem;
    margin: 0;
}

.experience-details.active {
    height: auto;
    opacity: 1;
    visibility: visible;
    padding: 1rem;
    margin: 0;
}

.experience-details p {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.experience-details h4 {
    color: #000000;
    font-size: 1rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.experience-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.experience-details ul li {
    color: #000000;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.experience-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
}

/* Responsive styles for experience section */
@media screen and (max-width: 736px) {
    .experience-header {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .experience-header h3 {
        font-size: 1rem;
        min-width: 100px;
        color: #000000;
    }

    .experience-period {
        font-size: 0.8rem;
        color: #000000;
    }

    .toggle-details {
        padding: 0.3rem;
    }

    .toggle-details i {
        color: #000000;
    }

    .experience-details {
        padding: 1rem;
    }

    .experience-details p {
        font-size: 1rem;
    }

    .experience-details ul li {
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media screen and (max-width: 736px) {
    .portfolio-item {
        width: 240px;
    }

    .portfolio-item img {
        height: 160px;
    }
}

/* Arrow with Plus */
.arrow {
    border-bottom: none !important;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.arrow i {
    font-size: 2rem;
    color: #000000;
    transition: color 0.3s ease;
}

.arrow:hover i {
    color: #49fcd4;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 2rem 0;
    color: #000000;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright p {
    margin: 0;
    padding: 0;
}

.copyright a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #49fcd4;
}

@media screen and (max-width: 736px) {
    .copyright {
        padding: 1.5rem 0;
        font-size: 0.8rem;
    }
}

/* Products List */
.products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.products-list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

.products-list a {
    color: #000000;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.products-list a:hover {
    color: #49fcd4;
}

.products-list strong {
    color: #000000;
    font-weight: 600;
    margin-right: 0.5rem;
}

@media screen and (max-width: 736px) {
    .products-list li {
        padding: 0.8rem;
    }
}

/* More Works */
.more-works {
    margin-top: 2rem;
    text-align: left;
}

.toggle-more-works {
    background: none;
    border: none;
    color: #000000;
    cursor: pointer;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
}

.toggle-more-works:hover {
    color: #49fcd4;
}

.toggle-more-works i {
    transition: transform 0.3s ease;
}

.toggle-more-works.active i {
    transform: rotate(180deg);
}

.more-works-content {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 0;
    text-align: left;
}

.more-works-content.active {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin-top: 2rem;
}

@media screen and (max-width: 736px) {
    .toggle-more-works {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 