body {
    font-family: RobotoSlab-Bold;
}
.form-box {
    padding: 20px; /* Add some padding */
    border-radius: 15px; /* Rounded corners */
    background-color: #ff307b; /* Light background color */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-family: RobotoSlab-Bold;
}

.form-control {
    border-radius: 10px; /* Rounded input fields */
}

.btn-warning {
    border-radius: 10px;
    transition: background-color 0.3s;
    font-size: 13px;
    font-family: RobotoSlab-Bold;
    background-color: #029e9d;
    color: white;
}
.btn-primary{
    background-color: #042da9 !important;
    border-color: #042da9 !important;
}
.btn-outline-primary {
    background-color: #ff307b !important;
    border-color: #ff307b  !important;
    color: white !important;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgb(229 70 92) !important;
}
/* Font size for small devices */
@media (max-width: 576px) { /* Bootstrap small devices breakpoint */
    .btn-warning {
        font-size: 12px; /* Font size for small devices */
    }
}
.btn-warning:hover {
    background-color: #FFC107; /* Slightly lighter on hover */
}

.animated-text {
    font-size: 1.rem;
    color: #b54265;
    text-align: center;
    margin: 20px 0;
    animation: bounce 1s infinite;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px); /* Move up */
    }
    60% {
        transform: translateY(-5px); /* Move down slightly */
    }
}

.text-head-c, h4{
    font-size: 16px !important;
}
.text-head-c, p{
    font-size: 13px !important;
}

/* .more-content {
    display: none;
}
.custom-toggle {
    color: green; 
    cursor: pointer;
    font-weight: bold;
} */


  /* Basic styles for the footer */
  .bg-secondary {
    background-color: #f8f9fa;
}

.footer-dark {
    background-color: #343a40;
    color: white;
}

.custom-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff; /* Change to your desired background color */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it's above other elements */
}

.footer-icon {
    display: inline-block;
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
}

.footer-icon img {
    width: 100%;
    height: auto;
}

.enquiry-button {
    background-color: #b54265; /* Change to your desired color */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .custom-sticky-footer {
        display: none; /* Hide on larger screens */
    }
}


.custom-button {
    width: 200px; /* Set your desired width */
    height: 40px; /* Set your desired height */
    padding: 5px 10px; /* Adjust padding to control height */
    display: flex; /* Align icon and text */
    align-items: center; /* Center the icon vertically */
    justify-content: center; /* Center the text */
  }
  
  .custom-button i {
    margin-right: 5px; /* Space between icon and text */
  }
  .holiday_facility_icon {
    font-size: 18px;
    color: #b54265;
}  

.text-block, ul, li {
    font-size: 14px;
    line-height: 2;
}

.text-block {
    max-height: 80px;
    overflow-y: hidden; /* Hide scrollbar by default */
    transition: overflow-y 0.3s; /* Smooth transition */
    font-family: RobotoSlab-Bold;
}

.text-block:hover {
    overflow-y: auto; /* Show scrollbar on hover */
}

/* Custom scrollbar styles */
.text-block::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar */
}

.text-block::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar thumb */
    border-radius: 4px; /* Rounded corners */
}

.text-block::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
}

.text-block::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background of the scrollbar track */
}


.rating-container {
    display: flex;
    align-items: center; /* Aligns items vertically centered */
    margin-top: -27px;
}

.ratings {
    list-style: none; /* Removes bullets */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
    display: flex; /* Displays stars inline */
}

.ratings li {
    margin-right: 5px; /* Space between stars */
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:77px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
p{
    font-family: RobotoSlab-Bold;
}

.blog-one {
    border: 1px solid #555555 !important;
}
.contact-list {
    display: flex;
    flex-wrap: wrap; /* Ensures items wrap to the next line on smaller screens */
    list-style: none; /* Removes default bullet points */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.contact-list li {
    margin-right: 15px; /* Adds space between items */
}

.contact-list li:last-child {
    margin-right: 0; /* Removes margin for the last item */
}

@media (max-width: 576px) {
    .footer-links, .widget {
        margin-bottom: 20px; /* Add space between widgets */
    }
}




