/* General Styles */
.tp-service-pricing {
    background-color: #f9f9f9;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
}

/* Table Styling */
.tp-service-pricing .table-responsive {
    overflow-x: auto;
}

.tp-service-pricing .table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.tp-service-pricing .table th,
.tp-service-pricing .table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.tp-service-pricing .table th {
    background-color: #2144d8;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.tp-service-pricing .table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.tp-service-pricing .table tbody tr:hover {
    background-color: #e0eaff;
}

/* Options Section */
.tp-service-pricing .service-options {
    background: #ffffff;
    padding: 20px;
    /* margin-top: 20px; */
    line-height: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.tp-service-pricing .service-options h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Form Elements */
.tp-service-pricing label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.tp-service-pricing select,
.tp-service-pricing input[type="radio"],
.tp-service-pricing input[type="checkbox"] {
    margin-top: 15px;
}

.tp-service-pricing .form-control {
    width: 100%;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Pricing */
.tp-service-pricing #totalPrice {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
}

/* WhatsApp Button */
.tp-service-pricing .btn-primary {
    display: inline-block;
    text-align: center;
    background-color: #25d366;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.tp-service-pricing .btn-primary:hover {
    background-color: #1ebe5d;
    color: #fff;
}

/* Start - Gallery Section */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0 auto;
    padding: 20px 10px;
}

.gallery-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* Ensures zoomed image does not overflow */
    border-radius: 10px;
    /* Keeps border-radius effect */
}

.gallery-item img {
    width: 100%;
    max-width: 450px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    /* Smooth zoom effect */
}

.gallery-item:hover img {
    transform: scale(1.1);
    /* Zoom effect on hover */
}

.img-text {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(231, 234, 245);
    color: #0D1C37;
    border: 2px solid #0D1C37;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    white-space: nowrap;
    z-index: 2;
}

/* End - Gallery Section */

/* Start - Hero video Banner CSS */

.video-background {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: auto;
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: -2;
    opacity: .7;
}

section.custom-section,
.tp-hero-video-wrapper iframe {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    color: white;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, .5);
        z-index: -1;
    }
}

/* End - Hero video Banner CSS */