/* --- DT Growth Hero Styles --- */

.dt-growth-hero-section {
    padding: 60px 20px;
    overflow: hidden; /* Prevents scrollbar if video pushes too far */
}

.dtgh-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Dark Box */
.dtgh-box {
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    position: relative;
    /* Default BG set inline */
}

/* Left Content */
.dtgh-content-col {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.dtgh-headline {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: inherit;
}

.dtgh-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, filter 0.2s;
}
.dtgh-btn:hover {
    transform: translateY(-3px);
    filter: brightness(110%);
}

/* Right Media Column */
.dtgh-media-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

/* Video Wrapper (The Breakout Effect) */
.dtgh-video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    
    /* This pulls the video slightly to the right, off the background */
    margin-right: -80px; 
    background: #000;
    line-height: 0; /* Removes gap below iframe */
    
    transform: scale(1.05); /* Slight pop */
    z-index: 10;
}

.dtgh-video-wrapper iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

/* Testimonial (Below Video) */
.dtgh-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-left: 20px; /* Indent slightly */
}

.dtgh-test-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dtgh-test-content {
    /* This content sits outside the dark box visual flow usually, 
       but here it's inside the container divs. 
       If we need it contrasting, we assume the section BG is white. */
}

.dtgh-test-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: #333; /* Dark text assuming white page background */
    margin: 0 0 5px 0;
    background: #fff;
    padding: 15px;
    border-radius: 0 15px 15px 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 300px;
}

.dtgh-test-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    display: block;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .dtgh-box {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }

    .dtgh-content-col {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .dtgh-headline {
        font-size: 2.5rem;
    }

    .dtgh-video-wrapper {
        margin-right: 0; /* Reset breakout */
        width: 100%;
        transform: none;
    }

    .dtgh-testimonial {
        justify-content: center;
        text-align: left;
        margin-left: 0;
    }
}