.header-style-2 .header-middle-ptb-1 {
  padding: 0 0
}
.header-top-ptb-1{
	display:none !important;
}
.banner-text {
    text-align: center !important;
    color: white !important; /* Ensures text is white */
    font-family: Arial, sans-serif !important;
}

.banner-text span {
    color: white !important;
    display: block !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

.banner-text h4 {
    color: white !important;
    font-size: 1.2rem !important;
    margin: 10px 0 !important;
}

.banner-text a {
    display: inline-block !important;
    background: white !important; /* Base button color */
    color: black !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease-in-out !important;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.8) !important;
    animation: glow 1.5s infinite alternate !important;
}

.banner-text a i {
    margin-left: 8px !important;
}

/* Hover effect */
.banner-text a:hover {
    background: #ff7043 !important;
    box-shadow: 0 0 20px rgba(255, 87, 34, 1) !important;
}

/* Glowing animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 87, 34, 0.8) !important;
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 87, 34, 1), 0 0 30px rgba(255, 87, 34, 0.8) !important;
    }
}