.hero {
    position: relative;
    background: url(../images/hero-bg-2.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0 140px;
}

.section-title h1 {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
    cursor: none;
}

.heightlite {
    color: #e01c08;
}

.feature-item .icon-box img {
    max-width: 185px;
}

.footer-logo {
    background: linear-gradient(90deg, #fff6f5 0.18%, #ffff 100.18%);
    padding: 40px 60px 40px 30px;
}

.footer-copyright {
    border-top: 1px solid var(--dark-divider-color);
    padding: 28px 0;
    margin-top: 25px;
}


/* flot icon */
.call-now-btn {
    position: fixed;
    bottom: 20px;
    left: 30px;
    background: #d80000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    animation: floatBtn 2.2s ease-in-out infinite;
    z-index: 999;
}

/* Phone Icon Style */
.call-now-btn i {
    font-size: 18px;
}

/* Hover Effect */
.call-now-btn:hover {
    background: #d80000;
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.6);
    transform: translateY(-4px);
}

/* Keyframe Animation */
@keyframes floatBtn {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* scroll to top */

#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #d80000;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    animation: floatUp 2.2s ease-in-out infinite;
    z-index: 999;
}

/* Hover effect */
#scrollTopBtn:hover {
    background: #d80000;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.5);
}

.main-menu ul li a {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 14px 20px !important;
    color: var(--text-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

/* Popup Overlay */
/* Overlay */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    z-index: 99999;
    animation: fadeIn 0.4s ease-out;
}

/* Popup Box */
.promo-popup {
    background: rgba(255, 255, 255, 0.97);
    width: 90%;
    max-width: 520px;
    padding: 40px 35px;
    border-radius: 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    animation: popupZoom 0.45s ease-in-out;
}

/* Logo */
.popup-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.popup-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

/* Title */
.promo-popup h2 {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* Content text */
.promo-popup p {
    font-size: 17px;
    color: #444;
    margin-bottom: 28px;
    line-height: 1.6em;
}

/* Close button */
.close-popup {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    transition: 0.25s ease;
}

.close-popup:hover {
    color: #e60000;
    transform: rotate(90deg);
}


/* Animations */
@keyframes popupZoom {
    0% {
        transform: scale(0.85);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Animation */
@keyframes popupZoom {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media only screen and (max-width: 767px) {
    .feature-item .icon-box {
        margin-bottom: 10px;
        text-align: center;
    }
}

.our-feature {
    background-image: url(../images/feature-bg-shape.png), linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 27px 0;
}

.about-img-1 {
    position: relative;
    padding-right: 46px;
}

@media (max-width: 767px) {
   .about-img-1 {
    position: relative;
    padding-right: 0px;
}
}


.row {
    padding-right: 30px;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .row {
        padding-right: 15px;
        padding-left: 15px;
    }
}