/*--------------------------------------------------------------
# Portfolio Page Styles
--------------------------------------------------------------*/

:root {
    --primary-color: #66FCF1;
    --primary-color-rgb: 102, 252, 241;
    --secondary-color: #45A29E;
    --dark-color: #0B0C10;
    --dark-light-color: #1F2833;
    --light-color: #C5C6C7;
    --white-color: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#portfolio-hero {
    background: linear-gradient(135deg, rgba(11, 12, 16, 0.9) 0%, rgba(31, 40, 51, 0.9) 100%), url('/placeholder.svg?height=1080&width=1920') center/cover no-repeat;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

#portfolio-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
}

#portfolio-hero .hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

#portfolio-hero .hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 30px;
}

.hero-shape {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.breadcrumb {
background-color: transparent;
justify-content: center;
padding: 0;
margin: 0;
}

.breadcrumb-item {
font-size: 16px;
font-weight: 500;
}

.breadcrumb-item a {
color: var(--light-color);
}

.breadcrumb-item.active {
color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
color: var(--light-color);
}

/*--------------------------------------------------------------
# Featured Portfolio Slider
--------------------------------------------------------------*/
.featured-slider {
    margin-top: 40px;
    position: relative;
}

.featured-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.featured-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0) 100%);
    color: var(--white-color);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.featured-item:hover .featured-content {
    transform: translateY(-10px);
}

.featured-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-content p {
    color: var(--light-color);
    margin-bottom: 20px;
}

.featured-content .btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.featured-content .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Slick slider customization */
.featured-slider .slick-dots {
    bottom: -40px;
}

.featured-slider .slick-dots li button:before {
    color: var(--primary-color);
    opacity: 0.5;
    font-size: 10px;
}

.featured-slider .slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

.featured-slider .slick-prev,
.featured-slider .slick-next {
    width: 50px;
    height: 50px;
    background-color: var(--dark-light-color);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.featured-slider .slick-prev:before,
.featured-slider .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    opacity: 1;
}

.featured-slider .slick-prev:before {
    content: '\f104';
}

.featured-slider .slick-next:before {
    content: '\f105';
}

.featured-slider .slick-prev:hover,
.featured-slider .slick-next:hover {
    background-color: var(--primary-color);
}

.featured-slider .slick-prev:hover:before,
.featured-slider .slick-next:hover:before {
    color: var(--dark-color);
}

.featured-slider .slick-prev {
    left: 20px;
}

.featured-slider .slick-next {
    right: 20px;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.bg-dark-light {
    background-color: var(--dark-light-color);
}

.portfolio-controls {
    margin-bottom: 30px;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.portfolio-search {
    position: relative;
    max-width: 100%;
}

.portfolio-search input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border-radius: 30px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-size: 0.9rem;
}

.portfolio-search input::placeholder {
    color: var(--light-color);
}

.portfolio-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-search button:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Status Filter */
.status-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.status-btn {
    background-color: transparent;
    border: none;
    color: var(--light-color);
    padding: 5px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.status-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.status-btn.active,
.status-btn:hover {
    color: var(--primary-color);
}

.status-btn.active::after,
.status-btn:hover::after {
    width: 80%;
}

/* Portfolio Cards */
.portfolio-card {
    margin-bottom: 30px;
}

.portfolio-item {
    background-color: var(--dark-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.status-completed {
    background-color: rgba(39, 174, 96, 0.9);
    color: white;
}

.status-progress {
    background-color: rgba(241, 196, 15, 0.9);
    color: #333;
}

.status-hold {
    background-color: rgba(231, 76, 60, 0.9);
    color: white;
}

.card-body {
    padding: 20px;
    background-color: var(--dark-color);
    color: var(--white-color);
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white-color);
}

.portfolio-date {
    font-size: 0.8rem;
    color: var(--light-color);
    margin-bottom: 10px;
}

.portfolio-description {
    color: var(--light-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tech-badge {
    background-color: rgba(102, 252, 241, 0.1);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.visit-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(102, 252, 241, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.visit-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.portfolio-loading {
    padding: 50px 0;
    color: var(--light-color);
}

.portfolio-loading .spinner-border {
    color: var(--primary-color) !important;
    margin-bottom: 15px;
}

#no-results {
    color: var(--light-color);
    padding: 50px 0;
}

#no-results i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Process
--------------------------------------------------------------*/
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(102, 252, 241, 0.3);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.process-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.process-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.5rem;
    z-index: 1;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.5);
}

.process-content {
    width: 45%;
    padding: 25px;
    background-color: var(--dark-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--dark-color);
    transform: translateY(-50%) rotate(45deg);
}

.process-item:nth-child(odd) .process-content::before {
    left: -10px;
}

.process-item:nth-child(even) .process-content::before {
    right: -10px;
}

.process-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.process-content p {
    color: var(--light-color);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-item {
    margin-bottom: 20px;
    background-color: var(--dark-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: 500;
    flex: 1;
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-answer p {
    color: var(--light-color);
    padding-bottom: 20px;
    margin-bottom: 0;
}

.faq-item.active .faq-question {
    background-color: rgba(102, 252, 241, 0.1);
}

.faq-item.active .faq-answer {
    display: block;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.bg-gradient {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-light-color) 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 252, 241, 0.1) 0%, transparent 70%);
}

#cta h2 {
    font-size: 2.2rem;
    color: var(--white-color);
    margin-bottom: 10px;
    position: relative;
}

#cta p {
    color: var(--light-color);
    font-size: 1.1rem;
    position: relative;
}

#cta .btn-light {
    background-color: var(--white-color);
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#cta .btn-light:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-item {
        flex-direction: row !important;
    }
    
    .process-icon {
        left: 30px;
    }
    
    .process-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .process-content::before {
        left: -10px !important;
        right: auto !important;
    }
}

@media (max-width: 991px) {
    #portfolio-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .featured-item img {
        height: 400px;
    }
    
    .portfolio-filter {
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    #portfolio-hero {
        padding: 150px 0 80px;
    }
    
    #portfolio-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .featured-item img {
        height: 350px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-content h3 {
        font-size: 1.5rem;
    }
    
    .process-content {
        padding: 15px;
    }
    
    .process-content h3 {
        font-size: 1.1rem;
    }
    
    #cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    #portfolio-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .featured-item img {
        height: 300px;
    }
    
    .featured-content h3 {
        font-size: 1.3rem;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-content {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    

    #cta h2 {
        font-size: 1.5rem;
    }
    
    #cta p {
        font-size: 1rem;
    }
    
    #cta .btn-light {
        padding: 10px 20px;
    }
}