
  /* Custom styling for the pricing card */
.pricing-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    height: 400px; /* Fixed height for all cards */
    overflow: hidden; /* Hide overflowing content */
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.price .currency {
    font-size: 1.2rem;
    color: #28a745;
}

.price .amount {
    font-size: 2rem;
    color: #28a745;
}

.features-list, .unavailable-features {
    list-style: none;
    padding: 0;
}

.features-list li, .unavailable-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.features-list i, .unavailable-features i {
    margin-right: 10px;
}

.unavailable-features li {
    color: #dc3545;
}

.btn {
    font-size: 1rem;
    padding: 10px 15px;
    text-transform: uppercase;
}

/* Style for the logo image */
.logo-img {
    max-width: 250px;  /* Adjust the width as needed */
    height: auto;      /* Maintain the aspect ratio */
}

.header .logo img {
    max-height: 75px;
    margin-right: 8px;
}

/* Optionally, center the logo text if needed */
.sitename {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 10px;
    display: block;
    color: #333;
}

.map-container {
    width: 100%;
    height: 450px;  /* Adjust height as needed */
    margin-top: 20px;  /* Add margin above the map */
}

/* Content wrapper for description */


.description {
    margin-bottom: 10px;
    display: block;
}

/* Only apply sticky to the button inside .pricing-card */
.pricing-card .footer .book-now-btn {
    position: sticky;
    bottom: 0;
    z-index: 10;
    width: 100%;
    background-color: #007bff; /* Use your original button color */
    color: white; /* Set text color to white */
    border: none; /* Ensure no border around the button */
    padding: 12px; /* Adjust padding if needed */
    text-align: center; /* Center the text inside */
}

/* Add hover and focus effects for the button */
.pricing-card .footer .book-now-btn:hover,
.pricing-card .footer .book-now-btn:focus {
    background-color: #0056b3; /* Darker shade of blue on hover */
    outline: none; /* Remove outline */
}

/* Ensure the content wrapper is scrollable */
.content-wrapper {
    max-height: 250px; /* Set a max height for scrollable content */
    overflow-y: auto;  /* Enable vertical scrolling for the content */
    padding-right: 10px; /* Padding for scrollbar */
    flex-grow: 1;  /* Allow content to take available space */
}

/* Ensure the pricing card layout behaves properly */
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Additional Styling for Footer */
#footer {
    position: relative; /* Remove sticky property from footer */
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f8f9fa;
}


/* Adjust Toastr notification style */
.toast {
    background-color: #333;  /* Set a background color */
    color: #fff;  /* Set text color */
}

.toast-info {
    background-color: #17a2b8;  /* Info color */
}

.toast-success {
    background-color: #28a745;  /* Success color */
}

.toast-warning {
    background-color: #ffc107;  /* Warning color */
}

.toast-error {
    background-color: #dc3545;  /* Error color */
}

/* WhatsApp Button */
#whatsapp-button {
    position: fixed;
    bottom: 80px; /* 80px from the bottom */
    right: 20px;  /* 20px from the right */
    background-color: #25d366;
    color: white;
    padding: 10px; /* Reduced padding */
    border-radius: 50%;
    font-size: 18px; /* Reduced font size */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Ensure it stays on top */
    transition: all 0.3s ease;
    width: 50px; /* Reduced width */
    height: 50px; /* Reduced height */
}

#whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1); /* Slightly enlarge the button */
}

#whatsapp-button i {
    font-size: 18px; /* Reduced icon size */
}

/* Call Button */
#call-button {
    position: fixed;
    bottom: 156px; /* 110px from the bottom, now above the WhatsApp button */
    right: 20px;   /* 20px from the right */
    background-color: #34b7f1; /* Light Blue */
    color: white;
    padding: 10px; /* Reduced padding */
    border-radius: 50%;
    font-size: 18px; /* Reduced font size */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9997; /* Call button below WhatsApp but above Scroll Top */
    transition: all 0.3s ease;
    width: 50px; /* Reduced width */
    height: 50px; /* Reduced height */
}

#call-button:hover {
    background-color: #007b8a; /* Darker blue */
    transform: scale(1.1); /* Slightly enlarge the button */
}

#call-button i {
    font-size: 18px; /* Reduced icon size */
}


/* Scroll Top Button */
#scroll-top {
    position: fixed;
    bottom: 20px; /* 20px from the bottom */
    right: 20px;  /* 20px from the right */
    background-color: #007bff;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9998; /* Ensure it stays just below the WhatsApp button */
    transition: all 0.3s ease;
}

#scroll-top:hover {
    background-color: #0056b3;
    transform: scale(1.1); /* Slightly enlarge the button */
}

#scroll-top i {
    font-size: 24px;
}


