body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.nav-link.active{
    color: #fff;
    border-radius: 3pt;
}

.nav-link:hover {
    background-color: #cc0000;
    border-radius: 3pt;
    color: #fff;
    cursor: pointer;
}

.package-card {
    border: none;
    text-align: center;
}

.package-img {
    background: #f2f2f2;
    padding: 40px;
}

.package-info {
    background: #cc0000;
    color: white;
    padding: 20px;
    text-align: left;
}
.package-info h5 {
    font-weight: bold;
}

.quote-section {
    padding: 80px 20px;
    text-align: center;
}
.quote-section h2 {
    color: #d90000;
    margin-bottom: 40px;
}

.bg-red {
    background-color: #cc0000; /* Custom brand red */
}

.text-danger {
    color: #cc0000 !important;
}

.btn-danger {
    background-color: #cc0000;
    border: none;
    border-radius: 0;
    padding: 10px 30px;
}

/* Hero Section with dark overlay */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/home-banner-image.png');
    background-size: cover;
    background-position: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #000 !important;
    margin-left: 15px;
}

.top-title {
    margin-top: 50px;
}

.event-card {
    transition: transform 0.3s ease;
    border: 1px solid #eee !important;
}

.event-card:hover {
    transform: translateY(-5px);
}

.service-section {
    background: #000000;
    padding: 60px 0;
}

.service-card {
    position: relative;
}

.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.service-box {
    background: #fff;
    padding: 20px;
    width: 85%;
    position: relative;
    margin: -50px auto 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2)
}

.service-box h5 {
    font-weight: 600;
}

.price {
    font-weight: 500;
    color: #444;
}

.qoute-paragraph{
    color: #fff;
}

.contact-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

.qoute-section input{
    background: #333;
    border: none;
    color: #fff;
}

.blog-card {
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    transition: transform 0.2s;
}

.card-img-container {
    position: relative;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}       

footer h6 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-list {
    text-decoration: none;
    color: #fff;
}

.footer-list:hover{
    font-weight: bolder;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #C40000;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}

/* Responsive adjustments for borders */
@media (max-width: 768px) {
    .border-end {
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}