.pricing-body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}
.pricing-description1
{
  color: black;
}
.pricing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.pricing-text-section {
    flex: 1;
    padding: 20px;
    max-width: 400px;
    text-align: center;
}
.pricing-card-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
}
.pricing-card {
    background-color: #f7f7f7;
    border-radius: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.pricing-card:hover {
    transform: scale(1.05);
}
.pricing-card h2 {
    background-color: #3c6e71;
    font-size: 2rem;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3c6e71;
}
.pricing-card .price span {
    font-size: 1rem;
    color: #555;
}
.pricing-card ul {
    text-align: left;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.pricing-card ul li {
    margin: 10px 0;
    color: black;
}
.pricing-card ul li:before {
    content: '✓';
    color: #3c6e71;
    margin-right: 8px;
}
.pricing-card button {
    background-color: #3c6e71;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.pricing-card button:hover {
    background-color: #2f5d5b;
}
.pricing-learn-more-btn {
    background-color: #3c6e71;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.pricing-learn-more-btn:hover {
    background-color: #2f5d5b;
}
@media (max-width: 767px) {
    .pricing-body {
        padding: 10px;
    }
    .pricing-container {
        padding: 10px;
    }
}
@media (min-width: 768px) {
    .pricing-container {
        flex-direction: row;
        padding: 50px;
    }
    .pricing-text-section {
        text-align: center;
    }
    .pricing-card-section {
        flex-direction: row;
        width: auto;
    }
}

.package-container {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.package-content {
    position: relative; /* Needed for positioning the close button */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.close-btn:hover {
    color: #000;
}
.pay-now-btn {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.pay-now-btn:hover {
    background-color: #218838;
}
.contact-links1 {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Space between links */
    margin-top: 1rem;
}

.contact-link1 {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
    color: black; /* Default color */
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-link1:hover {
    color:  #000000; /* Highlight color on hover (blue shade) */
}

.contact-icon {
    width: 24px; /* Icon size */
    height: 24px;
    margin-right: 0.5rem; /* Space between icon and text */
}

.whatsapp .contact-icon {
    fill: #25D366; /* WhatsApp green color */
}

.email .contact-icon {
    fill: #D44638; /* Email red color */
}

.phone .contact-icon {
    fill: #34A853; /* Phone green color */
}
@media (max-width: 600px) {
    .contact-link1 {
        font-size: 0.7rem; /* Further reduce font size for very small screens */
    }

    .contact-icon {
        width: 18px; /* Smaller icon size for better alignment */
        height: 18px;
    }
}

/*Gallery CSS */
.image-slider-container {

    width: 330px; /* Small container width */
    height: 305px; /* Small container height */
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out; /* Smooth slide transition */
}

.slide {
    flex: 0 0 100%; /* Each slide takes the full width */
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px; /* Optional rounded corners for images */
}
