.taxi-banner {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Full viewport height */
    padding: 2rem 1rem;
    background: url('../images/welcome-hero/new.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

 @media (max-width: 768px) {
    .taxi-banner {
        min-height: auto;
        height: auto;
        padding: 2rem 0;
    }
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
}

/* Rest of your existing styles remain the same */
    
    .banner-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 600px;
    }
    
    .banner-content h3.contact-number {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-content h3.contact-number span {
        display: inline-block;
        font-weight: bold;
    }
    
    .button-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .call-btn, .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    .call-btn {
        background: #007bff;
        color: white;
    }
    
    .whatsapp-btn {
        background: #25D366;
        color: white;
    }
    
    .call-btn:hover, .whatsapp-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }
    
    .bi-telephone, .bi-whatsapp {
        margin-right: 8px;
    }
    
    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .banner-content h1 {
            font-size: 2.5rem;
        }
        
        .banner-content h2 {
            font-size: 2rem;
        }
        
        .banner-content p {
            font-size: 1rem;
        }
        
        .banner-content h3.contact-number {
            font-size: 1.1rem;
        }
        
        .button-container {
            flex-direction: column;
            width: 100%;
        }
        
        .call-btn, .whatsapp-btn {
            width: 100%;
            padding: 0.8rem;
        }
    }
 .custom-text {
    color: #ff6600; /* Change to any color you want */
    font-weight: 500; /* Optional: Slightly bolder text */
}
