
.backgroundsearch {
background: url(/images/mid-banner11.jpg);  
padding: 28px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: 0px;
    margin-right: 0px;
    
}
 
.bg-brown{
        background-color: #6a6a6a;
 }


.text-gold {
  color: #f6f904;
}

.bg-gold{
  background-color:#f6f904 ;
}

.bg-yellow{
    color: #effa09;
}

.bg-black{
  background-color:#000 ;
}

.bg-blue{
  background-color:#1579f0 ;
}

.bg-sgray{
  background-color:#434344;
}

.bg-dark-blue{
  background-color:#1d3970;
}


.bg-red{
    color: white;
    background-color:#FF2222;
}
.txt-red{
    color: #FF2222;
}

.txt-yellow{
    color: #effa09;
}

.text-white > a {
  color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.txt-shadow{
        text-shadow:2px 2px 2px #CE5937;
    }
    
    
  /*take from main page <style> in Line 204 */ 
    
      .info-banner-glow {
    position: relative;
    background: linear-gradient(135deg, #1579f0, #1e3a8a); /* violet to indigo */
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .info-banner-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.1)
    );
    transform: skewX(-20deg);
  }

  .info-banner-glow:hover::before {
    animation: shimmer 1.5s infinite;
  }

  .info-banner-glow:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  }

  @keyframes shimmer {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }
  
  
  /* Green & light gray Blocks */
  
.features-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 16px;
}

.feature-card {
  width: 230px;
  height: 230px;
  background: #e6f2ff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
}

.feature-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  color: #000;
}

/* Green cards */
.feature-card--green {
  background: #1579f0;
  color: #fff;
}

.feature-card--green .feature-title {
  color: #fff;
}

/* Mobile: stack cards vertically, full width */
@media (max-width: 768px) {
  .features-wrapper {
    flex-direction: column;
    align-items: center;   /* center the blocks */
    gap: 20px;
  }

  .feature-card {
    width: 100%;
    max-width: 320px;      /* optional, to not be too wide */
  }
}


/* call banner css */

/* CTA Call Banner */
.cta-call{
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
}

.cta-call__title{
  margin: 0 0 .75rem 0;
  font-weight: 800;
  font-size: 1.15rem;
}

/* Phone number – big and yellow */
.cta-call__phone{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  text-decoration: none;
  color: #ffc107;             
}

.cta-call__icon{
  font-size: 2.4rem;
  line-height: 1;
  color: #ffc107;
}

.cta-call__number{
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: .5px;
  color: #ffc107;
}

.cta-call__actions{
  margin-top: 1.2rem;
}

.cta-call__meta{
  margin: .75rem 0 0 0;
  font-size: .95rem;
  opacity: .9;
}

/* Mobile */
@media (max-width: 576px){
  .cta-call{
    padding: 1.5rem;
  }
  .cta-call__number{
    font-size: 2.2rem;
  }
  .cta-call__icon{
    font-size: 1.9rem;
  }
}



/* Mobile sticky tap-to-call */
/* default hidden on desktop */
#tapToCall{ display:none !important; }

@media (max-width: 992px){

  #tapToCall{
    display:flex !important;

    position: fixed !important;
    left: 12px !important;
    right: 12px !important;


    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px) !important;

    z-index: 2147483647 !important;

    height: 54px !important;      
    padding: 0 14px !important;

    background: #16a34a !important; 
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;

    border-radius: 14px !important;
    text-decoration: none !important;

    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    box-shadow: 0 10px 25px rgba(0,0,0,.35) !important;
  }

  #tapToCall .tap-to-call__number{
    font-size: 20px !important;  
    font-weight: 900 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  /* Empty space at the bottom of the page where the call button does not fall on the content */
  body{
    padding-bottom: 90px !important;
  }
}

  /* makepage blade text content css*/

.make-content{
  text-align: justify;
  text-justify: inter-word;
}

.make-content p,
.make-content li{
  text-align: justify;
}

.make-content p{
  margin-bottom: 0.75rem;
}

