#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.detail-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    height: 500px;
    max-width: 600px;
    overflow: scroll;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group.left {
    width: 45%;
    float: left;
    margin-right: 5%;
}

.form-group.right {
    width: 45%;
    float: right;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
    font-family: "EB Garamond", serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "EB Garamond", serif;
}

.full-width {
    clear: both;
    width: 100%;
    margin-top: 30px;
    font-family: "EB Garamond", serif;
    display: flex;
    align-item: center;
    justify-content: center;
}

.btn.btn-success {
    padding: 8px 50px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn.btn-success:hover {
    background-color: #218838;
}

.close {
    /* position: absolute;
    top: 90px;
    right: 380px; */
    cursor: pointer;
    font-size: 30px;
    color: red;
    /* background-color: filter black; */
}
.close:hover {
    color: red;
    scale: 1.5;
}

/* Mobile Device Styles */
@media (max-width: 768px) {
    /* #apointform {
    position: fixed;
    } */
    .appointment-form {
    overflow: scroll !important;
    height: 400px;
    background: #fff;
    /* margin-top: 300px !important; */
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .form-group.left,
    .form-group.right {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .close {
        top: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .btn.btn-success {
        width: 100%;
        padding: 10px;
    }
}

.additional-section {
    display: none;
}


/* pricing table code */


.pricing-table {
    display: flex;
    gap: 20px;
}

.pricing-card {
    background-color: #2c2c2c;
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.pricing-card h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.pricing-card p.price {
    font-size: 2em;
    font-weight: bold;
}

.pricing-card .price span {
    font-size: 0.5em;
    color: #ccc;
}

.pricing-card ul {
    list-style-type: none;
    margin: 20px 0;
}

.pricing-card ul li {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card ul li.disabled {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.pricing-card .btn {
    background-color: #ffd700;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: #e0c200;
}

/* Custom colors for each card */
.premium {
    border: 3px solid #C0C0C0;
}

.elite {
    border: 3px solid #FFD700;
}

.prime {
    border: 3px solid #cd7f32;
}


/* Mobile responsive styles */
@media (max-width: 768px) {
    .pricing-table {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
        gap: 0px;
        padding: 20px !important;
    }

    .pricing-card {
        max-width: 100%; /* Reduce width on smaller screens */
        margin-bottom: 20px;
    }

    .pricing-card h3 {
        font-size: 1.3em; /* Adjust heading size */
    }

    .pricing-card p.price {
        font-size: 1.8em; /* Adjust price size */
    }

    .pricing-card .btn {
        padding: 8px 16px; /* Adjust button padding */
    }
}

@media (max-width: 480px) {
    .pricing-card h3 {
        font-size: 1.2em;
    }

    .pricing-card p.price {
        font-size: 1.6em;
    }

    .pricing-card ul li {
        padding: 8px;
    }

    .pricing-card .btn {
        padding: 7px 14px;
    }
}


/* carousel design */

/* The modal (background) */
.albumname {
    position: absolute;
    bottom: 0px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

.modals {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

/* The close button */
.modals .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
}

.modals .close:hover,
.modals .close:focus {
    color: red;
    cursor: pointer;
}

/* Slider content */
.slider-content {
    width: 50%;
    max-width: 500px;
    position: relative;
}

/* Slider container */
.slides {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Slide */
.slide {
    display: none;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Positioning of the buttons */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 3px 0 0;
}

/* On hover, add a black background color with a bit of opacity */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


