.hero {
    position: relative;
    background: url(../images/hero-bg-2.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 150px 0 140px;
}

/* Desktop (Default) */
.section-title h1 {
    font-size: 68px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
    cursor: none;
}

/* Mobile */
@media only screen and (max-width: 767px) {
    .section-title h1 {
        font-size: 54px;
    }
}

@media only screen and (max-width: 767px) {
    .what-we-counter-item {
        padding: 12px;
    }
}

.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;
}



/* Scroll To Top Button */
#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 for Scroll Button */
#scrollTopBtn:hover {
    background: #d80000;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.5);
}

/* Menu Styling */
.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;
    }
}

.footer-contact-details {
    width: calc(100% - 220px);
    height: 100%;
    background: var(--dark-divider-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 21px 19px;
    padding: 38px;
}

.section-title h1 {
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
    cursor: none;
}


.call-now-float {
  position: fixed;
  bottom: 30px;
  left: 10px;
  width: 55px;
  height: 55px;
  background: #e60000;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  animation: pulseBg 1.8s infinite;
}

.call-now-float svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.call-now-float:hover {
  background: #b10000;
}

/* Pulse Animation */
@keyframes pulseBg {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.6);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(230, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
  }
}

