.service-container {
    background: linear-gradient(180deg, #fff6fe 0%, #f4feff 100%);
}

.service-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    padding: 60px 20px;
}

.service-left img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

.service-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-left li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.service-left li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("/Frontend/assets/images/icon/right-arrow-round-icon.svg")
        no-repeat center center;
    background-size: contain;
}

.service-actions {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.action-box {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 22px 14px 14px;
    border-radius: 4px;
    min-width: 200px;
    position: relative;
}

.action-box img {
    width: 25px;
    height: 25px;
    background: #fff;
    border: 2px solid var(--primary-color);
    position: absolute;
    left: -20px;
    padding: 10px;
    border-radius: 50%;
}

.action-detl {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding-left: 20px;
}

.enquiry-btn {
    background: #4f6665;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 0 50px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    min-height: 70px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-btn:hover {
    background: #425858;
}

.service-right .card {
    background: #fff;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card h3 {
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #dad7d7;
}

.service-right-list {
    list-style: none;
    padding: 0;
}

.service-right-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.service-right-list li img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.project {
    display: flex;
    margin-top: 30px;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.project img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.modal-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    margin: 30px auto;
    padding: 2px;
    position: relative;
    animation: fadeIn 0.3s ease;
}
.close {
    position: absolute;
    right: 18px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.contact-form {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: none;
    background: var(--secondary-color);
    font-size: 16px;
    outline: none;

    box-sizing: border-box;
}

.contact-form textarea {
    height: 130px;
}

.contact-form .row {
    display: flex;
    gap: 10px;
}

@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .service-wrapper {
        grid-template-columns: 1fr;
    }

    .service-right {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .service-actions {
        flex-direction: column;
        gap: 16px;
    }
    .action-box,
    .enquiry-btn {
        /* display: block; */
        margin: 0 20px;
    }

    .action-box {
        justify-content: flex-start;
    }
}
