        
          /* navbar-image style*/
    .page-title {
    font-weight: normal;
}



.page-title.mb-3 {
    font-size: 29px; /* For larger screens */
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    

    .page-title.mb-3 {
        font-size: 14px; /* Smaller size for tablets */
    }
}

@media (max-width: 480px) {
    

    .page-title.mb-3 {
        font-size: 17px; /* Even smaller size for mobile screens */
    }
}

/*for set height and width of 8 images*/

.destination-item .image img {
        height: 300px; /* Set a uniform height for all images */
        width: 400px;   /* Maintain the aspect ratio */
        object-fit: cover; /* Ensure the image covers the area without distortion */
        display: block; /* Avoid inline gaps */
        margin: 0 auto; /* Center-align if needed */
    }