.btn {
    background-color: #044f60;
    color: #fff;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
}

.btn:hover {
    background-color: rgba( 4, 79, 96, 0.8);
}

.breadcrumbs-section{
    background-image: url('../../static/images/bcrumb.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
}

.breadcrumbs-section::before {
    content: "";
    position: absolute;
    
    width: 100%;
    height: 300px;
    background: rgba(4, 79, 96, 0.8); /* Adjust opacity (0.5 = 50% black) */
}
@media (max-width: 575px) {
    .breadcrumbs-section {
        background-position: right !important;
    }
}
.breadcrumbs-section .container{
    position: relative;
    top:65%;
}


@media (max-width: 575px) {
    .breadcrumbs-title{
        font-size: 20px;
    }
}
.breadcrumbs-section img{
    height: 8px;
    width: 75px;
    position: relative;
    margin-bottom: 10px;
}

.breadcrumbs-title{
    font-size: 36px;
    line-height: 49px;
    font-family: "Gilda Display", serif;
    z-index: 100;
    color: #ffffff;
}

.breadcrumbs-path  {
    color: white;
    font-size: 12px;
    margin-bottom: 20px;
}
.breadcrumbs-path a {
    color: white;
}

@media(max-width:768px){
    .breadcrumbs-title{
        font-size: 30px;
    }}


    #whatsapp{
        position: fixed;
        transform: all 0.5s ease;
        background-color: #25d366;
        display: block;
        text-align: center;
        box-shadow: 0 0 20px rgba(0,0,0,0.15);
        border-radius: 50px;
        border-right: none;
        color: white;
        font-weight: 700;
        font-size: 30px;
        bottom: 70px;
        right: 20px;
        border: 0;
        z-index: 99999;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
    /* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}
.contact-form-section .row {
    display: flex;
    align-items: stretch;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    /* max-height: 700px; */
    border-radius: 10px;
    object-fit: cover;
}

/* Right Side: Contact Form */
.contact-form-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Fields */
.contact-form-container .form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

/* Submit Button */
.contact-form-container .btn-primary {
    background: #044f60;
    border: none;
    margin-top: 20px;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form-container .btn-primary:hover {
    background: #34879a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-image {
        margin-bottom: 20px;
    }
}

    

    

   