.outline-heading {
    white-space: nowrap;  /* Keep text on a single line */
    position: relative;   /* Needed for JS transform */
}
.hero-section .hero-slider .swiper-slide .hero-slide-wrapper .hero-img-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 93, 12, 0.6); 
    pointer-events: none; 
    z-index: 1; 
}
.hero-section .thumbnail-slider .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 93, 12, 0.6); 
    pointer-events: none; 
    z-index: 1; 
}

.hero-section .thumbnail-slider .swiper-slide:not(.swiper-slide-thumb-active)::after {
    top: -5px;
    height: 101%;
}

.contact-block-container {
    padding-bottom: 15rem;
}

.contact-block-container .logo-block {
    background-color: #fff;
}

.contact-block-container .logo-block .logo-img {
    max-width: 60%;
}

.contact-block-container .contact-block-wrapper .contact-block .contact-text {
    font-size: 3rem;
}
.contact-block-container .contact-block-wrapper .contact-block .contact-text small {
    font-weight: 400;
    font-size: 2rem;
}

.contact-block-container .contact-block-wrapper {
    grid-template-columns: 3fr 1fr;
}

header .logo span img {
    height: 60px;
    width: auto;
}

.about-us-1-section .about-us-1-wrapper .image-block .back-img-block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 93, 12, 0.6); 
    pointer-events: none; 
    z-index: 0; 
}
.about-us-1-section .about-us-1-wrapper .image-block .back-img-block .grid-icon {
    z-index: 1;
}
.about-us-1-section .about-us-1-wrapper .image-block .logo-block .logo-img {
    padding: 25px;
}
.about-us-2-section .about-us-2-wrapper .about-image-block .main-heading {
    max-width: 100%;
}

.about-us-2-section .about-us-2-wrapper .about-image-block .img-block .r-image-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 93, 12, 0.5); 
    pointer-events: none; 
    z-index: 0;
}

.about-us-2-section .about-us-2-wrapper .about-image-block .logo-img {
    margin-left: 1rem;
    width: 120px;
}
.commitment-section {
    padding-top: 5rem;
}
.commitment-section .text-container {
    margin-bottom: 5rem;
}
footer .about-col .logo-img {
    margin-left: 0;
    height: auto;
    width: 50%;
}

/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

/* Popup box */
.popup-box {
    background: #ffffff;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.popup-box h2 {
    font-family: var(--jakarta-font-family);
    font-size: var(--sm-title-font-size);
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay.active .popup-box {
    transform: translateY(0);
}


@media (min-width: 992px) {
    footer .footer-form .form-container .input-group input[type='text'], footer .footer-form .form-container .input-group input[type='email'], footer .footer-form .form-container .input-group input[type='tel'] {
        width: 250px;
    }
}

@media (max-width: 991px) {
    header .header-wrapper .icons-block {
        display: flex;
    }
    .about-us-2-section .about-us-2-wrapper .about-image-block .logo-img {
        height: auto;
        width: 75px;
    }
}

@media (max-width: 767px) {
    .about-us-1-section .about-us-1-wrapper .image-block .logo-block .logo-img {
        max-width: 100%;
    }
}