/* Services Page Enhancement Styles */

/* Service Item Improvements */
.single-services-item {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single-services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1bc3eb;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    transition: all 0.3s ease;
}

.single-services-item:hover .services-icon {
    transform: scale(1.1) rotate(5deg);
    background: #17a8cb;
}

.single-services-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #383536;
    font-weight: 600;
    transition: color 0.3s ease;
}

.single-services-item:hover h3 {
    color: #1bc3eb;
}

.single-services-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.services-btn .read-more {
    color: #1bc3eb;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.services-btn .read-more:hover {
    color: #17a8cb;
    transform: translateX(5px);
}

.services-btn .read-more i {
    transition: transform 0.3s ease;
}

.services-btn .read-more:hover i {
    transform: translateX(3px);
}

/* Overview Section Improvements */
.overview-section {
    padding: 80px 0;
}

.overview-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #383536;
    font-weight: 700;
}

.overview-content p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 0;
}

.overview-image img,
.overview-image-2 img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.overview-image:hover img,
.overview-image-2:hover img {
    transform: scale(1.02);
}

/* Section Title Improvements */
.section-title {
    margin-bottom: 50px;
}

.section-title .sub-title {
    color: #1bc3eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #383536;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Hire Section Improvements */
.hire-section {
    background: #1bc3eb;
    padding: 80px 0;
    text-align: center;
}

.hire-content h6.sub-title {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hire-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hire-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.hire-btn {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .overview-content h2 {
        font-size: 26px;
    }
    
    .hire-content h2 {
        font-size: 28px;
    }
    
    .services-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .hire-btn {
        flex-direction: column;
        align-items: center;
    }
    
    .hire-btn .default-btn,
    .hire-btn .default-btn-one {
        width: 100%;
        max-width: 300px;
    }
}

