.info-box {
  visibility: hidden;
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    transform: translateY(-50%);
    color: white;
    padding: 20px 40px;
    z-index: 10;
    text-align: left;
    background: none; 
    
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    opacity: 0;
    animation: fadeInText 1.5s ease forwards;
}

.text-overlay span {
    display: inline-block;
}

.text-overlay h1 {
    color: white;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(-60%);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.main-header .main-menu .navigation>li{
	padding-inline-end: 48px !important;
}
.main-header .main-menu .navigation>li>a {
    color: rgb(14 14 14) !important;
}
.flat-title-page{
  display: none;
} 

.top-header{
  position:relative;
  z-index: 1000;
}
.flat-benefit-v2 {
    background: #646f75;
}





.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
  }

  .floating-icons a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    cursor: pointer;
  }

  .floating-icons a:hover {
    transform: scale(1.1);
  }

  .call-icon {
    background: linear-gradient(45deg, #a97b50, #c7a06a);
  }

  .whatsapp-icon {
    background-color: #25d366;
  }

  .chat-icon {
    background-color: #4c6ef5;
  }

  .floating-icons i {
    font-size: 22px;
  }