/* Services Page Specific Styles */

/* Service Section Enhancements */
.service-section {
    position: relative;
    padding: 40px 0;
    transition: all 0.3s ease;
}

.service-section:hover {
    background: rgba(255, 243, 38, 0.02);
}

/* Service Icon Circle */
.service-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 243, 38, 0.15) 0%, rgba(255, 243, 38, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 243, 38, 0.3);
    transition: all 0.3s ease;
}

.service-section:hover .service-icon-circle {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 243, 38, 0.3);
}

/* Service Image Container */
.service-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.service-section:hover .service-image-wrapper img {
    transform: scale(1.05);
}

/* Decorative Border */
.service-border-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    z-index: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.service-section:hover .service-border-decoration {
    opacity: 1;
    border-width: 3px;
}

/* Service Content */
.service-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

/* Button Enhancement */
.service-content .btn {
    box-shadow: 0 5px 15px rgba(255, 243, 38, 0.2);
}

.service-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 243, 38, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-section {
        margin-bottom: 60px !important;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .service-icon-circle {
        width: 70px;
        height: 70px;
    }

    .service-border-decoration {
        width: 80px;
        height: 80px;
    }
}