.container {
    max-width: 1200px;
    margin: 50px auto;

       
}



.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .service-container {
        grid-template-columns: 1fr;
    }
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(57, 10, 117, 0.15);
    transition: transform 0.3s ease;
    height: 400px;
    background: linear-gradient(45deg, #390a75, #270752);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;
}
.service-image img{
    width: 85%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}
.service-image:hover {
    transform: translateY(-5px);
}

.service-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(57, 10, 117, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-title {
    color: #390a75;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-price {
    background: #ffcc00;
    color: #1a0630;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.service-tags {
    display: flex;
    gap: 10px;
    margin: 15px 0 25px;
}

.tag {
    background: #e1c6ff;
    color: #390a75;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-description {
    margin-bottom: 30px;
    color: #777777;
    font-size: 16px;
    line-height: 35px;
}

.service-features {
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.feature i {
    background: #390a75;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #390a75;
    color: white;
    box-shadow: 0 5px 15px rgba(57, 10, 117, 0.3);
}

.btn-primary:hover {
    background: #5d2b9a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 10, 117, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #390a75;
    color: #390a75;
}

.btn-outline:hover {
    background: #390a75;
    color: white;
    transform: translateY(-3px);
}

.provider-section {
    font-size: 16px;
    line-height: 30px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(57, 10, 117, 0.1);
    margin-bottom: 50px;
}

.section-title {
    color: #390a75;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffcc00;
    border-radius: 3px;
}

.provider-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

@media (max-width: 600px) {
    .provider-info {
        flex-direction: column;
        text-align: center;
    }
}

.provider-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #390a75, #270752);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.provider-details {
    flex-grow: 1;
}

.provider-name {
    font-size: 1.6rem;
    color: #390a75;
    margin-bottom: 10px;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: #ffcc00;
}

.provider-bio {
    color: #777777;
    margin-bottom: 20px;
}

.provider-stats {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #390a75;
}

.stat-label {
    color: #777777;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 30px 0;
    color: #777777;
    border-top: 1px solid #e1c6ff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    color: #390a75;
    background: #f8f5ff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #390a75;
    color: white;
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #390a75;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(57, 10, 117, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: #5d2b9a;
    transform: translateY(-3px);
}