/* 1. Reset Slider Wrapper to be completely transparent over the background video */
.custom-tr-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* 2. Individual Slide Layout */
.tr-single-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    color: #ffffff !important;
    font-family: sans-serif;
    padding: 40px 20px !important;
    box-sizing: border-box;
    background: transparent !important;
}

/* 3. Slide Content Formatting & Shadows for High Visibility */
.tr-slide-content {
    max-width: 900px;
    margin: 0 auto !important;
}

.tr-slide-content h2 {
    font-size: 52px;
    font-weight: 800;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8) !important; 
}

.tr-slide-desc, .tr-slide-desc p {
    font-size: 20px;
    margin-bottom: 35px !important;
    line-height: 1.6;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

/* Button styling */
.tr-slide-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff !important;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.tr-slide-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* 4. Completely hide any leftover slick dots styles just in case */
.custom-tr-slider .slick-dots {
    display: none !important;
}