
.projects-carousel {
    background: #f8fffe;
    padding: 80px 0;
    border-top: 1px solid #e0f2f1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2e7d6b;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1rem;
    color: #546e7a;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.custom-carousel .carousel-inner {
    padding: 20px 0;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.project-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(46, 125, 107, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e0f2f1;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 107, 0.15);
    border-color: #b2dfdb;
}

.project-card .card-img-top {
    width: 90%;
    height: 12rem;
    object-fit: cover;
    margin: 25px auto 0;
    border: 1px solid #e0f2f1; /*cccbcb; 9a9999*/
    /* box-shadow: 0 2px 10px rgba(46, 125, 107, 0.1); */
}

.project-card .card-body {
    padding: 25px 20px;
    text-align: center;
}

.project-card .card-title {
    font-weight: 600;
    color: #2e7d6b;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.project-card .card-subtitle {
    color: #00838f;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-card .card-text {
    color: #546e7a;
    line-height: 1.5;
    font-size: 0.9rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: #26a69a;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #00695c;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #26a69a;
    border: none;
    margin: 0 4px;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-control-prev {
        left: -40px;
    }
    
    .carousel-control-next {
        right: -40px;
    }
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .project-card .card-img-top {
        width: 90%;
        height: 12rem;
    }
}

.card-list {
  display: inline-block;  /* lista tylko tak szeroka jak treść */
  text-align: left;       /* wypoziomowanie do lewej */
  padding-left: 1.2rem;   /* trochę miejsca na kropki */
}

