.column2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.column2 .heading1 {
    color: #fff;
    font-weight: 900;
}

.column2 p {
    color: #fff;
}

.column2 .button {
    height: 44px;
    width: 25%;
    color: #fff;
    background: #FF4800;
    display: flex;
        align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    border-radius: 5px;
    outline: none;
}

@media (max-width: 400px) {
    .column2 .button {
        margin-bottom: 40px;
    }
}

.single-services {
    height: 150px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info .icon {
    font-size: 18px;
    color: #FF4800;
    margin-right: 12px;
    min-width: 20px;
}

.contact-info .details strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
}

.contact-info .details p {
    margin: 0;
    font-size: 13px;
    color: #ccc;
}

/* trusted */
.about-trust-section {
    background: #ffffff;
    padding: 70px 0;
}

.about-trust-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #222;
}

.about-trust-content p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .about-trust-content h2 {
        font-size: 22px;
    }
}

/* local area */
.local-area-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 15px;
}

.area-grid {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-grid span {
    background: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.area-grid span:hover {
    background: #FF4800;
    color: #fff;
    border-color: #FF4800;
}

/* Mobile */
@media (max-width: 768px) {
    .area-grid span {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* final cta */
.cta-section-img {
    position: relative;
    background: url('../images/3.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: #fff;
}

/* Overlay (same logic as testimonial) */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); /* adjust 0.5–0.7 */
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ddd;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Primary Button */
.btn-call {
    background: #FF4800;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* Secondary Button */
.btn-quote {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* Hover Effects */
.btn-call:hover {
    background: #e03e00;
}

.btn-quote:hover {
    background: #fff;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* form modal */
/* Modal Wrapper */
.quote-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

/* Overlay */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* Modal Box */
.modal-box {
    position: relative;
    max-width: 450px;
    width: 90%;
    margin: 80px auto;
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 8px;
    z-index: 2;
}

/* Title */
.modal-title {
    text-align: center;
    color: #FF4800;
    margin-bottom: 20px;
    font-size: 20px;
}

/* Inputs */
.modal-box input,
.modal-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Button */
.modal-box button {
    width: 100%;
    padding: 12px;
    background: #FF4800;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.modal-box button:hover {
    background: #e03e00;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Show Modal */
.quote-modal.active {
    display: block;
}

/* marguee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: #fff;
    padding: 10px 0;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    color: #FF4800;
    font-size: 20px;
    animation: scrollText 30s linear infinite;
}

/* Animation */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}