a{
    text-decoration: none;
}

p{
    margin: 0;
}

.ptb{
    padding-top: 60px;
    padding-bottom: 60px;
}

:root{
    --dark-green: #014005;
    --text-muted: #6c757d;
    --light-green: #e6f2e6;
    --Whatsapp-green: #25D366;
}

#backToTop {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background-color: var(--Whatsapp-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-2px);
}

#backToTop .back-to-top-icon {
    font-size: 1.2rem;
    line-height: 1;
}
.btn{
    font-size: 16px;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.btn:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="reset"]:focus {
    background-color: var(--Whatsapp-green) !important;
    background-image: linear-gradient(90deg, var(--Whatsapp-green), var(--dark-green)) !important;
    border-color: var(--Whatsapp-green) !important;
    color: #ffffff !important;
}

.page-banner {
    background: linear-gradient(135deg, rgba(2,93,28,0.95), rgba(5,150,105,0.95));
    color: #ffffff;
    /* border-radius: 20px; */
    margin-bottom: 30px;
}

.page-banner__breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.page-banner__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.75);
}

.page-banner__breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
}

.page-banner__breadcrumb .breadcrumb-item.active {
    color: #ffffff;
}

.page-banner__title {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
}

.page-banner__image-wrap {
    text-align: right;
}

.page-banner__image {
    /* border-radius: 20px; */
    max-width: 100%;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

