.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}

.parallax-1 {
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3');
}

.parallax-2 {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3');
}

.parallax-3 {
    background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.0.3');
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    min-height: 500px;
}

.service-item {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    position: relative;
}

.card-body {
    padding: 2rem;
}

.list-unstyled li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.list-unstyled li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.list-unstyled li:hover {
    transform: translateX(10px);
    color: #3498db;
}

.service-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2);
    color: #2ecc71;
}

.additional-services .card {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    height: 100%;
}

.additional-services .service-icon {
    color: #ffd700 !important;
}

.additional-services .card-title {
    color: #ffd700 !important;
    border-bottom-color: #ffd700;
}

.additional-services .swiper-slide {
    height: auto;
}

.additional-services .swiper-slide .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.additional-services .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}