/* Choose Us Section Styles */

/* Main Section Container */
.tc-choose-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* Video Background */
.tc-choose-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.tc-choose-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-choose-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Content Container */
.tc-choose-content {
    text-align: center;
    max-width: 1200px;
    padding: 60px 20px;
    z-index: 1;
}

/* Title Styling */
.tc-choose-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Counter/Animated Text */
.tc-choose-counter {
    font-size: 2rem;
    color: #FFD700;
    margin: 0.5rem 0;
    min-height: 60px;
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.5s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* Button Styling */
.tc-choose-btn {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.tc-choose-btn:hover {
    background: white;
    color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tc-choose-section {
        min-height: 400px;
    }
    
    .tc-choose-title {
        font-size: 1.75rem;
    }
    
    .tc-choose-counter {
        font-size: 1.75rem;
        min-height: 50px;
    }
    
    .tc-choose-content {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .tc-choose-section {
        min-height: 350px;
    }
    
    .tc-choose-title {
        font-size: 1.5rem;
    }

    .tc-choose-counter {
        font-size: 1.5rem;
        min-height: 45px;
    }

    .tc-choose-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
